aboutsummaryrefslogtreecommitdiff
path: root/utility/reference_commit.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'utility/reference_commit.xsl')
-rw-r--r--utility/reference_commit.xsl25
1 files changed, 25 insertions, 0 deletions
diff --git a/utility/reference_commit.xsl b/utility/reference_commit.xsl
new file mode 100644
index 0000000..63cb064
--- /dev/null
+++ b/utility/reference_commit.xsl
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+>
+
+<xsl:template match="@* | node()" mode="commit">
+ <xsl:copy>
+ <xsl:apply-templates select="@* | node()" mode="commit"/>
+ </xsl:copy>
+</xsl:template>
+
+<xsl:template match="commit" mode="commit">
+ <xsl:copy>
+ <xsl:attribute name="repository">
+ <xsl:value-of select="../@handle"/>
+ </xsl:attribute>
+
+ <xsl:apply-templates select="@* | node()" mode="commit"/>
+ </xsl:copy>
+</xsl:template>
+
+<xsl:template match="message | date | text()" mode="commit"/>
+
+</xsl:stylesheet>