Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > by-pkgid > bb59df711c30643dd057d695d8bb6cd1 > files > 2

java-1.6.0-sun-compat-1.6.0.33-3.sl5.jpp.src.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!-- Unregisters Java fonts in fonts.conf
     © 2003 Nicolas Mailhot <Nicolas.Mailhot at laPoste.net>
     This file is distributed under the terms of the GNU General
     Public License (GPL). Copies of the GPL can be obtained from:
     http://www.gnu.org/licenses/gpl.html
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:strip-space elements="*"/>
  <xsl:output method="xml" indent="yes" encoding="UTF-8" doctype-system="fonts.dtd"/>
<!-- Preserve most nodes -->
  <xsl:template match="*" priority="0">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <xsl:apply-templates select="*|text()|comment()"/>
    </xsl:copy>
  </xsl:template>
<!-- Preserve attributes and comments -->
  <xsl:template match="@*|comment()">
    <xsl:copy/>
  </xsl:template>
<!-- Unregisters serif alias -->
  <xsl:template match="fontconfig/alias[family = 'serif']/prefer/family[text()='Lucida Bright']" priority="1"/>
<!-- Unregisters sans-serif alias -->
  <xsl:template match="fontconfig/alias[family = 'sans-serif']/prefer/family[text()='Lucida Sans']" priority="1"/>
<!-- Unregisters mono alias -->
  <xsl:template match="fontconfig/alias[family = 'monospace']/prefer/family[text()='Lucida Sans Typewriter']" priority="1"/>
<!-- Copy attributes as-is -->
  <xsl:template match="@*|comment()">
    <xsl:copy/>
  </xsl:template>
</xsl:stylesheet>