You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2009/03/19 21:31:23 UTC

svn commit: r756172 - in /ant/ivy/core/branches/2.1.x/doc: ivy.xsd printTemplate.html release-notes.html template.html toc.json

Author: maartenc
Date: Thu Mar 19 20:31:23 2009
New Revision: 756172

URL: http://svn.apache.org/viewvc?rev=756172&view=rev
Log:
Preparing 2.1.0-rc1 release...

Added:
    ant/ivy/core/branches/2.1.x/doc/ivy.xsd   (with props)
    ant/ivy/core/branches/2.1.x/doc/release-notes.html   (with props)
Modified:
    ant/ivy/core/branches/2.1.x/doc/printTemplate.html
    ant/ivy/core/branches/2.1.x/doc/template.html
    ant/ivy/core/branches/2.1.x/doc/toc.json

Added: ant/ivy/core/branches/2.1.x/doc/ivy.xsd
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.1.x/doc/ivy.xsd?rev=756172&view=auto
==============================================================================
--- ant/ivy/core/branches/2.1.x/doc/ivy.xsd (added)
+++ ant/ivy/core/branches/2.1.x/doc/ivy.xsd Thu Mar 19 20:31:23 2009
@@ -0,0 +1,280 @@
+<?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.    
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
+
+	<xs:complexType name="configurations-conf">
+        <xs:attribute name="name" type="xs:string" use="required"/>
+        <xs:attribute name="transitive" type="xs:boolean"/>
+        <xs:attribute name="extends" type="xs:string"/>
+        <xs:attribute name="description" type="xs:string"/>
+        <xs:attribute name="deprecated" type="xs:string"/>
+        <xs:attribute name="visibility" default="public">
+			<xs:simpleType>
+				<xs:restriction base="xs:string">
+					<xs:enumeration value="private"/>
+					<xs:enumeration value="public"/>
+				</xs:restriction>
+			</xs:simpleType>
+		</xs:attribute>
+        <xs:anyAttribute namespace="##other" processContents="lax" />
+	</xs:complexType>
+
+	<xs:complexType name="global-exclude">
+        <xs:sequence>
+      		<xs:element name="conf" minOccurs="0" maxOccurs="unbounded">
+            	<xs:complexType>
+		            <xs:attribute name="name" type="xs:string" use="required"/>
+            	</xs:complexType>
+      		</xs:element>
+        </xs:sequence>
+        <xs:attribute name="org" type="xs:string"/>
+        <xs:attribute name="module" type="xs:string"/>
+        <xs:attribute name="artifact" type="xs:string"/>
+        <xs:attribute name="type" type="xs:string"/>
+        <xs:attribute name="ext" type="xs:string"/>
+        <xs:attribute name="conf" type="xs:string"/>
+        <xs:attribute name="matcher" type="xs:string"/>
+        <xs:anyAttribute namespace="##other" processContents="lax" />
+	</xs:complexType>
+
+  <xs:element name="ivy-module">
+      <xs:complexType>
+        <xs:sequence>
+  		    <xs:element name="info">
+            	<xs:complexType>
+			        <xs:sequence>
+			      		<xs:element name="license" minOccurs="0" maxOccurs="unbounded">
+			            	<xs:complexType>
+					            <xs:attribute name="name" type="xs:string" use="required"/>
+					            <xs:attribute name="url" type="xs:string"/>
+			            	</xs:complexType>
+			      		</xs:element>
+			      		<xs:element name="ivyauthor" minOccurs="0" maxOccurs="unbounded">
+			            	<xs:complexType>
+					            <xs:attribute name="name" type="xs:string" use="required"/>
+					            <xs:attribute name="url" type="xs:string"/>
+			            	</xs:complexType>
+			      		</xs:element>
+			      		<xs:element name="repository" minOccurs="0" maxOccurs="unbounded">
+			            	<xs:complexType>
+					            <xs:attribute name="name" type="xs:string" use="required"/>
+					            <xs:attribute name="url" type="xs:string"/>
+					            <xs:attribute name="pattern" type="xs:string"/>
+					            <xs:attribute name="ivys" type="xs:boolean"/>
+					            <xs:attribute name="artifacts" type="xs:boolean"/>
+			            	</xs:complexType>
+			      		</xs:element>
+			      		<xs:element name="description" minOccurs="0" maxOccurs="1">
+			            	<xs:complexType mixed="true">
+			            			<xs:sequence>
+			            				<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
+					            	</xs:sequence>
+					            <xs:attribute name="homepage" type="xs:string"/>
+			            	</xs:complexType>
+			      		</xs:element>
+			      		<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax"/>
+			        </xs:sequence>
+		            <xs:attribute name="organisation" type="xs:string" use="required"/>
+		            <xs:attribute name="module" type="xs:string" use="required"/>
+		            <xs:attribute name="branch" type="xs:string"/>
+		            <xs:attribute name="revision" type="xs:string"/>
+		            <xs:attribute name="status" type="xs:string"/>
+		            <xs:attribute name="publication" type="xs:string"/>
+		            <xs:attribute name="resolver" type="xs:string"/>
+		            <xs:attribute name="namespace" type="xs:string"/>
+		            <xs:attribute name="default" type="xs:boolean"/>
+		            <xs:anyAttribute namespace="##other" processContents="lax" />
+	            </xs:complexType>
+      		</xs:element>
+      		<xs:element name="configurations" minOccurs="0">
+			      <xs:complexType>
+				        <xs:sequence>
+				        	<xs:choice minOccurs="0" maxOccurs="unbounded">
+					      		<xs:element name="conf" type="configurations-conf"/>
+					      		<xs:element name="include">
+					            	<xs:complexType>
+							            <xs:attribute name="file" type="xs:string"/>
+							            <xs:attribute name="url"  type="xs:string"/>
+					            	</xs:complexType>
+					      		</xs:element>
+					      	</xs:choice>
+				        </xs:sequence>
+						<xs:attribute name="defaultconfmapping" type="xs:string"/>				  
+						<xs:attribute name="confmappingoverride" type="xs:boolean" />      
+			      </xs:complexType>
+      		</xs:element>
+      		<xs:element name="publications" minOccurs="0">
+			      <xs:complexType>
+				        <xs:sequence>
+				      		<xs:element name="artifact" minOccurs="0" maxOccurs="unbounded">
+				            	<xs:complexType>
+							        <xs:sequence>
+							      		<xs:element name="conf" minOccurs="0" maxOccurs="unbounded">
+							            	<xs:complexType>
+									            <xs:attribute name="name" type="xs:string" use="required"/>
+							            	</xs:complexType>
+							      		</xs:element>
+							        </xs:sequence>
+						            <xs:attribute name="name" type="xs:string"/>
+						            <xs:attribute name="type" type="xs:string"/>
+						            <xs:attribute name="ext" type="xs:string"/>
+						            <xs:attribute name="conf" type="xs:string"/>
+						            <xs:attribute name="url" type="xs:string"/>
+						            <xs:anyAttribute namespace="##other" processContents="lax" />
+				            	</xs:complexType>
+				      		</xs:element>
+				        </xs:sequence>
+						<xs:attribute name="defaultconf" type="xs:string"/>				  
+			      </xs:complexType>
+      		</xs:element>
+      		<xs:element name="dependencies" minOccurs="0">
+			      <xs:complexType>
+				        <xs:sequence>
+				      		<xs:element name="dependency" minOccurs="0" maxOccurs="unbounded">
+				            	<xs:complexType>
+							        <xs:sequence>
+							      		<xs:element name="conf" minOccurs="0" maxOccurs="unbounded">
+							            	<xs:complexType>
+										        <xs:sequence>
+										      		<xs:element name="mapped" minOccurs="0" maxOccurs="unbounded">
+										            	<xs:complexType>
+												            <xs:attribute name="name" type="xs:string" use="required"/>
+										            	</xs:complexType>
+										      		</xs:element>
+										        </xs:sequence>
+									            <xs:attribute name="name" type="xs:string" use="required"/>
+									            <xs:attribute name="mapped" type="xs:string"/>
+							            	</xs:complexType>
+							      		</xs:element>
+							      		<xs:element name="artifact" minOccurs="0" maxOccurs="unbounded">
+							            	<xs:complexType>
+										        <xs:sequence>
+										      		<xs:element name="conf" minOccurs="0" maxOccurs="unbounded">
+										            	<xs:complexType>
+												            <xs:attribute name="name" type="xs:string" use="required"/>
+										            	</xs:complexType>
+										      		</xs:element>
+										        </xs:sequence>
+									            <xs:attribute name="name" type="xs:string" use="required"/>
+									            <xs:attribute name="type" type="xs:string"/>
+									            <xs:attribute name="ext" type="xs:string"/>
+									            <xs:attribute name="conf" type="xs:string"/>
+									            <xs:attribute name="url" type="xs:string"/>
+									            <xs:anyAttribute namespace="##other" processContents="lax" />
+							            	</xs:complexType>
+							      		</xs:element>
+							      		<xs:element name="include" minOccurs="0" maxOccurs="unbounded">
+							            	<xs:complexType>
+										        <xs:sequence>
+										      		<xs:element name="conf" minOccurs="0" maxOccurs="unbounded">
+										            	<xs:complexType>
+												            <xs:attribute name="name" type="xs:string" use="required"/>
+										            	</xs:complexType>
+										      		</xs:element>
+										        </xs:sequence>
+									            <xs:attribute name="name" type="xs:string"/>
+									            <xs:attribute name="type" type="xs:string"/>
+									            <xs:attribute name="ext" type="xs:string"/>
+									            <xs:attribute name="conf" type="xs:string"/>
+									            <xs:attribute name="matcher" type="xs:string"/>
+									            <xs:anyAttribute namespace="##other" processContents="lax" />
+							            	</xs:complexType>
+							      		</xs:element>
+							      		<xs:element name="exclude" minOccurs="0" maxOccurs="unbounded">
+							            	<xs:complexType>
+										        <xs:sequence>
+										      		<xs:element name="conf" minOccurs="0" maxOccurs="unbounded">
+										            	<xs:complexType>
+												            <xs:attribute name="name" type="xs:string" use="required"/>
+										            	</xs:complexType>
+										      		</xs:element>
+										        </xs:sequence>
+									            <xs:attribute name="org" type="xs:string"/>
+									            <xs:attribute name="module" type="xs:string"/>
+									            <xs:attribute name="name" type="xs:string"/>
+									            <xs:attribute name="type" type="xs:string"/>
+									            <xs:attribute name="ext" type="xs:string"/>
+									            <xs:attribute name="conf" type="xs:string"/>
+									            <xs:attribute name="matcher" type="xs:string"/>
+									            <xs:anyAttribute namespace="##other" processContents="lax" />
+							            	</xs:complexType>
+							      		</xs:element>
+							        </xs:sequence>
+						            <xs:attribute name="org" type="xs:string"/>
+						            <xs:attribute name="name" type="xs:string" use="required"/>
+						            <xs:attribute name="branch" type="xs:string"/>
+						            <xs:attribute name="branchConstraint" type="xs:string"/>
+						            <xs:attribute name="rev" type="xs:string" use="required"/>
+						            <xs:attribute name="revConstraint" type="xs:string"/>
+						            <xs:attribute name="force" type="xs:boolean"/>
+						            <xs:attribute name="changing" type="xs:boolean" default="false"/>
+						            <xs:attribute name="transitive" type="xs:boolean" default="true"/>
+						            <xs:attribute name="conf" type="xs:string"/>
+						            <xs:anyAttribute namespace="##other" processContents="lax" />
+				            	</xs:complexType>
+				      		</xs:element>
+				      		<xs:element name="exclude" type="global-exclude" minOccurs="0" maxOccurs="unbounded" />
+				      		<xs:element name="override" minOccurs="0" maxOccurs="unbounded">
+				            	<xs:complexType>
+						            <xs:attribute name="org" type="xs:string"/>
+						            <xs:attribute name="module" type="xs:string"/>
+						            <xs:attribute name="matcher" type="xs:string"/>
+						            <xs:attribute name="rev" type="xs:string"/>
+						            <xs:attribute name="branch" type="xs:string"/>
+				            	</xs:complexType>
+				      		</xs:element>
+				      		<xs:element name="conflict" minOccurs="0" maxOccurs="unbounded">
+				            	<xs:complexType>
+						            <xs:attribute name="org" type="xs:string"/>
+						            <xs:attribute name="module" type="xs:string"/>
+						            <xs:attribute name="manager" type="xs:string"/>
+						            <xs:attribute name="rev" type="xs:string"/>
+						            <xs:attribute name="matcher" type="xs:string"/>
+						            <xs:anyAttribute namespace="##other" processContents="lax" />
+				            	</xs:complexType>
+				      		</xs:element>
+				        </xs:sequence>
+						<xs:attribute name="defaultconf" type="xs:string"/>				        
+						<xs:attribute name="defaultconfmapping" type="xs:string"/>				        
+                        <xs:attribute name="confmappingoverride" type="xs:boolean" />
+			      </xs:complexType>
+      		</xs:element>
+      		<xs:element name="conflicts" minOccurs="0">
+			      <xs:complexType>
+				        <xs:sequence>
+				      		<xs:element name="manager" maxOccurs="unbounded">
+				            	<xs:complexType>
+						            <xs:attribute name="org" type="xs:string"/>
+						            <xs:attribute name="module" type="xs:string"/>
+						            <xs:attribute name="name" type="xs:string"/>
+						            <xs:attribute name="rev" type="xs:string"/>
+						            <xs:attribute name="matcher" type="xs:string"/>
+						            <xs:anyAttribute namespace="##other" processContents="lax" />
+				            	</xs:complexType>
+				      		</xs:element>
+				        </xs:sequence>
+			      </xs:complexType>
+      		</xs:element>
+        </xs:sequence>
+        <xs:attribute name="version" type="xs:string" use="required"/>
+      </xs:complexType>
+  </xs:element>
+
+</xs:schema>

Propchange: ant/ivy/core/branches/2.1.x/doc/ivy.xsd
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: ant/ivy/core/branches/2.1.x/doc/printTemplate.html
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.1.x/doc/printTemplate.html?rev=756172&r1=756171&r2=756172&view=diff
==============================================================================
--- ant/ivy/core/branches/2.1.x/doc/printTemplate.html (original)
+++ ant/ivy/core/branches/2.1.x/doc/printTemplate.html Thu Mar 19 20:31:23 2009
@@ -20,7 +20,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
 <head>
 	<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
-<title>${title} | Ivy</title>
+<title>${title} | Ivy 2.1.0-rc1</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <link rel="stylesheet" type="text/css" href="style/print-style.css" />
 </head>

Added: ant/ivy/core/branches/2.1.x/doc/release-notes.html
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.1.x/doc/release-notes.html?rev=756172&view=auto
==============================================================================
--- ant/ivy/core/branches/2.1.x/doc/release-notes.html (added)
+++ ant/ivy/core/branches/2.1.x/doc/release-notes.html Thu Mar 19 20:31:23 2009
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<!--
+   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.    
+-->
+<html>
+<head>
+	<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
+	<script type="text/javascript">var xookiConfig = {level: 0};</script>	
+	<script type="text/javascript" src="xooki/xooki.js"></script>
+</head>
+<body>
+	<textarea id="xooki-source">
+<h2>Announcement</h2>
+
+
+<h2>Release Notes</h2>
+
+CONTENTS
+1. What is Apache Ivy?
+2. Status of this release
+3. How to Get Involved
+4. How to Report Issues
+5. Committers and Contributors for this release
+6. List of Changes in this Release   
+   
+   
+<h3>1. What is Apache Ivy?</h3>
+
+Apache Ivy is a tool for managing (recording, tracking, resolving and reporting) 
+project dependencies. 
+It is characterized by the following:
+
+   1. flexibility and configurability 
+   		Apache Ivy is essentially process agnostic and is not tied to any 
+   		methodology or structure. 
+   		Instead it provides the necessary flexibility and configurability 
+   		to be adapted to a broad range of dependency management and build 
+   		processes.
+   2. tight integration with Apache Ant
+   		while available as a standalone tool, Apache Ivy works particularly well 
+   		with Apache Ant providing a number of powerful Ant tasks ranging 
+   		from dependency resolution to dependency reporting and publication.
+
+<h3>2. Status of this release</h3>
+
+This is the first release candidate of Ivy targetting 2.1.0. 
+
+As a release candidate version, we strongly encourage the use of this version for 
+testing and validation. From now on, features are frozen until final 2.1.0 version, 
+only bug fixes may be applied before 2.1.0. If no outstanding bugs are reported 
+with this release candidate, it will promoted to 2.1.0 about two weeks after this
+release candidate. 
+
+<h3>3. How to Get Involved</h3>
+
+The Apache Ivy project really needs and appreciates any contributions, 
+including documentation help, source code and feedback.  If you are interested
+in contributing, please visit http://ant.apache.org/ivy/get-involved.html.
+
+<h3>4. How to Report Issues</h3>
+
+The Apache Ivy project uses JIRA for issue tracking.  Please report any 
+issues you find at http://issues.apache.org/jira/browse/IVY
+
+<h3>5. Committers and Contributors for this Release</h3>
+
+Here is the list of people who have contributed source code and documentation
+to this release. Many thanks to all of them, and also to the whole Ivy community
+contributing ideas and feedback, and promoting the use of Ivy. The list would be too
+long, but Ivy couldn't be what it is without you!
+
+ Committers
+	Maarten Coene
+	Xavier Hanin
+	Nicolas Lalevee
+	Gilles Scokart
+
+ Contributors
+ 	Carlton Brown
+ 	Martin Eigenbrodt
+ 	John Gibson
+ 	Randy Nott
+
+For the list of people who have contributed since Ivy inception, see CHANGES.txt file.
+
+<h3>6. List of Changes in this Release</h3>
+
+For a full release history of Ivy see the file CHANGES.txt
+
+For details about the following changes, check our JIRA install at 
+http://issues.apache.org/jira/browse/ivy
+
+List of changes since Ivy 2.0.0:
+- IMPROVEMENT: Fail the retrieve when multiple artifacts of same module are mapped to same file (IVY-1050)
+- IMPROVEMENT: ivy initialization shouldn't fail if properties file doesn't exist (IVY-1038)
+- IMPROVEMENT: ivy:resolve ant task does not support "branch" attribute (IVY-1035)
+- IMPROVEMENT: Ability to strip revConstraint attribute from delivered Ivy files (IVY-989)
+- IMPROVEMENT: enhanced error message when defining an artifact for an unknown configuration.
+- IMPROVEMENT: display the revision of the resolved module in ivy-report.xsl (IVY-1024) (thanks to Carlton Brown)
+- IMPROVEMENT: resolver attribute for buildnumber task (IVY-1019) (thanks to Martin Eigenbrodt)
+- IMPROVEMENT: add refresh parameter to post resolve tasks (IVY-1017)
+- IMPROVEMENT: Remove excessive HEAD requests for URL repository (IVY-996)
+- IMPROVEMENT: add -version option on command line (IVY-1014)
+- IMPROVEMENT: support resolve refresh in command line (IVY-1013)
+- IMPROVEMENT: Error message is not clear when specifying an invalid value for checksums (IVY-977)
+- IMPROVEMENT: catch AccessControlException on System.getProperties() (IVY-1015)
+
+- FIX: Error message: "impossible to get artifacts when data has not been loaded" , on certain modules only (IVY-987)
+- FIX: Ivy doesn't handle the classifier attribute of artifacts inside dependency elements (IVY-1041)
+- FIX: Buildnumber task does not work for chained resolvers (IVY-1037)
+- FIX: Dependencies don't inherit exclusions from dependencyManagement (IVY-974) (thanks to John Gibson)
+- FIX: Dependency Configuration Negation does not work (IVY-982)
+- FIX: Ivy retrieve does not honor validate="false" from ivysettings (IVY-992)
+- FIX: Snapshot issues when using ibiblio resolver with m2compatible is false (IVY-1028)
+- FIX: Ivy Standalone hangs after publishing to SSH resolver (IVY-1009)
+- FIX: overwrite='false' completely prevents publishing into url repositories (IVY-1007)
+- FIX: Fixed broken logo link in ivy-report.xsl (IVY-1024) (thanks to Carlton Brown)
+- FIX: Support for opensll sha1 and md5 checksum (IVY-1006)
+- FIX: TTL does not work as expected (IVY-1012)
+- FIX: Listing of URL's under a given URL does not handle fully specified URL's (IVY-959) (thanks to Randy Nott)
+- FIX: <ivy:buildnumber> returns wrong result when resolve fails (IVY-970)
+- FIX: listing possible token values doesn't work properly for the ibiblio resolver
+- FIX: Ivy deliver fails to replace dynamic revision (IVY-999) (thanks to Martin Eigenbrodt)
+</textarea>
+<script type="text/javascript">xooki.postProcess();</script>
+</body>
+</html>

Propchange: ant/ivy/core/branches/2.1.x/doc/release-notes.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: ant/ivy/core/branches/2.1.x/doc/template.html
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.1.x/doc/template.html?rev=756172&r1=756171&r2=756172&view=diff
==============================================================================
--- ant/ivy/core/branches/2.1.x/doc/template.html (original)
+++ ant/ivy/core/branches/2.1.x/doc/template.html Thu Mar 19 20:31:23 2009
@@ -20,7 +20,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
 <head>
 	<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
-<title>${title} | Ivy Documentation</title>
+<title>${title} | Ivy 2.1.0-rc1 Documentation</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <link rel="stylesheet" type="text/css" href="style/style.css" />
   <script src="js/jquery.pack.js" type="text/javascript"></script>

Modified: ant/ivy/core/branches/2.1.x/doc/toc.json
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.1.x/doc/toc.json?rev=756172&r1=756171&r2=756172&view=diff
==============================================================================
--- ant/ivy/core/branches/2.1.x/doc/toc.json (original)
+++ ant/ivy/core/branches/2.1.x/doc/toc.json Thu Mar 19 20:31:23 2009
@@ -5,6 +5,13 @@
         "title":"Documentation",
         "children": [
             {
+              "id":"release-notes",
+              "title":"Release Notes",
+              "children": [
+
+                ]
+            },
+            {
               "id":"tutorial",
               "title":"Tutorials",
               "children": [