2004-05-08 15:19:53 +01:00
|
|
|
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
|
2004-05-03 11:33:11 +01:00
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
version="1.0">
|
|
|
|
|
2004-05-20 22:48:55 +01:00
|
|
|
<xsl:import href="lfs-chunked2.xsl"/>
|
2005-04-17 21:09:19 +01:00
|
|
|
<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.68.1/xhtml/chunk-common.xsl"/>
|
|
|
|
<xsl:include href="http://docbook.sourceforge.net/release/xsl/1.68.1/xhtml/manifest.xsl"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
|
|
|
|
<!-- From the original chunk.xsl file:
|
|
|
|
|
|
|
|
Why is chunk-code now xsl:included?
|
|
|
|
|
|
|
|
Suppose you want to customize *both* the chunking algorithm used *and* the
|
|
|
|
presentation of some elements that may be chunks. In order to do that, you
|
|
|
|
must get the order of imports "just right". The answer is to make your own
|
|
|
|
copy of this file, where you replace the initial import of "docbook.xsl"
|
|
|
|
with an import of your own base.xsl (that does its own import of docbook.xsl).
|
|
|
|
|
|
|
|
Put the templates for changing the presentation of elements in your base.xsl.
|
|
|
|
|
|
|
|
Put the templates that control chunking after the include of chunk-code.xsl.
|
|
|
|
|
|
|
|
Voila! (Man I hope we can do this better in XSLT 2.0) -->
|
|
|
|
|
2005-04-17 21:09:19 +01:00
|
|
|
<xsl:include href="http://docbook.sourceforge.net/release/xsl/1.68.1/xhtml/profile-chunk-code.xsl"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
|
|
|
|
<!-- Including our others customized chunks templates -->
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:include href="xhtml/lfs-legalnotice.xsl"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
<xsl:include href="xhtml/lfs-index.xsl"/>
|
2004-05-08 15:19:53 +01:00
|
|
|
<xsl:include href="xhtml/lfs-navigational.xsl"/>
|
2004-05-03 11:33:11 +01:00
|
|
|
|
|
|
|
</xsl:stylesheet>
|