Files
dive-into-python3/chardet/docs/xsl/htmldist.xsl
T
Mark Pilgrim 831681489e initial import
2009-01-24 16:05:55 -05:00

79 lines
2.7 KiB
XML

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<xsl:import href="../docbook/xsl/html/chunk.xsl"/>
<xsl:import href="html.xsl"/>
<xsl:param name="html.stylesheet">css/chardet.css</xsl:param>
<xsl:param name="base.dir">dist/docs/</xsl:param>
<xsl:template name="chunk-element-content">
<xsl:param name="prev"/>
<xsl:param name="next"/>
<xsl:param name="nav.context"/>
<xsl:param name="content">
<xsl:apply-imports/>
</xsl:param>
<html>
<xsl:attribute name="lang">
<xsl:value-of select="//article/@lang"/>
</xsl:attribute>
<xsl:call-template name="html.head">
<xsl:with-param name="prev" select="$prev"/>
<xsl:with-param name="next" select="$next"/>
</xsl:call-template>
<body id="chardet-feedparser-org" class="docs">
<xsl:call-template name="body.attributes"/>
<xsl:call-template name="header.navigation">
<xsl:with-param name="prev" select="$prev"/>
<xsl:with-param name="next" select="$next"/>
<xsl:with-param name="nav.context" select="$nav.context"/>
</xsl:call-template>
<div id="main">
<div id="mainInner">
<p id="breadcrumb"><xsl:text>You are here: </xsl:text>
<xsl:call-template name="breadcrumb.trail"/>
</p>
<xsl:call-template name="user.header.content"/>
<xsl:copy-of select="$content"/>
<xsl:call-template name="user.footer.content"/>
<xsl:call-template name="footer.navigation">
<xsl:with-param name="prev" select="$prev"/>
<xsl:with-param name="next" select="$next"/>
<xsl:with-param name="nav.context" select="$nav.context"/>
</xsl:call-template>
<xsl:call-template name="user.footer.navigation"/>
</div>
</div>
</body>
</html>
</xsl:template>
<xsl:template name="header.navigation">
<xsl:param name="prev" select="/foo"/>
<xsl:param name="next" select="/foo"/>
<div class="z" id="intro">
<div class="sectionInner">
<div class="sectionInner2">
<div class="s" id="pageHeader">
<h1><a href="/">Universal Encoding Detector</a></h1>
<p>Character encoding auto-detection in Python. As smart as your browser. Open source.</p>
</div> <!-- pageHeader -->
<div class="s" id="quickSummary">
<ul>
<li class="li1"><a href="http://chardet.feedparser.org/download/">Download</a> &#183;</li>
<li class="li2"><a href="index.html">Documentation</a> &#183;</li>
<li class="li3"><a href="faq.html" title="Frequently Asked Questions">FAQ</a></li>
</ul>
</div> <!-- quickSummary -->
</div>
</div>
</div> <!-- intro -->
</xsl:template>
</xsl:stylesheet>