You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by si...@apache.org on 2011/11/01 10:28:34 UTC

svn commit: r1195889 - /cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd

Author: simonetripodi
Date: Tue Nov  1 09:28:34 2011
New Revision: 1195889

URL: http://svn.apache.org/viewvc?rev=1195889&view=rev
Log:
added first definition of serializer element

Modified:
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd

Modified: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd?rev=1195889&r1=1195888&r2=1195889&view=diff
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd (original)
+++ cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd Tue Nov  1 09:28:34 2011
@@ -80,4 +80,49 @@
     </xsd:complexType>
   </xsd:element>
 
+  <xsd:element name="serializer">
+    <xsd:annotation>
+      <xsd:documentation>This element contains org.apache.cocoon.sax.component.XMLSerializer definition.</xsd:documentation>
+    </xsd:annotation>
+    <xsd:complexType>
+      <xsd:attribute name="cdataSectionElements" type="xsd:string" use="optional"/>
+      <xsd:attribute name="doctypePublic" type="xsd:string" use="optional"/>
+      <xsd:attribute name="doctypeSystem" type="xsd:string" use="optional"/>
+      <xsd:attribute name="encoding" type="xsd:string" use="optional"/>
+      <xsd:attribute name="indent" use="optional">
+        <xsd:simpleType>
+          <xsd:restriction base="xsd:string">
+            <xsd:enumeration value="yes"/>
+            <xsd:enumeration value="true"/>
+            <xsd:enumeration value="no"/>
+            <xsd:enumeration value="off"/>
+          </xsd:restriction>
+        </xsd:simpleType>
+      </xsd:attribute>
+      <xsd:attribute name="mediaType" type="xsd:string" use="optional"/>
+      <xsd:attribute name="method" type="xsd:string" use="optional"/>
+      <xsd:attribute name="omitXmlDeclration" use="optional">
+        <xsd:simpleType>
+          <xsd:restriction base="xsd:string">
+            <xsd:enumeration value="yes"/>
+            <xsd:enumeration value="true"/>
+            <xsd:enumeration value="no"/>
+            <xsd:enumeration value="off"/>
+          </xsd:restriction>
+        </xsd:simpleType>
+      </xsd:attribute>
+      <xsd:attribute name="standalone" use="optional">
+        <xsd:simpleType>
+          <xsd:restriction base="xsd:string">
+            <xsd:enumeration value="yes"/>
+            <xsd:enumeration value="true"/>
+            <xsd:enumeration value="no"/>
+            <xsd:enumeration value="off"/>
+          </xsd:restriction>
+        </xsd:simpleType>
+      </xsd:attribute>
+      <xsd:attribute name="version" type="xsd:string" use="optional"/>
+    </xsd:complexType>
+  </xsd:element>
+
 </xsd:schema>