summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKrzysztof Jackiewicz <k.jackiewicz@samsung.com>2015-04-24 15:40:16 +0200
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>2015-04-27 14:19:07 +0200
commit7ab454ba2e20b71d8a267f2a21b18ea4bd4ad2c8 (patch)
tree76bee5afc0a58607b13f5bc47559f1c38b03b680 /doc
parentbf7cb85596ec7930919e706a808363e08b1c6910 (diff)
downloadkey-manager-7ab454ba2e20b71d8a267f2a21b18ea4bd4ad2c8.tar.gz
key-manager-7ab454ba2e20b71d8a267f2a21b18ea4bd4ad2c8.tar.bz2
key-manager-7ab454ba2e20b71d8a267f2a21b18ea4bd4ad2c8.zip
Initial values format fixed
[Issue#] N/A [Feature/Bug] N/A [Problem] Wrong occurrence numbers used. [Cause] N/A [Solution] Occurrence numbers fixed. Removed whitespaces from ASCII example. [Verification] xmllint -schema initial_values.xsd example.xml Change-Id: I78a7cd216a2c412e271e3811a02ec812eadd53ac
Diffstat (limited to 'doc')
-rw-r--r--doc/example.xml4
-rw-r--r--doc/initial_values.xsd4
2 files changed, 3 insertions, 5 deletions
diff --git a/doc/example.xml b/doc/example.xml
index cf7ef944..67b73f98 100644
--- a/doc/example.xml
+++ b/doc/example.xml
@@ -24,9 +24,7 @@
</DER>
</Cert>
<Data name="data1">
- <ASCII>
- My secret data
- </ASCII>
+ <ASCII>My secret data</ASCII>
</Data>
<Key name="aes1" type="AES">
<Base64>
diff --git a/doc/initial_values.xsd b/doc/initial_values.xsd
index a587bebf..69068dfa 100644
--- a/doc/initial_values.xsd
+++ b/doc/initial_values.xsd
@@ -3,8 +3,8 @@
<xsd:element name="InitialValues" type="InitialValuesType"></xsd:element>
<xsd:complexType name="InitialValuesType">
- <xsd:sequence>
- <xsd:choice maxOccurs="unbounded" minOccurs="1">
+ <xsd:sequence maxOccurs="unbounded" minOccurs="1">
+ <xsd:choice maxOccurs="1" minOccurs="1">
<xsd:element name="Data" type="DataType"
maxOccurs="1" minOccurs="1">
</xsd:element>