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 09:55:01 UTC

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

Author: simonetripodi
Date: Tue Nov  1 08:55:00 2011
New Revision: 1195877

URL: http://svn.apache.org/viewvc?rev=1195877&view=rev
Log:
first checkin of cocoon-cli XSD

Added:
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd   (with props)

Added: 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=1195877&view=auto
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd (added)
+++ cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd Tue Nov  1 08:55:00 2011
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+
+  <xsd:annotation>
+    <xsd:documentation>Schema for the Cocoon 3 CLI descriptor language.</xsd:documentation>
+  </xsd:annotation>
+
+  <xsd:element name="pipelines">
+    <xsd:annotation>
+      <xsd:documentation>This element contains all pipeline definition.</xsd:documentation>
+    </xsd:annotation>
+    <xsd:complexType>
+      <xsd:sequence>
+        <xsd:element ref="pipeline" minOccurs="1" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="name" type="xsd:string" use="required"/>
+      <xsd:attribute name="default" type="xsd:string" use="required"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="pipeline">
+    <xsd:annotation>
+      <xsd:documentation>This element contains org.apache.cocoon.pipeline.Pipeline definition.</xsd:documentation>
+    </xsd:annotation>
+    <xsd:complexType>
+      <xsd:attribute name="id" use="required"/>
+      <xsd:attribute name="type" use="required">
+        <xsd:simpleType>
+          <xsd:restriction base="xsd:string">
+            <xsd:enumeration value="async-cache"/>
+            <xsd:enumeration value="non-caching"/>
+            <xsd:enumeration value="caching"/>
+          </xsd:restriction>
+        </xsd:simpleType>
+      </xsd:attribute>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="cleaning">
+    <xsd:annotation>
+      <xsd:documentation>This element contains org.apache.cocoon.sax.component.CleaningTransformer definition.</xsd:documentation>
+    </xsd:annotation>
+  </xsd:element>
+
+  <xsd:element name="i18n">
+    <xsd:annotation>
+      <xsd:documentation>This element contains org.apache.cocoon.sax.component.CleaningTransformer definition.</xsd:documentation>
+    </xsd:annotation>
+    <xsd:complexType>
+      <xsd:attribute name="locale" type="xsd:string" use="required"/>
+      <xsd:attribute name="bundle" type="xsd:string" use="required"/>
+      <xsd:attribute name="untranslated" type="xsd:string"/>
+    </xsd:complexType>
+  </xsd:element>
+
+</xsd:schema>

Propchange: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/org/apache/cocoon/cli/cocoon-cli-1.0.xsd
------------------------------------------------------------------------------
    svn:mime-type = text/xml