audio: add af_lavrresample, remove old resampling filters
[mplayer.git] / DOCS / xml / html-common.xsl
blob39bf8e26ed880769327f12eb5a0d072666939c15
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 <xsl:output method="html" indent="no"
6 doctype-system="http://www.w3.org/TR/html4/loose.dtd"
7 doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
9 <!-- **************
10 Set parameters
11 ************** -->
13 <xsl:param name="chunker.output.encoding" select="'utf-8'"/>
14 <xsl:output encoding="utf-8"/>
16 <xsl:param name="toc.section.depth" select="'4'"/>
18 <xsl:param name="html.stylesheet" select="'default.css'"/>
19 <xsl:param name="html.stylesheet.type" select="'text/css'"/>
21 <xsl:param name="html.cleanup" select="'1'"/>
22 <xsl:param name="make.valid.html" select="'1'"/>
23 <xsl:param name="make.single.year.ranges" select="'1'"/>
24 <xsl:param name="make.year.ranges" select="'1'"/>
26 <!-- Use ID value for generated filenames -->
27 <xsl:param name="use.id.as.filename" select="'1'"/>
29 <!-- Depth to which sections are chunked -->
30 <xsl:param name="chunk.section.depth" select="'1'"/>
32 <!-- Create a chunk for the 1st top-level section too -->
33 <xsl:param name="chunk.first.sections" select="'1'"/>
35 <xsl:param name="admon.graphics" select="'0'"/>
36 <xsl:param name="navig.graphics" select="'0'"/>
37 <xsl:param name="navig.showtitles" select="'1'"/>
39 <!-- Generate more links for Site Navigation Bar -->
40 <xsl:param name="html.extra.head.links" select="1"/>
42 <!-- Label sections too (eg. 2.1, 2.1.1) -->
43 <xsl:param name="section.autolabel" select="'1'"/>
44 <xsl:param name="section.label.includes.component.label" select="'1'"/>
46 <!-- Use informal procedures; no need to number them -->
47 <xsl:param name="formal.procedures" select="'0'"/>
49 <xsl:param name="generate.toc">
50 appendix toc
51 article toc
52 book toc
53 chapter toc
54 part toc
55 preface toc
56 qandadiv toc
57 qandaset toc
58 reference toc
59 section toc
60 set toc
61 </xsl:param>
63 <!-- *********
64 Templates
65 ********* -->
67 <xsl:template match="application">
68 <span class="application"><xsl:apply-templates/></span>
69 </xsl:template>
71 <xsl:template match="option">
72 <tt class="option"><xsl:apply-templates/></tt>
73 </xsl:template>
75 <xsl:template match="filename">
76 <tt class="filename"><xsl:apply-templates/></tt>
77 </xsl:template>
79 <xsl:template match="keycap">
80 <span class="keycap"><b><xsl:apply-templates/></b></span>
81 </xsl:template>
83 <xsl:template match="guimenu">
84 <span class="guimenu"><xsl:apply-templates/></span>
85 </xsl:template>
87 <xsl:template match="guisubmenu">
88 <span class="guisubmenu"><xsl:apply-templates/></span>
89 </xsl:template>
91 <xsl:template match="guimenuitem">
92 <span class="guimenuitem"><xsl:apply-templates/></span>
93 </xsl:template>
95 </xsl:stylesheet>