summaryrefslogtreecommitdiff
path: root/Build/cdbuild/tpm2list.xsl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2005-12-27 23:56:17 +0000
committerKarl Berry <karl@freefriends.org>2005-12-27 23:56:17 +0000
commit577983747d8680b8defbfdd03a9d50bad6fd54b7 (patch)
tree16b160f53c6c4c309c07db2c5b095d3abb16f69a /Build/cdbuild/tpm2list.xsl
parent07fed0169bae91dfb5616f9d19e7969727e19d4d (diff)
initial Build
git-svn-id: svn://tug.org/texlive/trunk@4 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/cdbuild/tpm2list.xsl')
-rw-r--r--Build/cdbuild/tpm2list.xsl76
1 files changed, 76 insertions, 0 deletions
diff --git a/Build/cdbuild/tpm2list.xsl b/Build/cdbuild/tpm2list.xsl
new file mode 100644
index 00000000000..643e00376e4
--- /dev/null
+++ b/Build/cdbuild/tpm2list.xsl
@@ -0,0 +1,76 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:TPM="http://texlive.dante.de/"
+ version="1.0">
+
+<xsl:output method="xml" omit-xml-declaration="yes"/>
+
+<xsl:strip-space elements="*"/>
+
+<xsl:variable name="Master">/texlive/Master/texmf-dist/tpm/lists/</xsl:variable>
+<xsl:variable name="LISTS">texmf-dist/tpm/lists/</xsl:variable>
+
+<xsl:template match="/">
+ <xsl:apply-templates select="rdf:RDF/rdf:Description"/>
+</xsl:template>
+
+<xsl:template match="rdf:Description">
+ <xsl:variable name="File">
+ <xsl:value-of select="TPM:Name"/>
+ </xsl:variable>
+ <xsl:apply-templates select="TPM:BinFiles"/>
+ <xsl:message>Write <xsl:value-of select="concat($Master,$File)"/></xsl:message>
+ <xsl:document omit-xml-declaration="yes" method="text" href="{concat($Master,$File)}">
+ <xsl:apply-templates select="TPM:DocFiles"/><xsl:text>&#10;</xsl:text>
+ <xsl:apply-templates select="TPM:SourceFiles"/><xsl:text>&#10;</xsl:text>
+ <xsl:apply-templates select="TPM:RunFiles"/><xsl:text>&#10;</xsl:text>
+ <xsl:apply-templates select="TPM:Installation"/>
+<xsl:text>&#10;texmf-dist</xsl:text>
+ <xsl:value-of select="substring-after($Master,'texmf-dist')"/>
+ <xsl:value-of select="TPM:Name"/><xsl:text>&#10;</xsl:text></xsl:document>
+</xsl:template>
+
+<xsl:template match="TPM:BinFiles">
+ <xsl:message>Write <xsl:value-of
+ select="concat($Master,//TPM:Name)"/>
+ <xsl:text>.</xsl:text>
+ <xsl:value-of select="@arch"/></xsl:message>
+ <xsl:document method="text" href="{$Master}{//TPM:Name}.{@arch}">
+ <xsl:value-of select="translate(normalize-space(.),' ','&#10;')"/>
+<xsl:text>&#10;</xsl:text>
+<xsl:value-of
+ select="concat($LISTS,//TPM:Name)"/>
+ <xsl:text>.</xsl:text>
+ <xsl:value-of select="@arch"/>
+<xsl:text>&#10;</xsl:text>
+</xsl:document>
+</xsl:template>
+
+<xsl:template match="TPM:Name" mode="name">
+ <xsl:apply-templates/>
+</xsl:template>
+
+<xsl:template match="TPM:DocFiles|TPM:SourceFiles|TPM:RunFiles">
+ <xsl:value-of select="translate(normalize-space(.),' ','&#10;')"/>
+</xsl:template>
+
+<xsl:template match="TPM:Installation">
+ <xsl:for-each select="TPM:Execute">
+ <xsl:variable name="Function">
+ <xsl:choose>
+ <xsl:when test="@mode='mixed' and @function='addMap'">
+ <xsl:text>addMixedMap</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="@function"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:text>!</xsl:text>
+ <xsl:value-of select="$Function"/>
+ <xsl:text> </xsl:text>
+ <xsl:value-of select="@parameter"/>
+ <xsl:text>&#10;</xsl:text>
+ </xsl:for-each>
+</xsl:template>
+</xsl:stylesheet>