summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2.xsl')
-rw-r--r--Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2.xsl42
1 files changed, 42 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2.xsl b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2.xsl
new file mode 100644
index 00000000000..4ecc4150d66
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2.xsl
@@ -0,0 +1,42 @@
+<?xml version='1.0' encoding="ISO-8859-1"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<xsl:output method="xml" encoding="ISO-8859-1"/>
+
+<xsl:template match="/">
+ <xsl:element name="countries"><xsl:text>&#xA;</xsl:text>
+ <xsl:for-each select="countries/country">
+ <xsl:element name="country">
+ <xsl:attribute name="shortname">
+ <xsl:value-of select="shortname"/>
+ </xsl:attribute>
+ <xsl:attribute name="fullname">
+ <xsl:value-of select="fullname"/>
+ </xsl:attribute>
+ <xsl:attribute name="isocountry">
+ <xsl:value-of select="isocountry"/>
+ </xsl:attribute>
+ <xsl:attribute name="capital">
+ <xsl:value-of select="capital"/>
+ </xsl:attribute>
+ <xsl:attribute name="citizen">
+ <xsl:value-of select="citizen"/>
+ </xsl:attribute>
+ <xsl:attribute name="adjective">
+ <xsl:value-of select="adjective"/>
+ </xsl:attribute>
+ <xsl:attribute name="currency">
+ <xsl:value-of select="currency"/>
+ </xsl:attribute>
+ <xsl:attribute name="isocurrency">
+ <xsl:value-of select="isocurrency"/>
+ </xsl:attribute>
+ <xsl:attribute name="currensubunit">
+ <xsl:value-of select="currensubunit"/>
+ </xsl:attribute>
+ </xsl:element><xsl:text>&#xA;</xsl:text>
+ </xsl:for-each>
+ </xsl:element><xsl:text>&#xA;</xsl:text>
+</xsl:template>
+
+</xsl:stylesheet>