File: param.xweb

package info (click to toggle)
docbook-slides 3.4.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,616 kB
  • sloc: javascript: 2,350; xml: 1,404; sh: 656; makefile: 5
file content (1437 lines) | stat: -rw-r--r-- 36,304 bytes parent folder | download | duplicates (3)
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
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
<book xmlns:src="http://nwalsh.com/xmlns/litprog/fragment"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<bookinfo>
<title>Slides Parameter Reference</title>
<releaseinfo role="meta">
$Id: param.xweb,v 1.6 2004/03/04 14:49:51 kosek Exp $
</releaseinfo>
<author>
  <surname>Walsh</surname>
  <firstname>Norman</firstname>
</author>
<copyright>
  <year>2002</year>
  <holder>Norman Walsh</holder>
</copyright>
</bookinfo>

<preface><title>Introduction</title>

<para>This is reference documentation for the Slides stylesheet parameters.
</para>

<para>This reference describes each of the parameters.
These are the <quote>easily customizable</quote> parts of the stylesheet.
If you want to specify an alternate value for one or more of these
parameters, you can do so in a <quote>driver</quote> stylesheet.</para>

<para>For example, if you want to change the <literal>keyboard.nav</literal>
parameter to <filename>0</filename>, you might create a driver
stylesheet like this:</para>

<programlisting><![CDATA[<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version='1.0'>

  <xsl:import href="http://docbook.sourceforge.net/release/slides/current/xsl/slides.xsl"/>

  <xsl:param name="keyboard.nav" select="0"/>

</xsl:stylesheet>]]></programlisting>

<para>Naturally, you have to change the
<sgmltag class='attribute'>href</sgmltag> attribute on
<literal>&lt;xsl:import&gt;</literal> to point to the stylesheet
on your system.</para>

<para>This is not intended to be <quote>user</quote> documentation.
It is provided for developers writing customization layers for the
stylesheets, and for anyone who's interested in <quote>how it
works</quote>.</para>

<para>Although I am trying to be thorough, this documentation is known
to be incomplete. Don't forget to read the source, too :-)</para>
</preface>

<reference>
<title>General Parameters</title>

<refentry id="keyboard.nav">
<refmeta>
<refentrytitle>keyboard.nav</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>keyboard.nav</refname>
<refpurpose>Enable keyboard navigation?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='keyboard.nav.frag'>
<xsl:param name="keyboard.nav" select="1"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="css.stylesheet">
<refmeta>
<refentrytitle>css.stylesheet</refentrytitle>
<refmiscinfo role="type">URI</refmiscinfo>
</refmeta>
<refnamediv>
<refname>css.stylesheet</refname>
<refpurpose>CSS stylesheet for slides</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='css.stylesheet.frag'>
<xsl:param name="css.stylesheet" select="'slides.css'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="css.stylesheet.dir">
<refmeta>
<refentrytitle>css.stylesheet.dir</refentrytitle>
<refmiscinfo role="type">URI</refmiscinfo>
</refmeta>
<refnamediv>
<refname>css.stylesheet.dir</refname>
<refpurpose>Default directory for CSS stylesheets</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='css.stylesheet.dir.frag'>
<xsl:param name="css.stylesheet.dir" select="''"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="titlefoil.html">
<refmeta>
<refentrytitle>titlefoil.html</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>titlefoil.html</refname>
<refpurpose>Name of title foil HTML file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='titlefoil.html.frag'>
<xsl:param name="titlefoil.html" select="concat('index', $html.ext)"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="toc.html">
<refmeta>
<refentrytitle>toc.html</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.html</refname>
<refpurpose>Name of ToC HTML file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='toc.html.frag'>
<xsl:param name="toc.html" select="concat('toc', $html.ext)"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="foilgroup.toc">
<refmeta>
<refentrytitle>foilgroup.toc</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>foilgroup.toc</refname>
<refpurpose>Put ToC on foilgroup pages?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='foilgroup.toc.frag'>
<xsl:param name="foilgroup.toc" select="1"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="output.indent">
<refmeta>
<refentrytitle>output.indent</refentrytitle>
<refmiscinfo role="type">list</refmiscinfo>
<refmiscinfo role="value">no</refmiscinfo>
<refmiscinfo role="value">yes</refmiscinfo>
</refmeta>
<refnamediv>
<refname>output.indent</refname>
<refpurpose>Indent output?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='output.indent.frag'>
<xsl:param name="output.indent" select="'no'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>Specifies the setting of the <parameter>indent</parameter> parameter
on the HTML slides. For more information, see the discussion of the
<sgmltag>xsl:output</sgmltag> element in the XSLT specification.</para>

</refsect1>
</refentry>

<refentry id="overlay">
<refmeta>
<refentrytitle>overlay</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>overlay</refname>
<refpurpose>Overlay footer navigation?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='overlay.frag'>
<xsl:param name="overlay" select="0"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="show.foil.number">
<refmeta>
<refentrytitle>show.foil.number</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>show.foil.number</refname>
<refpurpose>Show foil number on each foil?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='show.foil.number.frag'>
<xsl:param name="show.foil.number" select="0"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

</reference>

<reference>
<title>Frame Parameters</title>

<refentry id="nav.separator">
<refmeta>
<refentrytitle>nav.separator</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>nav.separator</refname>
<refpurpose>Output separator between navigation and body?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='nav.separator.frag'>
<xsl:param name="nav.separator" select="1"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="toc.row.height">
<refmeta>
<refentrytitle>toc.row.height</refentrytitle>
<refmiscinfo role="type">length</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.row.height</refname>
<refpurpose>Height of ToC rows in dynamic ToCs</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='toc.row.height.frag'>
<xsl:param name="toc.row.height" select="22"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="toc.bg.color">
<refmeta>
<refentrytitle>toc.bg.color</refentrytitle>
<refmiscinfo role="type">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.bg.color</refname>
<refpurpose>Background color for ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='toc.bg.color.frag'>
<xsl:param name="toc.bg.color" select="'#FFFFFF'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="body.bg.color">
<refmeta>
<refentrytitle>body.bg.color</refentrytitle>
<refmiscinfo role="type">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>body.bg.color</refname>
<refpurpose>Background color for body frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='body.bg.color.frag'>
<xsl:param name="body.bg.color" select="'#FFFFFF'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="toc.width">
<refmeta>
<refentrytitle>toc.width</refentrytitle>
<refmiscinfo role="type">length</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.width</refname>
<refpurpose>Width of ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='toc.width.frag'>
<xsl:param name="toc.width" select="250"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="toc.hide.show">
<refmeta>
<refentrytitle>toc.hide.show</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.hide.show</refname>
<refpurpose>Enable hide/show button for ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='toc.hide.show.frag'>
<xsl:param name="toc.hide.show" select="0"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="dynamic.toc">
<refmeta>
<refentrytitle>dynamic.toc</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>dynamic.toc</refname>
<refpurpose>Dynamic ToCs?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='dynamic.toc.frag'>
<xsl:param name="dynamic.toc" select="0"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="active.toc">
<refmeta>
<refentrytitle>active.toc</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>active.toc</refname>
<refpurpose>Active ToCs?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='active.toc.frag'>
<xsl:param name="active.toc" select="0"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="overlay.logo">
<refmeta>
<refentrytitle>overlay.logo</refentrytitle>
<refmiscinfo role="type">URI</refmiscinfo>
</refmeta>
<refnamediv>
<refname>overlay.logo</refname>
<refpurpose>Logo to overlay on ToC frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='overlay.logo.frag'>
<xsl:param name="overlay.logo" select="'http://docbook.sourceforge.net/release/buttons/slides-1.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="multiframe">
<refmeta>
<refentrytitle>multiframe</refentrytitle>
<refmiscinfo role="type">boolean</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe</refname>
<refpurpose>Use multiple frames for slide bodies?</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='multiframe.frag'>
<xsl:param name="multiframe" select="0"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="multiframe.top.bgcolor">
<refmeta>
<refentrytitle>multiframe.top.bgcolor</refentrytitle>
<refmiscinfo role="type">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe.top.bgcolor</refname>
<refpurpose>Background color for top navigation frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='multiframe.top.bgcolor.frag'>
<xsl:param name="multiframe.top.bgcolor" select="'white'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="multiframe.bottom.bgcolor">
<refmeta>
<refentrytitle>multiframe.bottom.bgcolor</refentrytitle>
<refmiscinfo role="type">color</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe.bottom.bgcolor</refname>
<refpurpose>Background color for bottom navigation frame</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='multiframe.bottom.bgcolor.frag'>
<xsl:param name="multiframe.bottom.bgcolor" select="'white'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="multiframe.navigation.height">
<refmeta>
<refentrytitle>multiframe.navigation.height</refentrytitle>
<refmiscinfo role="type">length</refmiscinfo>
</refmeta>
<refnamediv>
<refname>multiframe.navigation.height</refname>
<refpurpose>Height of navigation frames</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='multiframe.navigation.height.frag'>
<xsl:param name="multiframe.navigation.height" select="40"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

</reference>

<reference>
<title>Graphics Parameters</title>

<refentry id="graphics.dir">
<refmeta>
<refentrytitle>graphics.dir</refentrytitle>
<refmiscinfo role="type">URI</refmiscinfo>
</refmeta>
<refnamediv>
<refname>graphics.dir</refname>
<refpurpose>Graphics directory</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='graphics.dir.frag'>
<xsl:param name="graphics.dir" select="''"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="bullet.image">
<refmeta>
<refentrytitle>bullet.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>bullet.image</refname>
<refpurpose>Bullet image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='bullet.image.frag'>
<xsl:param name="bullet.image" select="'toc/bullet.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="next.image">
<refmeta>
<refentrytitle>next.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>next.image</refname>
<refpurpose>Right-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='next.image.frag'>
<xsl:param name="next.image" select="'active/nav-next.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="prev.image">
<refmeta>
<refentrytitle>prev.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>prev.image</refname>
<refpurpose>Left-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='prev.image.frag'>
<xsl:param name="prev.image" select="'active/nav-prev.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="up.image">
<refmeta>
<refentrytitle>up.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>up.image</refname>
<refpurpose>Up-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='up.image.frag'>
<xsl:param name="up.image" select="'active/nav-up.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="home.image">
<refmeta>
<refentrytitle>home.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>home.image</refname>
<refpurpose>Home image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='home.image.frag'>
<xsl:param name="home.image" select="'active/nav-home.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="toc.image">
<refmeta>
<refentrytitle>toc.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>toc.image</refname>
<refpurpose>ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='toc.image.frag'>
<xsl:param name="toc.image" select="'active/nav-toc.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<!-- ====================================================================== -->

<refentry id="no.next.image">
<refmeta>
<refentrytitle>no.next.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.next.image</refname>
<refpurpose>Inactive right-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='no.next.image.frag'>
<xsl:param name="no.next.image" select="'inactive/nav-next.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="no.prev.image">
<refmeta>
<refentrytitle>no.prev.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.prev.image</refname>
<refpurpose>Inactive left-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='no.prev.image.frag'>
<xsl:param name="no.prev.image" select="'inactive/nav-prev.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="no.up.image">
<refmeta>
<refentrytitle>no.up.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.up.image</refname>
<refpurpose>Inactive up-arrow image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='no.up.image.frag'>
<xsl:param name="no.up.image" select="'inactive/nav-up.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="no.home.image">
<refmeta>
<refentrytitle>no.home.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.home.image</refname>
<refpurpose>Inactive home image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='no.home.image.frag'>
<xsl:param name="no.home.image" select="'inactive/nav-home.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="no.toc.image">
<refmeta>
<refentrytitle>no.toc.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>no.toc.image</refname>
<refpurpose>Inactive ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='no.toc.image.frag'>
<xsl:param name="no.toc.image" select="'inactive/nav-toc.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<!-- ====================================================================== -->

<refentry id="plus.image">
<refmeta>
<refentrytitle>plus.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>plus.image</refname>
<refpurpose>Plus image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='plus.image.frag'>
<xsl:param name="plus.image" select="'toc/closed.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="minus.image">
<refmeta>
<refentrytitle>minus.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>minus.image</refname>
<refpurpose>Minus image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='minus.image.frag'>
<xsl:param name="minus.image" select="'toc/open.png'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="hidetoc.image">
<refmeta>
<refentrytitle>hidetoc.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>hidetoc.image</refname>
<refpurpose>Hide ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='hidetoc.image.frag'>
<xsl:param name="hidetoc.image" select="'hidetoc.gif'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="showtoc.image">
<refmeta>
<refentrytitle>showtoc.image</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>showtoc.image</refname>
<refpurpose>Show ToC image</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='showtoc.image.frag'>
<xsl:param name="showtoc.image" select="'showtoc.gif'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

</reference>

<reference>
<title>JavaScript Parameters</title>

<refentry id="script.dir">
<refmeta>
<refentrytitle>script.dir</refentrytitle>
<refmiscinfo role="type">URI</refmiscinfo>
</refmeta>
<refnamediv>
<refname>script.dir</refname>
<refpurpose>Script directory</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='script.dir.frag'>
<xsl:param name="script.dir" select="''"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<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>

</refsect1>
</refentry>

<refentry id="ua.js">
<refmeta>
<refentrytitle>ua.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>ua.js</refname>
<refpurpose>UA JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='ua.js.frag'>
<xsl:param name="ua.js" select="'ua.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="xbDOM.js">
<refmeta>
<refentrytitle>xbDOM.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbDOM.js</refname>
<refpurpose>xbDOM JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='xbDOM.js.frag'>
<xsl:param name="xbDOM.js" select="'xbDOM.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="xbStyle.js">
<refmeta>
<refentrytitle>xbStyle.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbStyle.js</refname>
<refpurpose>xbStyle JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='xbStyle.js.frag'>
<xsl:param name="xbStyle.js" select="'xbStyle.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="xbLibrary.js">
<refmeta>
<refentrytitle>xbLibrary.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbLibrary.js</refname>
<refpurpose>xbLibrary JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='xbLibrary.js.frag'>
<xsl:param name="xbLibrary.js" select="'xbLibrary.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="xbCollapsibleLists.js">
<refmeta>
<refentrytitle>xbCollapsibleLists.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xbCollapsibleLists.js</refname>
<refpurpose>xbCollapsibleLists JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='xbCollapsibleLists.js.frag'>
<xsl:param name="xbCollapsibleLists.js" select="'xbCollapsibleLists.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="overlay.js">
<refmeta>
<refentrytitle>overlay.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>overlay.js</refname>
<refpurpose>Overlay JavaScript file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='overlay.js.frag'>
<xsl:param name="overlay.js" select="'overlay.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>

<refentry id="slides.js">
<refmeta>
<refentrytitle>slides.js</refentrytitle>
<refmiscinfo role="type">filename</refmiscinfo>
</refmeta>
<refnamediv>
<refname>slides.js</refname>
<refpurpose>Slides overlay file</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='slides.js.frag'>
<xsl:param name="slides.js" select="'slides.js'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

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

</refsect1>
</refentry>
</reference>

<reference>
<title>Localization Parameters</title>

<refentry id="text.home">
<refmeta>
<refentrytitle>text.home</refentrytitle>
<refmiscinfo role="type">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.home</refname>
<refpurpose>Home</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='text.home.frag'>
<xsl:param name="text.home" select="'Home'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>FIXME:</para>

</refsect1>
</refentry>

<refentry id="text.toc">
<refmeta>
<refentrytitle>text.toc</refentrytitle>
<refmiscinfo role="type">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='text.toc.frag'>
<xsl:param name="text.toc" select="'ToC'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>FIXME:</para>

</refsect1>
</refentry>

<refentry id="text.prev">
<refmeta>
<refentrytitle>text.prev</refentrytitle>
<refmiscinfo role="type">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.prev</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='text.prev.frag'>
<xsl:param name="text.prev" select="'Prev'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>FIXME:</para>

</refsect1>
</refentry>

<refentry id="text.up">
<refmeta>
<refentrytitle>text.up</refentrytitle>
<refmiscinfo role="type">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.up</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='text.up.frag'>
<xsl:param name="text.up" select="'Up'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>FIXME:</para>

</refsect1>
</refentry>

<refentry id="text.next">
<refmeta>
<refentrytitle>text.next</refentrytitle>
<refmiscinfo role="type">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname>text.next</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='text.next.frag'>
<xsl:param name="text.next" select="'Next'"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>FIXME:</para>

</refsect1>
</refentry>

<!--
<refentry id="">
<refmeta>
<refentrytitle></refentrytitle>
<refmiscinfo role="type">string</refmiscinfo>
</refmeta>
<refnamediv>
<refname></refname>
<refpurpose></refpurpose>
</refnamediv>

<refsynopsisdiv>
<src:fragment id='.frag'>
<xsl:param name="" select="''"/>
</src:fragment>
</refsynopsisdiv>

<refsect1><title>Description</title>

<para>FIXME:</para>

</refsect1>
</refentry>
-->

</reference>

<appendix><title>The Stylesheet</title>

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

<src:fragment id="top" mundane-result-prefixes="xsl">

<!-- This file is generated from param.xweb; do not edit this file! -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                exclude-result-prefixes="src"
                version='1.0'>

<!-- ********************************************************************
     $Id: param.xweb,v 1.6 2004/03/04 14:49:51 kosek Exp $
     ********************************************************************

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

     ******************************************************************** -->

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

</xsl:stylesheet>
</src:fragment>

</appendix>

</book>