]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Not needed anymore
authorJeremias Maerki <jeremias@apache.org>
Tue, 25 Feb 2003 13:17:00 +0000 (13:17 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 25 Feb 2003 13:17:00 +0000 (13:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195991 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fonts/apps/FontPostProcess.xsl [deleted file]
src/org/apache/fop/fonts/apps/FontPostProcessSort.xsl [deleted file]

diff --git a/src/org/apache/fop/fonts/apps/FontPostProcess.xsl b/src/org/apache/fop/fonts/apps/FontPostProcess.xsl
deleted file mode 100644 (file)
index 120fd36..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- xslt stylesheets belonging to the pfmreader -->
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-<xsl:output method="xml"/>
-
-<xsl:template match="@*|node()">
-       <xsl:copy>
-               <xsl:apply-templates select="@*|node()"/>
-       </xsl:copy>
-</xsl:template>
-
-<xsl:template match="widths">
-       <xsl:element name="widths">
-               <xsl:for-each select="char">
-                       <xsl:variable name="char-num" select="@ansichar"/>
-                       <xsl:variable name="char-name" select="document('file:charlist.xml')/font-mappings/map[@win-ansi=$char-num]/@adobe-name"/>
-                       <xsl:if test="$char-name!=''">
-                               <xsl:element name="char">
-                                       <xsl:attribute name="name"><xsl:value-of select="$char-name"/></xsl:attribute>
-                                       <xsl:attribute name="width"><xsl:value-of select="@width"/></xsl:attribute>
-                               </xsl:element>
-                       </xsl:if>
-               </xsl:for-each>
-       </xsl:element>
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/src/org/apache/fop/fonts/apps/FontPostProcessSort.xsl b/src/org/apache/fop/fonts/apps/FontPostProcessSort.xsl
deleted file mode 100644 (file)
index 63ca434..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-<xsl:output method="xml"/>
-
-<xsl:template match="@*|node()">
-       <xsl:copy>
-               <xsl:apply-templates select="@*|node()"/>
-       </xsl:copy>
-</xsl:template>
-
-<xsl:template match="widths">
-       <xsl:copy>
-               <xsl:apply-templates select="char">
-                       <xsl:sort select="@name" case-order="upper-first"/>
-               </xsl:apply-templates>
-       </xsl:copy>
-</xsl:template>
-
-
-</xsl:stylesheet>