]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/boostbook/xsl/html.xsl
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / tools / boostbook / xsl / html.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com>
4
5 Distributed under the Boost Software License, Version 1.0.
6 (See accompanying file LICENSE_1_0.txt or copy at
7 http://www.boost.org/LICENSE_1_0.txt)
8 -->
9 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision"
11 version="1.0">
12
13 <!-- Import the HTML chunking stylesheet -->
14 <xsl:import
15 href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
16 <xsl:import
17 href="http://docbook.sourceforge.net/release/xsl/current/html/math.xsl"/>
18
19 <!-- Bring in the fast chunking overrides. There's nothing
20 that we need to override, so include instead of importing it. -->
21 <xsl:include
22 href="http://docbook.sourceforge.net/release/xsl/current/html/chunkfast.xsl"/>
23
24 <!-- We have to make sure that our templates override all
25 docbook templates. Therefore, we include our own templates
26 instead of importing them. In order for this to work,
27 the stylesheets included here cannot also include each other -->
28 <xsl:include href="chunk-common.xsl"/>
29 <xsl:include href="docbook-layout.xsl"/>
30 <xsl:include href="navbar.xsl"/>
31 <xsl:include href="admon.xsl"/>
32 <xsl:include href="xref.xsl"/>
33 <xsl:include href="relative-href.xsl"/>
34 <xsl:include href="callout.xsl"/>
35 <xsl:include href="html-base.xsl"/>
36
37 </xsl:stylesheet>