*** empty log message ***
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112981 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41c56b8b8e
commit
8628833cb9
42
changes/src/plugin-resources/changes.jsl
Normal file
42
changes/src/plugin-resources/changes.jsl
Normal file
@ -0,0 +1,42 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<jsl:stylesheet
|
||||
select="$doc"
|
||||
xmlns:j="jelly:core"
|
||||
xmlns:jsl="jelly:jsl"
|
||||
xmlns:x="jelly:xml"
|
||||
xmlns="dummy" trim="false">
|
||||
|
||||
<jsl:template match="document">
|
||||
<document>
|
||||
<jsl:applyTemplates select="properties"/>
|
||||
|
||||
<body>
|
||||
<x:forEach var="release" select="body/release">
|
||||
<j:set var="sectionName">Release <x:expr select="@version"/> - <x:expr select="@date"/></j:set>
|
||||
<section name="${sectionName}">
|
||||
<table>
|
||||
<tr><th style='width:50px'>Type</th><th>Changes</th><th style='width:70px'>By</th></tr>
|
||||
<x:forEach var="action" select="action">
|
||||
<j:set var="type"><x:expr select="@type"/></j:set>
|
||||
<j:set var="dev"><x:expr select="@dev"/></j:set>
|
||||
<tr>
|
||||
<td><img src="images/${type}.gif" alt="${type}"/></td>
|
||||
<td><x:expr select="string(.)"/></td>
|
||||
<td><a href="team-list.html#${dev}">${dev}</a></td>
|
||||
</tr>
|
||||
</x:forEach>
|
||||
</table>
|
||||
</section>
|
||||
</x:forEach>
|
||||
</body>
|
||||
</document>
|
||||
</jsl:template>
|
||||
|
||||
<!-- copy any other elements through -->
|
||||
<jsl:template match="*" trim="false">
|
||||
<jsl:copy trim="false">
|
||||
<jsl:applyTemplates trim="false"/>
|
||||
</jsl:copy>
|
||||
</jsl:template>
|
||||
</jsl:stylesheet>
|
||||
Loading…
x
Reference in New Issue
Block a user