/usr/share/java/Jaxe/config/XHTML.xsl is in libjaxe-java 3.5-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?xml version="1.0" encoding='ISO-8859-1' ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="no"
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd"
encoding="ISO-8859-1"/>
<xsl:template match="*">
<xsl:element name="{local-name()}" namespace="">
<xsl:for-each select="@*">
<xsl:if test="namespace-uri(.)='' or namespace-uri(.)=namespace-uri(..)">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
|