diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2006-02-21 00:26:13 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2006-02-21 00:26:13 +0000 |
commit | de5d23641714ccf460d18f2d127341da616c8503 (patch) | |
tree | b4d17fd3e23a633f17855eaef68328666ded45f5 /devbook.xsl | |
parent | Add "General Concepts"::"Licenses"; change <include> behaviour to *not* have ... (diff) | |
download | devmanual-de5d23641714ccf460d18f2d127341da616c8503.tar.gz devmanual-de5d23641714ccf460d18f2d127341da616c8503.tar.bz2 devmanual-de5d23641714ccf460d18f2d127341da616c8503.zip |
More updates. Update the stylesheet adding a few new elements and more sh
highlighting grammar.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/devmanual/trunk@4 176d3534-300d-0410-8db8-84e73ed771c3
Diffstat (limited to 'devbook.xsl')
-rw-r--r-- | devbook.xsl | 68 |
1 files changed, 57 insertions, 11 deletions
diff --git a/devbook.xsl b/devbook.xsl index 886ea50..f30096b 100644 --- a/devbook.xsl +++ b/devbook.xsl @@ -13,6 +13,7 @@ </xsl:text> </xsl:variable> +<xsl:variable name="qvariable-start">$</xsl:variable> <xsl:variable name="variable-start">${</xsl:variable> <xsl:variable name="variable-end">}</xsl:variable> @@ -48,7 +49,10 @@ </xsl:when> <xsl:when test="substring($data, string-length($data)) = ')'"> - <xsl:value-of select="substring($data, 1, string-length($data)-1)"/><span class="PreProc">)</span> + <xsl:call-template name="highlight-subtokenate"> + <xsl:with-param name="data" select="substring($data, 1, string-length($data)-1)"/> + </xsl:call-template> + <span class="PreProc">)</span> </xsl:when> <!-- This must go before the other quote matchers --> @@ -66,15 +70,29 @@ <xsl:when test="substring($data, 1, 1) = '"'"> <span class="Statement">"</span> - <xsl:value-of select="substring($data, 2)"/> + <xsl:call-template name="highlight-subtokenate"> + <xsl:with-param name="data" select="substring($data, 2)"/> + </xsl:call-template> </xsl:when> <xsl:when test="substring($data, string-length($data)) = '"'"> - <xsl:value-of select="substring($data, 0, string-length($data))"/> + <xsl:call-template name="highlight-subtokenate"> + <xsl:with-param name="data" select="substring($data, 0, string-length($data))"/> + </xsl:call-template> <span class="Statement">"</span> </xsl:when> + <xsl:when test="substring($data, 1, 1) = $qvariable-start"> + <span class="Identifier">$<xsl:value-of select="substring($data, 2)"/></span> + </xsl:when> <!-- Functioney highlighing --> + + <!-- sh grammar --> + <xsl:when test="$data = ';' or $data = 'if' or $data = 'then' or $data = 'fi' or $data = '-ge' or $data = '-lt' or $data = '-le' or + $data = '-gt' or $data = 'elif' or $data = 'else' or $data = 'eval' or $data = 'unset'"> + <span class="Statement"><xsl:value-of select="$data"/></span> + </xsl:when> + <!-- Default keywords --> <xsl:when test="$data = 'use' or $data = 'has_version' or $data = 'best_version' or $data = 'use_with' or $data = 'use_enable' or $data = 'check_KV' or $data = 'keepdir' or $data = 'econf' or $data = 'die' or $data = 'einstall' or $data = 'einfo' or @@ -304,7 +322,7 @@ <!-- No match return --> <xsl:otherwise> - <highlight-nomatch-sub><xsl:value-of select="$data"/></highlight-nomatch-sub> + <xsl:value-of select="$data"/> </xsl:otherwise> </xsl:choose> </xsl:template> @@ -326,7 +344,8 @@ <!-- See if we should be processing comments by now; we need to test for two possible cases: * commentSeeker != 0 (so we have a comment), or, * the first token is a "#" --> - <xsl:when test="($commentSeeker != 0 and position() > $commentSeeker) or substring(../*[position()=1], 1, 1) = $commentChar"> + <xsl:when test="($commentSeeker != 0 and position() > $commentSeeker) or substring(../*[position()=1], 1, 1) = $commentChar + or . = $commentChar"> <span class="Comment"><xsl:value-of select="."/></span> </xsl:when> @@ -347,7 +366,7 @@ </xsl:call-template> </xsl:when> - <xsl:when test=". = '{' or . = '}' or . = '\' or . = '(' or . = '#'"> + <xsl:when test=". = '{' or . = '}' or . = '\' or . = '('"> <span class="PreProc"><xsl:value-of select="."/></span> </xsl:when> @@ -367,20 +386,20 @@ </xsl:template> <xsl:template match="chapter"> - <h1><xsl:value-of select="title"/></h1> + <h1><xsl:apply-templates select="title"/></h1> <xsl:apply-templates select="(body|section)"/> </xsl:template> <xsl:template match="section"> <div class="section"> - <h2><xsl:value-of select="title"/></h2> + <h2><xsl:apply-templates select="title"/></h2> <xsl:apply-templates select="(body|subsection)"/> </div> </xsl:template> <xsl:template match="subsection"> <div class="section"> - <h3><xsl:value-of select="title"/></h3> + <h3><xsl:apply-templates select="title"/></h3> <xsl:apply-templates select="(body|subsection)"/> </div> </xsl:template> @@ -395,6 +414,10 @@ </p> </xsl:template> + <xsl:template match="pre"> + <pre><xsl:apply-templates/></pre> + </xsl:template> + <!-- FIXME: Handle lang=... --> <xsl:template match="codesample"> <pre><span class="Constant"> @@ -421,6 +444,7 @@ </div> </xsl:template> + <!-- Lists --> <xsl:template match="li"> <li><xsl:apply-templates/></li> </xsl:template> @@ -433,6 +457,28 @@ <ul><xsl:apply-templates/></ul> </xsl:template> + <!-- Definition Lists --> + <xsl:template match="dl"> + <dl><xsl:apply-templates/></dl> + </xsl:template> + + <xsl:template match="dt"> + <dt><xsl:apply-templates/></dt> + </xsl:template> + + <xsl:template match="dd"> + <dd> + <xsl:for-each select="p"> + <xsl:choose> + <xsl:when test="count(../p) = 1"><xsl:apply-templates/></xsl:when> + <xsl:when test="position() = 1"><p class="first"><xsl:apply-templates/></p></xsl:when> + <xsl:when test="position() = last()"><p class="last"><xsl:apply-templates/></p></xsl:when> + <xsl:otherwise><p><xsl:apply-templates/></p></xsl:otherwise> + </xsl:choose> + </xsl:for-each> + </dd> + </xsl:template> + <xsl:template match="important"> <div class="important"> <p class="first admonition-title">Important</p> @@ -476,7 +522,7 @@ <xsl:template match="/"> <html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head> - <title>Gentoo Development Guide</title> + <title>Gentoo Development Guide: <xsl:value-of select="/guide/chapter[1]/title"/></title> <link rel="stylesheet" href="http://dev.gentoo.org/~plasmaroo/devmanual/styles/devmanual.css" type="text/css" /> </head> <body> @@ -501,7 +547,7 @@ <xsl:apply-templates/> </div> - <div class="navtop" style="text-align: center;"> + <div class="navbottom" style="text-align: center;"> <table style="border-top: 1px dashed #330066; margin-left: auto; margin-right: auto; width: 100%;"> |