diff options
author | pdanner <pdanner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-11-21 08:10:27 +0000 |
---|---|---|
committer | pdanner <pdanner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-11-21 08:10:27 +0000 |
commit | 9e82ef61d10d91ee25bf964ef85f815b1756ee1b (patch) | |
tree | 7d3712ac9e4fe408994b196b53f18f34368bf2f3 | |
parent | 3995c5a93a47fb71d7571a197702434b3261a359 (diff) | |
download | moa-id-spss-9e82ef61d10d91ee25bf964ef85f815b1756ee1b.tar.gz moa-id-spss-9e82ef61d10d91ee25bf964ef85f815b1756ee1b.tar.bz2 moa-id-spss-9e82ef61d10d91ee25bf964ef85f815b1756ee1b.zip |
Fixed schema because element content in InputProcessorType was not allowed
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@1043 d688527b-c9ab-4aba-bd8d-4036d912da1d
-rw-r--r-- | common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.4.2.xsd | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.4.2.xsd b/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.4.2.xsd index 4488a1eda..c0ceb1d2e 100644 --- a/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.4.2.xsd +++ b/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.4.2.xsd @@ -518,14 +518,15 @@ </xsd:simpleType>
</xsd:element>
<xsd:complexType name="InputProcessorType">
- <xsd:annotation>
- <xsd:documentation>Kommentar</xsd:documentation>
- </xsd:annotation>
- <xsd:attribute name="template" type="xsd:anyURI" use="optional">
- <xsd:annotation>
- <xsd:documentation>Das Attribut spezifiziert die Lage des Templates, welches der InputProcessor zur Darstellung des Eingabeformulars nutzen soll</xsd:documentation>
- </xsd:annotation>
- </xsd:attribute>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="template" type="xsd:anyURI" use="optional">
+ <xsd:annotation>
+ <xsd:documentation>Das Attribut spezifiziert die Lage des Templates, welches der InputProcessor zur Darstellung des Eingabeformulars nutzen soll</xsd:documentation>
+ </xsd:annotation>
+ </xsd:attribute>
+ </xsd:extension>
+ </xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="PartyRepresentationType">
<xsd:sequence>
|