Warning, /sdk/pology/util/docbook-html-common.xsl is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
0003 
0004 <!-- Make each generated HTML page include the style sheet file. -->
0005 <xsl:param name="html.stylesheet.type">text/css</xsl:param>
0006 <xsl:param name="html.stylesheet" select="'style.css'"/>
0007 
0008 <!-- Format sections as "X.Y.Z. Title". -->
0009 <xsl:param name="section.autolabel" select="1"/>
0010 <xsl:param name="section.label.includes.component.label" select="1"/>
0011 
0012 <!-- Let there be only the top TOC. -->
0013 <xsl:param name="generate.toc" select="'book toc'"/>
0014 
0015 <!-- Override <programlisting> to include language info comment. -->
0016 <xsl:template match="programlisting">
0017     <xsl:variable name="id">
0018         <xsl:call-template name="object.id"/>
0019     </xsl:variable>
0020     <xsl:call-template name="anchor"/>
0021     <pre>
0022         <xsl:apply-templates select="." mode="common.html.attributes"/>
0023         <xsl:if test="@language != ''">
0024             <xsl:comment>language: <xsl:value-of select="@language"/></xsl:comment>
0025         </xsl:if>
0026         <xsl:apply-templates/>
0027     </pre>
0028 </xsl:template>
0029 
0030 <xsl:output method="html" encoding="UTF-8" indent="no"/>
0031 
0032 </xsl:stylesheet>