summaryrefslogtreecommitdiff
path: root/tools/const-names.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/const-names.xsl')
-rw-r--r--tools/const-names.xsl21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/const-names.xsl b/tools/const-names.xsl
new file mode 100644
index 0000000..5cff33e
--- /dev/null
+++ b/tools/const-names.xsl
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+ <xsl:output method="text"/>
+
+ <xsl:strip-space elements="*"/>
+
+ <xsl:variable name="nl"><xsl:text>
+</xsl:text></xsl:variable>
+
+ <xsl:template match="enum/item">
+ <xsl:value-of select="concat('XCB', /xcb/@extension-name, ../@name, @name, $nl)"/>
+ </xsl:template>
+
+ <xsl:template match="event|eventcopy|error|errorcopy">
+ <xsl:value-of select="concat('XCB', /xcb/@extension-name, @name, $nl)"/>
+ </xsl:template>
+
+ <xsl:template match="text()"/>
+
+</xsl:transform>