2004-05-08 10:42:12 +08:00
|
|
|
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
|
|
|
|
<!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org>
|
|
|
|
Based on the original lfs-chunked.xsl created by Matthew Burgess -->
|
|
|
|
|
2004-04-13 09:59:18 +08:00
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
version="1.0">
|
|
|
|
|
2004-05-08 10:42:12 +08:00
|
|
|
<!-- We use XHTML -->
|
2004-05-07 11:51:34 +08:00
|
|
|
<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.65.1/xhtml/chunk.xsl"/>
|
2004-04-13 09:59:18 +08:00
|
|
|
<xsl:param name="chunker.output.encoding" select="'ISO-8859-1'"/>
|
2004-05-08 10:42:12 +08:00
|
|
|
|
|
|
|
<!-- Including our others customized templates -->
|
|
|
|
<xsl:include href="xhtml/lfs-admon.xsl"/>
|
|
|
|
<xsl:include href="xhtml/lfs-index.xsl"/>
|
|
|
|
<xsl:include href="xhtml/lfs-legalnotice.xsl"/>
|
2004-05-19 09:42:48 +08:00
|
|
|
<xsl:include href="xhtml/lfs-mixed.xsl"/>
|
2004-05-08 10:42:12 +08:00
|
|
|
<xsl:include href="xhtml/lfs-navigational.xsl"/>
|
|
|
|
<xsl:include href="xhtml/lfs-titles.xsl"/>
|
|
|
|
<xsl:include href="xhtml/lfs-toc.xsl"/>
|
2004-04-13 09:59:18 +08:00
|
|
|
|
2004-05-08 10:42:12 +08:00
|
|
|
<!-- The CSS Stylesheet -->
|
2004-05-08 11:02:31 +08:00
|
|
|
<xsl:param name="html.stylesheet" select="'../stylesheets/blfs.css'"/>
|
2004-04-13 09:59:18 +08:00
|
|
|
|
2004-05-08 10:42:12 +08:00
|
|
|
<!-- Dropping some unwanted style attributes -->
|
|
|
|
<xsl:param name="ulink.target" select="''"></xsl:param>
|
|
|
|
<xsl:param name="css.decoration" select="0"></xsl:param>
|
|
|
|
|
2004-05-17 14:26:42 +08:00
|
|
|
<!-- No XML declaration -->
|
|
|
|
<xsl:param name="chunker.output.omit-xml-declaration" select="'yes'"/>
|
|
|
|
|
|
|
|
<!-- Insert a stylesheet for printing -->
|
|
|
|
<xsl:template name='user.head.content'>
|
|
|
|
<link rel='stylesheet' href="../stylesheets/blfs-print.css" type="text/css" media='print'/>
|
|
|
|
</xsl:template>
|
2004-04-13 09:59:18 +08:00
|
|
|
|
2004-05-19 09:42:48 +08:00
|
|
|
<xsl:template match="userinput">
|
|
|
|
<xsl:call-template name="inline.monoseq"/>
|
|
|
|
</xsl:template>
|
|
|
|
|
2004-04-13 09:59:18 +08:00
|
|
|
</xsl:stylesheet>
|