1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!DOCTYPE book
|
---|
3 | PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
---|
4 | <book>
|
---|
5 | <bookinfo>
|
---|
6 | <title>Slides (HTML) Parameter Reference</title>
|
---|
7 | <releaseinfo role="meta">
|
---|
8 | $Id: param.xweb,v 1.9 2005/06/17 08:38:11 xmldoc Exp $
|
---|
9 | </releaseinfo>
|
---|
10 | <author>
|
---|
11 | <surname>Walsh</surname>
|
---|
12 | <firstname>Norman</firstname>
|
---|
13 | </author>
|
---|
14 | <copyright>
|
---|
15 | <year>2002</year>
|
---|
16 | <holder>Norman Walsh</holder>
|
---|
17 | </copyright>
|
---|
18 | </bookinfo>
|
---|
19 |
|
---|
20 | <preface><title>Introduction</title>
|
---|
21 |
|
---|
22 | <para>This is reference documentation for all user-configurable
|
---|
23 | parameters in the DocBook XSL Slides HTML stylesheets (for generating
|
---|
24 | HTML output from DocBook Slides documents).</para>
|
---|
25 |
|
---|
26 | <note>
|
---|
27 | <para>There currently are no Slides parameters for FO
|
---|
28 | output.</para>
|
---|
29 | </note>
|
---|
30 |
|
---|
31 | <para>This reference describes each of the parameters.
|
---|
32 | These are the <quote>easily customizable</quote> parts of the stylesheet.
|
---|
33 | If you want to specify an alternate value for one or more of these
|
---|
34 | parameters, you can do so in a <quote>driver</quote> stylesheet.</para>
|
---|
35 |
|
---|
36 | <para>For example, if you want to change the <literal moreinfo="none">keyboard.nav</literal>
|
---|
37 | parameter to <filename moreinfo="none">0</filename>, you might create a driver
|
---|
38 | stylesheet like this:</para>
|
---|
39 |
|
---|
40 | <programlisting format="linespecific"><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
41 | version='1.0'>
|
---|
42 |
|
---|
43 | <xsl:import href="http://docbook.sourceforge.net/release/slides/current/xsl/slides.xsl"/>
|
---|
44 |
|
---|
45 | <xsl:param name="keyboard.nav" select="0"/>
|
---|
46 |
|
---|
47 | </xsl:stylesheet></programlisting>
|
---|
48 |
|
---|
49 | <para>Naturally, you have to change the
|
---|
50 | <sgmltag class="attribute">href</sgmltag> attribute on
|
---|
51 | <literal moreinfo="none"><xsl:import></literal> to point to the stylesheet
|
---|
52 | on your system.</para>
|
---|
53 | </preface>
|
---|
54 |
|
---|
55 | <reference>
|
---|
56 | <title>General Parameters</title>
|
---|
57 |
|
---|
58 | <refentry id="keyboard.nav">
|
---|
59 | <refmeta>
|
---|
60 | <refentrytitle>keyboard.nav</refentrytitle>
|
---|
61 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
62 | </refmeta>
|
---|
63 | <refnamediv>
|
---|
64 | <refname>keyboard.nav</refname>
|
---|
65 | <refpurpose>Enable keyboard navigation?</refpurpose>
|
---|
66 | </refnamediv>
|
---|
67 |
|
---|
68 | <refsynopsisdiv>
|
---|
69 | <programlisting id="keyboard.nav.frag">
|
---|
70 | <xsl:param name="keyboard.nav" select="1"></xsl:param>
|
---|
71 | </programlisting>
|
---|
72 | </refsynopsisdiv>
|
---|
73 |
|
---|
74 | <refsect1><title>Description</title>
|
---|
75 |
|
---|
76 | <para>If non-zero, JavaScript is added to the slides to enable keyboard
|
---|
77 | navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves
|
---|
78 | backward.</para>
|
---|
79 |
|
---|
80 | </refsect1>
|
---|
81 | </refentry>
|
---|
82 |
|
---|
83 | <refentry id="css.stylesheet">
|
---|
84 | <refmeta>
|
---|
85 | <refentrytitle>css.stylesheet</refentrytitle>
|
---|
86 | <refmiscinfo role="type">URI</refmiscinfo>
|
---|
87 | </refmeta>
|
---|
88 | <refnamediv>
|
---|
89 | <refname>css.stylesheet</refname>
|
---|
90 | <refpurpose>CSS stylesheet for slides</refpurpose>
|
---|
91 | </refnamediv>
|
---|
92 |
|
---|
93 | <refsynopsisdiv>
|
---|
94 | <programlisting id="css.stylesheet.frag">
|
---|
95 | <xsl:param name="css.stylesheet" select="'slides.css'"></xsl:param>
|
---|
96 | </programlisting>
|
---|
97 | </refsynopsisdiv>
|
---|
98 |
|
---|
99 | <refsect1><title>Description</title>
|
---|
100 |
|
---|
101 | <para>Identifies the CSS stylesheet used by all the slides. This parameter
|
---|
102 | can be set in the source document with the <?dbhtml?> pseudo-attribute
|
---|
103 | <literal moreinfo="none">css-stylesheet</literal>.</para>
|
---|
104 |
|
---|
105 | </refsect1>
|
---|
106 | </refentry>
|
---|
107 |
|
---|
108 | <refentry id="css.stylesheet.dir">
|
---|
109 | <refmeta>
|
---|
110 | <refentrytitle>css.stylesheet.dir</refentrytitle>
|
---|
111 | <refmiscinfo role="type">URI</refmiscinfo>
|
---|
112 | </refmeta>
|
---|
113 | <refnamediv>
|
---|
114 | <refname>css.stylesheet.dir</refname>
|
---|
115 | <refpurpose>Default directory for CSS stylesheets</refpurpose>
|
---|
116 | </refnamediv>
|
---|
117 |
|
---|
118 | <refsynopsisdiv>
|
---|
119 | <programlisting id="css.stylesheet.dir.frag">
|
---|
120 | <xsl:param name="css.stylesheet.dir" select="''"></xsl:param>
|
---|
121 | </programlisting>
|
---|
122 | </refsynopsisdiv>
|
---|
123 |
|
---|
124 | <refsect1><title>Description</title>
|
---|
125 |
|
---|
126 | <para>Identifies the default directory for the CSS stylesheet
|
---|
127 | generated on all the slides. This parameter can be set in the source
|
---|
128 | document with the <?dbhtml?> pseudo-attribute
|
---|
129 | <literal moreinfo="none">css-stylesheet-dir</literal>.</para>
|
---|
130 |
|
---|
131 | <para>If non-empty, this value is prepended to each of the stylesheets.
|
---|
132 | </para>
|
---|
133 |
|
---|
134 | </refsect1>
|
---|
135 | </refentry>
|
---|
136 |
|
---|
137 | <refentry id="titlefoil.html">
|
---|
138 | <refmeta>
|
---|
139 | <refentrytitle>titlefoil.html</refentrytitle>
|
---|
140 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
141 | </refmeta>
|
---|
142 | <refnamediv>
|
---|
143 | <refname>titlefoil.html</refname>
|
---|
144 | <refpurpose>Name of title foil HTML file</refpurpose>
|
---|
145 | </refnamediv>
|
---|
146 |
|
---|
147 | <refsynopsisdiv>
|
---|
148 | <programlisting id="titlefoil.html.frag">
|
---|
149 | <xsl:param name="titlefoil.html" select="concat('index', $html.ext)"></xsl:param>
|
---|
150 | </programlisting>
|
---|
151 | </refsynopsisdiv>
|
---|
152 |
|
---|
153 | <refsect1><title>Description</title>
|
---|
154 |
|
---|
155 | <para>Sets the filename used for the slides titlepage.</para>
|
---|
156 |
|
---|
157 | </refsect1>
|
---|
158 | </refentry>
|
---|
159 |
|
---|
160 | <refentry id="toc.html">
|
---|
161 | <refmeta>
|
---|
162 | <refentrytitle>toc.html</refentrytitle>
|
---|
163 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
164 | </refmeta>
|
---|
165 | <refnamediv>
|
---|
166 | <refname>toc.html</refname>
|
---|
167 | <refpurpose>Name of ToC HTML file</refpurpose>
|
---|
168 | </refnamediv>
|
---|
169 |
|
---|
170 | <refsynopsisdiv>
|
---|
171 | <programlisting id="toc.html.frag">
|
---|
172 | <xsl:param name="toc.html" select="concat('toc', $html.ext)"></xsl:param>
|
---|
173 | </programlisting>
|
---|
174 | </refsynopsisdiv>
|
---|
175 |
|
---|
176 | <refsect1><title>Description</title>
|
---|
177 |
|
---|
178 | <para>Sets the filename used for the table of contents page.</para>
|
---|
179 |
|
---|
180 | </refsect1>
|
---|
181 | </refentry>
|
---|
182 |
|
---|
183 | <refentry id="foilgroup.toc">
|
---|
184 | <refmeta>
|
---|
185 | <refentrytitle>foilgroup.toc</refentrytitle>
|
---|
186 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
187 | </refmeta>
|
---|
188 | <refnamediv>
|
---|
189 | <refname>foilgroup.toc</refname>
|
---|
190 | <refpurpose>Put ToC on foilgroup pages?</refpurpose>
|
---|
191 | </refnamediv>
|
---|
192 |
|
---|
193 | <refsynopsisdiv>
|
---|
194 | <programlisting id="foilgroup.toc.frag">
|
---|
195 | <xsl:param name="foilgroup.toc" select="1"></xsl:param>
|
---|
196 | </programlisting>
|
---|
197 | </refsynopsisdiv>
|
---|
198 |
|
---|
199 | <refsect1><title>Description</title>
|
---|
200 |
|
---|
201 | <para>If non-zero, a ToC will be placed on foilgroup pages (after any
|
---|
202 | other content).
|
---|
203 | </para>
|
---|
204 |
|
---|
205 | </refsect1>
|
---|
206 | </refentry>
|
---|
207 |
|
---|
208 | <refentry id="output.indent">
|
---|
209 | <refmeta>
|
---|
210 | <refentrytitle>output.indent</refentrytitle>
|
---|
211 | <refmiscinfo role="type">list</refmiscinfo>
|
---|
212 | <refmiscinfo role="value">no</refmiscinfo>
|
---|
213 | <refmiscinfo role="value">yes</refmiscinfo>
|
---|
214 | </refmeta>
|
---|
215 | <refnamediv>
|
---|
216 | <refname>output.indent</refname>
|
---|
217 | <refpurpose>Indent output?</refpurpose>
|
---|
218 | </refnamediv>
|
---|
219 |
|
---|
220 | <refsynopsisdiv>
|
---|
221 | <programlisting id="output.indent.frag">
|
---|
222 | <xsl:param name="output.indent" select="'no'"></xsl:param>
|
---|
223 | </programlisting>
|
---|
224 | </refsynopsisdiv>
|
---|
225 |
|
---|
226 | <refsect1><title>Description</title>
|
---|
227 |
|
---|
228 | <para>Specifies the setting of the <parameter moreinfo="none">indent</parameter> parameter
|
---|
229 | on the HTML slides. For more information, see the discussion of the
|
---|
230 | <sgmltag>xsl:output</sgmltag> element in the XSLT specification.</para>
|
---|
231 |
|
---|
232 | </refsect1>
|
---|
233 | </refentry>
|
---|
234 |
|
---|
235 | <refentry id="overlay">
|
---|
236 | <refmeta>
|
---|
237 | <refentrytitle>overlay</refentrytitle>
|
---|
238 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
239 | </refmeta>
|
---|
240 | <refnamediv>
|
---|
241 | <refname>overlay</refname>
|
---|
242 | <refpurpose>Overlay footer navigation?</refpurpose>
|
---|
243 | </refnamediv>
|
---|
244 |
|
---|
245 | <refsynopsisdiv>
|
---|
246 | <programlisting id="overlay.frag">
|
---|
247 | <xsl:param name="overlay" select="0"></xsl:param>
|
---|
248 | </programlisting>
|
---|
249 | </refsynopsisdiv>
|
---|
250 |
|
---|
251 | <refsect1><title>Description</title>
|
---|
252 |
|
---|
253 | <para>If non-zero, JavaScript is added to the slides to make the
|
---|
254 | bottom navigation appear at the bottom of each page. This option and
|
---|
255 | <link linkend="multiframe">multiframe</link> are mutually exclusive.</para>
|
---|
256 |
|
---|
257 | <para>If this parameter is zero, the bottom navigation simply appears
|
---|
258 | below the content of each slide.</para>
|
---|
259 |
|
---|
260 | </refsect1>
|
---|
261 | </refentry>
|
---|
262 |
|
---|
263 | <refentry id="show.foil.number">
|
---|
264 | <refmeta>
|
---|
265 | <refentrytitle>show.foil.number</refentrytitle>
|
---|
266 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
267 | </refmeta>
|
---|
268 | <refnamediv>
|
---|
269 | <refname>show.foil.number</refname>
|
---|
270 | <refpurpose>Show foil number on each foil?</refpurpose>
|
---|
271 | </refnamediv>
|
---|
272 |
|
---|
273 | <refsynopsisdiv>
|
---|
274 | <programlisting id="show.foil.number.frag">
|
---|
275 | <xsl:param name="show.foil.number" select="0"></xsl:param>
|
---|
276 | </programlisting>
|
---|
277 | </refsynopsisdiv>
|
---|
278 |
|
---|
279 | <refsect1><title>Description</title>
|
---|
280 |
|
---|
281 | <para>If non-zero, on each slide there will be its number. Currently
|
---|
282 | not supported in all output formats.</para>
|
---|
283 |
|
---|
284 | </refsect1>
|
---|
285 | </refentry>
|
---|
286 |
|
---|
287 | </reference>
|
---|
288 |
|
---|
289 | <reference>
|
---|
290 | <title>Frame Parameters</title>
|
---|
291 |
|
---|
292 | <refentry id="nav.separator">
|
---|
293 | <refmeta>
|
---|
294 | <refentrytitle>nav.separator</refentrytitle>
|
---|
295 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
296 | </refmeta>
|
---|
297 | <refnamediv>
|
---|
298 | <refname>nav.separator</refname>
|
---|
299 | <refpurpose>Output separator between navigation and body?</refpurpose>
|
---|
300 | </refnamediv>
|
---|
301 |
|
---|
302 | <refsynopsisdiv>
|
---|
303 | <programlisting id="nav.separator.frag">
|
---|
304 | <xsl:param name="nav.separator" select="1"></xsl:param>
|
---|
305 | </programlisting>
|
---|
306 | </refsynopsisdiv>
|
---|
307 |
|
---|
308 | <refsect1><title>Description</title>
|
---|
309 |
|
---|
310 | <para>If non-zero, a separator (<literal moreinfo="none"><HR></literal>) is
|
---|
311 | added between the navigation links and the content of each slide.</para>
|
---|
312 |
|
---|
313 | </refsect1>
|
---|
314 | </refentry>
|
---|
315 |
|
---|
316 | <refentry id="toc.row.height">
|
---|
317 | <refmeta>
|
---|
318 | <refentrytitle>toc.row.height</refentrytitle>
|
---|
319 | <refmiscinfo role="type">length</refmiscinfo>
|
---|
320 | </refmeta>
|
---|
321 | <refnamediv>
|
---|
322 | <refname>toc.row.height</refname>
|
---|
323 | <refpurpose>Height of ToC rows in dynamic ToCs</refpurpose>
|
---|
324 | </refnamediv>
|
---|
325 |
|
---|
326 | <refsynopsisdiv>
|
---|
327 | <programlisting id="toc.row.height.frag">
|
---|
328 | <xsl:param name="toc.row.height" select="22"></xsl:param>
|
---|
329 | </programlisting>
|
---|
330 | </refsynopsisdiv>
|
---|
331 |
|
---|
332 | <refsect1><title>Description</title>
|
---|
333 |
|
---|
334 | <para>This parameter specifies the height of each row in the table of
|
---|
335 | contents. This is only applicable if a <link linkend="dynamic.toc">dynamic ToC</link> is used. You may want to
|
---|
336 | adjust this parameter for optimal appearance with the font and image sizes
|
---|
337 | selected by your <link linkend="css.stylesheet">CSS stylesheet</link>.
|
---|
338 | </para>
|
---|
339 |
|
---|
340 | </refsect1>
|
---|
341 | </refentry>
|
---|
342 |
|
---|
343 | <refentry id="toc.bg.color">
|
---|
344 | <refmeta>
|
---|
345 | <refentrytitle>toc.bg.color</refentrytitle>
|
---|
346 | <refmiscinfo role="type">color</refmiscinfo>
|
---|
347 | </refmeta>
|
---|
348 | <refnamediv>
|
---|
349 | <refname>toc.bg.color</refname>
|
---|
350 | <refpurpose>Background color for ToC frame</refpurpose>
|
---|
351 | </refnamediv>
|
---|
352 |
|
---|
353 | <refsynopsisdiv>
|
---|
354 | <programlisting id="toc.bg.color.frag">
|
---|
355 | <xsl:param name="toc.bg.color" select="'#FFFFFF'"></xsl:param>
|
---|
356 | </programlisting>
|
---|
357 | </refsynopsisdiv>
|
---|
358 |
|
---|
359 | <refsect1><title>Description</title>
|
---|
360 |
|
---|
361 | <para>Specifies the background color used in the ToC frame.</para>
|
---|
362 |
|
---|
363 | </refsect1>
|
---|
364 | </refentry>
|
---|
365 |
|
---|
366 | <refentry id="body.bg.color">
|
---|
367 | <refmeta>
|
---|
368 | <refentrytitle>body.bg.color</refentrytitle>
|
---|
369 | <refmiscinfo role="type">color</refmiscinfo>
|
---|
370 | </refmeta>
|
---|
371 | <refnamediv>
|
---|
372 | <refname>body.bg.color</refname>
|
---|
373 | <refpurpose>Background color for body frame</refpurpose>
|
---|
374 | </refnamediv>
|
---|
375 |
|
---|
376 | <refsynopsisdiv>
|
---|
377 | <programlisting id="body.bg.color.frag">
|
---|
378 | <xsl:param name="body.bg.color" select="'#FFFFFF'"></xsl:param>
|
---|
379 | </programlisting>
|
---|
380 | </refsynopsisdiv>
|
---|
381 |
|
---|
382 | <refsect1><title>Description</title>
|
---|
383 |
|
---|
384 | <para>Specifies the background color used in the body column of tabular slides.</para>
|
---|
385 |
|
---|
386 | </refsect1>
|
---|
387 | </refentry>
|
---|
388 |
|
---|
389 | <refentry id="toc.width">
|
---|
390 | <refmeta>
|
---|
391 | <refentrytitle>toc.width</refentrytitle>
|
---|
392 | <refmiscinfo role="type">length</refmiscinfo>
|
---|
393 | </refmeta>
|
---|
394 | <refnamediv>
|
---|
395 | <refname>toc.width</refname>
|
---|
396 | <refpurpose>Width of ToC frame</refpurpose>
|
---|
397 | </refnamediv>
|
---|
398 |
|
---|
399 | <refsynopsisdiv>
|
---|
400 | <programlisting id="toc.width.frag">
|
---|
401 | <xsl:param name="toc.width" select="250"></xsl:param>
|
---|
402 | </programlisting>
|
---|
403 | </refsynopsisdiv>
|
---|
404 |
|
---|
405 | <refsect1><title>Description</title>
|
---|
406 |
|
---|
407 | <para>Specifies the width of the ToC frame.</para>
|
---|
408 |
|
---|
409 | </refsect1>
|
---|
410 | </refentry>
|
---|
411 |
|
---|
412 | <refentry id="toc.hide.show">
|
---|
413 | <refmeta>
|
---|
414 | <refentrytitle>toc.hide.show</refentrytitle>
|
---|
415 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
416 | </refmeta>
|
---|
417 | <refnamediv>
|
---|
418 | <refname>toc.hide.show</refname>
|
---|
419 | <refpurpose>Enable hide/show button for ToC frame</refpurpose>
|
---|
420 | </refnamediv>
|
---|
421 |
|
---|
422 | <refsynopsisdiv>
|
---|
423 | <programlisting id="toc.hide.show.frag">
|
---|
424 | <xsl:param name="toc.hide.show" select="0"></xsl:param>
|
---|
425 | </programlisting>
|
---|
426 | </refsynopsisdiv>
|
---|
427 |
|
---|
428 | <refsect1><title>Description</title>
|
---|
429 |
|
---|
430 | <para>If non-zero, JavaScript (and an additional icon, see
|
---|
431 | <link linkend="hidetoc.image">hidetoc.image</link> and
|
---|
432 | <link linkend="hidetoc.image">showtoc.image</link>) is added to each slide
|
---|
433 | to allow the ToC panel to be <quote>toggled</quote> on each panel.</para>
|
---|
434 |
|
---|
435 | <note><para>There is a bug in Mozilla 1.0 (at least as of CR3) that causes
|
---|
436 | the browser to reload the titlepage when this feature is used.</para></note>
|
---|
437 |
|
---|
438 | </refsect1>
|
---|
439 | </refentry>
|
---|
440 |
|
---|
441 | <refentry id="dynamic.toc">
|
---|
442 | <refmeta>
|
---|
443 | <refentrytitle>dynamic.toc</refentrytitle>
|
---|
444 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
445 | </refmeta>
|
---|
446 | <refnamediv>
|
---|
447 | <refname>dynamic.toc</refname>
|
---|
448 | <refpurpose>Dynamic ToCs?</refpurpose>
|
---|
449 | </refnamediv>
|
---|
450 |
|
---|
451 | <refsynopsisdiv>
|
---|
452 | <programlisting id="dynamic.toc.frag">
|
---|
453 | <xsl:param name="dynamic.toc" select="0"></xsl:param>
|
---|
454 | </programlisting>
|
---|
455 | </refsynopsisdiv>
|
---|
456 |
|
---|
457 | <refsect1><title>Description</title>
|
---|
458 |
|
---|
459 | <para>If non-zero, JavaScript is used to make the ToC panel <quote>dynamic</quote>.
|
---|
460 | In a dynamic ToC, each section in the ToC can be expanded and collapsed by
|
---|
461 | clicking on the appropriate image.</para>
|
---|
462 |
|
---|
463 | </refsect1>
|
---|
464 | </refentry>
|
---|
465 |
|
---|
466 | <refentry id="active.toc">
|
---|
467 | <refmeta>
|
---|
468 | <refentrytitle>active.toc</refentrytitle>
|
---|
469 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
470 | </refmeta>
|
---|
471 | <refnamediv>
|
---|
472 | <refname>active.toc</refname>
|
---|
473 | <refpurpose>Active ToCs?</refpurpose>
|
---|
474 | </refnamediv>
|
---|
475 |
|
---|
476 | <refsynopsisdiv>
|
---|
477 | <programlisting id="active.toc.frag">
|
---|
478 | <xsl:param name="active.toc" select="0"></xsl:param>
|
---|
479 | </programlisting>
|
---|
480 | </refsynopsisdiv>
|
---|
481 |
|
---|
482 | <refsect1><title>Description</title>
|
---|
483 |
|
---|
484 | <para>If non-zero, JavaScript is used to keep the ToC and the current slide
|
---|
485 | <quote>in sync</quote>. That is, each time the slide changes, the corresponding
|
---|
486 | ToC entry will be underlined.</para>
|
---|
487 |
|
---|
488 | </refsect1>
|
---|
489 | </refentry>
|
---|
490 |
|
---|
491 | <refentry id="overlay.logo">
|
---|
492 | <refmeta>
|
---|
493 | <refentrytitle>overlay.logo</refentrytitle>
|
---|
494 | <refmiscinfo role="type">URI</refmiscinfo>
|
---|
495 | </refmeta>
|
---|
496 | <refnamediv>
|
---|
497 | <refname>overlay.logo</refname>
|
---|
498 | <refpurpose>Logo to overlay on ToC frame</refpurpose>
|
---|
499 | </refnamediv>
|
---|
500 |
|
---|
501 | <refsynopsisdiv>
|
---|
502 | <programlisting id="overlay.logo.frag">
|
---|
503 | <xsl:param name="overlay.logo" select="'http://docbook.sourceforge.net/release/buttons/slides-1.png'"></xsl:param>
|
---|
504 | </programlisting>
|
---|
505 | </refsynopsisdiv>
|
---|
506 |
|
---|
507 | <refsect1><title>Description</title>
|
---|
508 |
|
---|
509 | <para>If this URI is non-empty, JavaScript is used to overlay the
|
---|
510 | specified image on the ToC frame.</para>
|
---|
511 |
|
---|
512 | </refsect1>
|
---|
513 | </refentry>
|
---|
514 |
|
---|
515 | <refentry id="multiframe">
|
---|
516 | <refmeta>
|
---|
517 | <refentrytitle>multiframe</refentrytitle>
|
---|
518 | <refmiscinfo role="type">boolean</refmiscinfo>
|
---|
519 | </refmeta>
|
---|
520 | <refnamediv>
|
---|
521 | <refname>multiframe</refname>
|
---|
522 | <refpurpose>Use multiple frames for slide bodies?</refpurpose>
|
---|
523 | </refnamediv>
|
---|
524 |
|
---|
525 | <refsynopsisdiv>
|
---|
526 | <programlisting id="multiframe.frag">
|
---|
527 | <xsl:param name="multiframe" select="0"></xsl:param>
|
---|
528 | </programlisting>
|
---|
529 | </refsynopsisdiv>
|
---|
530 |
|
---|
531 | <refsect1><title>Description</title>
|
---|
532 |
|
---|
533 | <para>If non-zero, multiple frames are used for the body of each
|
---|
534 | slide. This is one way of forcing the slide navigation elements to
|
---|
535 | appear in constant locations. The other way is with <link linkend="overlay">overlays</link>. The <link linkend="overlay"><parameter moreinfo="none">overlay</parameter></link> and
|
---|
536 | <parameter moreinfo="none">multiframe</parameter> parameters are mutually
|
---|
537 | exclusive.</para>
|
---|
538 |
|
---|
539 | </refsect1>
|
---|
540 | </refentry>
|
---|
541 |
|
---|
542 | <refentry id="multiframe.top.bgcolor">
|
---|
543 | <refmeta>
|
---|
544 | <refentrytitle>multiframe.top.bgcolor</refentrytitle>
|
---|
545 | <refmiscinfo role="type">color</refmiscinfo>
|
---|
546 | </refmeta>
|
---|
547 | <refnamediv>
|
---|
548 | <refname>multiframe.top.bgcolor</refname>
|
---|
549 | <refpurpose>Background color for top navigation frame</refpurpose>
|
---|
550 | </refnamediv>
|
---|
551 |
|
---|
552 | <refsynopsisdiv>
|
---|
553 | <programlisting id="multiframe.top.bgcolor.frag">
|
---|
554 | <xsl:param name="multiframe.top.bgcolor" select="'white'"></xsl:param>
|
---|
555 | </programlisting>
|
---|
556 | </refsynopsisdiv>
|
---|
557 |
|
---|
558 | <refsect1><title>Description</title>
|
---|
559 |
|
---|
560 | <para>Specifies the background color of the top navigation frame when
|
---|
561 | <link linkend="multiframe">multiframe</link> is enabled.</para>
|
---|
562 |
|
---|
563 | </refsect1>
|
---|
564 | </refentry>
|
---|
565 |
|
---|
566 | <refentry id="multiframe.bottom.bgcolor">
|
---|
567 | <refmeta>
|
---|
568 | <refentrytitle>multiframe.bottom.bgcolor</refentrytitle>
|
---|
569 | <refmiscinfo role="type">color</refmiscinfo>
|
---|
570 | </refmeta>
|
---|
571 | <refnamediv>
|
---|
572 | <refname>multiframe.bottom.bgcolor</refname>
|
---|
573 | <refpurpose>Background color for bottom navigation frame</refpurpose>
|
---|
574 | </refnamediv>
|
---|
575 |
|
---|
576 | <refsynopsisdiv>
|
---|
577 | <programlisting id="multiframe.bottom.bgcolor.frag">
|
---|
578 | <xsl:param name="multiframe.bottom.bgcolor" select="'white'"></xsl:param>
|
---|
579 | </programlisting>
|
---|
580 | </refsynopsisdiv>
|
---|
581 |
|
---|
582 | <refsect1><title>Description</title>
|
---|
583 |
|
---|
584 | <para>Specifies the background color of the bottom navigation frame when
|
---|
585 | <link linkend="multiframe">multiframe</link> is enabled.</para>
|
---|
586 |
|
---|
587 | </refsect1>
|
---|
588 | </refentry>
|
---|
589 |
|
---|
590 | <refentry id="multiframe.navigation.height">
|
---|
591 | <refmeta>
|
---|
592 | <refentrytitle>multiframe.navigation.height</refentrytitle>
|
---|
593 | <refmiscinfo role="type">length</refmiscinfo>
|
---|
594 | </refmeta>
|
---|
595 | <refnamediv>
|
---|
596 | <refname>multiframe.navigation.height</refname>
|
---|
597 | <refpurpose>Height of navigation frames</refpurpose>
|
---|
598 | </refnamediv>
|
---|
599 |
|
---|
600 | <refsynopsisdiv>
|
---|
601 | <programlisting id="multiframe.navigation.height.frag">
|
---|
602 | <xsl:param name="multiframe.navigation.height" select="40"></xsl:param>
|
---|
603 | </programlisting>
|
---|
604 | </refsynopsisdiv>
|
---|
605 |
|
---|
606 | <refsect1><title>Description</title>
|
---|
607 |
|
---|
608 | <para>Specifies the height of the navigation frames when
|
---|
609 | <link linkend="multiframe">multiframe</link> is enabled.</para>
|
---|
610 |
|
---|
611 | </refsect1>
|
---|
612 | </refentry>
|
---|
613 |
|
---|
614 | </reference>
|
---|
615 |
|
---|
616 | <reference>
|
---|
617 | <title>Graphics Parameters</title>
|
---|
618 |
|
---|
619 | <refentry id="graphics.dir">
|
---|
620 | <refmeta>
|
---|
621 | <refentrytitle>graphics.dir</refentrytitle>
|
---|
622 | <refmiscinfo role="type">URI</refmiscinfo>
|
---|
623 | </refmeta>
|
---|
624 | <refnamediv>
|
---|
625 | <refname>graphics.dir</refname>
|
---|
626 | <refpurpose>Graphics directory</refpurpose>
|
---|
627 | </refnamediv>
|
---|
628 |
|
---|
629 | <refsynopsisdiv>
|
---|
630 | <programlisting id="graphics.dir.frag">
|
---|
631 | <xsl:param name="graphics.dir" select="''"></xsl:param>
|
---|
632 | </programlisting>
|
---|
633 | </refsynopsisdiv>
|
---|
634 |
|
---|
635 | <refsect1><title>Description</title>
|
---|
636 |
|
---|
637 | <para>Identifies the graphics directory for the navigation components
|
---|
638 | generated on all the slides. This parameter can be set in the source
|
---|
639 | document with the <?dbhtml?> pseudo-attribute
|
---|
640 | <literal moreinfo="none">graphics-dir</literal>.</para>
|
---|
641 |
|
---|
642 | <para>If non-empty, this value is prepended to each of the graphic
|
---|
643 | image paths.</para>
|
---|
644 |
|
---|
645 | </refsect1>
|
---|
646 | </refentry>
|
---|
647 |
|
---|
648 | <refentry id="bullet.image">
|
---|
649 | <refmeta>
|
---|
650 | <refentrytitle>bullet.image</refentrytitle>
|
---|
651 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
652 | </refmeta>
|
---|
653 | <refnamediv>
|
---|
654 | <refname>bullet.image</refname>
|
---|
655 | <refpurpose>Bullet image</refpurpose>
|
---|
656 | </refnamediv>
|
---|
657 |
|
---|
658 | <refsynopsisdiv>
|
---|
659 | <programlisting id="bullet.image.frag">
|
---|
660 | <xsl:param name="bullet.image" select="'toc/bullet.png'"></xsl:param>
|
---|
661 | </programlisting>
|
---|
662 | </refsynopsisdiv>
|
---|
663 |
|
---|
664 | <refsect1><title>Description</title>
|
---|
665 |
|
---|
666 | <para>Specifies the filename of the bullet image used for foils in the
|
---|
667 | framed ToC.</para>
|
---|
668 |
|
---|
669 | </refsect1>
|
---|
670 | </refentry>
|
---|
671 |
|
---|
672 | <refentry id="next.image">
|
---|
673 | <refmeta>
|
---|
674 | <refentrytitle>next.image</refentrytitle>
|
---|
675 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
676 | </refmeta>
|
---|
677 | <refnamediv>
|
---|
678 | <refname>next.image</refname>
|
---|
679 | <refpurpose>Right-arrow image</refpurpose>
|
---|
680 | </refnamediv>
|
---|
681 |
|
---|
682 | <refsynopsisdiv>
|
---|
683 | <programlisting id="next.image.frag">
|
---|
684 | <xsl:param name="next.image" select="'active/nav-next.png'"></xsl:param>
|
---|
685 | </programlisting>
|
---|
686 | </refsynopsisdiv>
|
---|
687 |
|
---|
688 | <refsect1><title>Description</title>
|
---|
689 |
|
---|
690 | <para>Specifies the filename of the right-pointing navigation arrow.</para>
|
---|
691 |
|
---|
692 | </refsect1>
|
---|
693 | </refentry>
|
---|
694 |
|
---|
695 | <refentry id="prev.image">
|
---|
696 | <refmeta>
|
---|
697 | <refentrytitle>prev.image</refentrytitle>
|
---|
698 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
699 | </refmeta>
|
---|
700 | <refnamediv>
|
---|
701 | <refname>prev.image</refname>
|
---|
702 | <refpurpose>Left-arrow image</refpurpose>
|
---|
703 | </refnamediv>
|
---|
704 |
|
---|
705 | <refsynopsisdiv>
|
---|
706 | <programlisting id="prev.image.frag">
|
---|
707 | <xsl:param name="prev.image" select="'active/nav-prev.png'"></xsl:param>
|
---|
708 | </programlisting>
|
---|
709 | </refsynopsisdiv>
|
---|
710 |
|
---|
711 | <refsect1><title>Description</title>
|
---|
712 |
|
---|
713 | <para>Specifies the filename of the left-pointing navigation arrow.</para>
|
---|
714 |
|
---|
715 | </refsect1>
|
---|
716 | </refentry>
|
---|
717 |
|
---|
718 | <refentry id="up.image">
|
---|
719 | <refmeta>
|
---|
720 | <refentrytitle>up.image</refentrytitle>
|
---|
721 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
722 | </refmeta>
|
---|
723 | <refnamediv>
|
---|
724 | <refname>up.image</refname>
|
---|
725 | <refpurpose>Up-arrow image</refpurpose>
|
---|
726 | </refnamediv>
|
---|
727 |
|
---|
728 | <refsynopsisdiv>
|
---|
729 | <programlisting id="up.image.frag">
|
---|
730 | <xsl:param name="up.image" select="'active/nav-up.png'"></xsl:param>
|
---|
731 | </programlisting>
|
---|
732 | </refsynopsisdiv>
|
---|
733 |
|
---|
734 | <refsect1><title>Description</title>
|
---|
735 |
|
---|
736 | <para>Specifies the filename of the upward-pointing navigation arrow.</para>
|
---|
737 |
|
---|
738 | </refsect1>
|
---|
739 | </refentry>
|
---|
740 |
|
---|
741 | <refentry id="home.image">
|
---|
742 | <refmeta>
|
---|
743 | <refentrytitle>home.image</refentrytitle>
|
---|
744 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
745 | </refmeta>
|
---|
746 | <refnamediv>
|
---|
747 | <refname>home.image</refname>
|
---|
748 | <refpurpose>Home image</refpurpose>
|
---|
749 | </refnamediv>
|
---|
750 |
|
---|
751 | <refsynopsisdiv>
|
---|
752 | <programlisting id="home.image.frag">
|
---|
753 | <xsl:param name="home.image" select="'active/nav-home.png'"></xsl:param>
|
---|
754 | </programlisting>
|
---|
755 | </refsynopsisdiv>
|
---|
756 |
|
---|
757 | <refsect1><title>Description</title>
|
---|
758 |
|
---|
759 | <para>Specifies the filename of the home navigation icon.</para>
|
---|
760 |
|
---|
761 | </refsect1>
|
---|
762 | </refentry>
|
---|
763 |
|
---|
764 | <refentry id="toc.image">
|
---|
765 | <refmeta>
|
---|
766 | <refentrytitle>toc.image</refentrytitle>
|
---|
767 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
768 | </refmeta>
|
---|
769 | <refnamediv>
|
---|
770 | <refname>toc.image</refname>
|
---|
771 | <refpurpose>ToC image</refpurpose>
|
---|
772 | </refnamediv>
|
---|
773 |
|
---|
774 | <refsynopsisdiv>
|
---|
775 | <programlisting id="toc.image.frag">
|
---|
776 | <xsl:param name="toc.image" select="'active/nav-toc.png'"></xsl:param>
|
---|
777 | </programlisting>
|
---|
778 | </refsynopsisdiv>
|
---|
779 |
|
---|
780 | <refsect1><title>Description</title>
|
---|
781 |
|
---|
782 | <para>Specifies the filename of the ToC navigation icon.</para>
|
---|
783 |
|
---|
784 | </refsect1>
|
---|
785 | </refentry>
|
---|
786 |
|
---|
787 |
|
---|
788 |
|
---|
789 | <refentry id="no.next.image">
|
---|
790 | <refmeta>
|
---|
791 | <refentrytitle>no.next.image</refentrytitle>
|
---|
792 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
793 | </refmeta>
|
---|
794 | <refnamediv>
|
---|
795 | <refname>no.next.image</refname>
|
---|
796 | <refpurpose>Inactive right-arrow image</refpurpose>
|
---|
797 | </refnamediv>
|
---|
798 |
|
---|
799 | <refsynopsisdiv>
|
---|
800 | <programlisting id="no.next.image.frag">
|
---|
801 | <xsl:param name="no.next.image" select="'inactive/nav-next.png'"></xsl:param>
|
---|
802 | </programlisting>
|
---|
803 | </refsynopsisdiv>
|
---|
804 |
|
---|
805 | <refsect1><title>Description</title>
|
---|
806 |
|
---|
807 | <para>Specifies the filename of the inactive right-pointing navigation arrow.</para>
|
---|
808 |
|
---|
809 | </refsect1>
|
---|
810 | </refentry>
|
---|
811 |
|
---|
812 | <refentry id="no.prev.image">
|
---|
813 | <refmeta>
|
---|
814 | <refentrytitle>no.prev.image</refentrytitle>
|
---|
815 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
816 | </refmeta>
|
---|
817 | <refnamediv>
|
---|
818 | <refname>no.prev.image</refname>
|
---|
819 | <refpurpose>Inactive left-arrow image</refpurpose>
|
---|
820 | </refnamediv>
|
---|
821 |
|
---|
822 | <refsynopsisdiv>
|
---|
823 | <programlisting id="no.prev.image.frag">
|
---|
824 | <xsl:param name="no.prev.image" select="'inactive/nav-prev.png'"></xsl:param>
|
---|
825 | </programlisting>
|
---|
826 | </refsynopsisdiv>
|
---|
827 |
|
---|
828 | <refsect1><title>Description</title>
|
---|
829 |
|
---|
830 | <para>Specifies the filename of the inactive left-pointing navigation arrow.</para>
|
---|
831 |
|
---|
832 | </refsect1>
|
---|
833 | </refentry>
|
---|
834 |
|
---|
835 | <refentry id="no.up.image">
|
---|
836 | <refmeta>
|
---|
837 | <refentrytitle>no.up.image</refentrytitle>
|
---|
838 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
839 | </refmeta>
|
---|
840 | <refnamediv>
|
---|
841 | <refname>no.up.image</refname>
|
---|
842 | <refpurpose>Inactive up-arrow image</refpurpose>
|
---|
843 | </refnamediv>
|
---|
844 |
|
---|
845 | <refsynopsisdiv>
|
---|
846 | <programlisting id="no.up.image.frag">
|
---|
847 | <xsl:param name="no.up.image" select="'inactive/nav-up.png'"></xsl:param>
|
---|
848 | </programlisting>
|
---|
849 | </refsynopsisdiv>
|
---|
850 |
|
---|
851 | <refsect1><title>Description</title>
|
---|
852 |
|
---|
853 | <para>Specifies the filename of the inactive upward-pointing navigation arrow.</para>
|
---|
854 |
|
---|
855 | </refsect1>
|
---|
856 | </refentry>
|
---|
857 |
|
---|
858 | <refentry id="no.home.image">
|
---|
859 | <refmeta>
|
---|
860 | <refentrytitle>no.home.image</refentrytitle>
|
---|
861 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
862 | </refmeta>
|
---|
863 | <refnamediv>
|
---|
864 | <refname>no.home.image</refname>
|
---|
865 | <refpurpose>Inactive home image</refpurpose>
|
---|
866 | </refnamediv>
|
---|
867 |
|
---|
868 | <refsynopsisdiv>
|
---|
869 | <programlisting id="no.home.image.frag">
|
---|
870 | <xsl:param name="no.home.image" select="'inactive/nav-home.png'"></xsl:param>
|
---|
871 | </programlisting>
|
---|
872 | </refsynopsisdiv>
|
---|
873 |
|
---|
874 | <refsect1><title>Description</title>
|
---|
875 |
|
---|
876 | <para>Specifies the filename of the inactive home navigation icon.</para>
|
---|
877 |
|
---|
878 | </refsect1>
|
---|
879 | </refentry>
|
---|
880 |
|
---|
881 | <refentry id="no.toc.image">
|
---|
882 | <refmeta>
|
---|
883 | <refentrytitle>no.toc.image</refentrytitle>
|
---|
884 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
885 | </refmeta>
|
---|
886 | <refnamediv>
|
---|
887 | <refname>no.toc.image</refname>
|
---|
888 | <refpurpose>Inactive ToC image</refpurpose>
|
---|
889 | </refnamediv>
|
---|
890 |
|
---|
891 | <refsynopsisdiv>
|
---|
892 | <programlisting id="no.toc.image.frag">
|
---|
893 | <xsl:param name="no.toc.image" select="'inactive/nav-toc.png'"></xsl:param>
|
---|
894 | </programlisting>
|
---|
895 | </refsynopsisdiv>
|
---|
896 |
|
---|
897 | <refsect1><title>Description</title>
|
---|
898 |
|
---|
899 | <para>Specifies the filename of the inactive ToC navigation icon.</para>
|
---|
900 |
|
---|
901 | </refsect1>
|
---|
902 | </refentry>
|
---|
903 |
|
---|
904 |
|
---|
905 |
|
---|
906 | <refentry id="plus.image">
|
---|
907 | <refmeta>
|
---|
908 | <refentrytitle>plus.image</refentrytitle>
|
---|
909 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
910 | </refmeta>
|
---|
911 | <refnamediv>
|
---|
912 | <refname>plus.image</refname>
|
---|
913 | <refpurpose>Plus image</refpurpose>
|
---|
914 | </refnamediv>
|
---|
915 |
|
---|
916 | <refsynopsisdiv>
|
---|
917 | <programlisting id="plus.image.frag">
|
---|
918 | <xsl:param name="plus.image" select="'toc/closed.png'"></xsl:param>
|
---|
919 | </programlisting>
|
---|
920 | </refsynopsisdiv>
|
---|
921 |
|
---|
922 | <refsect1><title>Description</title>
|
---|
923 |
|
---|
924 | <para>Specifies the filename of the <quote>plus</quote> image; the image used in a
|
---|
925 | <link linkend="dynamic.toc">dynamic ToC</link> to indicate that a section
|
---|
926 | can be expanded.</para>
|
---|
927 |
|
---|
928 | </refsect1>
|
---|
929 | </refentry>
|
---|
930 |
|
---|
931 | <refentry id="minus.image">
|
---|
932 | <refmeta>
|
---|
933 | <refentrytitle>minus.image</refentrytitle>
|
---|
934 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
935 | </refmeta>
|
---|
936 | <refnamediv>
|
---|
937 | <refname>minus.image</refname>
|
---|
938 | <refpurpose>Minus image</refpurpose>
|
---|
939 | </refnamediv>
|
---|
940 |
|
---|
941 | <refsynopsisdiv>
|
---|
942 | <programlisting id="minus.image.frag">
|
---|
943 | <xsl:param name="minus.image" select="'toc/open.png'"></xsl:param>
|
---|
944 | </programlisting>
|
---|
945 | </refsynopsisdiv>
|
---|
946 |
|
---|
947 | <refsect1><title>Description</title>
|
---|
948 |
|
---|
949 | <para>Specifies the filename of the <quote>minus</quote> image; the image used in a
|
---|
950 | <link linkend="dynamic.toc">dynamic ToC</link> to indicate that a section
|
---|
951 | can be collapsed.</para>
|
---|
952 |
|
---|
953 | </refsect1>
|
---|
954 | </refentry>
|
---|
955 |
|
---|
956 | <refentry id="hidetoc.image">
|
---|
957 | <refmeta>
|
---|
958 | <refentrytitle>hidetoc.image</refentrytitle>
|
---|
959 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
960 | </refmeta>
|
---|
961 | <refnamediv>
|
---|
962 | <refname>hidetoc.image</refname>
|
---|
963 | <refpurpose>Hide ToC image</refpurpose>
|
---|
964 | </refnamediv>
|
---|
965 |
|
---|
966 | <refsynopsisdiv>
|
---|
967 | <programlisting id="hidetoc.image.frag">
|
---|
968 | <xsl:param name="hidetoc.image" select="'hidetoc.gif'"></xsl:param>
|
---|
969 | </programlisting>
|
---|
970 | </refsynopsisdiv>
|
---|
971 |
|
---|
972 | <refsect1><title>Description</title>
|
---|
973 |
|
---|
974 | <para>Specifies the filename of the <quote>hide ToC</quote> image. This is used
|
---|
975 | when the <link linkend="toc.hide.show">ToC hide/show</link> parameter is
|
---|
976 | enabled.</para>
|
---|
977 |
|
---|
978 | </refsect1>
|
---|
979 | </refentry>
|
---|
980 |
|
---|
981 | <refentry id="showtoc.image">
|
---|
982 | <refmeta>
|
---|
983 | <refentrytitle>showtoc.image</refentrytitle>
|
---|
984 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
985 | </refmeta>
|
---|
986 | <refnamediv>
|
---|
987 | <refname>showtoc.image</refname>
|
---|
988 | <refpurpose>Show ToC image</refpurpose>
|
---|
989 | </refnamediv>
|
---|
990 |
|
---|
991 | <refsynopsisdiv>
|
---|
992 | <programlisting id="showtoc.image.frag">
|
---|
993 | <xsl:param name="showtoc.image" select="'showtoc.gif'"></xsl:param>
|
---|
994 | </programlisting>
|
---|
995 | </refsynopsisdiv>
|
---|
996 |
|
---|
997 | <refsect1><title>Description</title>
|
---|
998 |
|
---|
999 | <para>Specifies the filename of the <quote>show ToC</quote> image. This is used
|
---|
1000 | when the <link linkend="toc.hide.show">ToC hide/show</link> parameter is
|
---|
1001 | enabled.</para>
|
---|
1002 |
|
---|
1003 | </refsect1>
|
---|
1004 | </refentry>
|
---|
1005 |
|
---|
1006 | </reference>
|
---|
1007 |
|
---|
1008 | <reference>
|
---|
1009 | <title>JavaScript Parameters</title>
|
---|
1010 |
|
---|
1011 | <refentry id="script.dir">
|
---|
1012 | <refmeta>
|
---|
1013 | <refentrytitle>script.dir</refentrytitle>
|
---|
1014 | <refmiscinfo role="type">URI</refmiscinfo>
|
---|
1015 | </refmeta>
|
---|
1016 | <refnamediv>
|
---|
1017 | <refname>script.dir</refname>
|
---|
1018 | <refpurpose>Script directory</refpurpose>
|
---|
1019 | </refnamediv>
|
---|
1020 |
|
---|
1021 | <refsynopsisdiv>
|
---|
1022 | <programlisting id="script.dir.frag">
|
---|
1023 | <xsl:param name="script.dir" select="''"></xsl:param>
|
---|
1024 | </programlisting>
|
---|
1025 | </refsynopsisdiv>
|
---|
1026 |
|
---|
1027 | <refsect1><title>Description</title>
|
---|
1028 |
|
---|
1029 | <para>Identifies the JavaScript source directory for the slides.
|
---|
1030 | This parameter can be set in the source
|
---|
1031 | document with the <?dbhtml?> pseudo-attribute
|
---|
1032 | <literal moreinfo="none">script-dir</literal>.</para>
|
---|
1033 |
|
---|
1034 | <para>If non-empty, this value is prepended to each of the JavaScript files.
|
---|
1035 | </para>
|
---|
1036 |
|
---|
1037 | </refsect1>
|
---|
1038 | </refentry>
|
---|
1039 |
|
---|
1040 | <refentry id="ua.js">
|
---|
1041 | <refmeta>
|
---|
1042 | <refentrytitle>ua.js</refentrytitle>
|
---|
1043 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1044 | </refmeta>
|
---|
1045 | <refnamediv>
|
---|
1046 | <refname>ua.js</refname>
|
---|
1047 | <refpurpose>UA JavaScript file</refpurpose>
|
---|
1048 | </refnamediv>
|
---|
1049 |
|
---|
1050 | <refsynopsisdiv>
|
---|
1051 | <programlisting id="ua.js.frag">
|
---|
1052 | <xsl:param name="ua.js" select="'ua.js'"></xsl:param>
|
---|
1053 | </programlisting>
|
---|
1054 | </refsynopsisdiv>
|
---|
1055 |
|
---|
1056 | <refsect1><title>Description</title>
|
---|
1057 |
|
---|
1058 | <para>Specifies the filename of the UA JavaScript file. It's unlikely
|
---|
1059 | that you will ever need to change this parameter.</para>
|
---|
1060 |
|
---|
1061 | </refsect1>
|
---|
1062 | </refentry>
|
---|
1063 |
|
---|
1064 | <refentry id="xbDOM.js">
|
---|
1065 | <refmeta>
|
---|
1066 | <refentrytitle>xbDOM.js</refentrytitle>
|
---|
1067 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1068 | </refmeta>
|
---|
1069 | <refnamediv>
|
---|
1070 | <refname>xbDOM.js</refname>
|
---|
1071 | <refpurpose>xbDOM JavaScript file</refpurpose>
|
---|
1072 | </refnamediv>
|
---|
1073 |
|
---|
1074 | <refsynopsisdiv>
|
---|
1075 | <programlisting id="xbDOM.js.frag">
|
---|
1076 | <xsl:param name="xbDOM.js" select="'xbDOM.js'"></xsl:param>
|
---|
1077 | </programlisting>
|
---|
1078 | </refsynopsisdiv>
|
---|
1079 |
|
---|
1080 | <refsect1><title>Description</title>
|
---|
1081 |
|
---|
1082 | <para>Specifies the filename of the xbDOM JavaScript file. It's unlikely
|
---|
1083 | that you will ever need to change this parameter.</para>
|
---|
1084 |
|
---|
1085 | </refsect1>
|
---|
1086 | </refentry>
|
---|
1087 |
|
---|
1088 | <refentry id="xbStyle.js">
|
---|
1089 | <refmeta>
|
---|
1090 | <refentrytitle>xbStyle.js</refentrytitle>
|
---|
1091 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1092 | </refmeta>
|
---|
1093 | <refnamediv>
|
---|
1094 | <refname>xbStyle.js</refname>
|
---|
1095 | <refpurpose>xbStyle JavaScript file</refpurpose>
|
---|
1096 | </refnamediv>
|
---|
1097 |
|
---|
1098 | <refsynopsisdiv>
|
---|
1099 | <programlisting id="xbStyle.js.frag">
|
---|
1100 | <xsl:param name="xbStyle.js" select="'xbStyle.js'"></xsl:param>
|
---|
1101 | </programlisting>
|
---|
1102 | </refsynopsisdiv>
|
---|
1103 |
|
---|
1104 | <refsect1><title>Description</title>
|
---|
1105 |
|
---|
1106 | <para>Specifies the filename of the xbStyle JavaScript file. It's unlikely
|
---|
1107 | that you will ever need to change this parameter.</para>
|
---|
1108 |
|
---|
1109 | </refsect1>
|
---|
1110 | </refentry>
|
---|
1111 |
|
---|
1112 | <refentry id="xbLibrary.js">
|
---|
1113 | <refmeta>
|
---|
1114 | <refentrytitle>xbLibrary.js</refentrytitle>
|
---|
1115 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1116 | </refmeta>
|
---|
1117 | <refnamediv>
|
---|
1118 | <refname>xbLibrary.js</refname>
|
---|
1119 | <refpurpose>xbLibrary JavaScript file</refpurpose>
|
---|
1120 | </refnamediv>
|
---|
1121 |
|
---|
1122 | <refsynopsisdiv>
|
---|
1123 | <programlisting id="xbLibrary.js.frag">
|
---|
1124 | <xsl:param name="xbLibrary.js" select="'xbLibrary.js'"></xsl:param>
|
---|
1125 | </programlisting>
|
---|
1126 | </refsynopsisdiv>
|
---|
1127 |
|
---|
1128 | <refsect1><title>Description</title>
|
---|
1129 |
|
---|
1130 | <para>Specifies the filename of the xbLibrary JavaScript file. It's unlikely
|
---|
1131 | that you will ever need to change this parameter.</para>
|
---|
1132 |
|
---|
1133 | </refsect1>
|
---|
1134 | </refentry>
|
---|
1135 |
|
---|
1136 | <refentry id="xbCollapsibleLists.js">
|
---|
1137 | <refmeta>
|
---|
1138 | <refentrytitle>xbCollapsibleLists.js</refentrytitle>
|
---|
1139 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1140 | </refmeta>
|
---|
1141 | <refnamediv>
|
---|
1142 | <refname>xbCollapsibleLists.js</refname>
|
---|
1143 | <refpurpose>xbCollapsibleLists JavaScript file</refpurpose>
|
---|
1144 | </refnamediv>
|
---|
1145 |
|
---|
1146 | <refsynopsisdiv>
|
---|
1147 | <programlisting id="xbCollapsibleLists.js.frag">
|
---|
1148 | <xsl:param name="xbCollapsibleLists.js" select="'xbCollapsibleLists.js'"></xsl:param>
|
---|
1149 | </programlisting>
|
---|
1150 | </refsynopsisdiv>
|
---|
1151 |
|
---|
1152 | <refsect1><title>Description</title>
|
---|
1153 |
|
---|
1154 | <para>Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely
|
---|
1155 | that you will ever need to change this parameter.</para>
|
---|
1156 |
|
---|
1157 | </refsect1>
|
---|
1158 | </refentry>
|
---|
1159 |
|
---|
1160 | <refentry id="overlay.js">
|
---|
1161 | <refmeta>
|
---|
1162 | <refentrytitle>overlay.js</refentrytitle>
|
---|
1163 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1164 | </refmeta>
|
---|
1165 | <refnamediv>
|
---|
1166 | <refname>overlay.js</refname>
|
---|
1167 | <refpurpose>Overlay JavaScript file</refpurpose>
|
---|
1168 | </refnamediv>
|
---|
1169 |
|
---|
1170 | <refsynopsisdiv>
|
---|
1171 | <programlisting id="overlay.js.frag">
|
---|
1172 | <xsl:param name="overlay.js" select="'overlay.js'"></xsl:param>
|
---|
1173 | </programlisting>
|
---|
1174 | </refsynopsisdiv>
|
---|
1175 |
|
---|
1176 | <refsect1><title>Description</title>
|
---|
1177 |
|
---|
1178 | <para>Specifies the filename of the overlay JavaScript file. It's unlikely
|
---|
1179 | that you will ever need to change this parameter.</para>
|
---|
1180 |
|
---|
1181 | </refsect1>
|
---|
1182 | </refentry>
|
---|
1183 |
|
---|
1184 | <refentry id="slides.js">
|
---|
1185 | <refmeta>
|
---|
1186 | <refentrytitle>slides.js</refentrytitle>
|
---|
1187 | <refmiscinfo role="type">filename</refmiscinfo>
|
---|
1188 | </refmeta>
|
---|
1189 | <refnamediv>
|
---|
1190 | <refname>slides.js</refname>
|
---|
1191 | <refpurpose>Slides overlay file</refpurpose>
|
---|
1192 | </refnamediv>
|
---|
1193 |
|
---|
1194 | <refsynopsisdiv>
|
---|
1195 | <programlisting id="slides.js.frag">
|
---|
1196 | <xsl:param name="slides.js" select="'slides.js'"></xsl:param>
|
---|
1197 | </programlisting>
|
---|
1198 | </refsynopsisdiv>
|
---|
1199 |
|
---|
1200 | <refsect1><title>Description</title>
|
---|
1201 |
|
---|
1202 | <para>Specifies the filename of the slides JavaScript file. It's unlikely
|
---|
1203 | that you will ever need to change this parameter.</para>
|
---|
1204 |
|
---|
1205 | </refsect1>
|
---|
1206 | </refentry>
|
---|
1207 | </reference>
|
---|
1208 |
|
---|
1209 | <reference>
|
---|
1210 | <title>Localization Parameters</title>
|
---|
1211 |
|
---|
1212 | <refentry id="text.home">
|
---|
1213 | <refmeta>
|
---|
1214 | <refentrytitle>text.home</refentrytitle>
|
---|
1215 | <refmiscinfo role="type">string</refmiscinfo>
|
---|
1216 | </refmeta>
|
---|
1217 | <refnamediv>
|
---|
1218 | <refname>text.home</refname>
|
---|
1219 | <refpurpose>Home</refpurpose>
|
---|
1220 | </refnamediv>
|
---|
1221 |
|
---|
1222 | <refsynopsisdiv>
|
---|
1223 | <programlisting id="text.home.frag">
|
---|
1224 | <xsl:param name="text.home" select="'Home'"></xsl:param>
|
---|
1225 | </programlisting>
|
---|
1226 | </refsynopsisdiv>
|
---|
1227 |
|
---|
1228 | <refsect1><title>Description</title>
|
---|
1229 |
|
---|
1230 | <para>FIXME:</para>
|
---|
1231 |
|
---|
1232 | </refsect1>
|
---|
1233 | </refentry>
|
---|
1234 |
|
---|
1235 | <refentry id="text.toc">
|
---|
1236 | <refmeta>
|
---|
1237 | <refentrytitle>text.toc</refentrytitle>
|
---|
1238 | <refmiscinfo role="type">string</refmiscinfo>
|
---|
1239 | </refmeta>
|
---|
1240 | <refnamediv>
|
---|
1241 | <refname>text.toc</refname>
|
---|
1242 | <refpurpose>FIXME:</refpurpose>
|
---|
1243 | </refnamediv>
|
---|
1244 |
|
---|
1245 | <refsynopsisdiv>
|
---|
1246 | <programlisting id="text.toc.frag">
|
---|
1247 | <xsl:param name="text.toc" select="'ToC'"></xsl:param>
|
---|
1248 | </programlisting>
|
---|
1249 | </refsynopsisdiv>
|
---|
1250 |
|
---|
1251 | <refsect1><title>Description</title>
|
---|
1252 |
|
---|
1253 | <para>FIXME:</para>
|
---|
1254 |
|
---|
1255 | </refsect1>
|
---|
1256 | </refentry>
|
---|
1257 |
|
---|
1258 | <refentry id="text.prev">
|
---|
1259 | <refmeta>
|
---|
1260 | <refentrytitle>text.prev</refentrytitle>
|
---|
1261 | <refmiscinfo role="type">string</refmiscinfo>
|
---|
1262 | </refmeta>
|
---|
1263 | <refnamediv>
|
---|
1264 | <refname>text.prev</refname>
|
---|
1265 | <refpurpose>FIXME:</refpurpose>
|
---|
1266 | </refnamediv>
|
---|
1267 |
|
---|
1268 | <refsynopsisdiv>
|
---|
1269 | <programlisting id="text.prev.frag">
|
---|
1270 | <xsl:param name="text.prev" select="'Prev'"></xsl:param>
|
---|
1271 | </programlisting>
|
---|
1272 | </refsynopsisdiv>
|
---|
1273 |
|
---|
1274 | <refsect1><title>Description</title>
|
---|
1275 |
|
---|
1276 | <para>FIXME:</para>
|
---|
1277 |
|
---|
1278 | </refsect1>
|
---|
1279 | </refentry>
|
---|
1280 |
|
---|
1281 | <refentry id="text.up">
|
---|
1282 | <refmeta>
|
---|
1283 | <refentrytitle>text.up</refentrytitle>
|
---|
1284 | <refmiscinfo role="type">string</refmiscinfo>
|
---|
1285 | </refmeta>
|
---|
1286 | <refnamediv>
|
---|
1287 | <refname>text.up</refname>
|
---|
1288 | <refpurpose>FIXME:</refpurpose>
|
---|
1289 | </refnamediv>
|
---|
1290 |
|
---|
1291 | <refsynopsisdiv>
|
---|
1292 | <programlisting id="text.up.frag">
|
---|
1293 | <xsl:param name="text.up" select="'Up'"></xsl:param>
|
---|
1294 | </programlisting>
|
---|
1295 | </refsynopsisdiv>
|
---|
1296 |
|
---|
1297 | <refsect1><title>Description</title>
|
---|
1298 |
|
---|
1299 | <para>FIXME:</para>
|
---|
1300 |
|
---|
1301 | </refsect1>
|
---|
1302 | </refentry>
|
---|
1303 |
|
---|
1304 | <refentry id="text.next">
|
---|
1305 | <refmeta>
|
---|
1306 | <refentrytitle>text.next</refentrytitle>
|
---|
1307 | <refmiscinfo role="type">string</refmiscinfo>
|
---|
1308 | </refmeta>
|
---|
1309 | <refnamediv>
|
---|
1310 | <refname>text.next</refname>
|
---|
1311 | <refpurpose>FIXME:</refpurpose>
|
---|
1312 | </refnamediv>
|
---|
1313 |
|
---|
1314 | <refsynopsisdiv>
|
---|
1315 | <programlisting id="text.next.frag">
|
---|
1316 | <xsl:param name="text.next" select="'Next'"></xsl:param>
|
---|
1317 | </programlisting>
|
---|
1318 | </refsynopsisdiv>
|
---|
1319 |
|
---|
1320 | <refsect1><title>Description</title>
|
---|
1321 |
|
---|
1322 | <para>FIXME:</para>
|
---|
1323 |
|
---|
1324 | </refsect1>
|
---|
1325 | </refentry>
|
---|
1326 |
|
---|
1327 |
|
---|
1328 |
|
---|
1329 | </reference>
|
---|
1330 |
|
---|
1331 | <appendix><title>The Stylesheet</title>
|
---|
1332 |
|
---|
1333 | <para>The <filename moreinfo="none">param.xsl</filename> stylesheet is just a wrapper
|
---|
1334 | around all these parameters.</para>
|
---|
1335 |
|
---|
1336 | <programlisting id="top">
|
---|
1337 |
|
---|
1338 | <!-- This file is generated from param.xweb; do not edit this file! -->
|
---|
1339 |
|
---|
1340 | <xsl:stylesheet exclude-result-prefixes="src" version="1.0">
|
---|
1341 |
|
---|
1342 | <!-- ********************************************************************
|
---|
1343 | $Id: param.xweb,v 1.9 2005/06/17 08:38:11 xmldoc Exp $
|
---|
1344 | ********************************************************************
|
---|
1345 |
|
---|
1346 | This file is part of the DocBook Slides Stylesheet distribution.
|
---|
1347 | See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
---|
1348 | and other information.
|
---|
1349 |
|
---|
1350 | ******************************************************************** -->
|
---|
1351 |
|
---|
1352 | <src:fragref linkend="active.toc.frag"></src:fragref>
|
---|
1353 | <src:fragref linkend="body.bg.color.frag"></src:fragref>
|
---|
1354 | <src:fragref linkend="bullet.image.frag"></src:fragref>
|
---|
1355 | <src:fragref linkend="css.stylesheet.frag"></src:fragref>
|
---|
1356 | <src:fragref linkend="css.stylesheet.dir.frag"></src:fragref>
|
---|
1357 | <src:fragref linkend="dynamic.toc.frag"></src:fragref>
|
---|
1358 | <src:fragref linkend="foilgroup.toc.frag"></src:fragref>
|
---|
1359 | <src:fragref linkend="graphics.dir.frag"></src:fragref>
|
---|
1360 | <src:fragref linkend="hidetoc.image.frag"></src:fragref>
|
---|
1361 | <src:fragref linkend="home.image.frag"></src:fragref>
|
---|
1362 | <src:fragref linkend="keyboard.nav.frag"></src:fragref>
|
---|
1363 | <src:fragref linkend="minus.image.frag"></src:fragref>
|
---|
1364 | <src:fragref linkend="multiframe.bottom.bgcolor.frag"></src:fragref>
|
---|
1365 | <src:fragref linkend="multiframe.frag"></src:fragref>
|
---|
1366 | <src:fragref linkend="multiframe.navigation.height.frag"></src:fragref>
|
---|
1367 | <src:fragref linkend="multiframe.top.bgcolor.frag"></src:fragref>
|
---|
1368 | <src:fragref linkend="nav.separator.frag"></src:fragref>
|
---|
1369 | <src:fragref linkend="next.image.frag"></src:fragref>
|
---|
1370 | <src:fragref linkend="no.home.image.frag"></src:fragref>
|
---|
1371 | <src:fragref linkend="no.next.image.frag"></src:fragref>
|
---|
1372 | <src:fragref linkend="no.prev.image.frag"></src:fragref>
|
---|
1373 | <src:fragref linkend="no.toc.image.frag"></src:fragref>
|
---|
1374 | <src:fragref linkend="no.up.image.frag"></src:fragref>
|
---|
1375 | <src:fragref linkend="output.indent.frag"></src:fragref>
|
---|
1376 | <src:fragref linkend="overlay.frag"></src:fragref>
|
---|
1377 | <src:fragref linkend="overlay.js.frag"></src:fragref>
|
---|
1378 | <src:fragref linkend="overlay.logo.frag"></src:fragref>
|
---|
1379 | <src:fragref linkend="plus.image.frag"></src:fragref>
|
---|
1380 | <src:fragref linkend="prev.image.frag"></src:fragref>
|
---|
1381 | <src:fragref linkend="script.dir.frag"></src:fragref>
|
---|
1382 | <src:fragref linkend="show.foil.number.frag"></src:fragref>
|
---|
1383 | <src:fragref linkend="showtoc.image.frag"></src:fragref>
|
---|
1384 | <src:fragref linkend="slides.js.frag"></src:fragref>
|
---|
1385 | <src:fragref linkend="text.home.frag"></src:fragref>
|
---|
1386 | <src:fragref linkend="text.next.frag"></src:fragref>
|
---|
1387 | <src:fragref linkend="text.prev.frag"></src:fragref>
|
---|
1388 | <src:fragref linkend="text.toc.frag"></src:fragref>
|
---|
1389 | <src:fragref linkend="text.up.frag"></src:fragref>
|
---|
1390 | <src:fragref linkend="titlefoil.html.frag"></src:fragref>
|
---|
1391 | <src:fragref linkend="toc.bg.color.frag"></src:fragref>
|
---|
1392 | <src:fragref linkend="toc.hide.show.frag"></src:fragref>
|
---|
1393 | <src:fragref linkend="toc.html.frag"></src:fragref>
|
---|
1394 | <src:fragref linkend="toc.image.frag"></src:fragref>
|
---|
1395 | <src:fragref linkend="toc.row.height.frag"></src:fragref>
|
---|
1396 | <src:fragref linkend="toc.width.frag"></src:fragref>
|
---|
1397 | <src:fragref linkend="ua.js.frag"></src:fragref>
|
---|
1398 | <src:fragref linkend="up.image.frag"></src:fragref>
|
---|
1399 | <src:fragref linkend="xbCollapsibleLists.js.frag"></src:fragref>
|
---|
1400 | <src:fragref linkend="xbDOM.js.frag"></src:fragref>
|
---|
1401 | <src:fragref linkend="xbStyle.js.frag"></src:fragref>
|
---|
1402 | <src:fragref linkend="xbLibrary.js.frag"></src:fragref>
|
---|
1403 |
|
---|
1404 | </xsl:stylesheet>
|
---|
1405 | </programlisting>
|
---|
1406 |
|
---|
1407 | </appendix>
|
---|
1408 |
|
---|
1409 | </book>
|
---|