Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11488 - main/trunk/doc
Date: Thu, 04 Sep 2008 03:45:17
Message-Id: E1Kb5mU-0000mN-Mj@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-09-04 03:45:13 +0000 (Thu, 04 Sep 2008)
3 New Revision: 11488
4
5 Modified:
6 main/trunk/doc/Makefile
7 main/trunk/doc/custom.xsl
8 Log:
9 Adjust toc.section.depth in the stylesheet so that deeper sections appear
10 in the table of contents.
11
12
13 Modified: main/trunk/doc/Makefile
14 ===================================================================
15 --- main/trunk/doc/Makefile 2008-09-03 21:27:21 UTC (rev 11487)
16 +++ main/trunk/doc/Makefile 2008-09-04 03:45:13 UTC (rev 11488)
17 @@ -1,8 +1,8 @@
18 all: xhtml xhtml-nochunks
19
20 -XMLTO_FLAGS_man = -x custom.xsl
21 +XMLTO_FLAGS = -m custom.xsl
22 man pdf txt xhtml xhtml-nochunks:
23 - xmlto $@ $(XMLTO_FLAGS_$@) portage.docbook
24 + xmlto $@ $(XMLTO_FLAGS) portage.docbook
25
26 clean distclean:
27 rm -f *.1 *.html portage.txt
28
29 Modified: main/trunk/doc/custom.xsl
30 ===================================================================
31 --- main/trunk/doc/custom.xsl 2008-09-03 21:27:21 UTC (rev 11487)
32 +++ main/trunk/doc/custom.xsl 2008-09-04 03:45:13 UTC (rev 11488)
33 @@ -0,0 +1,3 @@
34 +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
35 +<xsl:param name="toc.section.depth" select="20"/>
36 +</xsl:stylesheet>