1<!--
2 - Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3 -
4 - This Source Code Form is subject to the terms of the Mozilla Public
5 - License, v. 2.0. If a copy of the MPL was not distributed with this
6 - file, you can obtain one at https://mozilla.org/MPL/2.0/.
7 -
8 - See the COPYRIGHT file distributed with this work for additional
9 - information regarding copyright ownership.
10-->
11
12<!-- ISC customizations for Docbook-XSL HTML generator -->
13
14<xsl:stylesheet version="1.0"
15  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
16  xmlns:db="http://docbook.org/ns/docbook">
17
18  <!-- Import the Docbook HTML stuff -->
19  <xsl:import href="@XSLT_DOCBOOK_STYLE_HTML@"/>
20
21  <!-- Readable HTML output, please -->
22  <xsl:output indent="yes"/>
23
24  <!-- ANSI C function prototypes, please -->
25  <xsl:param name="funcsynopsis.style">ansi</xsl:param>
26
27  <!-- Use ranges when constructing copyrights -->
28  <xsl:param name="make.year.ranges" select="1"/>
29
30  <!-- Include our copyright generator -->
31  <xsl:include href="copyright.xsl"/>
32
33  <!-- Set comment convention for this output format -->
34  <xsl:param name="isc.copyright.leader"> - </xsl:param>
35  <xsl:param name="isc.copyright.breakline"/>
36
37  <!-- Generate consistent id attributes -->
38  <xsl:param name="generate.consistent.ids" select="1"/>
39
40  <!-- Override Docbook template to insert copyright -->
41  <xsl:template name="user.preroot">
42    <xsl:comment>
43      <xsl:text>&#10;</xsl:text>
44      <xsl:value-of select="$isc.copyright"/>
45    </xsl:comment>
46    <xsl:text>&#10;</xsl:text>
47    <xsl:comment> &#36;Id&#36; </xsl:comment>
48    <xsl:text>&#10;</xsl:text>
49  </xsl:template>
50
51  <!-- Omit title page -->
52  <xsl:template name="article.titlepage"/>
53
54  <xsl:template name="user.footer.navigation">
55    <p style="text-align: center;">@BIND9_VERSIONSTRING@</p>
56  </xsl:template>
57
58</xsl:stylesheet>
59
60<!--
61  - Local variables:
62  - mode: sgml
63  - End:
64 -->
65