summaryrefslogtreecommitdiffstats
path: root/build/bin/svnlog-to-rn.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'build/bin/svnlog-to-rn.xsl')
-rw-r--r--build/bin/svnlog-to-rn.xsl19
1 files changed, 19 insertions, 0 deletions
diff --git a/build/bin/svnlog-to-rn.xsl b/build/bin/svnlog-to-rn.xsl
new file mode 100644
index 0000000000..75dd762db9
--- /dev/null
+++ b/build/bin/svnlog-to-rn.xsl
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0">
+
+ <xsl:output method="html"/>
+
+ <xsl:template match="logentry">
+ <li>[<xsl:element name="a"><xsl:attribute name="href">http://dev.itmill.com/changeset/<xsl:value-of select="@revision"/></xsl:attribute><xsl:value-of select="@revision"/></xsl:element>]: <xsl:value-of select="msg"/></li>
+ </xsl:template>
+
+ <xsl:template match="/">
+ <html>
+ <body bgcolor="#FFFFFF">
+ <xsl:apply-templates/>
+ </body>
+ </html>
+ </xsl:template>
+
+</xsl:stylesheet>