summaryrefslogtreecommitdiff
path: root/Build/tools/tpm2list.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Build/tools/tpm2list.xsl')
-rw-r--r--Build/tools/tpm2list.xsl98
1 files changed, 0 insertions, 98 deletions
diff --git a/Build/tools/tpm2list.xsl b/Build/tools/tpm2list.xsl
deleted file mode 100644
index db7919e96e1..00000000000
--- a/Build/tools/tpm2list.xsl
+++ /dev/null
@@ -1,98 +0,0 @@
-<!-- $Id$
- Written by Sebastian Rahtz. Public domain. -->
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:exsl="http://exslt.org/common"
- exclude-result-prefixes="exsl"
- extension-element-prefixes="exsl"
- 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="*"/>
-
-<!-- assume the current directory is Master, as Tools/update arranges. -->
-<xsl:param name="ROOT">.</xsl:param>
-
-<xsl:variable name="Master">
- <xsl:value-of select="$ROOT"/>/texmf/lists/</xsl:variable>
-<xsl:variable name="LISTS">texmf/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"/>
- <exsl:document omit-xml-declaration="yes" method="text" href="{concat($Master,$File)}">
- <xsl:apply-templates select="TPM:Requires"/>
- <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</xsl:text>
- <xsl:value-of select="substring-after($Master,'texmf')"/>
- <xsl:value-of select="TPM:Name"/><xsl:text>&#10;</xsl:text></exsl:document>
-<!--
- <xsl:message>Write <xsl:value-of
- select="concat($Master,//TPM:Name)"/>
- <xsl:text>.</xsl:text>
- <xsl:value-of select="@arch"/></xsl:message>
--->
-</xsl:template>
-
-<xsl:template match="TPM:BinFiles">
- <exsl: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>
-</exsl: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:template match="TPM:Requires">
-<xsl:for-each select="TPM:Package|TPM:TLCore">
-<xsl:sort select="normalize-space(@name)"/>
-<xsl:text>+</xsl:text>
-<xsl:value-of select="translate(normalize-space(@name),' ','&#10;')"/>
-<xsl:text>&#10;</xsl:text>
-</xsl:for-each>
-</xsl:template>
-
-</xsl:stylesheet>