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
80
81
82
|
Index: docbook-xsl-ns-1.74.0/xhtml-1_1/maketoc.xsl
===================================================================
--- docbook-xsl-ns-1.74.0.orig/xhtml-1_1/maketoc.xsl
+++ docbook-xsl-ns-1.74.0/xhtml-1_1/maketoc.xsl
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="ASCII"?>
<!--This file was created automatically by html2xhtml-->
<!--from the HTML stylesheets.-->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:d="http://docbook.org/ns/docbook"
-xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" xmlns="http://www.w3.org/1999/xhtml" version="1.0" exclude-result-prefixes="doc d">
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://docbook.org/ns/docbook"
+xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" version="1.0" exclude-result-prefixes="doc">
<!-- ********************************************************************
$Id: docbook-xsl-ns-1.74.0-maketoc-fix.patch,v 1.1 2009/03/04 20:58:06 flameeyes Exp $
@@ -19,13 +19,13 @@ xmlns:doc="http://nwalsh.com/xsl/documen
<xsl:import href="docbook.xsl"/>
<xsl:import href="chunk.xsl"/>
-<xsl:output method="xml" indent="no" encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.1//EN" doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"/>
+<xsl:output method="xml" indent="no" encoding="UTF-8"/>
<xsl:param name="toc.list.type" select="'tocentry'"/>
<!-- refentry in autotoc.xsl does not use subtoc, so must
handle it explicitly here. -->
-<xsl:template match="d:refentry" mode="toc">
+<xsl:template match="refentry" mode="toc">
<xsl:param name="toc-context" select="."/>
<xsl:call-template name="subtoc">
Index: docbook-xsl-ns-1.74.0/xhtml/maketoc.xsl
===================================================================
--- docbook-xsl-ns-1.74.0.orig/xhtml/maketoc.xsl
+++ docbook-xsl-ns-1.74.0/xhtml/maketoc.xsl
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="ASCII"?>
<!--This file was created automatically by html2xhtml-->
<!--from the HTML stylesheets.-->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:d="http://docbook.org/ns/docbook"
-xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" xmlns="http://www.w3.org/1999/xhtml" version="1.0" exclude-result-prefixes="doc d">
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://docbook.org/ns/docbook"
+xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" version="1.0" exclude-result-prefixes="doc">
<!-- ********************************************************************
$Id: docbook-xsl-ns-1.74.0-maketoc-fix.patch,v 1.1 2009/03/04 20:58:06 flameeyes Exp $
@@ -19,13 +19,13 @@ xmlns:doc="http://nwalsh.com/xsl/documen
<xsl:import href="docbook.xsl"/>
<xsl:import href="chunk.xsl"/>
-<xsl:output method="xml" indent="no" encoding="UTF-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
+<xsl:output method="xml" indent="no" encoding="UTF-8" />
<xsl:param name="toc.list.type" select="'tocentry'"/>
<!-- refentry in autotoc.xsl does not use subtoc, so must
handle it explicitly here. -->
-<xsl:template match="d:refentry" mode="toc">
+<xsl:template match="refentry" mode="toc">
<xsl:param name="toc-context" select="."/>
<xsl:call-template name="subtoc">
Index: docbook-xsl-ns-1.74.0/html/maketoc.xsl
===================================================================
--- docbook-xsl-ns-1.74.0.orig/html/maketoc.xsl
+++ docbook-xsl-ns-1.74.0/html/maketoc.xsl
@@ -1,5 +1,5 @@
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:d="http://docbook.org/ns/docbook"
+ xmlns="http://docbook.org/ns/docbook"
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
version="1.0"
exclude-result-prefixes="doc d">
@@ -25,7 +25,7 @@ xmlns:doc="http://nwalsh.com/xsl/documen
<!-- refentry in autotoc.xsl does not use subtoc, so must
handle it explicitly here. -->
-<xsl:template match="d:refentry" mode="toc">
+<xsl:template match="refentry" mode="toc">
<xsl:param name="toc-context" select="."/>
<xsl:call-template name="subtoc">
|