You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2007/02/19 14:02:33 UTC

svn commit: r509188 - in /cocoon/site/site/schema/portal: ./ cocoon-portal-1.0.xsd

Author: cziegeler
Date: Mon Feb 19 05:02:32 2007
New Revision: 509188

URL: http://svn.apache.org/viewvc?view=rev&rev=509188
Log:
Add portal schema

Added:
    cocoon/site/site/schema/portal/
    cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd   (with props)

Added: cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd
URL: http://svn.apache.org/viewvc/cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd?view=auto&rev=509188
==============================================================================
--- cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd (added)
+++ cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd Mon Feb 19 05:02:32 2007
@@ -0,0 +1,80 @@
+<?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.
+-->
+<!-- @version $Id$ -->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+            targetNamespace="http://cocoon.apache.org/schema/portal"
+            xmlns:tns="http://cocoon.apache.org/schema/portal"
+            xmlns="http://cocoon.apache.org/schema/portal">
+
+  <xsd:element name="event-aspects">
+    <xsd:complexType>
+      <xsd:sequence>
+    	<xsd:element ref="aspect" minOccurs="0" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="id" type="xsd:string" use="optional"/>
+      <xsd:attribute name="name" type="xsd:string" use="optional"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="renderer-aspects">
+    <xsd:complexType>
+      <xsd:sequence>
+    	<xsd:element ref="aspect" minOccurs="0" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="id" type="xsd:string" use="optional"/>
+      <xsd:attribute name="name" type="xsd:string" use="optional"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="profile-manager-aspects">
+    <xsd:complexType>
+      <xsd:sequence>
+    	<xsd:element ref="aspect" minOccurs="0" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="id" type="xsd:string" use="optional"/>
+      <xsd:attribute name="name" type="xsd:string" use="optional"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="portal-manager-aspects">
+    <xsd:complexType>
+      <xsd:sequence>
+    	<xsd:element ref="aspect" minOccurs="0" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="id" type="xsd:string" use="optional"/>
+      <xsd:attribute name="name" type="xsd:string" use="optional"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="aspect">
+    <xsd:complexType>
+      <xsd:sequence>
+    	<xsd:element ref="property" minOccurs="0" maxOccurs="unbounded"/>
+      </xsd:sequence>
+      <xsd:attribute name="ref" type="xsd:string" use="optional"/>
+      <xsd:attribute name="type" type="xsd:string" use="optional"/>
+    </xsd:complexType>
+  </xsd:element>
+
+  <xsd:element name="property">
+    <xsd:complexType>
+      <xsd:attribute name="name" type="xsd:string" use="required"/>
+      <xsd:attribute name="value" type="xsd:string" use="required"/>
+    </xsd:complexType>
+  </xsd:element>
+</xsd:schema>
\ No newline at end of file

Propchange: cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/site/site/schema/portal/cocoon-portal-1.0.xsd
------------------------------------------------------------------------------
    svn:keywords = Id