diff options
author | Dirk Baechle <dl9obn@darc.de> | 2014-03-11 23:01:57 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2014-03-11 23:01:57 (GMT) |
commit | 75dd267e0f5b44603e6d33b835e2007bca5fefee (patch) | |
tree | 73c30ca1b4dcfc8438ee66d8e19d9097230b444e /doc/design | |
parent | 4c5afd028828a6908b788e67516c1f4aeaec2fb2 (diff) | |
download | SCons-75dd267e0f5b44603e6d33b835e2007bca5fefee.zip SCons-75dd267e0f5b44603e6d33b835e2007bca5fefee.tar.gz SCons-75dd267e0f5b44603e6d33b835e2007bca5fefee.tar.bz2 |
- improved dependency handling for doc toolchain (no false rebuilds anymore)
- fixed EPUB builder
- corrected anchor style for links in CSS
- documents now include chapter in section numbering
Diffstat (limited to 'doc/design')
-rw-r--r-- | doc/design/chtml.xsl | 1 | ||||
-rw-r--r-- | doc/design/html.xsl | 1 | ||||
-rw-r--r-- | doc/design/pdf.xsl | 1 | ||||
-rw-r--r-- | doc/design/scons.css | 4 |
4 files changed, 5 insertions, 2 deletions
diff --git a/doc/design/chtml.xsl b/doc/design/chtml.xsl index 457f563..dde3c6f 100644 --- a/doc/design/chtml.xsl +++ b/doc/design/chtml.xsl @@ -33,6 +33,7 @@ <xsl:param name="base.dir" select="'scons-design/'"/>
<xsl:param name="l10n.gentext.default.language" select="'en'"/>
<xsl:param name="section.autolabel" select="1"/>
+<xsl:param name="section.label.includes.component.label" select="1"/>
<xsl:param name="html.stylesheet" select="'scons.css'"/>
<xsl:param name="generate.toc">
/appendix toc,title
diff --git a/doc/design/html.xsl b/doc/design/html.xsl index 74ea529..9efc458 100644 --- a/doc/design/html.xsl +++ b/doc/design/html.xsl @@ -32,6 +32,7 @@ <xsl:param name="l10n.gentext.default.language" select="'en'"/>
<xsl:param name="section.autolabel" select="1"/>
+<xsl:param name="section.label.includes.component.label" select="1"/>
<xsl:param name="html.stylesheet" select="'scons.css'"/>
<xsl:param name="generate.toc">
/appendix toc,title
diff --git a/doc/design/pdf.xsl b/doc/design/pdf.xsl index 652975f..33100d2 100644 --- a/doc/design/pdf.xsl +++ b/doc/design/pdf.xsl @@ -33,6 +33,7 @@ <xsl:include href="scons_title.xsl"/>
<xsl:param name="l10n.gentext.default.language" select="'en'"/>
<xsl:param name="section.autolabel" select="1"></xsl:param>
+<xsl:param name="section.label.includes.component.label" select="1"/>
<xsl:param name="paper.type" select="'letter'"></xsl:param>
<xsl:param name="body.start.indent">0pt</xsl:param>
<xsl:param name="shade.verbatim" select="1"></xsl:param>
diff --git a/doc/design/scons.css b/doc/design/scons.css index 6941abb..ff9b5a1 100644 --- a/doc/design/scons.css +++ b/doc/design/scons.css @@ -6,11 +6,11 @@ body { } -a { +a:link { color: #80572a; } -a:hover { +a:link:hover { color: #d72816; text-decoration: none; } |