evenisse 2004/02/11 01:41:32
Modified: linkcheck plugin.jelly project.xml
linkcheck/src/plugin-resources linkcheck.jsl
linkcheck/xdocs changes.xml
Log:
MPLINKCHECK-7
Revision Changes Path
1.14 +3 -3 maven-plugins/linkcheck/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven-plugins/linkcheck/plugin.jelly,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- plugin.jelly 28 Oct 2003 22:25:19 -0000 1.13
+++ plugin.jelly 11 Feb 2004 09:41:32 -0000 1.14
@@ -79,9 +79,9 @@
outputMode="xml"
prettyPrint="true"
/>
-
- <j:set var="maven.xdoc.src" value="${maven.build.dir}/linkcheck/docs"/>
- <attainGoal name="xdoc:performJSL"/>
+
+ <doc:jslToSite srcdir="${maven.build.dir}/linkcheck/docs"/>
+
</goal>
<goal name="maven-linkcheck-plugin:clearcache"
1.35 +1 -1 maven-plugins/linkcheck/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven-plugins/linkcheck/project.xml,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- project.xml 29 Dec 2003 04:38:06 -0000 1.34
+++ project.xml 11 Feb 2004 09:41:32 -0000 1.35
@@ -5,7 +5,7 @@
<pomVersion>3</pomVersion>
<id>maven-linkcheck-plugin</id>
<name>Maven LinkCheck Plug-in</name>
- <currentVersion>1.1</currentVersion>
+ <currentVersion>1.2-SNAPSHOT</currentVersion>
<description/>
<shortDescription>Check xdoc links</shortDescription>
<url>http://maven.apache.org/reference/plugins/linkcheck/</url>
1.4 +6 -3 maven-plugins/linkcheck/src/plugin-resources/linkcheck.jsl
Index: linkcheck.jsl
===================================================================
RCS file: /home/cvs/maven-plugins/linkcheck/src/plugin-resources/linkcheck.jsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- linkcheck.jsl 5 Mar 2003 00:35:42 -0000 1.3
+++ linkcheck.jsl 11 Feb 2004 09:41:32 -0000 1.4
@@ -17,10 +17,13 @@
</properties>
<body>
<section name="Link Check Report">
- <table>
+ <table summary="Link Check summary">
+ <thead>
<tr>
<th>URL</th>
</tr>
+ </thead>
+ <tbody>
<x:forEach var="file" select="file[unsuccessful != 0]">
<tr>
<td colspan="2">
@@ -36,13 +39,13 @@
<j:set var="status"><x:expr select="$result/status"/></j:set>
<j:set var="target"><x:expr select="$result/target"/></j:set>
<j:if test="${status != 'OK'}">
- <span style="pad-left:60px">${status} - ${target}</span>
- <br/>
+ <p>${status} - ${target}</p>
</j:if>
</x:forEach>
</td>
</tr>
</x:forEach>
+ </tbody>
</table>
</section>
</body>
1.10 +5 -0 maven-plugins/linkcheck/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven-plugins/linkcheck/xdocs/changes.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- changes.xml 29 Sep 2003 06:18:39 -0000 1.9
+++ changes.xml 11 Feb 2004 09:41:32 -0000 1.10
@@ -7,6 +7,11 @@
<body>
+ <release version="1.2" date="In CVS">
+ <action dev="evenisse" type="fix" issue="MPLINKCHECK-7">
+ Fix HTML.
+ </action>
+ </release>
<release version="1.1" date="2003-09-29">
<action dev="dion" type="update">update to
commons-jelly-20030902.160215</action>
<action dev="dion" type="update">update to use
maven.docs.*/maven.gen.docs</action>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]