diff options
author | Karl Berry <karl@freefriends.org> | 2007-10-08 16:57:09 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-10-08 16:57:09 +0000 |
commit | f57244a3af3d7a59bb330ac772ec782b71184f19 (patch) | |
tree | e8f569e5133059639124dd92bababbd40c02c02f /Build/cdbuild/tpm2xml.xsl | |
parent | 19a42d9cc5c26f46914f065ba66498541203c092 (diff) |
move ctan2tds.pl and place to tlpkg/bin, logs to Build, remove rest
git-svn-id: svn://tug.org/texlive/trunk@5141 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/cdbuild/tpm2xml.xsl')
-rw-r--r-- | Build/cdbuild/tpm2xml.xsl | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Build/cdbuild/tpm2xml.xsl b/Build/cdbuild/tpm2xml.xsl deleted file mode 100644 index 9d7eb650ffd..00000000000 --- a/Build/cdbuild/tpm2xml.xsl +++ /dev/null @@ -1,33 +0,0 @@ -<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" - xmlns:xtfile="http://www.jclark.com/xt/java/java.io.File" - xmlns:xt="http://www.jclark.com/xt" - extension-element-prefixes="xt"> - -<xsl:output method="xml"/> - -<xsl:variable name="Master">/texlive/Master/</xsl:variable> - -<xsl:variable name="package"> - <xsl:value-of select="/rdf:RDF/rdf:Description/TPM:Name"/> -</xsl:variable> - -<xsl:template match="/"> - <xsl:apply-templates select="rdf:Description"/> -</xsl:template> - -<!-- default template, identity transform, text normalized --> -<xsl:template match="text()"> - <xsl:value-of select="."/> <!-- could normalize() here --> - </xsl:template> - -<xsl:template match="*|@*|comment()|processing-instruction()"> - <xsl:copy> - <xsl:apply-templates select="*|@*|comment()|processing-instruction()|text()"/> - </xsl:copy> - </xsl:template> - - -</xsl:stylesheet> |