summaryrefslogtreecommitdiff
path: root/Build/cdbuild/tpm2tpm.xsl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-10-08 16:57:09 +0000
committerKarl Berry <karl@freefriends.org>2007-10-08 16:57:09 +0000
commitf57244a3af3d7a59bb330ac772ec782b71184f19 (patch)
treee8f569e5133059639124dd92bababbd40c02c02f /Build/cdbuild/tpm2tpm.xsl
parent19a42d9cc5c26f46914f065ba66498541203c092 (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/tpm2tpm.xsl')
-rw-r--r--Build/cdbuild/tpm2tpm.xsl48
1 files changed, 0 insertions, 48 deletions
diff --git a/Build/cdbuild/tpm2tpm.xsl b/Build/cdbuild/tpm2tpm.xsl
deleted file mode 100644
index 90139806e44..00000000000
--- a/Build/cdbuild/tpm2tpm.xsl
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:TPM="http://texlive.dante.de/"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
- resultns="">
-
-<xsl:template match="/">
- <xsl:apply-templates/>
-</xsl:template>
-
-
-<xsl:template match="TPM:Title"/>
-
-<xsl:template match="TPM:Description"/>
-
-<xsl:template match="rdf:Description">
-<xsl:variable name="Name">
- <xsl:text>/texlive/Master/texmf-dist/doc/html/catalogue/entries/</xsl:text>
- <xsl:value-of select="TPM:Name"/>
- <xsl:text>.xml</xsl:text>
-</xsl:variable>
- <xsl:copy>
- <xsl:apply-templates select="*|@*|comment()|processing-instruction()|text()"/>
- <xsl:for-each select="document($Name)">
- <TPM:Title>
- <xsl:value-of select="entry/about/caption"/>
- </TPM:Title>
- <TPM:Description>
- <xsl:value-of select="entry/description/abstract"/>
- </TPM:Description>
- </xsl:for-each>
- </xsl:copy>
-
-</xsl:template>
-
-<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>