dion 2003/11/09 08:11:34 Modified: javadoc/xdocs changes.xml javadoc plugin.jelly Log: Apply fix for MAVEN-1007 Revision Changes Path 1.12 +3 -0 maven-plugins/javadoc/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /home/cvs/maven-plugins/javadoc/xdocs/changes.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- changes.xml 8 Oct 2003 16:22:00 -0000 1.11 +++ changes.xml 9 Nov 2003 16:11:34 -0000 1.12 @@ -9,6 +9,9 @@ <body> <release version="1.4" date="in CVS"> + <action dev="dion" type="fix"> + Applied MAVEN-1007. Fix typo in offline link generation. + </action> <action dev="dion" type="add"> Applied MAVEN-894. Allow custom taglets. </action> 1.26 +5 -3 maven-plugins/javadoc/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /home/cvs/maven-plugins/javadoc/plugin.jelly,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- plugin.jelly 8 Oct 2003 16:38:11 -0000 1.25 +++ plugin.jelly 9 Nov 2003 16:11:34 -0000 1.26 @@ -146,10 +146,12 @@ <!-- generate the link --> <j:choose> - <j:when test="${online}" /> + <j:when test="${online}" > <ant:link href="${href}" offline="false" packagelistLoc="${packagelistLoc}" /> - <j:otherwise /> - <ant:link href="${href}" offline="true" packagelistLoc="${packagelistLoc}" /> + </j:when> + <j:otherwise> + <ant:link href="${href}" offline="true" packagelistLoc="${packagelistLoc}" /> + </j:otherwise> </j:choose> </j:forEach>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]