You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2009/06/23 16:49:49 UTC

svn commit: r787696 [3/11] - in /ant/ivy/site/target: history/2.0.0-rc1/samples/ history/2.0.0-rc2/samples/ history/2.0.0/samples/ history/2.1.0-rc1/samples/ history/latest-release/samples/ history/trunk/ history/trunk/dev/ history/trunk/ivyfile/ histo...

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-doc.xsl
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-doc.xsl?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-doc.xsl (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-doc.xsl Tue Jun 23 14:49:47 2009
@@ -1,279 +1,279 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-   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.    
--->
-<xsl:stylesheet version="1.0"
-xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-<xsl:template match="/ivy-module">
-    <xsl:variable name="repositories" select="/ivy-module/info/repository"/>
-    <xsl:variable name="ivyauthors" select="/ivy-module/info/ivyauthor"/>
-    <xsl:variable name="licenses" select="/ivy-module/info/license"/>
-    <xsl:variable name="configurations" select="/ivy-module/configurations"/>
-    <xsl:variable name="public.conf" select="$configurations/conf[not(@visibility) and not(@deprecated)] | $configurations/conf[@visibility='public' and not(@deprecated)]"/>
-    <xsl:variable name="deprecated.conf" select="configurations/conf[not(@visibility) and @deprecated] | configurations/conf[@visibility='public' and @deprecated]"/>
-    <xsl:variable name="private.conf" select="configurations/conf[@visibility='private']"/>
-
-    <xsl:variable name="artifacts" select="/ivy-module/publications/artifact"/>
-    <xsl:variable name="dependencies" select="/ivy-module/dependencies/dependency"/>
-
-  <html>
-  <head>
-    <title><xsl:value-of select="info/@module"/> by <xsl:value-of select="info/@organisation"/> :: Ivy description</title>
-    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-    <meta http-equiv="content-language" content="en" />
-    <meta name="robots" content="index,follow" />
-    <link rel="stylesheet" type="text/css" href="ivy-style.css" /> 
-  </head>
-  <body>
-    <div id="logo"><a href="http://ivy.jayasoft.org/"><img src="http://ivy.jayasoft.org/logo.png"/></a><br/><a id="rep" href="http://ivyrep.jayasoft.org/">Ivy Repository</a></div>
-    <h1>
-    <span id="module">
-	        <xsl:element name="a">
-	            <xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:value-of select="info/@organisation"/>/<xsl:value-of select="info/@module"/>/</xsl:attribute>
-	            <xsl:value-of select="info/@module"/>
-	        </xsl:element>
-    </span> 
-    by 
-    <span id="organisation">
-	        <xsl:element name="a">
-	            <xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:value-of select="info/@organisation"/>/</xsl:attribute>
-	            <xsl:value-of select="info/@organisation"/>
-	        </xsl:element> 
-    </span></h1>
-    <div id="revision"><span id="revision">Revision: </span><xsl:value-of select="info/@revision"/></div>
-    <table class="header">
-    <tr><td class="title">Status</td><td class="value"><xsl:value-of select="info/@status"/></td></tr>
-    <tr><td class="title">Home Page</td><td class="value">
-    	<xsl:if test="info/description/@homepage">
-	        <xsl:element name="a">
-	            <xsl:attribute name="href"><xsl:value-of select="info/description/@homepage"/></xsl:attribute>
-	            <xsl:value-of select="info/description/@homepage"/>
-	        </xsl:element>
-    	</xsl:if>
-    </td></tr>
-    <tr><td class="title">Licenses</td><td class="value">
-	    <xsl:for-each select="$licenses">
-    	<xsl:if test="@url">
-	        <xsl:element name="a">
-	            <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
-		    	<xsl:value-of select="@name"/>
-	        </xsl:element>
-    	</xsl:if>
-    	<xsl:if test="not(@url)">
-		    	<xsl:value-of select="@name"/>
-    	</xsl:if>
-	    </xsl:for-each>
-    </td></tr>
-    <tr><td class="title">Ivy Authors</td><td class="value">
-	    <xsl:for-each select="$ivyauthors">
-    	<xsl:if test="@url">
-	        <xsl:element name="a">
-	            <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
-		    	<xsl:value-of select="@name"/>
-	        </xsl:element>
-    	</xsl:if>
-    	<xsl:if test="not(@url)">
-		    	<xsl:value-of select="@name"/>
-    	</xsl:if>
-	    </xsl:for-each>
-    </td></tr>
-    <tr><td class="title">Description</td><td class="value"><xsl:copy-of select="info/description"/></td></tr>
-    </table>
-    
-    <xsl:if test="count($repositories) > 0">
-    <div id="repositories">
-    <h2>Public Repositories</h2>
-    <table>
-    <thead>
-    <tr>
-      <th>Name</th>
-      <th>Url</th>
-      <th>Pattern</th>
-      <th>Ivys</th>
-      <th>Artifacts</th>
-    </tr>
-    </thead>
-    <tbody>
-    <xsl:for-each select="$repositories">
-    <tr>
-      <td><xsl:value-of select="@name"/></td>
-      <td>
-        <xsl:element name="a">
-            <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
-	    	<xsl:value-of select="@url"/>
-        </xsl:element>
-      </td>
-      <td><xsl:value-of select="@pattern"/></td>
-      <td><xsl:value-of select="@ivys"/></td>
-      <td><xsl:value-of select="@artifacts"/></td>
-    </tr>
-    </xsl:for-each>
-    </tbody>
-    </table>
-    </div>
-    </xsl:if>
-    
-    <div id="public-confs" class="conf">
-    <h2>Public Configurations</h2>
-    <table>
-    <thead>
-    <tr>
-      <th class="conf-name">Name</th>
-      <th class="conf-desc">Description</th>
-      <th class="conf-extends">Extends</th>
-    </tr>
-    </thead>
-    <tbody>
-    <xsl:for-each select="$public.conf">
-    <tr>
-      <td><xsl:value-of select="@name"/></td>
-      <td><xsl:value-of select="@description"/></td>
-      <td><xsl:value-of select="@extends"/></td>
-    </tr>
-    </xsl:for-each>
-    <xsl:if test="count($public.conf) = 0">
-    <tr>
-      <td>default</td>
-      <td></td>
-      <td></td>
-    </tr>
-    </xsl:if>
-    </tbody>
-    </table>
-    </div>
-    
-    <xsl:if test="count($deprecated.conf) > 0">
-    <div id="deprecated-confs" class="conf">
-    <h2>Deprecated Configurations</h2>
-    <table>
-    <thead>
-    <tr>
-      <th class="conf-name">Name</th>
-      <th class="conf-desc">Description</th>
-      <th class="conf-extends">Extends</th>
-    </tr>
-    </thead>
-    <tbody>
-    <xsl:for-each select="$deprecated.conf">
-    <tr>
-      <td><xsl:value-of select="@name"/></td>
-      <td><xsl:value-of select="@description"/></td>
-      <td><xsl:value-of select="@extends"/></td>
-    </tr>
-    </xsl:for-each>
-    </tbody>
-    </table>
-    </div>
-    </xsl:if>
-    
-    <xsl:if test="count($private.conf) > 0">
-    <div id="deprecated-confs" class="conf">
-    <h2>Private Configurations</h2>
-    <table>
-    <thead>
-    <tr>
-      <th class="conf-name">Name</th>
-      <th class="conf-desc">Description</th>
-      <th class="conf-extends">Extends</th>
-    </tr>
-    </thead>
-    <tbody>
-    <xsl:for-each select="$private.conf">
-    <tr>
-      <td><xsl:value-of select="@name"/></td>
-      <td><xsl:value-of select="@description"/></td>
-      <td><xsl:value-of select="@extends"/></td>
-    </tr>
-    </xsl:for-each>
-    </tbody>
-    </table>
-    </div>
-    </xsl:if>
-    
-    <div id="artifacts">
-    <h2>Published Artifacts</h2>
-    <table>
-    <thead>
-    <tr>
-      <th class="art-name">Name</th>
-      <th class="art-type">Type</th>
-      <th class="art-conf">Configurations</th>
-    </tr>
-    </thead>
-    <tbody>
-    <xsl:for-each select="$artifacts">
-    <tr>
-      <td><xsl:value-of select="@name"/></td>
-      <td><xsl:value-of select="@type"/></td>
-      <td>
-          <xsl:value-of select="@conf"/>
-          <xsl:for-each select="conf">
-            <xsl:if test="position() > 1">, 
-            </xsl:if>
-            <xsl:value-of select="@name"/>
-          </xsl:for-each>
-          <xsl:if test="not(@conf) and count(conf) = 0">
-          <i>all</i>
-          </xsl:if> 
-      </td>
-    </tr>
-    </xsl:for-each>
-    <xsl:if test="count($artifacts) = 0">
-      <td><xsl:value-of select="info/@module"/></td>
-      <td>jar</td>
-      <td><i>all</i></td>
-    </xsl:if>
-    </tbody>
-    </table>
-    </div>
-    
-    <xsl:if test="count($dependencies) > 0">
-    <div id="dependencies">
-    <h2>Dependencies</h2>
-    <table>
-    <thead>
-    <tr>
-      <th class="dep-org">Organisation</th>
-      <th class="dep-name">Name</th>
-      <th class="dep-rev">Revision</th>
-    </tr>
-    </thead>
-    <tbody>
-    <xsl:for-each select="$dependencies">
-    <tr>
-      <td><xsl:if test="not(@org)"><xsl:value-of select="/ivy-module/info/@organisation"/></xsl:if><xsl:value-of select="@org"/></td>
-      <td>
-        <xsl:element name="a">
-            <xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:if test="not(@org)"><xsl:value-of select="/ivy-module/info/@organisation"/></xsl:if><xsl:value-of select="@org"/>/<xsl:value-of select="@name"/>/ivy-<xsl:value-of select="@rev"/>.xml</xsl:attribute>
-		    <xsl:value-of select="@name"/>
-        </xsl:element>
-      </td>
-      <td><xsl:value-of select="@rev"/></td>
-    </tr>
-    </xsl:for-each>
-    </tbody>
-    </table>
-    </div>
-    </xsl:if>
-    
-    
-  </body>
-  </html>
-</xsl:template>
-</xsl:stylesheet>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+   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.    
+-->
+<xsl:stylesheet version="1.0"
+xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<xsl:template match="/ivy-module">
+    <xsl:variable name="repositories" select="/ivy-module/info/repository"/>
+    <xsl:variable name="ivyauthors" select="/ivy-module/info/ivyauthor"/>
+    <xsl:variable name="licenses" select="/ivy-module/info/license"/>
+    <xsl:variable name="configurations" select="/ivy-module/configurations"/>
+    <xsl:variable name="public.conf" select="$configurations/conf[not(@visibility) and not(@deprecated)] | $configurations/conf[@visibility='public' and not(@deprecated)]"/>
+    <xsl:variable name="deprecated.conf" select="configurations/conf[not(@visibility) and @deprecated] | configurations/conf[@visibility='public' and @deprecated]"/>
+    <xsl:variable name="private.conf" select="configurations/conf[@visibility='private']"/>
+
+    <xsl:variable name="artifacts" select="/ivy-module/publications/artifact"/>
+    <xsl:variable name="dependencies" select="/ivy-module/dependencies/dependency"/>
+
+  <html>
+  <head>
+    <title><xsl:value-of select="info/@module"/> by <xsl:value-of select="info/@organisation"/> :: Ivy description</title>
+    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+    <meta http-equiv="content-language" content="en" />
+    <meta name="robots" content="index,follow" />
+    <link rel="stylesheet" type="text/css" href="ivy-style.css" /> 
+  </head>
+  <body>
+    <div id="logo"><a href="http://ivy.jayasoft.org/"><img src="http://ivy.jayasoft.org/logo.png"/></a><br/><a id="rep" href="http://ivyrep.jayasoft.org/">Ivy Repository</a></div>
+    <h1>
+    <span id="module">
+	        <xsl:element name="a">
+	            <xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:value-of select="info/@organisation"/>/<xsl:value-of select="info/@module"/>/</xsl:attribute>
+	            <xsl:value-of select="info/@module"/>
+	        </xsl:element>
+    </span> 
+    by 
+    <span id="organisation">
+	        <xsl:element name="a">
+	            <xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:value-of select="info/@organisation"/>/</xsl:attribute>
+	            <xsl:value-of select="info/@organisation"/>
+	        </xsl:element> 
+    </span></h1>
+    <div id="revision"><span id="revision">Revision: </span><xsl:value-of select="info/@revision"/></div>
+    <table class="header">
+    <tr><td class="title">Status</td><td class="value"><xsl:value-of select="info/@status"/></td></tr>
+    <tr><td class="title">Home Page</td><td class="value">
+    	<xsl:if test="info/description/@homepage">
+	        <xsl:element name="a">
+	            <xsl:attribute name="href"><xsl:value-of select="info/description/@homepage"/></xsl:attribute>
+	            <xsl:value-of select="info/description/@homepage"/>
+	        </xsl:element>
+    	</xsl:if>
+    </td></tr>
+    <tr><td class="title">Licenses</td><td class="value">
+	    <xsl:for-each select="$licenses">
+    	<xsl:if test="@url">
+	        <xsl:element name="a">
+	            <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
+		    	<xsl:value-of select="@name"/>
+	        </xsl:element>
+    	</xsl:if>
+    	<xsl:if test="not(@url)">
+		    	<xsl:value-of select="@name"/>
+    	</xsl:if>
+	    </xsl:for-each>
+    </td></tr>
+    <tr><td class="title">Ivy Authors</td><td class="value">
+	    <xsl:for-each select="$ivyauthors">
+    	<xsl:if test="@url">
+	        <xsl:element name="a">
+	            <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
+		    	<xsl:value-of select="@name"/>
+	        </xsl:element>
+    	</xsl:if>
+    	<xsl:if test="not(@url)">
+		    	<xsl:value-of select="@name"/>
+    	</xsl:if>
+	    </xsl:for-each>
+    </td></tr>
+    <tr><td class="title">Description</td><td class="value"><xsl:copy-of select="info/description"/></td></tr>
+    </table>
+    
+    <xsl:if test="count($repositories) > 0">
+    <div id="repositories">
+    <h2>Public Repositories</h2>
+    <table>
+    <thead>
+    <tr>
+      <th>Name</th>
+      <th>Url</th>
+      <th>Pattern</th>
+      <th>Ivys</th>
+      <th>Artifacts</th>
+    </tr>
+    </thead>
+    <tbody>
+    <xsl:for-each select="$repositories">
+    <tr>
+      <td><xsl:value-of select="@name"/></td>
+      <td>
+        <xsl:element name="a">
+            <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
+	    	<xsl:value-of select="@url"/>
+        </xsl:element>
+      </td>
+      <td><xsl:value-of select="@pattern"/></td>
+      <td><xsl:value-of select="@ivys"/></td>
+      <td><xsl:value-of select="@artifacts"/></td>
+    </tr>
+    </xsl:for-each>
+    </tbody>
+    </table>
+    </div>
+    </xsl:if>
+    
+    <div id="public-confs" class="conf">
+    <h2>Public Configurations</h2>
+    <table>
+    <thead>
+    <tr>
+      <th class="conf-name">Name</th>
+      <th class="conf-desc">Description</th>
+      <th class="conf-extends">Extends</th>
+    </tr>
+    </thead>
+    <tbody>
+    <xsl:for-each select="$public.conf">
+    <tr>
+      <td><xsl:value-of select="@name"/></td>
+      <td><xsl:value-of select="@description"/></td>
+      <td><xsl:value-of select="@extends"/></td>
+    </tr>
+    </xsl:for-each>
+    <xsl:if test="count($public.conf) = 0">
+    <tr>
+      <td>default</td>
+      <td></td>
+      <td></td>
+    </tr>
+    </xsl:if>
+    </tbody>
+    </table>
+    </div>
+    
+    <xsl:if test="count($deprecated.conf) > 0">
+    <div id="deprecated-confs" class="conf">
+    <h2>Deprecated Configurations</h2>
+    <table>
+    <thead>
+    <tr>
+      <th class="conf-name">Name</th>
+      <th class="conf-desc">Description</th>
+      <th class="conf-extends">Extends</th>
+    </tr>
+    </thead>
+    <tbody>
+    <xsl:for-each select="$deprecated.conf">
+    <tr>
+      <td><xsl:value-of select="@name"/></td>
+      <td><xsl:value-of select="@description"/></td>
+      <td><xsl:value-of select="@extends"/></td>
+    </tr>
+    </xsl:for-each>
+    </tbody>
+    </table>
+    </div>
+    </xsl:if>
+    
+    <xsl:if test="count($private.conf) > 0">
+    <div id="deprecated-confs" class="conf">
+    <h2>Private Configurations</h2>
+    <table>
+    <thead>
+    <tr>
+      <th class="conf-name">Name</th>
+      <th class="conf-desc">Description</th>
+      <th class="conf-extends">Extends</th>
+    </tr>
+    </thead>
+    <tbody>
+    <xsl:for-each select="$private.conf">
+    <tr>
+      <td><xsl:value-of select="@name"/></td>
+      <td><xsl:value-of select="@description"/></td>
+      <td><xsl:value-of select="@extends"/></td>
+    </tr>
+    </xsl:for-each>
+    </tbody>
+    </table>
+    </div>
+    </xsl:if>
+    
+    <div id="artifacts">
+    <h2>Published Artifacts</h2>
+    <table>
+    <thead>
+    <tr>
+      <th class="art-name">Name</th>
+      <th class="art-type">Type</th>
+      <th class="art-conf">Configurations</th>
+    </tr>
+    </thead>
+    <tbody>
+    <xsl:for-each select="$artifacts">
+    <tr>
+      <td><xsl:value-of select="@name"/></td>
+      <td><xsl:value-of select="@type"/></td>
+      <td>
+          <xsl:value-of select="@conf"/>
+          <xsl:for-each select="conf">
+            <xsl:if test="position() > 1">, 
+            </xsl:if>
+            <xsl:value-of select="@name"/>
+          </xsl:for-each>
+          <xsl:if test="not(@conf) and count(conf) = 0">
+          <i>all</i>
+          </xsl:if> 
+      </td>
+    </tr>
+    </xsl:for-each>
+    <xsl:if test="count($artifacts) = 0">
+      <td><xsl:value-of select="info/@module"/></td>
+      <td>jar</td>
+      <td><i>all</i></td>
+    </xsl:if>
+    </tbody>
+    </table>
+    </div>
+    
+    <xsl:if test="count($dependencies) > 0">
+    <div id="dependencies">
+    <h2>Dependencies</h2>
+    <table>
+    <thead>
+    <tr>
+      <th class="dep-org">Organisation</th>
+      <th class="dep-name">Name</th>
+      <th class="dep-rev">Revision</th>
+    </tr>
+    </thead>
+    <tbody>
+    <xsl:for-each select="$dependencies">
+    <tr>
+      <td><xsl:if test="not(@org)"><xsl:value-of select="/ivy-module/info/@organisation"/></xsl:if><xsl:value-of select="@org"/></td>
+      <td>
+        <xsl:element name="a">
+            <xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:if test="not(@org)"><xsl:value-of select="/ivy-module/info/@organisation"/></xsl:if><xsl:value-of select="@org"/>/<xsl:value-of select="@name"/>/ivy-<xsl:value-of select="@rev"/>.xml</xsl:attribute>
+		    <xsl:value-of select="@name"/>
+        </xsl:element>
+      </td>
+      <td><xsl:value-of select="@rev"/></td>
+    </tr>
+    </xsl:for-each>
+    </tbody>
+    </table>
+    </div>
+    </xsl:if>
+    
+    
+  </body>
+  </html>
+</xsl:template>
+</xsl:stylesheet>

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-report.css
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-report.css?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-report.css (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-report.css Tue Jun 23 14:49:47 2009
@@ -1,279 +1,279 @@
-/*
- *  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.
- *
- */
-
-body {
-	font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
-	font-size:small; 
-}
-
-div#logo {
-    float: right; 
-    padding-left: 10px; 
-    padding-bottom: 10px; 
-    background: white;
-    text-align: center;
-}
-
-#logo img {
-	border: 0;
-}
-
-div#date {
-	font-style:     italic;
-	padding-left:	60px;
-    padding-bottom: 40px; 
-}
-
-
-h1 {
-    margin-bottom:2px;
-    
-	border-color:#7A9437;
-	border-style:solid;
-	border-width:0 0 3px 0;
-}
-
-span#module {
-	color:#7A9437;
-	text-decoration:none;
-}
-
-span#organisation {
-	color:black;
-	text-decoration:none;
-}
-
-#confmenu {
-	color: #000;
-	border-bottom: 2px solid black;
-	margin: 12px 0px 0px 0px;
-	padding: 0px;
-	z-index: 1;
-	padding-left: 10px 
-}
-
-#confmenu li {
-	display: inline;
-	overflow: hidden;
-	list-style-type: none; 
-}
-
-#confmenu a, a.active {
-	color: #DEDECF;
-	background: #898B5E;
-	font: bold 1em "Trebuchet MS", Arial, sans-serif;
-	border: 2px solid black;
-	padding: 2px 5px 0px 5px;
-	text-decoration: none; 
-}
-
-/*
-background: #ABAD85 #CED4BD
-background: #DEE4CD
- */
-
-#confmenu a.active {
-	color: #7A9437;
-	background: #DEE4CD;
-	border-bottom: 3px solid #DEE4CD;
-}
-
-#confmenu a:hover {
-	color: #fff;
-	background: #ADC09F; 
-}
-
-#confmenu a:visited {
-	color: #DEDECF; 
-}
-
-#confmenu a.active:visited {
-	color: #7A9437; 
-}
-
-#confmenu a.active:hover {
-	background: #DEE4CD;
-	color: #DEDECF; 
-}
-
-#content {
-	background: #DEE4CD;
-	padding: 20px;
-	border: 2px solid black;
-	border-top: none;
-	z-index: 2;	
-}
-
-#content a {
-	text-decoration: none;
-	color: #E8E9BE; 
-}
-
-#content a:hover { 
-  background: #898B5E; 
-}
-
-
-h2 {
-    margin-bottom:2px;
-    font-size:medium;
-    
-    border-color:#7A9437;
-    border-style:solid;
-    border-width:0 0 2px 0;
-}
-
-h3 {
-    margin-top:30px;
-    margin-bottom:2px;
-    padding: 5 5 5 0;
-    font-size: 24px;
-    border-style:solid;
-    border-width:0 0 2px 0;
-}
-
-h4 {
-    margin-bottom:2px;
-    margin-top:2px;
-    font-size:medium;
-    
-    border-color:#7A9437;
-    border-style:dashed;
-    border-width:0 0 1px 0;
-}
-
-h5 {
-    margin-bottom:2px;
-    margin-top:2px;
-    margin-left:20px;
-    font-size:medium;
-}
-
-span.resolved {
-	padding-left: 15px;
-	font-weight: 500;
-	font-size: small;
-}
-
-
-#content table  {
-	border-collapse:collapse;
-	width:90%;
-	margin:auto;
-	margin-top: 5px;
-}
-#content thead {
-	background-color:#CED4BD;
-	border:1px solid #7A9437;
-}
-#content tbody {
-	border-collapse:collapse;
-	background-color:#FFFFFF;
-	border:1px solid #7A9437;
-}
-
-#content th {
-	font-family:monospace;
-	border:1px solid #7A9437;
-	padding:5px;
-}
-
-#content td {
-	border:1px dotted #7A9437;
-	padding:0 3 0 3;
-}
-
-#content table a {
-	color:#7A9437;
-	text-decoration:none;
-}
-
-#content table a:hover {
-	background-color:#CED4BD;
-	color:#7A9437;
-}
-
-
-
-table.deps  {
-	border-collapse:collapse;
-	width:90%;
-	margin:auto;
-	margin-top: 5px;
-}
-
-table.deps thead {
-	background-color:#CED4BD;
-	border:1px solid #7A9437;
-}
-table.deps tbody {
-	border-collapse:collapse;
-	background-color:#FFFFFF;
-	border:1px solid #7A9437;
-}
-
-table.deps th {
-	font-family:monospace;
-	border:1px solid #7A9437;
-	padding:2;
-}
-
-table.deps td {
-	border:1px dotted #7A9437;
-	padding:0 3 0 3;
-}
-
-
-
-
-
-table.header  {
-	border:0;
-	width:90%;
-	margin:auto;
-	margin-top: 5px;
-}
-
-table.header thead {
-	border:0;
-}
-table.header tbody {
-	border:0;
-}
-table.header tr {
-	padding:0px;
-	border:0;
-}
-table.header td {
-	padding:0 3 0 3;
-	border:0;
-}
-
-td.title {
-    width:150px;
-    margin-right:15px;
-
-	font-size:small;
-	font-weight:700;
-}
-
-td.title:first-letter {
-	color:#7A9437;
-	background-color:transparent;
-}
-
+/*
+ *  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.
+ *
+ */
+
+body {
+	font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
+	font-size:small; 
+}
+
+div#logo {
+    float: right; 
+    padding-left: 10px; 
+    padding-bottom: 10px; 
+    background: white;
+    text-align: center;
+}
+
+#logo img {
+	border: 0;
+}
+
+div#date {
+	font-style:     italic;
+	padding-left:	60px;
+    padding-bottom: 40px; 
+}
+
+
+h1 {
+    margin-bottom:2px;
+    
+	border-color:#7A9437;
+	border-style:solid;
+	border-width:0 0 3px 0;
+}
+
+span#module {
+	color:#7A9437;
+	text-decoration:none;
+}
+
+span#organisation {
+	color:black;
+	text-decoration:none;
+}
+
+#confmenu {
+	color: #000;
+	border-bottom: 2px solid black;
+	margin: 12px 0px 0px 0px;
+	padding: 0px;
+	z-index: 1;
+	padding-left: 10px 
+}
+
+#confmenu li {
+	display: inline;
+	overflow: hidden;
+	list-style-type: none; 
+}
+
+#confmenu a, a.active {
+	color: #DEDECF;
+	background: #898B5E;
+	font: bold 1em "Trebuchet MS", Arial, sans-serif;
+	border: 2px solid black;
+	padding: 2px 5px 0px 5px;
+	text-decoration: none; 
+}
+
+/*
+background: #ABAD85 #CED4BD
+background: #DEE4CD
+ */
+
+#confmenu a.active {
+	color: #7A9437;
+	background: #DEE4CD;
+	border-bottom: 3px solid #DEE4CD;
+}
+
+#confmenu a:hover {
+	color: #fff;
+	background: #ADC09F; 
+}
+
+#confmenu a:visited {
+	color: #DEDECF; 
+}
+
+#confmenu a.active:visited {
+	color: #7A9437; 
+}
+
+#confmenu a.active:hover {
+	background: #DEE4CD;
+	color: #DEDECF; 
+}
+
+#content {
+	background: #DEE4CD;
+	padding: 20px;
+	border: 2px solid black;
+	border-top: none;
+	z-index: 2;	
+}
+
+#content a {
+	text-decoration: none;
+	color: #E8E9BE; 
+}
+
+#content a:hover { 
+  background: #898B5E; 
+}
+
+
+h2 {
+    margin-bottom:2px;
+    font-size:medium;
+    
+    border-color:#7A9437;
+    border-style:solid;
+    border-width:0 0 2px 0;
+}
+
+h3 {
+    margin-top:30px;
+    margin-bottom:2px;
+    padding: 5 5 5 0;
+    font-size: 24px;
+    border-style:solid;
+    border-width:0 0 2px 0;
+}
+
+h4 {
+    margin-bottom:2px;
+    margin-top:2px;
+    font-size:medium;
+    
+    border-color:#7A9437;
+    border-style:dashed;
+    border-width:0 0 1px 0;
+}
+
+h5 {
+    margin-bottom:2px;
+    margin-top:2px;
+    margin-left:20px;
+    font-size:medium;
+}
+
+span.resolved {
+	padding-left: 15px;
+	font-weight: 500;
+	font-size: small;
+}
+
+
+#content table  {
+	border-collapse:collapse;
+	width:90%;
+	margin:auto;
+	margin-top: 5px;
+}
+#content thead {
+	background-color:#CED4BD;
+	border:1px solid #7A9437;
+}
+#content tbody {
+	border-collapse:collapse;
+	background-color:#FFFFFF;
+	border:1px solid #7A9437;
+}
+
+#content th {
+	font-family:monospace;
+	border:1px solid #7A9437;
+	padding:5px;
+}
+
+#content td {
+	border:1px dotted #7A9437;
+	padding:0 3 0 3;
+}
+
+#content table a {
+	color:#7A9437;
+	text-decoration:none;
+}
+
+#content table a:hover {
+	background-color:#CED4BD;
+	color:#7A9437;
+}
+
+
+
+table.deps  {
+	border-collapse:collapse;
+	width:90%;
+	margin:auto;
+	margin-top: 5px;
+}
+
+table.deps thead {
+	background-color:#CED4BD;
+	border:1px solid #7A9437;
+}
+table.deps tbody {
+	border-collapse:collapse;
+	background-color:#FFFFFF;
+	border:1px solid #7A9437;
+}
+
+table.deps th {
+	font-family:monospace;
+	border:1px solid #7A9437;
+	padding:2;
+}
+
+table.deps td {
+	border:1px dotted #7A9437;
+	padding:0 3 0 3;
+}
+
+
+
+
+
+table.header  {
+	border:0;
+	width:90%;
+	margin:auto;
+	margin-top: 5px;
+}
+
+table.header thead {
+	border:0;
+}
+table.header tbody {
+	border:0;
+}
+table.header tr {
+	padding:0px;
+	border:0;
+}
+table.header td {
+	padding:0 3 0 3;
+	border:0;
+}
+
+td.title {
+    width:150px;
+    margin-right:15px;
+
+	font-size:small;
+	font-weight:700;
+}
+
+td.title:first-letter {
+	color:#7A9437;
+	background-color:transparent;
+}
+

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample-xslt.xml
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample-xslt.xml?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample-xslt.xml (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample-xslt.xml Tue Jun 23 14:49:47 2009
@@ -1,101 +1,101 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<?xml-stylesheet type="text/xsl" href="ivy-doc.xsl"?>
-<!--
-   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.    
--->
-<ivy-module version="2.0">
-	<info organisation="myorg"
-	       module="mymodule"
-	       revision="myrev"
-	       status="integration"
-	       publication="20041101110000">
-	       
-		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
-		
-		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
-		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
-
-		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
-
-		<description homepage="http://www.my.org/mymodule/">	       
-	This module is <b>great</b> !<br/>
-	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
-		</description>
-	</info>
-	<configurations>
-		<conf name="myconf1" description="desc 1"/>
-		<conf name="myconf2" description="desc 2" visibility="public"/>
-		<conf name="myconf3" description="desc 3" visibility="private"/>
-		<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>		
-		<conf name="myoldconf" description="my old desc" deprecated="20050115"/>
-	</configurations>
-	<publications>
-		<artifact name="myartifact1" type="jar"/>
-		<artifact name="myartifact2" type="jar" conf="myconf1"/>
-		<artifact name="myartifact3" type="jar" conf="myconf1, myconf2, myconf3"/>
-		<artifact name="myartifact4" type="jar">
-			<conf name="myconf1"/>
-			<conf name="myconf3"/>
-		</artifact>
-	</publications>
-	<dependencies>
-		<dependency name="mymodule2" rev="2.0"/>
-		<dependency org="yourorg" name="yourmodule1" rev="1.1" conf="myconf1"/>
-		<dependency org="yourorg" name="yourmodule2" rev="2+" conf="myconf1->yourconf1"/>
-		<dependency org="yourorg" name="yourmodule3" rev="3.1" conf="myconf1->yourconf1, yourconf2"/>
-		<dependency org="yourorg" name="yourmodule4" rev="4.1" conf="myconf1, myconf2->yourconf1, yourconf2"/>
-		<dependency org="yourorg" name="yourmodule5" rev="5.1" conf="myconf1->yourconf1;myconf2->yourconf1, yourconf2"/>
-
-		<dependency org="yourorg" name="yourmodule6" rev="latest.integration">
-			<conf name="myconf1" mapped="yourconf1"/>
-			<conf name="myconf2" mapped="yourconf1, yourconf2"/>
-		</dependency>
-
-		<dependency org="yourorg" name="yourmodule7" rev="7.1">
-			<conf name="myconf1">
-				<mapped name="yourconf1"/>
-			</conf>
-			<conf name="myconf2">
-				<mapped name="yourconf1"/>
-				<mapped name="yourconf2"/>
-			</conf>
-		</dependency>
-
-		<dependency org="yourorg" name="yourmodule8" rev="8.1">
-			<artifact name="yourartifact8-1" type="jar"/>
-			<artifact name="yourartifact8-2" type="jar"/>
-		</dependency>		
-
-		<dependency org="yourorg" name="yourmodule9" rev="9.1" conf="myconf1,myconf2,myconf3->default">
-			<artifact name="yourartifact9-1" type="jar" conf="myconf1,myconf2"/>
-			<artifact name="yourartifact9-2" type="jar">
-				<conf name="myconf2"/>
-				<conf name="myconf3"/>
-			</artifact>
-		</dependency>		
-
-		<dependency org="yourorg" name="yourmodule10" rev="10.1">
-			<include name="your.*" type="jar"/>
-			<include ext="xml"/>
-			<exclude name="toexclude"/>
-		</dependency>
-				
-		<conflict org="yourorg" module=".*" manager="all"/>
-		<conflict org="theirorg" module="theirmodule1" rev="1.0, 1.1"/>
-	</dependencies>
-</ivy-module>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<?xml-stylesheet type="text/xsl" href="ivy-doc.xsl"?>
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+	<info organisation="myorg"
+	       module="mymodule"
+	       revision="myrev"
+	       status="integration"
+	       publication="20041101110000">
+	       
+		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
+		
+		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
+		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
+
+		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
+
+		<description homepage="http://www.my.org/mymodule/">	       
+	This module is <b>great</b> !<br/>
+	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
+		</description>
+	</info>
+	<configurations>
+		<conf name="myconf1" description="desc 1"/>
+		<conf name="myconf2" description="desc 2" visibility="public"/>
+		<conf name="myconf3" description="desc 3" visibility="private"/>
+		<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>		
+		<conf name="myoldconf" description="my old desc" deprecated="20050115"/>
+	</configurations>
+	<publications>
+		<artifact name="myartifact1" type="jar"/>
+		<artifact name="myartifact2" type="jar" conf="myconf1"/>
+		<artifact name="myartifact3" type="jar" conf="myconf1, myconf2, myconf3"/>
+		<artifact name="myartifact4" type="jar">
+			<conf name="myconf1"/>
+			<conf name="myconf3"/>
+		</artifact>
+	</publications>
+	<dependencies>
+		<dependency name="mymodule2" rev="2.0"/>
+		<dependency org="yourorg" name="yourmodule1" rev="1.1" conf="myconf1"/>
+		<dependency org="yourorg" name="yourmodule2" rev="2+" conf="myconf1->yourconf1"/>
+		<dependency org="yourorg" name="yourmodule3" rev="3.1" conf="myconf1->yourconf1, yourconf2"/>
+		<dependency org="yourorg" name="yourmodule4" rev="4.1" conf="myconf1, myconf2->yourconf1, yourconf2"/>
+		<dependency org="yourorg" name="yourmodule5" rev="5.1" conf="myconf1->yourconf1;myconf2->yourconf1, yourconf2"/>
+
+		<dependency org="yourorg" name="yourmodule6" rev="latest.integration">
+			<conf name="myconf1" mapped="yourconf1"/>
+			<conf name="myconf2" mapped="yourconf1, yourconf2"/>
+		</dependency>
+
+		<dependency org="yourorg" name="yourmodule7" rev="7.1">
+			<conf name="myconf1">
+				<mapped name="yourconf1"/>
+			</conf>
+			<conf name="myconf2">
+				<mapped name="yourconf1"/>
+				<mapped name="yourconf2"/>
+			</conf>
+		</dependency>
+
+		<dependency org="yourorg" name="yourmodule8" rev="8.1">
+			<artifact name="yourartifact8-1" type="jar"/>
+			<artifact name="yourartifact8-2" type="jar"/>
+		</dependency>		
+
+		<dependency org="yourorg" name="yourmodule9" rev="9.1" conf="myconf1,myconf2,myconf3->default">
+			<artifact name="yourartifact9-1" type="jar" conf="myconf1,myconf2"/>
+			<artifact name="yourartifact9-2" type="jar">
+				<conf name="myconf2"/>
+				<conf name="myconf3"/>
+			</artifact>
+		</dependency>		
+
+		<dependency org="yourorg" name="yourmodule10" rev="10.1">
+			<include name="your.*" type="jar"/>
+			<include ext="xml"/>
+			<exclude name="toexclude"/>
+		</dependency>
+				
+		<conflict org="yourorg" module=".*" manager="all"/>
+		<conflict org="theirorg" module="theirmodule1" rev="1.0, 1.1"/>
+	</dependencies>
+</ivy-module>

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample.xml
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample.xml?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample.xml (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-sample.xml Tue Jun 23 14:49:47 2009
@@ -1,100 +1,100 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-   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.    
--->
-<ivy-module version="2.0">
-	<info organisation="myorg"
-	       module="mymodule"
-	       revision="myrev"
-	       status="integration"
-	       publication="20041101110000">
-	       
-		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
-		
-		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
-		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
-
-		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
-
-		<description homepage="http://www.my.org/mymodule/">	       
-	This module is <b>great</b> !<br/>
-	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
-		</description>
-	</info>
-	<configurations>
-		<conf name="myconf1" description="desc 1"/>
-		<conf name="myconf2" description="desc 2" visibility="public"/>
-		<conf name="myconf3" description="desc 3" visibility="private"/>
-		<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>		
-		<conf name="myoldconf" description="my old desc" deprecated="20050115"/>
-	</configurations>
-	<publications>
-		<artifact name="myartifact1" type="jar"/>
-		<artifact name="myartifact2" type="jar" conf="myconf1"/>
-		<artifact name="myartifact3" type="jar" conf="myconf1, myconf2, myconf3"/>
-		<artifact name="myartifact4" type="jar">
-			<conf name="myconf1"/>
-			<conf name="myconf3"/>
-		</artifact>
-	</publications>
-	<dependencies>
-		<dependency name="mymodule2" rev="2.0"/>
-		<dependency org="yourorg" name="yourmodule1" rev="1.1" conf="myconf1"/>
-		<dependency org="yourorg" name="yourmodule2" rev="2+" conf="myconf1->yourconf1"/>
-		<dependency org="yourorg" name="yourmodule3" rev="3.1" conf="myconf1->yourconf1, yourconf2"/>
-		<dependency org="yourorg" name="yourmodule4" rev="4.1" conf="myconf1, myconf2->yourconf1, yourconf2"/>
-		<dependency org="yourorg" name="yourmodule5" rev="5.1" conf="myconf1->yourconf1;myconf2->yourconf1, yourconf2"/>
-
-		<dependency org="yourorg" name="yourmodule6" rev="latest.integration">
-			<conf name="myconf1" mapped="yourconf1"/>
-			<conf name="myconf2" mapped="yourconf1, yourconf2"/>
-		</dependency>
-
-		<dependency org="yourorg" name="yourmodule7" rev="7.1">
-			<conf name="myconf1">
-				<mapped name="yourconf1"/>
-			</conf>
-			<conf name="myconf2">
-				<mapped name="yourconf1"/>
-				<mapped name="yourconf2"/>
-			</conf>
-		</dependency>
-
-		<dependency org="yourorg" name="yourmodule8" rev="8.1">
-			<artifact name="yourartifact8-1" type="jar"/>
-			<artifact name="yourartifact8-2" type="jar"/>
-		</dependency>		
-
-		<dependency org="yourorg" name="yourmodule9" rev="9.1" conf="myconf1,myconf2,myconf3->default">
-			<artifact name="yourartifact9-1" type="jar" conf="myconf1,myconf2"/>
-			<artifact name="yourartifact9-2" type="jar">
-				<conf name="myconf2"/>
-				<conf name="myconf3"/>
-			</artifact>
-		</dependency>		
-
-		<dependency org="yourorg" name="yourmodule10" rev="10.1">
-			<include name="your.*" type="jar"/>
-			<include ext="xml"/>
-			<exclude name="toexclude"/>
-		</dependency>		
-		
-		<conflict org="yourorg" module=".*" manager="all"/>
-		<conflict org="theirorg" module="theirmodule1" rev="1.0, 1.1"/>
-	</dependencies>
-</ivy-module>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+	<info organisation="myorg"
+	       module="mymodule"
+	       revision="myrev"
+	       status="integration"
+	       publication="20041101110000">
+	       
+		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
+		
+		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
+		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
+
+		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
+
+		<description homepage="http://www.my.org/mymodule/">	       
+	This module is <b>great</b> !<br/>
+	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
+		</description>
+	</info>
+	<configurations>
+		<conf name="myconf1" description="desc 1"/>
+		<conf name="myconf2" description="desc 2" visibility="public"/>
+		<conf name="myconf3" description="desc 3" visibility="private"/>
+		<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>		
+		<conf name="myoldconf" description="my old desc" deprecated="20050115"/>
+	</configurations>
+	<publications>
+		<artifact name="myartifact1" type="jar"/>
+		<artifact name="myartifact2" type="jar" conf="myconf1"/>
+		<artifact name="myartifact3" type="jar" conf="myconf1, myconf2, myconf3"/>
+		<artifact name="myartifact4" type="jar">
+			<conf name="myconf1"/>
+			<conf name="myconf3"/>
+		</artifact>
+	</publications>
+	<dependencies>
+		<dependency name="mymodule2" rev="2.0"/>
+		<dependency org="yourorg" name="yourmodule1" rev="1.1" conf="myconf1"/>
+		<dependency org="yourorg" name="yourmodule2" rev="2+" conf="myconf1->yourconf1"/>
+		<dependency org="yourorg" name="yourmodule3" rev="3.1" conf="myconf1->yourconf1, yourconf2"/>
+		<dependency org="yourorg" name="yourmodule4" rev="4.1" conf="myconf1, myconf2->yourconf1, yourconf2"/>
+		<dependency org="yourorg" name="yourmodule5" rev="5.1" conf="myconf1->yourconf1;myconf2->yourconf1, yourconf2"/>
+
+		<dependency org="yourorg" name="yourmodule6" rev="latest.integration">
+			<conf name="myconf1" mapped="yourconf1"/>
+			<conf name="myconf2" mapped="yourconf1, yourconf2"/>
+		</dependency>
+
+		<dependency org="yourorg" name="yourmodule7" rev="7.1">
+			<conf name="myconf1">
+				<mapped name="yourconf1"/>
+			</conf>
+			<conf name="myconf2">
+				<mapped name="yourconf1"/>
+				<mapped name="yourconf2"/>
+			</conf>
+		</dependency>
+
+		<dependency org="yourorg" name="yourmodule8" rev="8.1">
+			<artifact name="yourartifact8-1" type="jar"/>
+			<artifact name="yourartifact8-2" type="jar"/>
+		</dependency>		
+
+		<dependency org="yourorg" name="yourmodule9" rev="9.1" conf="myconf1,myconf2,myconf3->default">
+			<artifact name="yourartifact9-1" type="jar" conf="myconf1,myconf2"/>
+			<artifact name="yourartifact9-2" type="jar">
+				<conf name="myconf2"/>
+				<conf name="myconf3"/>
+			</artifact>
+		</dependency>		
+
+		<dependency org="yourorg" name="yourmodule10" rev="10.1">
+			<include name="your.*" type="jar"/>
+			<include ext="xml"/>
+			<exclude name="toexclude"/>
+		</dependency>		
+		
+		<conflict org="yourorg" module=".*" manager="all"/>
+		<conflict org="theirorg" module="theirmodule1" rev="1.0, 1.1"/>
+	</dependencies>
+</ivy-module>

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-style.css
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-style.css?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-style.css (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/ivy-style.css Tue Jun 23 14:49:47 2009
@@ -1,160 +1,160 @@
-/*
- *  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.
- *
- */
-
-body {
-	font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
-	font-size:small; 
-}
-
-div#logo {
-    float: right; 
-    padding-left: 10px; 
-    padding-bottom: 10px; 
-    background: white;
-    text-align: center;
-}
-
-#logo img {
-	border: 0;
-}
-
-a#rep {
-	color:#7A9437;
-	text-decoration:none;
-}
-
-a#rep:hover {
-	background-color:#DEE4CD;
-	color:#7A9437;
-}
-
-
-h1 {
-    margin-bottom:2px;
-    
-	border-color:#7A9437;
-	border-style:solid;
-	border-width:0 0 3px 0;
-}
-
-span#module a {
-	color:#7A9437;
-	text-decoration:none;
-}
-
-span#module a:hover {
-	background-color:#DEE4CD;
-	color:#7A9437;
-}
-
-span#organisation a {
-	color:black;
-	text-decoration:none;
-}
-
-span#organisation a:hover {
-	background-color:black;
-	color:white;
-}
-
-
-h2 {
-    margin-bottom:2px;
-    font-size:medium;
-    
-	border-color:#7A9437;
-	border-style:solid;
-	border-width:0 0 2px 0;
-}
-
-div#revision {
-    margin-left:60px;
-	font-size:medium;
-    font-style: italic;
-    font-weight:700;
-}
-
-span#revision {
-	color:#7A9437;
-}
-
-td.title {
-    width:150px;
-    margin-right:15px;
-
-	text-align: left;
-	/*
-	border-color:#7A9437;
-	border-style:solid;
-	border-width:0 0 3px 0;
-	*/
-	font-size:small;
-	font-weight:700;
-	margin:0;
-	padding-left:0em;
-	vertical-align: top;
-}
-
-td.title:first-letter {
-	color:#7A9437;
-	font-size:medium;
-	background-color:transparent;
-}
-
-#repositories table  {
-	width:90%;
-	margin:auto;
-}
-
-#repositories th  {
-	text-align: left;
-}
-
-.conf table, #artifacts table, #dependencies table  {
-	border-collapse:collapse;
-	width:90%;
-	margin:auto;
-	margin-top: 10px;
-}
-.conf thead, #artifacts thead, #dependencies thead {
-	background-color:#DEE4CD;
-	border:1px solid #7A9437;
-}
-.conf tbody, #artifacts tbody, #dependencies tbody {
-	border-collapse:collapse;
-	background-color:#FFFFFF;
-	border:1px solid #7A9437;
-}
-
-.conf th, #artifacts th, #dependencies th {
-	font-family:monospace;
-	border:1px solid #7A9437;
-	padding:5px;
-}
-
-.conf td, #artifacts td, #dependencies td {
-	border:1px dotted #7A9437;
-	padding:5px;
-}
-
-th.conf-name {
-    width:15%;
-}
-th.conf-desc {
-    width:50%;
-}
+/*
+ *  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.
+ *
+ */
+
+body {
+	font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
+	font-size:small; 
+}
+
+div#logo {
+    float: right; 
+    padding-left: 10px; 
+    padding-bottom: 10px; 
+    background: white;
+    text-align: center;
+}
+
+#logo img {
+	border: 0;
+}
+
+a#rep {
+	color:#7A9437;
+	text-decoration:none;
+}
+
+a#rep:hover {
+	background-color:#DEE4CD;
+	color:#7A9437;
+}
+
+
+h1 {
+    margin-bottom:2px;
+    
+	border-color:#7A9437;
+	border-style:solid;
+	border-width:0 0 3px 0;
+}
+
+span#module a {
+	color:#7A9437;
+	text-decoration:none;
+}
+
+span#module a:hover {
+	background-color:#DEE4CD;
+	color:#7A9437;
+}
+
+span#organisation a {
+	color:black;
+	text-decoration:none;
+}
+
+span#organisation a:hover {
+	background-color:black;
+	color:white;
+}
+
+
+h2 {
+    margin-bottom:2px;
+    font-size:medium;
+    
+	border-color:#7A9437;
+	border-style:solid;
+	border-width:0 0 2px 0;
+}
+
+div#revision {
+    margin-left:60px;
+	font-size:medium;
+    font-style: italic;
+    font-weight:700;
+}
+
+span#revision {
+	color:#7A9437;
+}
+
+td.title {
+    width:150px;
+    margin-right:15px;
+
+	text-align: left;
+	/*
+	border-color:#7A9437;
+	border-style:solid;
+	border-width:0 0 3px 0;
+	*/
+	font-size:small;
+	font-weight:700;
+	margin:0;
+	padding-left:0em;
+	vertical-align: top;
+}
+
+td.title:first-letter {
+	color:#7A9437;
+	font-size:medium;
+	background-color:transparent;
+}
+
+#repositories table  {
+	width:90%;
+	margin:auto;
+}
+
+#repositories th  {
+	text-align: left;
+}
+
+.conf table, #artifacts table, #dependencies table  {
+	border-collapse:collapse;
+	width:90%;
+	margin:auto;
+	margin-top: 10px;
+}
+.conf thead, #artifacts thead, #dependencies thead {
+	background-color:#DEE4CD;
+	border:1px solid #7A9437;
+}
+.conf tbody, #artifacts tbody, #dependencies tbody {
+	border-collapse:collapse;
+	background-color:#FFFFFF;
+	border:1px solid #7A9437;
+}
+
+.conf th, #artifacts th, #dependencies th {
+	font-family:monospace;
+	border:1px solid #7A9437;
+	padding:5px;
+}
+
+.conf td, #artifacts td, #dependencies td {
+	border:1px dotted #7A9437;
+	padding:5px;
+}
+
+th.conf-name {
+    width:15%;
+}
+th.conf-desc {
+    width:50%;
+}

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/ivysettings-default.xml
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/ivysettings-default.xml?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/ivysettings-default.xml (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/ivysettings-default.xml Tue Jun 23 14:49:47 2009
@@ -1,24 +1,24 @@
-<!--
-   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.    
--->
-<ivysettings>
-	<settings defaultResolver="ivyrep"/>
-	<resolvers>
-		<ivyrep name="ivyrep"/>
-	</resolvers>
-</ivysettings>
+<!--
+   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.    
+-->
+<ivysettings>
+	<settings defaultResolver="ivyrep"/>
+	<resolvers>
+		<ivyrep name="ivyrep"/>
+	</resolvers>
+</ivysettings>

Modified: ant/ivy/site/target/history/2.0.0-rc2/samples/jayasoft-ivyrep-example-default.html
URL: http://svn.apache.org/viewvc/ant/ivy/site/target/history/2.0.0-rc2/samples/jayasoft-ivyrep-example-default.html?rev=787696&r1=787695&r2=787696&view=diff
==============================================================================
--- ant/ivy/site/target/history/2.0.0-rc2/samples/jayasoft-ivyrep-example-default.html (original)
+++ ant/ivy/site/target/history/2.0.0-rc2/samples/jayasoft-ivyrep-example-default.html Tue Jun 23 14:49:47 2009
@@ -1,371 +1,371 @@
-<!--
-   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">
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Ivy report :: ivyrep-example by jayasoft :: default</title>
-<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
-<meta content="en" http-equiv="content-language">
-<meta content="index,follow" name="robots">
-<link href="ivy-report.css" type="text/css" rel="stylesheet">
-</head>
-<body>
-<div id="logo">
-<a href="http://ant.apache.org/ivy/"><img src="../images/logo.png"></a>
-</div>
-<h1>
-<a name="jayasoft-ivyrep-example"></a><span id="module">ivyrep-example</span> 
-        by 
-        <span id="organisation">jayasoft</span>
-</h1>
-<div id="date">
-    resolved on 
-      2005-04-08 13:33:40</div>
-<ul id="confmenu">
-<li>
-<a class="active" href="jayasoft-ivyrep-example-default.html">default</a>
-</li>
-</ul>
-<div id="content">
-<h2>Dependencies Stats</h2>
-<table class="header">
-<tr>
-<td class="title">Modules</td><td class="value">3</td>
-</tr>
-<tr>
-<td class="title">Revisions</td><td class="value">4  
-            (0 searched <img title="module revisions which required a search with a dependency resolver to be resolved" alt="searched" src="../images/searched.gif">,
-            0 downloaded <img title="module revisions for which ivy file was downloaded by dependency resolver" alt="downloaded" src="../images/downloaded.gif">,
-            1 evicted <img title="module revisions which were evicted by others" alt="evicted" src="../images/evicted.gif">,
-            0 errors <img title="module revisions on which error occured" alt="error" src="../images/error.gif">)</td>
-</tr>
-<tr>
-<td class="title">Artifacts</td><td class="value">3 
-            (0 downloaded,
-            0 failed)</td>
-</tr>
-<tr>
-<td class="title">Artifacts size</td><td class="value">219 kB
-            (0 kB downloaded,
-            219 kB in cache)</td>
-</tr>
-</table>
-<h2>Dependencies Overview</h2>
-<table class="deps">
-<thead>
-<tr>
-<th>Module</th><th>Revision</th><th>Status</th><th>Licenses</th><th>Size</th><th></th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td><a href="#apache-commons-cli"> commons-cli
-         by
-         apache</a></td><td><a href="#apache-commons-cli-1.0">1.0</a></td><td align="center">release</td><td align="center"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td><td align="center">32 kB
-    </td><td align="center"></td>
-</tr>
-<tr>
-<td><a href="#apache-commons-lang">--- commons-lang
-         by
-         apache</a></td><td><a href="#apache-commons-lang-2.0">2.0</a></td><td align="center">release</td><td align="center"></td><td align="center">166 kB
-    </td><td align="center"></td>
-</tr>
-<tr>
-<td><a href="#apache-commons-lang">--- commons-lang
-         by
-         apache</a></td><td><a href="#apache-commons-lang-1.0">1.0</a></td><td align="center"></td><td align="center"></td><td align="center">0 kB
-    </td><td align="center"><img src="http://ivy.jayasoft.org/images/evicted.gif" alt="evicted" title="evicted by 2.0"></td>
-</tr>
-<tr>
-<td><a href="#apache-commons-logging">--- commons-logging
-         by
-         apache</a></td><td><a href="#apache-commons-logging-1.0">1.0</a></td><td align="center">release</td><td align="center"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td><td align="center">21 kB
-    </td><td align="center"></td>
-</tr>
-<tr>
-<td><a href="#apache-commons-lang"> commons-lang
-         by
-         apache</a></td><td><a href="#apache-commons-lang-2.0">2.0</a></td><td align="center">release</td><td align="center"></td><td align="center">166 kB
-    </td><td align="center"></td>
-</tr>
-</tbody>
-</table>
-<h2>Details</h2>
-<h3>
-<a name="apache-commons-cli"></a>commons-cli by apache<span class="resolved">resolved by <b>ivyrep</b></span>
-</h3>
-<h4>
-<a name="apache-commons-cli-1.0"></a>
-           Revision: 1.0<span style="padding-left:15px;"></span>
-</h4>
-<table class="header">
-<tr>
-<td class="title">Home Page</td><td class="value"><a href="http://jakarta.apache.org/commons/cli/">http://jakarta.apache.org/commons/cli/</a></td>
-</tr>
-<tr>
-<td class="title">Status</td><td class="value">release</td>
-</tr>
-<tr>
-<td class="title">Publication</td><td class="value">20021227095900</td>
-</tr>
-<tr>
-<td class="title">Resolver</td><td class="value">ivyrep</td>
-</tr>
-<tr>
-<td class="title">Configurations</td><td class="value">default</td>
-</tr>
-<tr>
-<td class="title">Artifacts size</td><td class="value">32 kB
-            (0 kB downloaded,
-            32 kB in cache)</td>
-</tr>
-<tr>
-<td class="title">Licenses</td><td class="value"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td>
-</tr>
-</table>
-<h5>Required by</h5>
-<table>
-<thead>
-<tr>
-<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>jayasoft</td><td><a href="#jayasoft-ivyrep-example">ivyrep-example</a></td><td>default</td><td>1.0</td>
-</tr>
-</tbody>
-</table>
-<h5>Dependencies</h5>
-<table class="deps">
-<thead>
-<tr>
-<th>Module</th><th>Revision</th><th>Status</th><th>Licenses</th><th>Size</th><th></th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td><a href="#apache-commons-lang"> commons-lang
-         by
-         apache</a></td><td><a href="#apache-commons-lang-2.0">2.0</a></td><td align="center">release</td><td align="center"></td><td align="center">166 kB
-    </td><td align="center"></td>
-</tr>
-<tr>
-<td><a href="#apache-commons-lang"> commons-lang
-         by
-         apache</a></td><td><a href="#apache-commons-lang-1.0">1.0</a></td><td align="center"></td><td align="center"></td><td align="center">0 kB
-    </td><td align="center"><img src="http://ivy.jayasoft.org/images/evicted.gif" alt="evicted" title="evicted by 2.0"></td>
-</tr>
-<tr>
-<td><a href="#apache-commons-logging"> commons-logging
-         by
-         apache</a></td><td><a href="#apache-commons-logging-1.0">1.0</a></td><td align="center">release</td><td align="center"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td><td align="center">21 kB
-    </td><td align="center"></td>
-</tr>
-</tbody>
-</table>
-<h5>Artifacts</h5>
-<table>
-<thead>
-<tr>
-<th>Name</th><th>Type</th><th>Ext</th><th>Download</th><th>Size</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>commons-cli</td><td>jar</td><td>jar</td><td align="center">no</td><td align="center">32 kB</td>
-</tr>
-</tbody>
-</table>
-<h3>
-<a name="apache-commons-lang"></a>commons-lang by apache<span class="resolved">resolved by <b>ivyrep</b></span>
-</h3>
-<h4>
-<a name="apache-commons-lang-2.0"></a>
-           Revision: 2.0<span style="padding-left:15px;"></span>
-</h4>
-<table class="header">
-<tr>
-<td class="title">Status</td><td class="value">release</td>
-</tr>
-<tr>
-<td class="title">Publication</td><td class="value">20050407222759</td>
-</tr>
-<tr>
-<td class="title">Resolver</td><td class="value">ivyrep</td>
-</tr>
-<tr>
-<td class="title">Configurations</td><td class="value">default</td>
-</tr>
-<tr>
-<td class="title">Artifacts size</td><td class="value">166 kB
-            (0 kB downloaded,
-            166 kB in cache)</td>
-</tr>
-</table>
-<h5>Required by</h5>
-<table>
-<thead>
-<tr>
-<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>apache</td><td><a href="#apache-commons-cli">commons-cli</a></td><td>default</td><td>1.0</td>
-</tr>
-<tr>
-<td>jayasoft</td><td><a href="#jayasoft-ivyrep-example">ivyrep-example</a></td><td>default</td><td>2.0</td>
-</tr>
-</tbody>
-</table>
-<h5>Dependencies</h5>
-<table>
-<tr>
-<td>
-    No dependency
-    </td>
-</tr>
-</table>
-<h5>Artifacts</h5>
-<table>
-<thead>
-<tr>
-<th>Name</th><th>Type</th><th>Ext</th><th>Download</th><th>Size</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>commons-lang</td><td>jar</td><td>jar</td><td align="center">no</td><td align="center">166 kB</td>
-</tr>
-</tbody>
-</table>
-<h4>
-<a name="apache-commons-lang-1.0"></a>
-           Revision: 1.0<span style="padding-left:15px;"><img src="http://ivy.jayasoft.org/images/evicted.gif" alt="evicted" title="evicted by 2.0"></span>
-</h4>
-<table class="header">
-<tr>
-<td class="title">Status</td><td class="value"></td>
-</tr>
-<tr>
-<td class="title">Publication</td><td class="value"></td>
-</tr>
-<tr>
-<td class="title">Resolver</td><td class="value"></td>
-</tr>
-<tr>
-<td class="title">Configurations</td><td class="value"></td>
-</tr>
-<tr>
-<td class="title">Artifacts size</td><td class="value">0 kB
-            (0 kB downloaded,
-            0 kB in cache)</td>
-</tr>
-<tr>
-<td class="title">Evicted by</td><td class="value">2.0   
-            in <b>latest-revision</b> conflict manager
-        </td>
-</tr>
-</table>
-<h5>Required by</h5>
-<table>
-<thead>
-<tr>
-<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>apache</td><td><a href="#apache-commons-cli">commons-cli</a></td><td>default</td><td>1.0</td>
-</tr>
-</tbody>
-</table>
-<h3>
-<a name="apache-commons-logging"></a>commons-logging by apache<span class="resolved">resolved by <b>ivyrep</b></span>
-</h3>
-<h4>
-<a name="apache-commons-logging-1.0"></a>
-           Revision: 1.0<span style="padding-left:15px;"></span>
-</h4>
-<table class="header">
-<tr>
-<td class="title">Home Page</td><td class="value"><a href="http://jakarta.apache.org/commons/logging/">http://jakarta.apache.org/commons/logging/</a></td>
-</tr>
-<tr>
-<td class="title">Status</td><td class="value">release</td>
-</tr>
-<tr>
-<td class="title">Publication</td><td class="value">20020220232200</td>
-</tr>
-<tr>
-<td class="title">Resolver</td><td class="value">ivyrep</td>
-</tr>
-<tr>
-<td class="title">Configurations</td><td class="value">default</td>
-</tr>
-<tr>
-<td class="title">Artifacts size</td><td class="value">21 kB
-            (0 kB downloaded,
-            21 kB in cache)</td>
-</tr>
-<tr>
-<td class="title">Licenses</td><td class="value"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td>
-</tr>
-</table>
-<h5>Required by</h5>
-<table>
-<thead>
-<tr>
-<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>apache</td><td><a href="#apache-commons-cli">commons-cli</a></td><td>default</td><td>1.0</td>
-</tr>
-</tbody>
-</table>
-<h5>Dependencies</h5>
-<table>
-<tr>
-<td>
-    No dependency
-    </td>
-</tr>
-</table>
-<h5>Artifacts</h5>
-<table>
-<thead>
-<tr>
-<th>Name</th><th>Type</th><th>Ext</th><th>Download</th><th>Size</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>commons-logging</td><td>jar</td><td>jar</td><td align="center">no</td><td align="center">21 kB</td>
-</tr>
-</tbody>
-</table>
-</div>
-</body>
-
-</html>
+<!--
+   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">
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Ivy report :: ivyrep-example by jayasoft :: default</title>
+<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
+<meta content="en" http-equiv="content-language">
+<meta content="index,follow" name="robots">
+<link href="ivy-report.css" type="text/css" rel="stylesheet">
+</head>
+<body>
+<div id="logo">
+<a href="http://ant.apache.org/ivy/"><img src="../images/logo.png"></a>
+</div>
+<h1>
+<a name="jayasoft-ivyrep-example"></a><span id="module">ivyrep-example</span> 
+        by 
+        <span id="organisation">jayasoft</span>
+</h1>
+<div id="date">
+    resolved on 
+      2005-04-08 13:33:40</div>
+<ul id="confmenu">
+<li>
+<a class="active" href="jayasoft-ivyrep-example-default.html">default</a>
+</li>
+</ul>
+<div id="content">
+<h2>Dependencies Stats</h2>
+<table class="header">
+<tr>
+<td class="title">Modules</td><td class="value">3</td>
+</tr>
+<tr>
+<td class="title">Revisions</td><td class="value">4  
+            (0 searched <img title="module revisions which required a search with a dependency resolver to be resolved" alt="searched" src="../images/searched.gif">,
+            0 downloaded <img title="module revisions for which ivy file was downloaded by dependency resolver" alt="downloaded" src="../images/downloaded.gif">,
+            1 evicted <img title="module revisions which were evicted by others" alt="evicted" src="../images/evicted.gif">,
+            0 errors <img title="module revisions on which error occured" alt="error" src="../images/error.gif">)</td>
+</tr>
+<tr>
+<td class="title">Artifacts</td><td class="value">3 
+            (0 downloaded,
+            0 failed)</td>
+</tr>
+<tr>
+<td class="title">Artifacts size</td><td class="value">219 kB
+            (0 kB downloaded,
+            219 kB in cache)</td>
+</tr>
+</table>
+<h2>Dependencies Overview</h2>
+<table class="deps">
+<thead>
+<tr>
+<th>Module</th><th>Revision</th><th>Status</th><th>Licenses</th><th>Size</th><th></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td><a href="#apache-commons-cli"> commons-cli
+         by
+         apache</a></td><td><a href="#apache-commons-cli-1.0">1.0</a></td><td align="center">release</td><td align="center"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td><td align="center">32 kB
+    </td><td align="center"></td>
+</tr>
+<tr>
+<td><a href="#apache-commons-lang">--- commons-lang
+         by
+         apache</a></td><td><a href="#apache-commons-lang-2.0">2.0</a></td><td align="center">release</td><td align="center"></td><td align="center">166 kB
+    </td><td align="center"></td>
+</tr>
+<tr>
+<td><a href="#apache-commons-lang">--- commons-lang
+         by
+         apache</a></td><td><a href="#apache-commons-lang-1.0">1.0</a></td><td align="center"></td><td align="center"></td><td align="center">0 kB
+    </td><td align="center"><img src="http://ivy.jayasoft.org/images/evicted.gif" alt="evicted" title="evicted by 2.0"></td>
+</tr>
+<tr>
+<td><a href="#apache-commons-logging">--- commons-logging
+         by
+         apache</a></td><td><a href="#apache-commons-logging-1.0">1.0</a></td><td align="center">release</td><td align="center"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td><td align="center">21 kB
+    </td><td align="center"></td>
+</tr>
+<tr>
+<td><a href="#apache-commons-lang"> commons-lang
+         by
+         apache</a></td><td><a href="#apache-commons-lang-2.0">2.0</a></td><td align="center">release</td><td align="center"></td><td align="center">166 kB
+    </td><td align="center"></td>
+</tr>
+</tbody>
+</table>
+<h2>Details</h2>
+<h3>
+<a name="apache-commons-cli"></a>commons-cli by apache<span class="resolved">resolved by <b>ivyrep</b></span>
+</h3>
+<h4>
+<a name="apache-commons-cli-1.0"></a>
+           Revision: 1.0<span style="padding-left:15px;"></span>
+</h4>
+<table class="header">
+<tr>
+<td class="title">Home Page</td><td class="value"><a href="http://jakarta.apache.org/commons/cli/">http://jakarta.apache.org/commons/cli/</a></td>
+</tr>
+<tr>
+<td class="title">Status</td><td class="value">release</td>
+</tr>
+<tr>
+<td class="title">Publication</td><td class="value">20021227095900</td>
+</tr>
+<tr>
+<td class="title">Resolver</td><td class="value">ivyrep</td>
+</tr>
+<tr>
+<td class="title">Configurations</td><td class="value">default</td>
+</tr>
+<tr>
+<td class="title">Artifacts size</td><td class="value">32 kB
+            (0 kB downloaded,
+            32 kB in cache)</td>
+</tr>
+<tr>
+<td class="title">Licenses</td><td class="value"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td>
+</tr>
+</table>
+<h5>Required by</h5>
+<table>
+<thead>
+<tr>
+<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>jayasoft</td><td><a href="#jayasoft-ivyrep-example">ivyrep-example</a></td><td>default</td><td>1.0</td>
+</tr>
+</tbody>
+</table>
+<h5>Dependencies</h5>
+<table class="deps">
+<thead>
+<tr>
+<th>Module</th><th>Revision</th><th>Status</th><th>Licenses</th><th>Size</th><th></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td><a href="#apache-commons-lang"> commons-lang
+         by
+         apache</a></td><td><a href="#apache-commons-lang-2.0">2.0</a></td><td align="center">release</td><td align="center"></td><td align="center">166 kB
+    </td><td align="center"></td>
+</tr>
+<tr>
+<td><a href="#apache-commons-lang"> commons-lang
+         by
+         apache</a></td><td><a href="#apache-commons-lang-1.0">1.0</a></td><td align="center"></td><td align="center"></td><td align="center">0 kB
+    </td><td align="center"><img src="http://ivy.jayasoft.org/images/evicted.gif" alt="evicted" title="evicted by 2.0"></td>
+</tr>
+<tr>
+<td><a href="#apache-commons-logging"> commons-logging
+         by
+         apache</a></td><td><a href="#apache-commons-logging-1.0">1.0</a></td><td align="center">release</td><td align="center"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td><td align="center">21 kB
+    </td><td align="center"></td>
+</tr>
+</tbody>
+</table>
+<h5>Artifacts</h5>
+<table>
+<thead>
+<tr>
+<th>Name</th><th>Type</th><th>Ext</th><th>Download</th><th>Size</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>commons-cli</td><td>jar</td><td>jar</td><td align="center">no</td><td align="center">32 kB</td>
+</tr>
+</tbody>
+</table>
+<h3>
+<a name="apache-commons-lang"></a>commons-lang by apache<span class="resolved">resolved by <b>ivyrep</b></span>
+</h3>
+<h4>
+<a name="apache-commons-lang-2.0"></a>
+           Revision: 2.0<span style="padding-left:15px;"></span>
+</h4>
+<table class="header">
+<tr>
+<td class="title">Status</td><td class="value">release</td>
+</tr>
+<tr>
+<td class="title">Publication</td><td class="value">20050407222759</td>
+</tr>
+<tr>
+<td class="title">Resolver</td><td class="value">ivyrep</td>
+</tr>
+<tr>
+<td class="title">Configurations</td><td class="value">default</td>
+</tr>
+<tr>
+<td class="title">Artifacts size</td><td class="value">166 kB
+            (0 kB downloaded,
+            166 kB in cache)</td>
+</tr>
+</table>
+<h5>Required by</h5>
+<table>
+<thead>
+<tr>
+<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>apache</td><td><a href="#apache-commons-cli">commons-cli</a></td><td>default</td><td>1.0</td>
+</tr>
+<tr>
+<td>jayasoft</td><td><a href="#jayasoft-ivyrep-example">ivyrep-example</a></td><td>default</td><td>2.0</td>
+</tr>
+</tbody>
+</table>
+<h5>Dependencies</h5>
+<table>
+<tr>
+<td>
+    No dependency
+    </td>
+</tr>
+</table>
+<h5>Artifacts</h5>
+<table>
+<thead>
+<tr>
+<th>Name</th><th>Type</th><th>Ext</th><th>Download</th><th>Size</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>commons-lang</td><td>jar</td><td>jar</td><td align="center">no</td><td align="center">166 kB</td>
+</tr>
+</tbody>
+</table>
+<h4>
+<a name="apache-commons-lang-1.0"></a>
+           Revision: 1.0<span style="padding-left:15px;"><img src="http://ivy.jayasoft.org/images/evicted.gif" alt="evicted" title="evicted by 2.0"></span>
+</h4>
+<table class="header">
+<tr>
+<td class="title">Status</td><td class="value"></td>
+</tr>
+<tr>
+<td class="title">Publication</td><td class="value"></td>
+</tr>
+<tr>
+<td class="title">Resolver</td><td class="value"></td>
+</tr>
+<tr>
+<td class="title">Configurations</td><td class="value"></td>
+</tr>
+<tr>
+<td class="title">Artifacts size</td><td class="value">0 kB
+            (0 kB downloaded,
+            0 kB in cache)</td>
+</tr>
+<tr>
+<td class="title">Evicted by</td><td class="value">2.0   
+            in <b>latest-revision</b> conflict manager
+        </td>
+</tr>
+</table>
+<h5>Required by</h5>
+<table>
+<thead>
+<tr>
+<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>apache</td><td><a href="#apache-commons-cli">commons-cli</a></td><td>default</td><td>1.0</td>
+</tr>
+</tbody>
+</table>
+<h3>
+<a name="apache-commons-logging"></a>commons-logging by apache<span class="resolved">resolved by <b>ivyrep</b></span>
+</h3>
+<h4>
+<a name="apache-commons-logging-1.0"></a>
+           Revision: 1.0<span style="padding-left:15px;"></span>
+</h4>
+<table class="header">
+<tr>
+<td class="title">Home Page</td><td class="value"><a href="http://jakarta.apache.org/commons/logging/">http://jakarta.apache.org/commons/logging/</a></td>
+</tr>
+<tr>
+<td class="title">Status</td><td class="value">release</td>
+</tr>
+<tr>
+<td class="title">Publication</td><td class="value">20020220232200</td>
+</tr>
+<tr>
+<td class="title">Resolver</td><td class="value">ivyrep</td>
+</tr>
+<tr>
+<td class="title">Configurations</td><td class="value">default</td>
+</tr>
+<tr>
+<td class="title">Artifacts size</td><td class="value">21 kB
+            (0 kB downloaded,
+            21 kB in cache)</td>
+</tr>
+<tr>
+<td class="title">Licenses</td><td class="value"><span style="padding-right:3px;"><a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache</a></span></td>
+</tr>
+</table>
+<h5>Required by</h5>
+<table>
+<thead>
+<tr>
+<th>Organisation</th><th>Name</th><th>In Configurations</th><th>Asked Revision</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>apache</td><td><a href="#apache-commons-cli">commons-cli</a></td><td>default</td><td>1.0</td>
+</tr>
+</tbody>
+</table>
+<h5>Dependencies</h5>
+<table>
+<tr>
+<td>
+    No dependency
+    </td>
+</tr>
+</table>
+<h5>Artifacts</h5>
+<table>
+<thead>
+<tr>
+<th>Name</th><th>Type</th><th>Ext</th><th>Download</th><th>Size</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>commons-logging</td><td>jar</td><td>jar</td><td align="center">no</td><td align="center">21 kB</td>
+</tr>
+</tbody>
+</table>
+</div>
+</body>
+
+</html>