OLD | NEW |
1 <?xml version='1.0'?> | 1 <?xml version='1.0'?> |
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
3 version='1.0' | 3 version='1.0' |
4 xmlns="http://www.w3.org/TR/xhtml1/transitional" | 4 xmlns="http://www.w3.org/TR/xhtml1/transitional" |
5 exclude-result-prefixes="#default"> | 5 exclude-result-prefixes="#default"> |
6 | 6 |
7 <!-- build.xml will substitute the real path to chunk.xsl here. --> | 7 <!-- build.xml will substitute the real path to chunk.xsl here. --> |
8 <xsl:import href="/Users/pugh/tools/docbook-xsl-1.76.1/html/chunk.xsl"/> | 8 <xsl:import href="/Users/pugh/tools/docbook-xsl-1.78.1/html/chunk.xsl"/> |
9 | 9 |
10 <xsl:template name="user.header.content"> | 10 <xsl:template name="user.header.content"> |
11 | 11 |
12 </xsl:template> | 12 </xsl:template> |
13 | 13 |
14 <!-- This causes the stylesheet to put chapters in a single HTML file, | 14 <!-- This causes the stylesheet to put chapters in a single HTML file, |
15 rather than putting individual sections into separate files. --> | 15 rather than putting individual sections into separate files. --> |
16 <xsl:variable name="chunk.section.depth">0</xsl:variable> | 16 <xsl:variable name="chunk.section.depth">0</xsl:variable> |
17 | 17 |
18 <!-- Put the HTML in the "manual" directory. --> | 18 <!-- Put the HTML in the "manual" directory. --> |
19 <xsl:variable name="base.dir">manual/</xsl:variable> | 19 <xsl:variable name="base.dir">manual/</xsl:variable> |
20 | 20 |
21 <!-- Enumerate sections. --> | 21 <!-- Enumerate sections. --> |
22 <xsl:variable name="section.autolabel">1</xsl:variable> | 22 <xsl:variable name="section.autolabel">1</xsl:variable> |
23 | 23 |
24 <!-- Name the HTML files based on the id of the document elements. --> | 24 <!-- Name the HTML files based on the id of the document elements. --> |
25 <xsl:variable name="use.id.as.filename">1</xsl:variable> | 25 <xsl:variable name="use.id.as.filename">1</xsl:variable> |
26 | 26 |
27 <!-- Use graphics in admonitions --> | 27 <!-- Use graphics in admonitions --> |
28 <xsl:variable name="admon.graphics">1</xsl:variable> | 28 <xsl:variable name="admon.graphics">1</xsl:variable> |
29 | 29 |
30 <!-- Admonition graphics are in the same place as the generated HTML. --> | 30 <!-- Admonition graphics are in the same place as the generated HTML. --> |
31 <xsl:variable name="admon.graphics.path"></xsl:variable> | 31 <xsl:variable name="admon.graphics.path"></xsl:variable> |
32 | 32 |
33 <!-- Just put chapters and sect1s in the TOC. --> | 33 <!-- Just put chapters and sect1s in the TOC. --> |
34 <xsl:variable name="toc.section.depth">1</xsl:variable> | 34 <xsl:variable name="toc.section.depth">1</xsl:variable> |
35 | 35 |
36 </xsl:stylesheet> | 36 </xsl:stylesheet> |
OLD | NEW |