1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect"
extension-element-prefixes="redirect"
>
<!--
identity.xsl: Pass HTML (and other unknown markup) through.
Note: this requires that later we match *all* of our own tags and
explicitly remove them from output. See match="section".
-->
<xsl:import href="identity.xsl"/>
<!-- Support for anchoring/linking text within document -->
<xsl:import href="anchor.xsl"/>
<!-- Handle example text -->
<xsl:import href="example.xsl"/>
<!-- Handle note text -->
<xsl:import href="note.xsl"/>
<!-- Handle tip text -->
<xsl:import href="tip.xsl"/>
<!-- Rewrite images using {$imagedir} -->
<xsl:import href="img.xsl"/>
<!-- Render indexed bsh commands doc -->
<xsl:import href="bshcommands.xsl"/>
<!-- Parameters -->
<xsl:param name="imagedir"/>
<xsl:param name="multipage"/><!-- Produce multi-page HTML output -->
<xsl:param name="pagesdir"/>
<!-- Output directives -->
<xsl:output method="xhtml" indent="no"/>
<!--
Root
Override / in other imports, e.g. bshcommands.xsl
-->
<xsl:template match="/">
<!-- seems like there should be another way to do this using mode -->
<xsl:choose>
<xsl:when test="$multipage='true'">
<xsl:apply-templates mode="multipage"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
Manual
-->
<xsl:template match="manual">
<html>
<head><title>BeanShell User's Manual</title></head>
<body bgcolor="#ffffff">
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="manual" mode="multipage">
<xsl:apply-templates mode="multipage"/>
</xsl:template>
<!--
Section
-->
<xsl:template match="section">
<h1>
<xsl:call-template name="anchor">
<xsl:with-param name="value" select="name"/>
</xsl:call-template>
</h1>
<!-- Just an experiment... alternative to declaring extra templates.
<xsl:apply-templates
select="*[name()!='name' and name()!='foo']"/>
-->
<xsl:apply-templates/>
<hr/>
<xsl:comment>PAGE BREAK</xsl:comment>
</xsl:template>
<!-- remove control/meta-info tags -->
<xsl:template match="section/name"/>
<xsl:template match="section" mode="multipage">
<!-- Check file name -->
<xsl:if test="not(name[@filename])">
<xsl:message terminate="yes">
Missing filename attribute in section:
<xsl:value-of select="name"/>
</xsl:message>
</xsl:if>
<!-- Send output to file -->
<redirect:write file="{$pagesdir}/{name/@filename}.html">
<html>
<head><title><xsl:value-of select="name"/></title></head>
<body bgcolor="ffffff">
<xsl:call-template name="navigation"/>
<h1><xsl:value-of select="name"/></h1>
<xsl:apply-templates/>
<xsl:call-template name="navigation"/>
</body>
</html>
</redirect:write>
</xsl:template>
<!--
Multipage navigation header
-->
<xsl:template name="navigation">
<table cellspacing="10">
<tr>
<!-- Home -->
<td align="center">
<a href="http://www.beanshell.org/">
<img src="{$imagedir}/homebutton.gif"/><br/>Home</a>
</td>
<!-- Back -->
<td>
<xsl:call-template name="anchorref">
<xsl:with-param name="anchorto"
select="preceding-sibling::section[1]/name"/>
<xsl:with-param name="anchortofile">
<xsl:value-of
select="preceding-sibling::section[1]/name/@filename"/>.html
</xsl:with-param>
<xsl:with-param name="value">
<img src="{$imagedir}/backbutton.gif"/><br/>Back
</xsl:with-param>
<xsl:with-param name="defeatlink"
select="not(preceding-sibling::section[1])"/>
</xsl:call-template>
</td>
<!-- Contents -->
<td align="center">
<xsl:choose>
<xsl:when test="name/@filename='contents'">
<img src="{$imagedir}/upbutton.gif"/><br/>Contents
</xsl:when>
<xsl:otherwise>
<a href="contents.html">
<img src="{$imagedir}/upbutton.gif"/><br/>Contents</a>
</xsl:otherwise>
</xsl:choose>
</td>
<!-- Forward -->
<td align="center">
<xsl:call-template name="anchorref">
<xsl:with-param name="anchorto"
select="following-sibling::section[1]/name"/>
<xsl:with-param name="anchortofile">
<xsl:value-of
select="following-sibling::section[1]/name/@filename"/>.html
</xsl:with-param>
<xsl:with-param name="value">
<img src="{$imagedir}/forwardbutton.gif"/><br/>Next
</xsl:with-param>
<xsl:with-param name="defeatlink"
select="not(following-sibling::section[1])"/>
</xsl:call-template>
</td>
</tr>
</table>
</xsl:template>
<!--
Table of contents
-->
<xsl:template match="tableofcontents">
<ul>
<xsl:for-each select="/manual/section">
<li>
<xsl:call-template name="anchorref">
<xsl:with-param name="anchorto" select="name"/>
<!-- How do I deal with the whitespace here? -->
<xsl:with-param name="anchortofile">
<xsl:value-of select="name/@filename"/>.html
</xsl:with-param>
<xsl:with-param name="value">
<xsl:value-of select="name"/>
</xsl:with-param>
</xsl:call-template>
</li>
<xsl:if test="h2">
<ul>
<xsl:for-each select="h2">
<li>
<xsl:call-template name="anchorref">
<xsl:with-param name="anchorto" select="."/>
<xsl:with-param name="anchortofile">
<xsl:value-of select="../name/@filename"/>.html
</xsl:with-param>
<xsl:with-param name="value">
<xsl:value-of select="."/>
</xsl:with-param>
</xsl:call-template>
</li>
</xsl:for-each>
</ul>
</xsl:if>
</xsl:for-each>
</ul>
</xsl:template>
<!--
Sub-Section
Anchor each h2 sub-section
-->
<xsl:template match="h2">
<h2>
<xsl:call-template name="anchor">
<xsl:with-param name="value" select="."/>
</xsl:call-template>
</h2>
</xsl:template>
<!--
Rewrite <p/> tags to add a default clear attribute.
This is just here to help out htmldoc or other XHTML tools.
Is there a simpler way to do this using XSL?
Why is this necessary anyway?
-->
<xsl:template match="p">
<xsl:choose>
<xsl:when test="@CLEAR">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<p CLEAR="ALL"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|