mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
handling the case where create web content is called with no forms configured for the web project some more progress on xf:switch updated tests - including one from ken at berkeley who is trying to use forms to write grant applications. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4925 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
14 lines
486 B
XML
14 lines
486 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:othernsprefix="http://other.org/othernsuri"
|
|
elementFormDefault="qualified"
|
|
attributeFormDefault="qualified"
|
|
targetNamespace="http://other.org/othernsuri">
|
|
<xs:simpleType name="type1">
|
|
<xs:restriction base="xs:string">
|
|
<xs:minLength value="5"/>
|
|
<xs:maxLength value="5"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
</xs:schema>
|