26 lines
1020 B
XML
26 lines
1020 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!-- Blocks DejaVu use with Arabic and Persian
|
||
|
© 2006 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
||
|
This file is distributed under the terms of the GNU General
|
||
|
Public License (GPL) version 2. 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>
|
||
|
<!-- Remove our blocking code -->
|
||
|
<xsl:template match="fontconfig/match[comment()[.='Added by dejavu-fonts-block']]" priority ="1"/>
|
||
|
</xsl:stylesheet>
|
||
|
|