diff options
author | Jeremias Maerki <jeremias@apache.org> | 2003-03-11 13:10:59 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2003-03-11 13:10:59 +0000 |
commit | a4fb5de1066e186b39e9d3ca67530ac3c2447c2d (patch) | |
tree | 7d89a8cd5e24ea5a6f65f1074e4c50e3835e930f /src | |
parent | 1e5d512c216d329effa693b91ef64652945def6a (diff) | |
download | xmlgraphics-fop-a4fb5de1066e186b39e9d3ca67530ac3c2447c2d.tar.gz xmlgraphics-fop-a4fb5de1066e186b39e9d3ca67530ac3c2447c2d.zip |
Deleting obsolete files.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196062 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/org/apache/fop/fonts/apps/FontPostProcess.xsl | 27 | ||||
-rw-r--r-- | src/org/apache/fop/fonts/apps/FontPostProcessSort.xsl | 20 |
2 files changed, 0 insertions, 47 deletions
diff --git a/src/org/apache/fop/fonts/apps/FontPostProcess.xsl b/src/org/apache/fop/fonts/apps/FontPostProcess.xsl deleted file mode 100644 index 624df8092..000000000 --- a/src/org/apache/fop/fonts/apps/FontPostProcess.xsl +++ /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 index 989f66566..000000000 --- a/src/org/apache/fop/fonts/apps/FontPostProcessSort.xsl +++ /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> |