-
Notifications
You must be signed in to change notification settings - Fork 2
/
svn_changelog_style.xsl
48 lines (46 loc) · 1.29 KB
/
svn_changelog_style.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>ChangeLog for Emergent Version <xsl:value-of select="$versNum"/>
Revisions <xsl:value-of select="$revRange"/> </h2>
<table border="1" style="table-layout:fixed;width: 100%;">
<tr>
<td width="5%">Rev No.</td>
<td width="10%">
Date
</td>
<td width="5%">
Author
</td>
<td width="">
Message
</td>
</tr>
<xsl:for-each select="log/logentry">
<tr>
<td>
<pre><xsl:value-of select="@revision"/> </pre>
</td>
<td>
<pre><xsl:value-of select="substring(date, 0, 11)" /></pre>
</td>
<td>
<pre>
<xsl:value-of select="author"/>
</pre>
</td>
<td>
<pre>
<xsl:value-of select="msg"/>
</pre>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>