mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- many repeater fixes (both filed and unfiled) - reducing groups from generated xform - testing complex types in forms - more test cases for repeats - adding description and title to create form git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4288 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
elementFormDefault="qualified">
|
|
<xs:complexType name="multi-input">
|
|
<xs:sequence>
|
|
<xs:element name="string" type="xs:string"/>
|
|
<xs:element name="int" type="xs:int"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
<xs:element name="repeat-constraints">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="zero-to-one" type="xs:string" minOccurs="0" maxOccurs="1"/>
|
|
<xs:element name="one-to-one" type="xs:string" minOccurs="1" maxOccurs="1"/>
|
|
<xs:element name="one-to-inf" type="xs:string" minOccurs="1" maxOccurs="unbounded"/>
|
|
<xs:element name="zero-to-inf" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
|
|
<xs:element name="one-to-five" type="xs:string" minOccurs="1" maxOccurs="5"/>
|
|
<xs:element name="three-to-five" type="xs:string" minOccurs="3" maxOccurs="5"/>
|
|
<xs:element name="zero-to-five" type="xs:string" minOccurs="0" maxOccurs="5"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|