evenisse 2004/02/09 05:58:13 Modified: xdoc/src/plugin-resources/templates project-info.xml Log: Fix Project information when issue tracking url and scm url are blank Revision Changes Path 1.5 +2 -2 maven-plugins/xdoc/src/plugin-resources/templates/project-info.xml Index: project-info.xml =================================================================== RCS file: /home/cvs/maven-plugins/xdoc/src/plugin-resources/templates/project-info.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- project-info.xml 10 Jul 2003 00:48:45 -0000 1.4 +++ project-info.xml 9 Feb 2004 13:58:13 -0000 1.5 @@ -45,7 +45,7 @@ --> - #if ($project.repository.url) + #if ($project.repository.url && $project.repository.url != '') <tr><td><a href="cvs-usage.html">Source Repository</a></td> <td> This is a link to the online source repository that can be @@ -53,7 +53,7 @@ </td> </tr> #end - #if ($project.issueTrackingUrl) + #if ($project.issueTrackingUrl && $project.issueTrackingUrl != '') <tr><td><a href="issue-tracking.html">Issue Tracking</a></td> <td> This is a link to the issue tracking system for this
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]