summaryrefslogtreecommitdiff
path: root/issues/id.xsl
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2012-05-19 10:23:25 -0400
committerAdrian Thurston <thurston@complang.org>2012-05-19 10:23:25 -0400
commit825faa6f0d6b43513cca72b33e2ecf83763a2f56 (patch)
treef885f4d93e3b8c052ce7c215d33d2e7c46b6a59e /issues/id.xsl
parentc5db7afd3fa2e3ed29debb8339530087f274cb8e (diff)
downloadcolm-825faa6f0d6b43513cca72b33e2ecf83763a2f56.tar.gz
updated issues
Added XSL transformation that prints issues ids. Made the XML file well-formed. Added an issue that was added in redmine after the export.
Diffstat (limited to 'issues/id.xsl')
-rw-r--r--issues/id.xsl11
1 files changed, 11 insertions, 0 deletions
diff --git a/issues/id.xsl b/issues/id.xsl
new file mode 100644
index 00000000..f9a9def2
--- /dev/null
+++ b/issues/id.xsl
@@ -0,0 +1,11 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method="text"/>
+<xsl:preserve-space elements="*"/>
+<xsl:strip-space elements=""/>
+<xsl:template match="/">
+<xsl:for-each select="issues/issue">
+ <xsl:value-of select="id"/><xsl:text>
+</xsl:text>
+</xsl:for-each>
+</xsl:template>
+</xsl:stylesheet>