Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / doc / src / sgml / stylesheet.xsl
blobfaee9d0e04c9c18ea6d9eea8da31dfb33474b18a
1 <?xml version='1.0'?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 version='1.0'
4 xmlns="http://www.w3.org/TR/xhtml1/transitional"
5 exclude-result-prefixes="#default">
7 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"/>
8 <xsl:include href="stylesheet-common.xsl" />
11 <!-- Parameters -->
12 <xsl:param name="html.stylesheet" select="'stylesheet.css'"></xsl:param>
13 <xsl:param name="use.id.as.filename" select="'1'"></xsl:param>
14 <xsl:param name="make.valid.html" select="1"></xsl:param>
15 <xsl:param name="generate.id.attributes" select="1"></xsl:param>
16 <xsl:param name="generate.legalnotice.link" select="1"></xsl:param>
17 <xsl:param name="link.mailto.url">pgsql-docs@postgresql.org</xsl:param>
18 <xsl:param name="chunker.output.indent" select="'yes'"/>
19 <xsl:param name="chunk.quietly" select="1"></xsl:param>
22 <!--
23 Format multiple terms in varlistentry vertically, instead
24 of comma-separated.
25 -->
27 <xsl:template match="varlistentry/term[position()!=last()]">
28 <span class="term">
29 <xsl:call-template name="anchor"/>
30 <xsl:apply-templates/>
31 </span><br/>
32 </xsl:template>
34 </xsl:stylesheet>