Files
alfresco-community-repo/source/test-resources/xforms/unit-tests/simple-test/upload-simple-test.xsd
Ariel Backenroth 9c3197d467 most of the way through making the wcm tinymce extensions available from create html. still need to address:
- IE issues
- how to handle uploaded files from the create html context
- break out the filepicker backing code into its own bean (it's mingled into the XFormsBean at the moment)

also reorganizing and pruning the xforms unit test tree.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5613 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-05-03 21:26:41 +00:00

16 lines
725 B
XML

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:element name="upload-simple">
<xs:complexType>
<xs:sequence>
<xs:element name="string_with_default" type="xs:normalizedString" default="default value"/>
<xs:element name="file_from_element" type="xs:anyURI" minOccurs="1" maxOccurs="1"/>
<xs:element name="file_from_element_with_default" type="xs:anyURI" default="/index.jsp"/>
</xs:sequence>
<xs:attribute name="file_from_attribute" type="xs:anyURI" use="required"/>
<xs:attribute name="file_from_attribute_fixed" type="xs:anyURI" use="required" fixed="/index.jsp"/>
</xs:complexType>
</xs:element>
</xs:schema>