The code to unlink dropped relations in FinishPreparedTransaction() was
[PostgreSQL.git] / doc / src / sgml / stylesheet-common.xsl
blob2ad0a7f1cad85756e6da30e450eb94b3a62e6018
1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 version="1.0">
5 <!--
6 This file contains XSLT stylesheet customizations that are common to
7 all output formats (HTML, HTML Help, XSL-FO, etc.).
8 -->
11 <!-- Parameters -->
13 <xsl:param name="pg.fast" select="'0'"/>
15 <!--
16 <xsl:param name="draft.mode">
17 <xsl:choose>
18 <xsl:when test="contains($pg.version, 'devel')">yes</xsl:when>
19 <xsl:otherwise>no</xsl:otherwise>
20 </xsl:choose>
21 </xsl:param>
22 -->
24 <xsl:param name="show.comments">
25 <xsl:choose>
26 <xsl:when test="contains($pg.version, 'devel')">1</xsl:when>
27 <xsl:otherwise>0</xsl:otherwise>
28 </xsl:choose>
29 </xsl:param>
31 <xsl:param name="callout.graphics" select="'0'"></xsl:param>
32 <xsl:param name="toc.section.depth">2</xsl:param>
33 <xsl:param name="linenumbering.extension" select="'0'"></xsl:param>
34 <xsl:param name="generate.index" select="1 - $pg.fast"></xsl:param>
35 <xsl:param name="preface.autolabel" select="1 - $pg.fast"></xsl:param>
36 <xsl:param name="section.autolabel" select="1 - $pg.fast"></xsl:param>
37 <xsl:param name="section.label.includes.component.label" select="1 - $pg.fast"></xsl:param>
38 <xsl:param name="refentry.xref.manvolnum" select="0"/>
39 <xsl:param name="formal.procedures" select="0"></xsl:param>
40 <xsl:param name="punct.honorific" select="''"></xsl:param>
43 <!-- Change display of some elements -->
45 <xsl:template match="command">
46 <xsl:call-template name="inline.monoseq"/>
47 </xsl:template>
49 <xsl:template match="productname">
50 <xsl:call-template name="inline.charseq"/>
51 </xsl:template>
53 <xsl:template match="structfield">
54 <xsl:call-template name="inline.monoseq"/>
55 </xsl:template>
57 <xsl:template match="structname">
58 <xsl:call-template name="inline.monoseq"/>
59 </xsl:template>
61 <xsl:template match="symbol">
62 <xsl:call-template name="inline.monoseq"/>
63 </xsl:template>
65 <xsl:template match="systemitem">
66 <xsl:call-template name="inline.charseq"/>
67 </xsl:template>
69 <xsl:template match="token">
70 <xsl:call-template name="inline.monoseq"/>
71 </xsl:template>
73 <xsl:template match="type">
74 <xsl:call-template name="inline.monoseq"/>
75 </xsl:template>
77 <xsl:template match="programlisting/emphasis">
78 <xsl:call-template name="inline.boldseq"/>
79 </xsl:template>
82 <!-- Special support for Tcl synopses -->
84 <xsl:template match="optional[@role='tcl']">
85 ?<xsl:call-template name="inline.charseq"/>?
86 </xsl:template>
88 </xsl:stylesheet>