Mercurial > hgbook
view stylesheets/base-html-stylesheet.xsl @ 806:06458701453c
Fix up some links to example URLs that aren't actually real.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 21 Apr 2009 21:07:20 -0700 |
parents | d8c85d831fb4 |
children |
line wrap: on
line source
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> <xsl:param name="html.stylesheet">/support/styles.css</xsl:param> <xsl:param name="toc.section.depth">3</xsl:param> <xsl:param name="annotate.toc">0</xsl:param> <xsl:param name="generate.id.attributes" select="1"></xsl:param> <xsl:param name="header.rule" select="0"></xsl:param> <xsl:param name="footer.rule" select="0"></xsl:param> <xsl:param name="html.cleanup" select="1"></xsl:param> <xsl:param name="admon.style"><xsl:text></xsl:text></xsl:param> <xsl:param name="admon.graphics" select="1"></xsl:param> <xsl:param name="admon.graphics.path">/support/figs/</xsl:param> <xsl:template match="sect1" mode="toc"> <xsl:param name="toc-context" select="."/> <xsl:call-template name="subtoc"> <xsl:with-param name="toc-context" select="$toc-context"/> <xsl:with-param name="nodes" select="sect2|refentry|bridgehead[$bridgehead.in.toc != 0]"/> </xsl:call-template> </xsl:template> <xsl:template match="sect2" mode="toc"> <xsl:param name="toc-context" select="."/> <xsl:call-template name="subtoc"> <xsl:with-param name="toc-context" select="$toc-context"/> <xsl:with-param name="nodes" select="sect3|refentry|bridgehead[$bridgehead.in.toc != 0]"/> </xsl:call-template> </xsl:template> <!-- Add id attributes to <p> tags. This is mostly a copy of the base XSL. --> <xsl:template name="paragraph"> <xsl:param name="class" select="''"/> <xsl:param name="content"/> <xsl:variable name="p"> <p> <xsl:call-template name="dir"/> <xsl:if test="$class != ''"> <xsl:apply-templates select="." mode="class.attribute"> <xsl:with-param name="class" select="$class"/> </xsl:apply-templates> </xsl:if> <!-- Here we go. --> <xsl:if test="$generate.id.attributes != 0"> <xsl:attribute name="id"> <xsl:call-template name="object.id"/> </xsl:attribute> </xsl:if> <xsl:copy-of select="$content"/> </p> </xsl:variable> <xsl:choose> <xsl:when test="$html.cleanup != 0"> <xsl:call-template name="unwrap.p"> <xsl:with-param name="p" select="$p"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:copy-of select="$p"/> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- Add id attributes to <programlisting> and <screen> tags. Once again, this is mostly a copy of the base XSL, although rather trimmed down. --> <xsl:template match="programlisting|screen"> <xsl:param name="suppress-numbers" select="'0'"/> <xsl:call-template name="anchor"/> <pre> <!-- Here we go. --> <xsl:if test="$generate.id.attributes != 0"> <xsl:attribute name="id"> <xsl:call-template name="object.id"/> </xsl:attribute> </xsl:if> <xsl:apply-templates select="." mode="class.attribute"/> <xsl:call-template name="apply-highlighting"/> </pre> </xsl:template> <!-- The default stylesheet generates a little TOC at the beginning of each qandaset. Uh, no thanks. --> <xsl:template name="process.qanda.toc"/> <xsl:template name="user.header.navigation"> <div class="navheader"><h2 class="booktitle"><a href="/">Mercurial: The Definitive Guide</a> <span class="authors">by Bryan O'Sullivan</span></h2></div> </xsl:template> <xsl:template name="user.head.content"> <link rel="alternate" type="application/atom+xml" title="Comments" href="/feeds/comments/"/> <link rel="shortcut icon" type="image/png" href="/support/figs/favicon.png"/> <script type="text/javascript" src="/support/jquery-min.js"></script> <script type="text/javascript" src="/support/form.js"></script> <script type="text/javascript" src="/support/hsbook.js"></script> </xsl:template> <xsl:template name="user.footer.content"> <div class="hgfooter"> <p><img src="/support/figs/rss.png"/> Want to stay up to date? Subscribe to the comment feed for <a id="chapterfeed" class="feed" href="/feeds/comments/">this chapter</a>, or the <a class="feed" href="/feeds/comments/">entire book</a>.</p> <p>Copyright 2006, 2007, 2008, 2009 Bryan O'Sullivan. Icons by <a href="mailto:mattahan@gmail.com">Paul Davey</a> aka <a href="http://mattahan.deviantart.com/">Mattahan</a>.</p> </div> </xsl:template> <xsl:template name="user.footer.navigation"> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-1805907-5"); pageTracker._trackPageview(); } catch(err) {}</script> </xsl:template> </xsl:stylesheet>