Files
alfresco-community-repo/source/test-resources/xforms/tests/schema/readonly-and-default-values-test.xsd
Kevin Roast 2cd5047075 Merged V3.2E to HEAD
17533: Fix for unreported issue for events with multiple days (secondary elements) aren't filtered correctly when view is filtered by tags
   17535: ETHREEOH-3411 - Alert appears when loading My Dashboard when Documents I'm editing dashlet is aded and site name was edited with XSS text
   17536: Fixes for various forms issues (ETHREEOH-3398, ETHREEOH-3273, ETHREEOH-3339 & ALFCOM-3587) and reverted accidentally checked in log4j.properties file
            - Folders can now have tags applied in edit form
            - Working copy nodes have their cm:name property set to protected
            - Removed mandatory marker from checkbox control (if you have a boolean there is always a value so no need to mark as mandatory)
            - Potential security issue
   17537: ETHREEOH-1908 - .docx word documents are not displayed in 'Word Documents' category in 'Document List' component. Also fixed some i18n strings.
   17538: Fix for ETHREEOH-3085 and ETHREEOH-3341.
          - NTLM/Kerberos, Tomcat/JBoss5 and JSF client now play nicely on session timeout and display the correct configured page on first login.
          - Tested Share NTLM works correctly with above changes.
   17539: Fix for ETHREEOH-3368: UI does not show multi-valued MLText propertis as localisable
   17543: Merged DEV_TEMPORARY to V3.2
      17529: Fix for ETHREEOH-3186 & ETHREEOH-3187
   17544: Fix for ETHREEOH-1509 - Manage action is not applied for task resources part from My Tasks tab in Office Addins if user already opens another task.
   17547: Fix for ETHREEOH-1709 - AccessDeniedException - Download Servlet not re-directing user to login page.
          - WebDav path now resolved to a noderef as system user - then the permission test for READ_CONTENT is performed directly on the resulting noderef.
   17548: Fix for ETHREEOH-3137 - Tags created for All day event are not displayed in Tags pane.
   17551: Final part of fix for ETHREEOH-2161 includes solution for ETHREEOH-3270.
          - An admin user can now optionally disable the execute of Rules and the Archive of nodes during a folder delete operation.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18128 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2010-01-19 12:01:16 +00:00

79 lines
4.8 KiB
XML

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:alf="http://www.alfresco.org"
elementFormDefault="qualified">
<xs:simpleType name="five_string_values">
<xs:restriction base="xs:normalizedString">
<xs:enumeration value="one"/>
<xs:enumeration value="two"/>
<xs:enumeration value="three"/>
<xs:enumeration value="four"/>
<xs:enumeration value="five"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="readonly-and-default-values">
<xs:complexType>
<xs:sequence>
<xs:element name="elements">
<xs:complexType>
<xs:sequence>
<xs:element name="fixed_string" type="xs:normalizedString" fixed="fixed string element value"/>
<xs:element name="default_string" type="xs:normalizedString" default="default string element value"/>
<xs:element name="fixed_integer" type="xs:integer" fixed="3"/>
<xs:element name="default_integer" type="xs:integer" default="3"/>
<xs:element name="fixed_date" type="xs:date" fixed="1978-08-08"/>
<xs:element name="default_date" type="xs:date" default="1978-08-08"/>
<xs:element name="fixed_time" type="xs:time" fixed="14:45:00"/>
<xs:element name="default_time" type="xs:time" default="14:45:00"/>
<xs:element name="fixed_radio" type="five_string_values" fixed="three">
<xs:annotation><xs:appinfo><alf:appearance>full</alf:appearance></xs:appinfo></xs:annotation>
</xs:element>
<xs:element name="default_radio" type="five_string_values" default="three">
<xs:annotation><xs:appinfo><alf:appearance>full</alf:appearance></xs:appinfo></xs:annotation>
</xs:element>
<xs:element name="fixed_combobox" type="five_string_values" fixed="three">
<xs:annotation><xs:appinfo><alf:appearance>minimal</alf:appearance></xs:appinfo></xs:annotation>
</xs:element>
<xs:element name="default_combobox" type="five_string_values" default="three">
<xs:annotation><xs:appinfo><alf:appearance>minimal</alf:appearance></xs:appinfo></xs:annotation>
</xs:element>
<xs:element name="fixed_textarea" type="xs:string" fixed="fixed string value"/>
<xs:element name="default_textarea" type="xs:string" default="default string value"/>
<xs:element name="fixed_checkbox" type="xs:boolean" fixed="true"/>
<xs:element name="default_checkbox" type="xs:boolean" default="true"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="attributes">
<xs:complexType>
<xs:attribute name="fixed_string" type="xs:normalizedString" fixed="fixed string attribute value"/>
<xs:attribute name="default_string" type="xs:normalizedString" default="default string attribute value"/>
<xs:attribute name="fixed_integer" type="xs:integer" fixed="3"/>
<xs:attribute name="default_integer" type="xs:integer" default="3"/>
<xs:attribute name="fixed_date" type="xs:date" fixed="1978-08-08"/>
<xs:attribute name="default_date" type="xs:date" default="1978-08-08"/>
<xs:attribute name="fixed_time" type="xs:time" fixed="14:45:00"/>
<xs:attribute name="default_time" type="xs:time" default="14:45:00"/>
<xs:attribute name="fixed_radio" type="five_string_values" fixed="three">
<xs:annotation><xs:appinfo><alf:appearance>full</alf:appearance></xs:appinfo></xs:annotation>
</xs:attribute>
<xs:attribute name="default_radio" type="five_string_values" default="three">
<xs:annotation><xs:appinfo><alf:appearance>full</alf:appearance></xs:appinfo></xs:annotation>
</xs:attribute>
<xs:attribute name="fixed_combobox" type="five_string_values" fixed="three">
<xs:annotation><xs:appinfo><alf:appearance>minimal</alf:appearance></xs:appinfo></xs:annotation>
</xs:attribute>
<xs:attribute name="default_combobox" type="five_string_values" default="three">
<xs:annotation><xs:appinfo><alf:appearance>minimal</alf:appearance></xs:appinfo></xs:annotation>
</xs:attribute>
<xs:attribute name="fixed_textarea" type="xs:string" fixed="fixed attribute value"/>
<xs:attribute name="default_textarea" type="xs:string" default="default attribute value"/>
<xs:attribute name="fixed_checkbox" type="xs:boolean" fixed="true"/>
<xs:attribute name="default_checkbox" type="xs:boolean" default="true"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>