From: Jeff J. <jef...@us...> - 2006-08-06 02:41:45
|
jeffjensen 06/08/05 19:41:44 Modified: tasks/src/plugin-resources tasks.jsl Log: Add priority column. Revision Changes Path 1.9 +6 -0 maven-plugins/tasks/src/plugin-resources/tasks.jsl Index: tasks.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/src/plugin-resources/tasks.jsl,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- tasks.jsl 6 Aug 2006 02:35:13 -0000 1.8 +++ tasks.jsl 6 Aug 2006 02:41:44 -0000 1.9 @@ -40,6 +40,7 @@ <!-- Tasks for the category --> <table> <tr> + <th style='width:30px'>Priority</th> <th>Task</th> <th style='width:50px'>Status</th> <th style='width:30px'>Effort</th> @@ -50,6 +51,7 @@ <th style='width:30px'>Version</th> </tr> <x:forEach var="task" select="task"> + <j:set var="priority"><x:expr select="@priority"/></j:set> <j:set var="creator"><x:expr select="@creator"/></j:set> <j:if test="${empty(creator)}"> <j:set var="creator">Unknown</j:set> @@ -64,6 +66,7 @@ </j:if> <j:set var="version"><x:expr select="@version"/></j:set> <tr> + <td>${priority}</td> <td><jsl:applyTemplates select="$task"/></td> <td>${status}</td> <td>${effort}</td> @@ -83,6 +86,7 @@ <!-- Tasks for the subcategory --> <table> <tr> + <th style='width:30px'>Priority</th> <th>Task</th> <th style='width:50px'>Status</th> <th style='width:30px'>Effort</th> @@ -93,6 +97,7 @@ <th style='width:30px'>Version</th> </tr> <x:forEach var="task" select="task"> + <j:set var="priority"><x:expr select="@priority"/></j:set> <j:set var="creator"><x:expr select="@creator"/></j:set> <j:if test="${empty(creator)}"> <j:set var="creator">Unknown</j:set> @@ -107,6 +112,7 @@ </j:if> <j:set var="version"><x:expr select="@version"/></j:set> <tr> + <td>${priority}</td> <td><jsl:applyTemplates select="$task"/></td> <td>${status}</td> <td>${effort}</td> |