blfs-chunked.xsl 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version='1.0' encoding='ISO-8859-1'?>
  2. <!--
  3. $LastChangedBy$
  4. $Date$
  5. -->
  6. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  7. xmlns="http://www.w3.org/1999/xhtml"
  8. version="1.0">
  9. <!-- LFS top-level chunk templates. -->
  10. <xsl:import href="lfs-chunked.xsl"/>
  11. <!-- The LFS book type to be processed (lfs, blfs, clfs, or hlfs) -->
  12. <xsl:param name="book-type">blfs</xsl:param>
  13. <!-- The CSS Stylesheets. We set here relative path from sub-dirs HTML files.
  14. The path from top-level HTML files (index.html, partX.html, etc) MUST be
  15. fixed via a sed in the Makefile-->
  16. <!-- Master CSS Stylesheet -->
  17. <xsl:param name="html.stylesheet" select="'../stylesheets/blfs.css'"/>
  18. <!-- Print CSS Stylesheet -->
  19. <!-- The original template is in {docbook-xsl}/xhtml/docbook.xsl -->
  20. <xsl:template name='user.head.content'>
  21. <link rel="stylesheet" href="../stylesheets/blfs-print.css" type="text/css"
  22. media="print"/>
  23. </xsl:template>
  24. <!-- Are sections enumerated? 1 = yes, 0 = no
  25. Note: Activating this will increase a lot rendering time. -->
  26. <xsl:param name="section.autolabel" select="0"/>
  27. <!-- Do section labels include the component label? 1 = yes, 0 = no -->
  28. <xsl:param name="section.label.includes.component.label" select="0"/>
  29. </xsl:stylesheet>