summaryrefslogtreecommitdiffstats
path: root/tools/user_guide_chunks.xsl
blob: ccad9efdaf085dc50b89433f671542160985f9e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version='1.0'>

<!-- Import original style sheet: chunk.xsl (multi-page) or docbook.xsl (one page) -->

	<xsl:import href="/usr/share/sgml/docbook/xsl-stylesheets/html/chunk.xsl"/>

<!-- ******************************************************************
   -
   -  Load the common customization for HTML:
   -
   - ******************************************************************
   -->

	<xsl:include href="user_guide_common.xsl"/>
	<!-- xsl:include href="html_titlepage.xsl"/ -->

	<xsl:param name="page.margin.top">10in</xsl:param>
	<xsl:param name="page.margin.bottom">10in</xsl:param>
	<xsl:param name="page.margin.inner">10in</xsl:param>
	<xsl:param name="page.margin.outer">10in</xsl:param>

	<xsl:param name="generate.legalnotice.link" select="0"/>

<!-- ******************************************************************
   -
   -  Chunks specific customization:
   -
   - ******************************************************************
   -->

<!-- Generate a message for each chunked file -->

<xsl:param name="chunk.quietly" select="0"/>

<!-- New top-level file name: index.html is reserved for the index  -->

<xsl:param name="root.filename" select="'sylpheed'"/>

<!-- Yes we use the chunker: splits the output into several files. -->

<xsl:param name="using.chunker" select="0"/>

<!-- Chunk only the first level of chapter/sections -->

<xsl:param name="chunk.section.depth" select="0"/>

<!-- Generate a separate chunk for the first element of each section -->

<xsl:param name="chunk.first.sections" select="1"/>

<!-- Do not use the ID as filename: they contain forbidden chars -->

<xsl:param name="use.id.as.filename" select="'1'"/>

<!-- Use the following extension for output files: .html -->

<xsl:param name="html.ext" select="'.html'"/>

<!-- Generate extra HEAD links for Mozilla -->

<xsl:param name="html.extra.head.links" select="1"/>

<!-- Do not use graphics in navigation headers/footers -->

<xsl:param name="navig.graphics" select="0"/>
<xsl:param name="navig.graphics.extension" select="'.png'"/>
<xsl:param name="navig.graphics.path">images/</xsl:param>

<!-- Show next and previous sections titles in nav bars -->

<xsl:param name="navig.showtitles">1</xsl:param>

<!-- Nice HTML output -->

<xsl:param name="chunker.output.indent">yes</xsl:param>

</xsl:stylesheet>