~ubuntu-branches/ubuntu/lucid/gnome-doc-utils/lucid

« back to all changes in this revision

Viewing changes to xslt/docbook/html/db2html.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-19 08:34:21 UTC
  • mto: (2.1.1 etch) (1.1.18 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051219083421-k72rkh3n6vox1c0t
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version='1.0' encoding='utf-8'?><!-- -*- indent-tabs-mode: nil -*- -->
 
1
<?xml version='1.0' encoding='UTF-8'?><!-- -*- indent-tabs-mode: nil -*- -->
 
2
<!--
 
3
This program is free software; you can redistribute it and/or modify it under
 
4
the terms of the GNU Lesser General Public License as published by the Free
 
5
Software Foundation; either version 2 of the License, or (at your option) any
 
6
later version.
 
7
 
 
8
This program is distributed in the hope that it will be useful, but WITHOUT
 
9
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
10
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 
11
details.
 
12
 
 
13
You should have received a copy of the GNU Lesser General Public License
 
14
along with this program; see the file COPYING.LGPL.  If not, write to the
 
15
Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
16
02111-1307, USA.
 
17
-->
2
18
 
3
19
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
20
                xmlns:doc="http://www.gnome.org/~shaunm/xsldoc"
5
21
                xmlns="http://www.w3.org/1999/xhtml"
6
22
                exclude-result-prefixes="doc"
7
23
                version="1.0">
 
24
<xsl:import href="../../gettext/gettext.xsl"/>
8
25
 
9
26
<doc:title>DocBook to HTML conversion</doc:title>
10
27
 
11
28
<!-- Setting parameters for included stylesheets -->
12
29
<xsl:param name="db.chunk.extension" select="'.xhtml'" doc:private="true"/>
13
30
 
14
 
<xsl:include href="../../gettext/gettext.xsl"/>
15
 
 
16
31
<xsl:include href="../common/db-chunk.xsl"   doc:summary="true"/>
17
32
<xsl:include href="../common/db-common.xsl"  doc:summary="true"/>
18
 
<xsl:include href="../common/db-format.xsl"  doc:summary="true"/>
19
33
<xsl:include href="../common/db-label.xsl"   doc:summary="true"/>
20
34
<xsl:include href="../common/db-title.xsl"   doc:summary="true"/>
21
35
<xsl:include href="../common/db-xref.xsl"    doc:summary="true"/>
26
40
<xsl:include href="db2html-autotoc.xsl"
27
41
             doc:summary="true"
28
42
             doc:include="true"/>
 
43
<xsl:include href="db2html-bibliography.xsl"
 
44
             doc:summary="true"
 
45
             doc:include="true"/>
29
46
<xsl:include href="db2html-block.xsl"
30
47
             doc:summary="true"
31
48
             doc:include="true"/>
56
73
<xsl:include href="db2html-inline.xsl"
57
74
             doc:summary="true"
58
75
             doc:include="true"/>
 
76
<xsl:include href="db2html-l10n.xsl"
 
77
             doc:summary="true"
 
78
             doc:include="true"/>
59
79
<xsl:include href="db2html-media.xsl"
60
80
             doc:summary="true"
61
81
             doc:include="true"/>
89
109
  <xsl:apply-templates select="node()"/>
90
110
</xsl:template>
91
111
 
92
 
<!-- Implement the format2xsl stub templates -->
93
 
<xsl:template name="format2xsl.element.name">
94
 
  <xsl:param name="name"/>
95
 
  <xsl:param name="namespace"/>
96
 
  <xsl:value-of select="$name"/>
97
 
</xsl:template>
98
 
<xsl:template name="format2xsl.element.namespace">
99
 
  <xsl:param name="name"/>
100
 
  <xsl:param name="namespace"/>
101
 
  <xsl:value-of select="'http://www.w3.org/1999/xhtml'"/>
102
 
</xsl:template>
103
 
 
104
112
</xsl:stylesheet>