104 lines
4.5 KiB
XML
104 lines
4.5 KiB
XML
<?xml version="1.0" ?>
|
|
<!--
|
|
This is the XSL HTML configuration file for the Spring
|
|
Reference Documentation.
|
|
-->
|
|
<!DOCTYPE xsl:stylesheet [
|
|
<!ENTITY db_xsl_path "../lib/docbook-xsl/">
|
|
<!ENTITY callout_gfx_path "images/callouts/">
|
|
<!ENTITY admon_gfx_path "images/admons/">
|
|
]>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns="http://www.w3.org/TR/xhtml1/transitional"
|
|
exclude-result-prefixes="#default">
|
|
<xsl:import href="&db_xsl_path;/html/chunk.xsl" />
|
|
<!--###################################################
|
|
HTML Settings
|
|
################################################### -->
|
|
<xsl:param name="chunk.section.depth">'5'</xsl:param>
|
|
<xsl:param name="use.id.as.filename">'1'</xsl:param>
|
|
<xsl:param name="html.stylesheet">../styles/html.css</xsl:param>
|
|
<!-- These extensions are required for table printing and other stuff -->
|
|
<xsl:param name="use.extensions">1</xsl:param>
|
|
<xsl:param name="tablecolumns.extension">0</xsl:param>
|
|
<xsl:param name="callout.extensions">1</xsl:param>
|
|
<xsl:param name="graphicsize.extension">0</xsl:param>
|
|
<!--###################################################
|
|
Table Of Contents
|
|
################################################### -->
|
|
<!-- Generate the TOCs for named components only -->
|
|
<xsl:param name="generate.toc">
|
|
book toc
|
|
</xsl:param>
|
|
<!-- Show only Sections up to level 3 in the TOCs -->
|
|
<xsl:param name="toc.section.depth">3</xsl:param>
|
|
<!--###################################################
|
|
Labels
|
|
################################################### -->
|
|
<!-- Label Chapters and Sections (numbering) -->
|
|
<xsl:param name="chapter.autolabel">1</xsl:param>
|
|
<xsl:param name="section.autolabel" select="1" />
|
|
<xsl:param name="section.label.includes.component.label" select="1" />
|
|
<!--###################################################
|
|
Callouts
|
|
################################################### -->
|
|
<!-- Use images for callouts instead of (1) (2) (3) -->
|
|
<xsl:param name="callout.graphics">1</xsl:param>
|
|
<xsl:param name="callout.graphics.path">&callout_gfx_path;</xsl:param>
|
|
<!-- Place callout marks at this column in annotated areas -->
|
|
<xsl:param name="callout.defaultcolumn">90</xsl:param>
|
|
<!--###################################################
|
|
Admonitions
|
|
################################################### -->
|
|
<!-- Use nice graphics for admonitions -->
|
|
<xsl:param name="admon.graphics">'1'</xsl:param>
|
|
<xsl:param name="admon.graphics.path">&admon_gfx_path;</xsl:param>
|
|
<!--###################################################
|
|
Misc
|
|
################################################### -->
|
|
<!-- Placement of titles -->
|
|
<xsl:param name="formal.title.placement">
|
|
figure after
|
|
example before
|
|
equation before
|
|
table before
|
|
procedure before
|
|
</xsl:param>
|
|
<xsl:template match="author" mode="titlepage.mode">
|
|
<xsl:if test="name(preceding-sibling::*[1]) = 'author'">
|
|
<xsl:text>, </xsl:text>
|
|
</xsl:if>
|
|
<span class="{name(.)}">
|
|
<xsl:call-template name="person.name" />
|
|
<xsl:apply-templates mode="titlepage.mode" select="./contrib" />
|
|
<xsl:apply-templates mode="titlepage.mode" select="./affiliation" />
|
|
</span>
|
|
</xsl:template>
|
|
<xsl:template match="authorgroup" mode="titlepage.mode">
|
|
<div class="{name(.)}">
|
|
<h2>Authors</h2>
|
|
<p/>
|
|
<xsl:apply-templates mode="titlepage.mode" />
|
|
</div>
|
|
</xsl:template>
|
|
<!--###################################################
|
|
Headers and Footers
|
|
################################################### -->
|
|
|
|
<!-- lets have a Spring and I21 banner across the top of each page -->
|
|
<xsl:template name="user.header.navigation">
|
|
<div style="background-color:#31430f;border:none;height:110px;border:1px solid black;">
|
|
<a style="border:none;background: url();" href="http://www.springframework.org/" title="The Spring Framework">
|
|
<img style="border:none;" src="images/banner4.jpg"/>
|
|
</a>
|
|
<a style="border:none;background: url();" href="http://www.interface21.com/" title="Interface21 - Spring from the Source">
|
|
<img style="border:none;position:absolute;right:32px;" src="images/bannerR.gif"/>
|
|
</a>
|
|
</div>
|
|
</xsl:template>
|
|
|
|
<!-- no header navigation -->
|
|
<xsl:template name="header.navigation"/>
|
|
<xsl:param name="navig.showtitles">1</xsl:param>
|
|
|
|
</xsl:stylesheet>
|