<?xml version='1.0'?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><xsl:import href="/opt/local/share/xsl/docbook-xsl/xhtml/chunk.xsl" /><xsl:param name="admon.graphics.extension">.png</xsl:param><xsl:param name="admon.graphics" select="1"/><xsl:param name="author.othername.in.middle" select="0"/><xsl:param name="chunker.output.indent">yes</xsl:param>  <xsl:param name="html.stylesheet" select="'stripshow.css'"/> <xsl:param name="refentry.generate.name" select="0"/><xsl:param name="refentry.generate.title" select="1"/><xsl:param name="refentry.separator" select="1"/><xsl:param name="refentry.xref.manvolnum" select="0"/><xsl:param name="callouts.extension" select="1"></xsl:param><xsl:param name="callout.graphics.extension">.png</xsl:param><xsl:param name="callout.graphics" select="1"/><xsl:param name="callout.defaultcolumn">20</xsl:param><xsl:param name="callout.graphics.path">images/</xsl:param><xsl:param name="generate.legalnotice.link" select="1"/><xsl:param name="generate.toc">appendix  toc,titlearticle/appendix  noparticle   toc,titlebook      toc,titlechapter   toc,titlepart      toc,titlepreface   toc,titleqandadiv  tocqandaset  tocreference toc,titlesect1     tocsect2     tocsect3     tocsect4     tocsect5     tocsection   tocset       toc,title</xsl:param><xsl:template name="graphical.admonition">  <xsl:variable name="admon.type">    <xsl:choose>      <xsl:when test="local-name(.)='note'">Note</xsl:when>      <xsl:when test="local-name(.)='warning'">Warning</xsl:when>      <xsl:when test="local-name(.)='caution'">Caution</xsl:when>      <xsl:when test="local-name(.)='tip'">Tip</xsl:when>      <xsl:when test="local-name(.)='important'">Important</xsl:when>      <xsl:otherwise>Note</xsl:otherwise>    </xsl:choose>  </xsl:variable>  <xsl:variable name="alt">    <xsl:call-template name="gentext">      <xsl:with-param name="key" select="$admon.type"/>    </xsl:call-template>  </xsl:variable>  <div>    <xsl:apply-templates select="." mode="class.attribute"/>    <xsl:if test="$admon.style != ''">      <xsl:attribute name="style">        <xsl:value-of select="$admon.style"/>      </xsl:attribute>    </xsl:if>    <table border="0">      <xsl:attribute name="summary">        <xsl:value-of select="$admon.type"/>        <xsl:if test="title|info/title">          <xsl:text>: </xsl:text>          <xsl:value-of select="(title|info/title)[1]"/>        </xsl:if>      </xsl:attribute>      <tr>        <td rowspan="2" align="center" valign="top">          <xsl:attribute name="width">            <xsl:apply-templates select="." mode="admon.graphic.width"/>          </xsl:attribute>          <img alt="[{$alt}]">          	<xsl:attribute name="width">48</xsl:attribute>            <xsl:attribute name="src">              <xsl:call-template name="admon.graphic"/>            </xsl:attribute>          </img>        </td>        <th align="left">          <xsl:call-template name="anchor"/>          <xsl:if test="$admon.textlabel != 0 or title or info/title">            <xsl:apply-templates select="." mode="object.title.markup"/>          </xsl:if>        </th>      </tr>      <tr>        <td align="left" valign="top">          <xsl:apply-templates/>        </td>      </tr>    </table>  </div></xsl:template><xsl:template name="make.toc">  <xsl:param name="toc-context" select="."/>  <xsl:param name="toc.title.p" select="true()"/>  <xsl:param name="nodes" select="/NOT-AN-ELEMENT"/>  <xsl:variable name="nodes.plus" select="$nodes | qandaset"/>  <xsl:variable name="toc.title">    <xsl:if test="$toc.title.p">      <p>        <b>          <xsl:call-template name="gentext">            <xsl:with-param name="key">TableofContents</xsl:with-param>          </xsl:call-template>        </b>      </p>    </xsl:if>  </xsl:variable>  <xsl:choose>    <xsl:when test="$manual.toc != ''">      <xsl:variable name="id">        <xsl:call-template name="object.id"/>      </xsl:variable>      <xsl:variable name="toc" select="document($manual.toc, .)"/>      <xsl:variable name="tocentry" select="$toc//tocentry[@linkend=$id]"/>      <xsl:if test="$tocentry and $tocentry/*">        <div class="toc">          <xsl:copy-of select="$toc.title"/>          <xsl:element name="{$toc.list.type}" namespace="http://www.w3.org/1999/xhtml">            <xsl:call-template name="manual-toc">              <xsl:with-param name="tocentry" select="$tocentry/*[1]"/>            </xsl:call-template>          </xsl:element>        </div>      </xsl:if>    </xsl:when>    <xsl:otherwise>      <xsl:choose>        <xsl:when test="$qanda.in.toc != 0">          <xsl:if test="$nodes.plus">            <div class="toc">              <xsl:copy-of select="$toc.title"/>              <xsl:element name="{$toc.list.type}" namespace="http://www.w3.org/1999/xhtml">                <xsl:apply-templates select="$nodes.plus" mode="toc">                  <xsl:with-param name="toc-context" select="$toc-context"/>                </xsl:apply-templates>              </xsl:element>            </div>          </xsl:if>        </xsl:when>        <xsl:otherwise>          <xsl:if test="$nodes">            <div class="toc">              <xsl:copy-of select="$toc.title"/>              <xsl:element name="{$toc.list.type}" namespace="http://www.w3.org/1999/xhtml">                <xsl:apply-templates select="$nodes" mode="toc">                  <xsl:with-param name="toc-context" select="$toc-context"/>                </xsl:apply-templates>              </xsl:element>            </div>          </xsl:if>        </xsl:otherwise>      </xsl:choose>    </xsl:otherwise>  </xsl:choose></xsl:template><!--<xsl:template match="*" mode="process.root">  <xsl:call-template name="root.messages"/>  <xsl:apply-templates select="."/></xsl:template>--></xsl:stylesheet>