1<!--
2 - Copyright (C) 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
3 -
4 - Permission to use, copy, modify, and/or distribute this software for any
5 - purpose with or without fee is hereby granted, provided that the above
6 - copyright notice and this permission notice appear in all copies.
7 -
8 - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 - AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 - PERFORMANCE OF THIS SOFTWARE.
15-->
16
17<!-- Id: isc-docbook-text.xsl,v 1.3 2007/06/19 23:47:13 tbox Exp  -->
18
19<!-- Tweaks to Docbook-XSL HTML for producing flat ASCII text. -->
20
21<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
22		xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
23
24  <!-- Import our Docbook HTML stuff -->
25  <xsl:import href="isc-docbook-html.xsl"/>
26
27  <!-- Disable tables of contents (for now - tweak as needed) -->
28  <xsl:param name="generate.toc"/>
29
30  <!-- Voodoo to read i18n/l10n overrides directly from this stylesheet -->
31  <xsl:param name="local.l10n.xml" select="document('')"/>
32
33  <!-- Customize Docbook-XSL i18n/l10n mappings. -->
34  <l:i18n>
35    <l:l10n language="en" english-language-name="English">
36
37      <!-- Please use plain old ASCII quotes -->
38      <l:dingbat key="startquote" text='&quot;'/>
39      <l:dingbat key="endquote"   text='&quot;'/>
40
41    </l:l10n>
42  </l:i18n>
43
44</xsl:stylesheet>
45
46<!--
47  - Local variables:
48  - mode: sgml
49  - End:
50 -->
51