/usr/share/doc/libxml-xslt-perl/examples/cml.xsl is in libxml-xslt-perl 0.48-4.
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 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <!--?xml version="1.0"?-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="*">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="/">
<HTML>
<HEAD>
<xsl:if test="molecule[@convention='DictOrgChem']">
<base href="http://www.sci.kun.nl/sigma/Chemisch/Woordenboek/"/>
<link rel="stylesheet" href="http://www.sci.kun.nl/sigma/Chemisch/Woordenboek/gui/styles/woc.css" type="text/css"/>
</xsl:if>
</HEAD>
<BODY>
<H1>Physical Properties</H1>
<xsl:apply-templates/>
</BODY>
</HTML>
</xsl:template>
<xsl:template match="molecule">
<b>Chemical:</b> <xsl:value-of select="@id"/><p/>
<ul><xsl:apply-templates/></ul>
</xsl:template>
<xsl:template match="float">
<b><xsl:value-of select="@title"/>:</b> <xsl:value-of select="."/> <xsl:value-of select="@units"/><br/>
</xsl:template>
<xsl:template match="string">
<b><xsl:value-of select="@title"/>:</b> <xsl:value-of select="."/><br/>
</xsl:template>
</xsl:stylesheet>
|