| 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 fo/docbook.xsl here. --> | 7 <!-- build.xml will substitute the real path to fo/docbook.xsl here. --> |
| 8 <xsl:import href="/Users/pugh/tools/docbook-xsl-1.76.1/fo/docbook.xsl"/> | 8 <xsl:import href="/Users/pugh/tools/docbook-xsl-1.78.1/fo/docbook.xsl"/> |
| 9 | 9 |
| 10 <!-- Enumerate sections. --> | 10 <!-- Enumerate sections. --> |
| 11 <xsl:variable name="section.autolabel">1</xsl:variable> | 11 <xsl:variable name="section.autolabel">1</xsl:variable> |
| 12 | 12 |
| 13 <!-- Use graphics in admonitions --> | 13 <!-- Use graphics in admonitions --> |
| 14 <xsl:variable name="admon.graphics">1</xsl:variable> | 14 <xsl:variable name="admon.graphics">1</xsl:variable> |
| 15 | 15 |
| 16 <!-- Admonition graphics are in the "manual" subdirectory. --> | 16 <!-- Admonition graphics are in the "manual" subdirectory. --> |
| 17 <xsl:variable name="admon.graphics.path">manual/</xsl:variable> | 17 <xsl:variable name="admon.graphics.path">manual/</xsl:variable> |
| 18 | 18 |
| 19 <!-- Included graphics are also in the "manual" subdirectory. --> | 19 <!-- Included graphics are also in the "manual" subdirectory. --> |
| 20 <xsl:variable name="img.src.path">manual/</xsl:variable> | 20 <xsl:variable name="img.src.path">manual/</xsl:variable> |
| 21 | 21 |
| 22 <!-- Default image width is 5 inches - otherwise, they become much too large. | 22 <!-- Default image width is 5 inches - otherwise, they become much too large. |
| 23 FIXME: for some reason, this isn't honored. Blech. | 23 FIXME: for some reason, this isn't honored. Blech. |
| 24 --> | 24 --> |
| 25 <xsl:variable name="default.image.width">5in</xsl:variable> | 25 <xsl:variable name="default.image.width">5in</xsl:variable> |
| 26 | 26 |
| 27 <!-- Just put chapters and sect1s in the TOC. --> | 27 <!-- Just put chapters and sect1s in the TOC. --> |
| 28 <xsl:variable name="toc.section.depth">1</xsl:variable> | 28 <xsl:variable name="toc.section.depth">1</xsl:variable> |
| 29 | 29 |
| 30 </xsl:stylesheet> | 30 </xsl:stylesheet> |
| OLD | NEW |