2004-05-20 22:48:55 +01:00
|
|
|
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
version="1.0">
|
|
|
|
|
|
|
|
<!-- We use XHTML -->
|
2005-09-10 12:18:50 +01:00
|
|
|
<xsl:import href="http://docbook.sourceforge.net/release/xsl/1.69.1/xhtml/docbook.xsl"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
<xsl:param name="chunker.output.encoding" select="'ISO-8859-1'"/>
|
|
|
|
|
|
|
|
<!-- Including our others customized elements templates -->
|
|
|
|
<xsl:include href="xhtml/lfs-admon.xsl"/>
|
2004-12-19 21:17:48 +00:00
|
|
|
<xsl:include href="xhtml/lfs-sections.xsl"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
<xsl:include href="xhtml/lfs-mixed.xsl"/>
|
|
|
|
<xsl:include href="xhtml/lfs-titles.xsl"/>
|
|
|
|
<xsl:include href="xhtml/lfs-toc.xsl"/>
|
2004-12-19 21:17:48 +00:00
|
|
|
<xsl:include href="xhtml/lfs-xref.xsl"/>
|
|
|
|
|
|
|
|
<!-- This file contains our localization strings (for internationalization) -->
|
|
|
|
<xsl:param name="local.l10n.xml" select="document('lfs-l10n.xml')"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
|
|
|
|
<!-- The CSS Stylesheet -->
|
|
|
|
<xsl:param name="html.stylesheet" select="'../stylesheets/lfs.css'"/>
|
2004-05-30 11:54:18 +01:00
|
|
|
<xsl:template name='user.head.content'>
|
|
|
|
<link rel="stylesheet" href="../stylesheets/lfs-print.css" type="text/css" media="print"/>
|
|
|
|
</xsl:template>
|
2004-05-20 22:48:55 +01:00
|
|
|
|
|
|
|
<!-- Dropping some unwanted style attributes -->
|
|
|
|
<xsl:param name="ulink.target" select="''"></xsl:param>
|
|
|
|
<xsl:param name="css.decoration" select="0"></xsl:param>
|
2004-09-15 20:37:05 +01:00
|
|
|
|
2004-05-20 22:48:55 +01:00
|
|
|
<!-- No XML declaration -->
|
2004-09-28 22:16:23 +01:00
|
|
|
<xsl:param name="chunker.output.omit-xml-declaration" select="'yes'"/>
|
2004-05-20 22:48:55 +01:00
|
|
|
|
2006-04-20 22:11:31 +01:00
|
|
|
<!-- Autolabel preface using lowercase roman numbers -->
|
|
|
|
<xsl:param name="preface.autolabel" select="'i'"/>
|
|
|
|
|
2004-05-20 22:48:55 +01:00
|
|
|
</xsl:stylesheet>
|