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 stylesheet --> 14 <xsl:import 15 href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/> 16 <xsl:import 17 href="http://docbook.sourceforge.net/release/xsl/current/html/math.xsl"/> 18 19 <xsl:output method="html" encoding="UTF-8" indent="no"/> 20 21 <!-- We have to make sure that our templates override all 22 docbook templates. Therefore, we include our own templates 23 instead of importing them. In order for this to work, 24 the stylesheets included here cannot also include each other --> 25 <xsl:include href="docbook-layout.xsl"/> 26 <xsl:include href="admon.xsl"/> 27 <xsl:include href="xref.xsl"/> 28 <xsl:include href="relative-href.xsl"/> 29 <xsl:include href="callout.xsl"/> 30 31 <xsl:param name="admon.style"/> 32 <xsl:param name="admon.graphics">1</xsl:param> 33 <xsl:param name="chapter.autolabel" select="0"/> 34 <xsl:param name="refentry.generate.name" select="0"/> 35 <xsl:param name="refentry.generate.title" select="1"/> 36 <xsl:param name="make.year.ranges" select="1"/> 37 38</xsl:stylesheet> 39