mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
multibyte fixes appearance hints for textareas (full = rich text editor, minimal = plain text) using xs:string for xforms:textarea using xs:normalizedString for xforms:input IMPORTANT: you will need to recreate all forms in the web project after i check this in. and for any of your own forms, you need to use xs:normalizedString as the type for textfields. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5028 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:alf="http://www.alfresco.org/alf"
|
|
elementFormDefault="qualified"
|
|
targetNamespace="http://www.alfresco.org/alf">
|
|
<xs:complexType name="multi">
|
|
<xs:sequence>
|
|
<xs:element name="multi1" type="xs:normalizedString"/>
|
|
<xs:element name="multi2" type="xs:normalizedString"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
<xs:element name="xml-namespaces-test">
|
|
<xs:complexType>
|
|
<xs:sequence>
|
|
<xs:element name="string_with_default" type="xs:normalizedString" default="default string value"/>
|
|
<xs:element name="string_no_default" type="xs:normalizedString"/>
|
|
<xs:element name="multi" type="alf:multi" minOccurs="2" maxOccurs="3"/>
|
|
</xs:sequence>
|
|
<xs:attribute name="string_attribute_with_default" type="xs:normalizedString" default="default string value"/>
|
|
<xs:attribute name="string_attribute_no_default" type="xs:normalizedString"/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|