dion 2003/11/09 07:25:57 Modified: xdoc/xdocs changes.xml properties.xml xdoc/src/plugin-resources site.jsl xdoc plugin.properties plugin.jelly Log: Apply MAVEN-966 Revision Changes Path 1.24 +3 -0 maven-plugins/xdoc/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /home/cvs/maven-plugins/xdoc/xdocs/changes.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- changes.xml 9 Nov 2003 15:20:59 -0000 1.23 +++ changes.xml 9 Nov 2003 15:25:57 -0000 1.24 @@ -8,6 +8,9 @@ <body> <release version="1.5" date="in CVS"> <action dev="dion" type="update"> + Fix MAVEN-966. Evenly space breadcrumbs, customize separator. + </action> + <action dev="dion" type="update"> Fix MAVEN-962. Better timezone calcs. </action> <action dev="dion" type="update"> 1.8 +5 -0 maven-plugins/xdoc/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /home/cvs/maven-plugins/xdoc/xdocs/properties.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- properties.xml 9 Nov 2003 15:05:18 -0000 1.7 +++ properties.xml 9 Nov 2003 15:25:57 -0000 1.8 @@ -379,6 +379,11 @@ <section name="Miscellaneous Properties"> <table> <tr> + <td>maven.xdoc.crumb.separator</td> + <td>Yes</td> + <td>The separator between links. Defaults to <code>|</code></td> + </tr> + <tr> <td>maven.xdoc.date</td> <td>Yes</td> <td> 1.34 +1 -1 maven-plugins/xdoc/src/plugin-resources/site.jsl Index: site.jsl =================================================================== RCS file: /home/cvs/maven-plugins/xdoc/src/plugin-resources/site.jsl,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- site.jsl 17 Oct 2003 05:31:38 -0000 1.33 +++ site.jsl 9 Nov 2003 15:25:57 -0000 1.34 @@ -276,7 +276,7 @@ <jsl:template match="links" trim="false"> <j:set var="linkCount" value="1"/> <x:forEach var="link" select="item"> - <j:if test="${linkCount != 1}">|</j:if> + <j:if test="${linkCount != 1}">${maven.xdoc.crumb.separator}</j:if> <j:set var="_name"><x:expr select="@name"/></j:set> <j:set var="_link"><x:expr select="@href"/></j:set> <doc:itemLink name="${_name}" link="${_link}"/> 1.12 +2 -0 maven-plugins/xdoc/plugin.properties Index: plugin.properties =================================================================== RCS file: /home/cvs/maven-plugins/xdoc/plugin.properties,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- plugin.properties 29 Aug 2003 06:27:51 -0000 1.11 +++ plugin.properties 9 Nov 2003 15:25:57 -0000 1.12 @@ -7,6 +7,8 @@ maven.xdoc.developmentProcessUrl=http://maven.apache.org/development-process.html maven.xdoc.includeProjectDocumentation = yes +maven.xdoc.crumb.separator=| + # # DATE Preferences # 1.53 +2 -1 maven-plugins/xdoc/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /home/cvs/maven-plugins/xdoc/plugin.jelly,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- plugin.jelly 28 Oct 2003 22:27:03 -0000 1.52 +++ plugin.jelly 9 Nov 2003 15:25:57 -0000 1.53 @@ -170,7 +170,8 @@ <img class="handle" src="${relativePath}/images/${state}.png" alt=""/> <j:if test="${empty(img)}">${name}</j:if> <j:if test="${!empty(img)}"><img style="border: 1px" src="${img}" title="${name}" alt="${name}"/></j:if> - </a> + <img class="handle" src="${relativePath}/images/none.png" alt=""/> + </a> </define:tag> <define:tag name="text-xdoc">
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]