source: trunk/Distribution/XSL/slides/html/param.xweb

Last change on this file was 2, checked in by jkacer, 18 years ago

Added all DocBook Framework stuff:

  • DocBook DTD
  • Transformation software FOP 0.20.5 and Saxon 6
  • XSL styles
  • Rexx scripts

Also added some WarpIN-related stuff for creation of WarpIN installation packages.
This state corresponds to version 1.0.0 from November 2005, just slightly modified to carry versioning information (Rexx scripts).

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