summaryrefslogtreecommitdiffstats
blob: 84cf1969330cbc440cc680fc6e4cd21273d2ea2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
<?xml version="1.0" encoding="ASCII"?>
<book version="5.0" xml:id="slides">
<info>
<title>Slides HTML Parameter Reference</title>
<releaseinfo role="meta">
$Id: param.xweb 6633 2007-02-21 18:33:33Z xmldoc $
</releaseinfo>
<author>
  <personname>
    <surname>Walsh</surname>
    <firstname>Norman</firstname>
  </personname>
</author>
<copyright>
  <year>2002</year>
  <holder>Norman Walsh</holder>
</copyright>
<abstract>
  <para>This is reference documentation for all user-configurable
    parameters in the DocBook XSL Slides HTML stylesheet (for
    generating HTML slide presentations). Note that the Slides
    stylesheet for HTML output is a customization layer of the
    DocBook XSL HTML stylesheet. Therefore, in addition to the
    slides-specific parameters listed in this section, you can
    also use a number of <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="../html/">HTML
    stylesheet parameters</link> to control Slides HTML
    output.</para>
</abstract>
</info>
<reference xml:id="html">
<title>HTML: General Parameters</title>
<refentry version="5.0" xml:id="keyboard.nav">
<refmeta>
<refentrytitle>keyboard.nav</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>keyboard.nav</refname>
<refpurpose>Enable keyboard navigation?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="keyboard.nav.frag">
&lt;xsl:param name="keyboard.nav" select="1"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, JavaScript is added to the slides to enable keyboard
navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves
backward.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="css.stylesheet">
<refmeta>
<refentrytitle>css.stylesheet</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
</refmeta>
<refnamediv>
<refname>css.stylesheet</refname>
<refpurpose>CSS stylesheet for slides</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="css.stylesheet.frag">
&lt;xsl:param name="css.stylesheet"&gt;slides.css&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Identifies the CSS stylesheet used by all the slides. This parameter
can be set in the source document with the &lt;?dbhtml?&gt; pseudo-attribute
<literal>css-stylesheet</literal>.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="css.stylesheet.dir">
<refmeta>
<refentrytitle>css.stylesheet.dir</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
</refmeta>
<refnamediv>
<refname>css.stylesheet.dir</refname>
<refpurpose>Default directory for CSS stylesheets</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="css.stylesheet.dir.frag">
&lt;xsl:param name="css.stylesheet.dir"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Identifies the default directory for the CSS stylesheet
generated on all the slides. This parameter can be set in the source
document with the &lt;?dbhtml?&gt; pseudo-attribute
<literal>css-stylesheet-dir</literal>.</para>

<para>If non-empty, this value is prepended to each of the stylesheets.
</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="titlefoil.html">
<refmeta>
<refentrytitle>titlefoil.html</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>titlefoil.html</refname>
<refpurpose>Name of title foil HTML file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="titlefoil.html.frag">
&lt;xsl:param name="titlefoil.html" select="concat('index', $html.ext)"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Sets the filename used for the slides titlepage.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="toc.html">
<refmeta>
<refentrytitle>toc.html</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.html</refname>
<refpurpose>Name of ToC HTML file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="toc.html.frag">
&lt;xsl:param name="toc.html" select="concat('toc', $html.ext)"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Sets the filename used for the table of contents page.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="foilgroup.toc">
<refmeta>
<refentrytitle>foilgroup.toc</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>foilgroup.toc</refname>
<refpurpose>Put ToC on foilgroup pages?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="foilgroup.toc.frag">
&lt;xsl:param name="foilgroup.toc" select="1"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, a ToC will be placed on foilgroup pages (after any
other content).
</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="output.indent">
<refmeta>
<refentrytitle>output.indent</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">list</refmiscinfo>
<refmiscinfo class="other" otherclass="value">no</refmiscinfo>
<refmiscinfo class="other" otherclass="value">yes</refmiscinfo>
</refmeta>
<refnamediv>
<refname>output.indent</refname>
<refpurpose>Indent output?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="output.indent.frag">
&lt;xsl:param name="output.indent"&gt;no&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the setting of the <parameter>indent</parameter>
parameter on the HTML slides. For more information, see the discussion
of the <tag>xsl:output</tag> element in the XSLT specification.</para>
<para>Select from <literal>yes</literal> or <literal>no</literal>.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="overlay">
<refmeta>
<refentrytitle>overlay</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>overlay</refname>
<refpurpose>Overlay footer navigation?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="overlay.frag">
&lt;xsl:param name="overlay" select="0"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, JavaScript is added to the slides to make the
bottom navigation appear at the bottom of each page. This option and
<link linkend="multiframe">multiframe</link> are mutually exclusive.</para>

<para>If this parameter is zero, the bottom navigation simply appears
below the content of each slide.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="show.foil.number">
<refmeta>
<refentrytitle>show.foil.number</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>show.foil.number</refname>
<refpurpose>Show foil number on each foil?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="show.foil.number.frag">
&lt;xsl:param name="show.foil.number" select="0"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, on each slide there will be its number. Currently
not supported in all output formats.</para>

</refsection>
</refentry>

</reference>
<reference xml:id="frames">
<title>HTML: Frames Parameters</title>
<refentry version="5.0" xml:id="nav.separator">
<refmeta>
<refentrytitle>nav.separator</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>nav.separator</refname>
<refpurpose>Output separator between navigation and body?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="nav.separator.frag">
&lt;xsl:param name="nav.separator" select="1"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, a separator (<literal>&lt;HR&gt;</literal>) is
added between the navigation links and the content of each slide.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="toc.row.height">
<refmeta>
<refentrytitle>toc.row.height</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">length</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.row.height</refname>
<refpurpose>Height of ToC rows in dynamic ToCs</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="toc.row.height.frag">
&lt;xsl:param name="toc.row.height"&gt;22&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>This parameter specifies the height of each row in the table of
contents. This is only applicable if a <link linkend="dynamic.toc">dynamic ToC</link> is used. You may want to
adjust this parameter for optimal appearance with the font and image
sizes selected by your <link linkend="css.stylesheet">CSS
stylesheet</link>.
</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="toc.bg.color">
<refmeta>
<refentrytitle>toc.bg.color</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.bg.color</refname>
<refpurpose>Background color for ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="toc.bg.color.frag">
&lt;xsl:param name="toc.bg.color"&gt;#FFFFFF&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the background color used in the ToC frame.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="body.bg.color">
<refmeta>
<refentrytitle>body.bg.color</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>body.bg.color</refname>
<refpurpose>Background color for body frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="body.bg.color.frag">
&lt;xsl:param name="body.bg.color"&gt;#FFFFFF&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the background color used in the body column of
tabular slides.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="toc.width">
<refmeta>
<refentrytitle>toc.width</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">length</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.width</refname>
<refpurpose>Width of ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="toc.width.frag">
&lt;xsl:param name="toc.width"&gt;250&lt;/xsl:param&gt;
&lt;!-- Presumably in pixels? --&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the width of the ToC frame in pixels.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="toc.hide.show">
<refmeta>
<refentrytitle>toc.hide.show</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.hide.show</refname>
<refpurpose>Enable hide/show button for ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="toc.hide.show.frag">
&lt;xsl:param name="toc.hide.show" select="0"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, JavaScript (and an additional icon, see
<link linkend="hidetoc.image">hidetoc.image</link> and
<link linkend="hidetoc.image">showtoc.image</link>) is added to each slide
to allow the ToC panel to be <quote>toggled</quote> on each panel.</para>

<note><para>There is a bug in Mozilla 1.0 (at least as of CR3) that causes
the browser to reload the titlepage when this feature is used.</para></note>

</refsection>
</refentry>

<refentry version="5.0" xml:id="dynamic.toc">
<refmeta>
<refentrytitle>dynamic.toc</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>dynamic.toc</refname>
<refpurpose>Dynamic ToCs?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="dynamic.toc.frag">
&lt;xsl:param name="dynamic.toc" select="0"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, JavaScript is used to make the ToC panel <quote>dynamic</quote>.
In a dynamic ToC, each section in the ToC can be expanded and collapsed by
clicking on the appropriate image.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="active.toc">
<refmeta>
<refentrytitle>active.toc</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>active.toc</refname>
<refpurpose>Active ToCs?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="active.toc.frag">
&lt;xsl:param name="active.toc" select="0"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, JavaScript is used to keep the ToC and the current slide
<quote>in sync</quote>. That is, each time the slide changes, the corresponding
ToC entry will be underlined.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="overlay.logo">
<refmeta>
<refentrytitle>overlay.logo</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
</refmeta>
<refnamediv>
<refname>overlay.logo</refname>
<refpurpose>Logo to overlay on ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="overlay.logo.frag">
&lt;xsl:param name="overlay.logo"&gt;http://docbook.sourceforge.net/release/buttons/slides-1.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If this URI is non-empty, JavaScript is used to overlay the
specified image on the ToC frame.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="multiframe">
<refmeta>
<refentrytitle>multiframe</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe</refname>
<refpurpose>Use multiple frames for slide bodies?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="multiframe.frag">
&lt;xsl:param name="multiframe" select="0"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>If non-zero, multiple frames are used for the body of each
slide. This is one way of forcing the slide navigation elements to
appear in constant locations. The other way is with <link linkend="overlay">overlays</link>. The <link linkend="overlay"><parameter>overlay</parameter></link> and
<parameter>multiframe</parameter> parameters are mutually
exclusive.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="multiframe.top.bgcolor">
<refmeta>
<refentrytitle>multiframe.top.bgcolor</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe.top.bgcolor</refname>
<refpurpose>Background color for top navigation frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="multiframe.top.bgcolor.frag">
&lt;xsl:param name="multiframe.top.bgcolor"&gt;white&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the background color of the top navigation frame when
<link linkend="multiframe">multiframe</link> is enabled.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="multiframe.bottom.bgcolor">
<refmeta>
<refentrytitle>multiframe.bottom.bgcolor</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe.bottom.bgcolor</refname>
<refpurpose>Background color for bottom navigation frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="multiframe.bottom.bgcolor.frag">
&lt;xsl:param name="multiframe.bottom.bgcolor"&gt;white&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the background color of the bottom navigation frame when
<link linkend="multiframe">multiframe</link> is enabled.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="multiframe.navigation.height">
<refmeta>
<refentrytitle>multiframe.navigation.height</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">length</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe.navigation.height</refname>
<refpurpose>Height of navigation frames</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="multiframe.navigation.height.frag">
&lt;xsl:param name="multiframe.navigation.height"&gt;40&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the height of the navigation frames in pixels when
<link linkend="multiframe">multiframe</link> is enabled.</para>

</refsection>
</refentry>

</reference>
<reference xml:id="graphics">
<title>HTML: Graphics Parameters</title>
<refentry version="5.0" xml:id="graphics.dir">
<refmeta>
<refentrytitle>graphics.dir</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
</refmeta>
<refnamediv>
<refname>graphics.dir</refname>
<refpurpose>Graphics directory</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="graphics.dir.frag">
&lt;xsl:param name="graphics.dir"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Identifies the graphics directory for the navigation components
generated on all the slides. This parameter can be set in the source
document with the &lt;?dbhtml?&gt; pseudo-attribute
<literal>graphics-dir</literal>.</para>

<para>If non-empty, this value is prepended to each of the graphic
image paths.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="bullet.image">
<refmeta>
<refentrytitle>bullet.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>bullet.image</refname>
<refpurpose>Bullet image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="bullet.image.frag">
&lt;xsl:param name="bullet.image"&gt;toc/bullet.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the bullet image used for foils in the
framed ToC.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="next.image">
<refmeta>
<refentrytitle>next.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>next.image</refname>
<refpurpose>Right-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="next.image.frag">
&lt;xsl:param name="next.image"&gt;active/nav-next.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the right-pointing navigation arrow.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="prev.image">
<refmeta>
<refentrytitle>prev.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>prev.image</refname>
<refpurpose>Left-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="prev.image.frag">
&lt;xsl:param name="prev.image"&gt;active/nav-prev.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the left-pointing navigation arrow.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="up.image">
<refmeta>
<refentrytitle>up.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>up.image</refname>
<refpurpose>Up-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="up.image.frag">
&lt;xsl:param name="up.image"&gt;active/nav-up.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the upward-pointing navigation arrow.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="home.image">
<refmeta>
<refentrytitle>home.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>home.image</refname>
<refpurpose>Home image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="home.image.frag">
&lt;xsl:param name="home.image"&gt;active/nav-home.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the home navigation icon.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="toc.image">
<refmeta>
<refentrytitle>toc.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.image</refname>
<refpurpose>ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="toc.image.frag">
&lt;xsl:param name="toc.image"&gt;active/nav-toc.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the ToC navigation icon.</para>

</refsection>
</refentry>


<refentry version="5.0" xml:id="no.next.image">
<refmeta>
<refentrytitle>no.next.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.next.image</refname>
<refpurpose>Inactive right-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="no.next.image.frag">
&lt;xsl:param name="no.next.image"&gt;inactive/nav-next.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the inactive right-pointing navigation arrow.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="no.prev.image">
<refmeta>
<refentrytitle>no.prev.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.prev.image</refname>
<refpurpose>Inactive left-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="no.prev.image.frag">
&lt;xsl:param name="no.prev.image"&gt;inactive/nav-prev.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the inactive left-pointing navigation arrow.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="no.up.image">
<refmeta>
<refentrytitle>no.up.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.up.image</refname>
<refpurpose>Inactive up-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="no.up.image.frag">
&lt;xsl:param name="no.up.image"&gt;inactive/nav-up.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the inactive upward-pointing navigation arrow.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="no.home.image">
<refmeta>
<refentrytitle>no.home.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.home.image</refname>
<refpurpose>Inactive home image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="no.home.image.frag">
&lt;xsl:param name="no.home.image"&gt;inactive/nav-home.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the inactive home navigation icon.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="no.toc.image">
<refmeta>
<refentrytitle>no.toc.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.toc.image</refname>
<refpurpose>Inactive ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="no.toc.image.frag">
&lt;xsl:param name="no.toc.image"&gt;inactive/nav-toc.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the inactive ToC navigation icon.</para>

</refsection>
</refentry>


<refentry version="5.0" xml:id="plus.image">
<refmeta>
<refentrytitle>plus.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>plus.image</refname>
<refpurpose>Plus image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="plus.image.frag">
&lt;xsl:param name="plus.image"&gt;toc/closed.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the <quote>plus</quote> image; the image used in a
<link linkend="dynamic.toc">dynamic ToC</link> to indicate that a section
can be expanded.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="minus.image">
<refmeta>
<refentrytitle>minus.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>minus.image</refname>
<refpurpose>Minus image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="minus.image.frag">
&lt;xsl:param name="minus.image"&gt;toc/open.png&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the <quote>minus</quote> image; the image used in a
<link linkend="dynamic.toc">dynamic ToC</link> to indicate that a section
can be collapsed.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="hidetoc.image">
<refmeta>
<refentrytitle>hidetoc.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>hidetoc.image</refname>
<refpurpose>Hide ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="hidetoc.image.frag">
&lt;xsl:param name="hidetoc.image"&gt;hidetoc.gif&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the <quote>hide ToC</quote> image. This is used
when the <link linkend="toc.hide.show">ToC hide/show</link> parameter is
enabled.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="showtoc.image">
<refmeta>
<refentrytitle>showtoc.image</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>showtoc.image</refname>
<refpurpose>Show ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="showtoc.image.frag">
&lt;xsl:param name="showtoc.image"&gt;showtoc.gif&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the <quote>show ToC</quote> image. This is used
when the <link linkend="toc.hide.show">ToC hide/show</link> parameter is
enabled.</para>

</refsection>
</refentry>

</reference>
<reference xml:id="javascript">
<title>HTML: JavaScript Parameters</title>
<refentry version="5.0" xml:id="script.dir">
<refmeta>
<refentrytitle>script.dir</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">uri</refmiscinfo>
</refmeta>
<refnamediv>
<refname>script.dir</refname>
<refpurpose>Script directory</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="script.dir.frag">
&lt;xsl:param name="script.dir"&gt;&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Identifies the JavaScript source directory for the slides.
This parameter can be set in the source
document with the &lt;?dbhtml?&gt; pseudo-attribute
<literal>script-dir</literal>.</para>

<para>If non-empty, this value is prepended to each of the JavaScript files.
</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="ua.js">
<refmeta>
<refentrytitle>ua.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>ua.js</refname>
<refpurpose>UA JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="ua.js.frag">
&lt;xsl:param name="ua.js"&gt;ua.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the UA JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="xbDOM.js">
<refmeta>
<refentrytitle>xbDOM.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbDOM.js</refname>
<refpurpose>xbDOM JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="xbDOM.js.frag">
&lt;xsl:param name="xbDOM.js"&gt;xbDOM.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the xbDOM JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="xbStyle.js">
<refmeta>
<refentrytitle>xbStyle.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbStyle.js</refname>
<refpurpose>xbStyle JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="xbStyle.js.frag">
&lt;xsl:param name="xbStyle.js"&gt;xbStyle.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the xbStyle JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="xbLibrary.js">
<refmeta>
<refentrytitle>xbLibrary.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbLibrary.js</refname>
<refpurpose>xbLibrary JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="xbLibrary.js.frag">
&lt;xsl:param name="xbLibrary.js"&gt;xbLibrary.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the xbLibrary JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="xbCollapsibleLists.js">
<refmeta>
<refentrytitle>xbCollapsibleLists.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbCollapsibleLists.js</refname>
<refpurpose>xbCollapsibleLists JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="xbCollapsibleLists.js.frag">
&lt;xsl:param name="xbCollapsibleLists.js"&gt;xbCollapsibleLists.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the xbCollapsibleLists JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="overlay.js">
<refmeta>
<refentrytitle>overlay.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>overlay.js</refname>
<refpurpose>Overlay JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="overlay.js.frag">
&lt;xsl:param name="overlay.js"&gt;overlay.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the overlay JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="slides.js">
<refmeta>
<refentrytitle>slides.js</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>slides.js</refname>
<refpurpose>Slides overlay file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="slides.js.frag">
&lt;xsl:param name="slides.js"&gt;slides.js&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>Specifies the filename of the slides JavaScript file. It's unlikely
that you will ever need to change this parameter.</para>

</refsection>
</refentry>

</reference>
<reference xml:id="l10n">
<title>HTML: Localization Parameters</title>
<refentry version="5.0" xml:id="text.home">
<refmeta>
<refentrytitle>text.home</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.home</refname>
<refpurpose>Home</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="text.home.frag">
&lt;xsl:param name="text.home"&gt;Home&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>FIXME:</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="text.toc">
<refmeta>
<refentrytitle>text.toc</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="text.toc.frag">
&lt;xsl:param name="text.toc"&gt;ToC&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>FIXME:</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="text.prev">
<refmeta>
<refentrytitle>text.prev</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.prev</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="text.prev.frag">
&lt;xsl:param name="text.prev"&gt;Prev&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>FIXME:</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="text.up">
<refmeta>
<refentrytitle>text.up</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.up</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="text.up.frag">
&lt;xsl:param name="text.up"&gt;Up&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>FIXME:</para>

</refsection>
</refentry>

<refentry version="5.0" xml:id="text.next">
<refmeta>
<refentrytitle>text.next</refentrytitle>
<refmiscinfo class="other" otherclass="datatype">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.next</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<programlisting xml:id="text.next.frag">
&lt;xsl:param name="text.next"&gt;Next&lt;/xsl:param&gt;
</programlisting>
</refsynopsisdiv>

<refsection><info><title>Description</title></info>

<para>FIXME:</para>

</refsection>
</refentry>



</reference>
<appendix xml:id="styleheet"><title>The Stylesheet</title>

<para>The <filename>param.xsl</filename> stylesheet is just a wrapper
around all these parameters.</para>

<programlisting xml:id="top">

&lt;!-- This file is generated from param.xweb --&gt;

&lt;xsl:stylesheet exclude-result-prefixes="src" version="1.0"&gt;

&lt;!-- ********************************************************************
     $Id: param.xweb 6633 2007-02-21 18:33:33Z xmldoc $
     ********************************************************************

     This file is part of the DocBook Slides Stylesheet distribution.
     See ../README or http://docbook.sf.net/release/xsl/current/ for
     copyright and other information.

     ******************************************************************** --&gt;

&lt;src:fragref linkend="active.toc.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="body.bg.color.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="bullet.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="css.stylesheet.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="css.stylesheet.dir.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="dynamic.toc.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="foilgroup.toc.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="graphics.dir.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="hidetoc.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="home.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="keyboard.nav.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="minus.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="multiframe.bottom.bgcolor.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="multiframe.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="multiframe.navigation.height.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="multiframe.top.bgcolor.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="nav.separator.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="next.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="no.home.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="no.next.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="no.prev.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="no.toc.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="no.up.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="output.indent.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="overlay.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="overlay.js.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="overlay.logo.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="plus.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="prev.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="script.dir.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="show.foil.number.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="showtoc.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="slides.js.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="text.home.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="text.next.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="text.prev.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="text.toc.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="text.up.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="titlefoil.html.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="toc.bg.color.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="toc.hide.show.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="toc.html.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="toc.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="toc.row.height.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="toc.width.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="ua.js.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="up.image.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="xbCollapsibleLists.js.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="xbDOM.js.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="xbStyle.js.frag"&gt;&lt;/src:fragref&gt;
&lt;src:fragref linkend="xbLibrary.js.frag"&gt;&lt;/src:fragref&gt;

&lt;/xsl:stylesheet&gt;
</programlisting>

</appendix>
</book>