aboutsummaryrefslogtreecommitdiffstats
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, 0 insertions, 19 deletions
diff --git a/build/bin/svnlog-to-rn.xsl b/build/bin/svnlog-to-rn.xsl
deleted file mode 100644
index 75dd762db9..0000000000
--- a/build/bin/svnlog-to-rn.xsl
+++ /dev/null
@@ -1,19 +0,0 @@
-<?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>