Author: aheritier
Date: Tue Sep 6 22:55:22 2005
New Revision: 279252
URL: http://svn.apache.org/viewcvs?rev=279252&view=rev
Log:
add breadcrumbs
Modified:
maven/maven-1/core/trunk/src/xsd/maven-navigation-1.0.xsd
Modified: maven/maven-1/core/trunk/src/xsd/maven-navigation-1.0.xsd
URL:
http://svn.apache.org/viewcvs/maven/maven-1/core/trunk/src/xsd/maven-navigation-1.0.xsd?rev=279252&r1=279251&r2=279252&view=diff
==============================================================================
--- maven/maven-1/core/trunk/src/xsd/maven-navigation-1.0.xsd (original)
+++ maven/maven-1/core/trunk/src/xsd/maven-navigation-1.0.xsd Tue Sep 6
22:55:22 2005
@@ -16,9 +16,7 @@
* limitations under the License.
*/
-->
-
-<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'>
-
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="project">
<xs:complexType>
<xs:sequence>
@@ -26,24 +24,20 @@
<xs:element ref="head" minOccurs="0"/>
<xs:element ref="body"/>
</xs:sequence>
- <xs:attribute name="name" type="xs:string" />
+ <xs:attribute name="name" type="xs:string"/>
</xs:complexType>
</xs:element>
-
<xs:element name="title" type="xs:string"/>
-
- <xs:element name="head">
- </xs:element>
-
+ <xs:element name="head"/>
<xs:element name="body">
<xs:complexType>
<xs:sequence>
- <xs:element ref="links" minOccurs="0" />
- <xs:element ref="menu" minOccurs="0" maxOccurs="unbounded" />
+ <xs:element ref="breadcrumbs" minOccurs="0"/>
+ <xs:element ref="links" minOccurs="0"/>
+ <xs:element ref="menu" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
-
<xs:element name="links">
<xs:complexType>
<xs:sequence>
@@ -51,32 +45,36 @@
</xs:sequence>
</xs:complexType>
</xs:element>
-
+ <xs:element name="breadcrumbs">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element ref="item" minOccurs="0" maxOccurs="unbounded"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
<xs:element name="menu">
<xs:complexType>
<xs:sequence>
<xs:element ref="item" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
- <xs:attribute name="name" type="xs:string" />
+ <xs:attribute name="name" type="xs:string"/>
+ <xs:attribute name="type" type="xs:string"/>
<!-- type is an optional entry that defines where the menu is destined
for.
Values - left-header (default), left-footer -->
- <xs:attribute name="type" type="xs:string" />
</xs:complexType>
</xs:element>
-
<xs:element name="item">
<xs:complexType>
<xs:sequence>
<!-- items can have other items -->
<xs:element ref="item" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
- <xs:attribute name="name" type="xs:string" />
- <xs:attribute name="href" type="xs:string" />
- <xs:attribute name="collapse" type="xs:boolean" />
- <xs:attribute name="target" type="xs:string" />
+ <xs:attribute name="name" type="xs:string"/>
+ <xs:attribute name="href" type="xs:string"/>
+ <xs:attribute name="collapse" type="xs:boolean"/>
+ <xs:attribute name="target" type="xs:string"/>
+ <xs:attribute name="img" type="xs:string"/>
<!-- img is an href that will be used as the image for link -->
- <xs:attribute name="img" type="xs:string" />
</xs:complexType>
</xs:element>
-
</xs:schema>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]