File: RELEASE-NOTES.html

package info (click to toggle)
php-doc 20081024-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 57,752 kB
  • ctags: 3,858
  • sloc: xml: 686,554; php: 19,446; perl: 610; cpp: 500; makefile: 336; sh: 114; awk: 28
file content (4676 lines) | stat: -rw-r--r-- 369,658 bytes parent folder | download
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
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
<html><head>
      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
   <title>Release Notes</title><meta name="generator" content="DocBook XSL Stylesheets V1.72.0"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="article" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="releasenotes"></a>Release Notes</h1></div><div><h3 class="subtitle"><i>DocBook Project XSL Stylesheets</i></h3></div><div><div class="author"><h3 class="author"></h3></div></div><div><p class="releaseinfo">$Revision: 1.2 $ $Date: 2007/01/30 18:21:19 $</p></div><div><p class="pubdate">2007-01-23</p></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="#V1.72.0">Release: 1.72.0</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1.72.0_Common">Common</a></span></dt><dt><span class="sect2"><a href="#V1.72.0_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1.72.0_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1.72.0_Manpages">Manpages</a></span></dt><dt><span class="sect2"><a href="#V1.72.0_Params">Params</a></span></dt><dt><span class="sect2"><a href="#V1.72.0_Template">Template</a></span></dt><dt><span class="sect2"><a href="#V1.72.0_Roundtrip">Roundtrip</a></span></dt></dl></dd><dt><span class="sect1"><a href="#V1.71.1">Release: 1.71.1</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1.71.1_Common">Common</a></span></dt><dt><span class="sect2"><a href="#V1.71.1_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1.71.1_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1.71.1_Highlighting">Highlighting</a></span></dt><dt><span class="sect2"><a href="#V1.71.1_Manpages">Manpages</a></span></dt><dt><span class="sect2"><a href="#V1.71.1_Params">Params</a></span></dt><dt><span class="sect2"><a href="#V1.71.1_Profiling">Profiling</a></span></dt></dl></dd><dt><span class="sect1"><a href="#V1.71.0">Release: 1.71.0</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1.71.0_Common">Common</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_Extensions">Extensions</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_Highlighting">Highlighting</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_Manpages">Manpages</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_Params">Params</a></span></dt><dt><span class="sect2"><a href="#V1.71.0_Tools">Tools</a></span></dt></dl></dd><dt><span class="sect1"><a href="#V1701">Release: 1.70.1</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1701_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1701_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1701_HTMLHelp">HTMLHelp</a></span></dt><dt><span class="sect2"><a href="#V1701_Params">Params</a></span></dt></dl></dd><dt><span class="sect1"><a href="#V1700">Release: 1.70.0</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1700_Common">Common</a></span></dt><dt><span class="sect2"><a href="#V1700_Extensions">Extensions</a></span></dt><dt><span class="sect2"><a href="#V1700_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1700_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1700_Manpages">Manpages</a></span></dt><dt><span class="sect2"><a href="#V1700_Params">Params</a></span></dt><dt><span class="sect2"><a href="#V1700_Profiling">Profiling</a></span></dt><dt><span class="sect2"><a href="#V1700_Tools">Tools</a></span></dt><dt><span class="sect2"><a href="#V1700_WordML">WordML</a></span></dt></dl></dd><dt><span class="sect1"><a href="#V1691">Release 1.69.1</a></span></dt><dt><span class="sect1"><a href="#V1690">Release 1.69.0</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1690_COMMON">Common</a></span></dt><dt><span class="sect2"><a href="#V1690_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1690_HELP">Help</a></span></dt><dt><span class="sect2"><a href="#V1690_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1690_MAN">man</a></span></dt></dl></dd><dt><span class="sect1"><a href="#V1681">Release 1.68.1</a></span></dt><dt><span class="sect1"><a href="#V1680">Release 1.68.0</a></span></dt><dt><span class="sect1"><a href="#V1672">Release 1.67.2</a></span></dt><dt><span class="sect1"><a href="#V1671">Release 1.67.1</a></span></dt><dt><span class="sect1"><a href="#V1670">Release 1.67.0</a></span></dt><dt><span class="sect1"><a href="#V1661">Release 1.66.1</a></span></dt><dt><span class="sect1"><a href="#V1650">Release 1.65.0</a></span></dt><dt><span class="sect1"><a href="#V1641">Release 1.64.1</a></span></dt><dt><span class="sect1"><a href="#V1610">Release 1.61.0</a></span></dt><dt><span class="sect1"><a href="#V1601">Release 1.60.1</a></span></dt><dt><span class="sect1"><a href="#V1592">Release 1.59.2</a></span></dt><dt><span class="sect1"><a href="#V1591">Release 1.59.1</a></span></dt><dt><span class="sect1"><a href="#V1580">Release 1.58.0</a></span></dt><dt><span class="sect1"><a href="#V1570">Release 1.57.0</a></span></dt><dt><span class="sect1"><a href="#V1560">Release 1.56.0</a></span></dt><dt><span class="sect1"><a href="#VOlder">Older releases</a></span></dt><dt><span class="sect1"><a href="#dot0">About dot-zero releases</a></span></dt></dl></div>


<p>These are the release notes for the DocBook XSL Stylesheets
distribution. This document provides an (incomplete) per-release list
of enhancements and changes to the stylesheets&#8217; public APIs
(user-configurable parameters) and generally excludes descriptions of
bug fixes. For a complete list of all changes (including all bug
fixes) that have been made since the previous release, see the
separate <a xmlns:xlink="http://www.w3.org/1999/xlink" href="NEWS" target="_top">NEWS</a> (plain text) or <a xmlns:xlink="http://www.w3.org/1999/xlink" href="NEWS.html" target="_top">NEWS.html</a> files.</p>

















<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1.72.0"></a>Release: 1.72.0</h2></div></div></div>

<p>This release includes important bug fixes and adds the following
significant feature changes:
</p><div class="variablelist"><dl><dt><span class="term">Automatic sorting of glossary entries</span></dt><dd>
      <p>The HTML and FO stylesheets now support automatic sorting
      of <a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element">glossary</code></a> entries. To enable glossary sorting, set
      the value of the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/glossary.sort.html"><em class="parameter"><code>glossary.sort </code></em></a> parameter
      to <code class="code">1</code> (by default, it&#8217;s value is
      <code class="code">0</code>). When you enable glossary sorting,
      <a href="http://docbook.org/tdg/en/html/glossentry.html"><code class="sgmltag-element">glossentry</code></a> elements within a <a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element"> glossary</code></a>,
      <a href="http://docbook.org/tdg/en/html/glossdiv.html"><code class="sgmltag-element">glossdiv</code></a>, or <a href="http://docbook.org/tdg/en/html/glosslist.html"><code class="sgmltag-element">glosslist</code></a> are sorted on the
      <a href="http://docbook.org/tdg/en/html/glossterm.html"><code class="sgmltag-element">glossterm</code></a>, using the current language setting. If you
      don&#8217;t enable glossary sorting, then the order of
      <a href="http://docbook.org/tdg/en/html/glossentry.html"><code class="sgmltag-element">glossentry</code></a> elements is left &#8220;as is&#8221; &#8212; that is, they
      are not sorted but are instead just displayed in document
      order.</p>
    </dd><dt><span class="term">WordML renamed to Roundtrip, OpenOffice support added</span></dt><dd>
    <p>Stylesheets for &#8220;roundtrip&#8221; conversion between documents in
    OpenOffice format (ODF) and DocBook XML have been added to the set
    of stylesheets that formerly had the collective title
    <em class="wordasword">WordML</em>, and that set of stylesheets has
    been renamed to <em class="wordasword">Roundtrip</em> to better
    reflect the actual scope and purpose of its contents.</p>
    <p>So the DocBook XSL Stylesheets now support roundtrip
    conversion (with certain limitations) of WordML, OpenOffice, and
    Apple Pages documents to and from DocBook XML.</p>
    </dd><dt><span class="term">Including QandASet questions in TOCs</span></dt><dd>
      <p>The HTML stylesheet now provides support for including
      <a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">QandASet</code></a> <a href="http://docbook.org/tdg/en/html/question.html"><code class="sgmltag-element">question</code></a>s in the document TOC. To
      enable display of <a href="http://docbook.org/tdg/en/html/question.html"><code class="sgmltag-element">question</code></a>s in the document TOC, set
      the value of the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.in.toc.html"><em class="parameter"><code>qanda.in.toc</code></em></a> to
      <code class="code">1</code> (by default, it&#8217;s <code class="code">0</code>). When you
      enable <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.in.toc.html"><em class="parameter"><code>qanda.in.toc</code></em></a>, then the generated
      table of contents for a document will include
      <a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a> titles, <a href="http://docbook.org/tdg/en/html/qandadiv.html"><code class="sgmltag-element">qandadiv</code></a> titles, and
      <a href="http://docbook.org/tdg/en/html/question.html"><code class="sgmltag-element">question</code></a> elements. The default value of zero
      excludes them from the TOC.
      </p><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3>
        <p>The <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.in.toc.html"><em class="parameter"><code>qanda.in.toc</code></em></a> parameter does
        not affect any tables of contents that may be generated
        <span class="emphasis"><em>within</em></span> a <a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a> or
        <a href="http://docbook.org/tdg/en/html/qandadiv.html"><code class="sgmltag-element">qandadiv</code></a> (only in the document TOC).</p>
      </div><p>
      </p>
    </dd><dt><span class="term">Language identifier in man-page filenames and pathnames</span></dt><dd>
      <p>Added new parameter <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>, which controls whether
      a language identifier is included in man-page filenames and
      pathnames. It works like this:</p>

      <p>If the value of <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a> is non-zero,
      man-page files are output with a language identifier included in
      their filenames or pathnames as follows:</p>

      <div class="itemizedlist"><ul type="disc"><li><p>if
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.subdirs.enabled.html"><em class="parameter"><code>man.output.subdirs.enabled</code></em></a> is non-zero,
        each file is output to, e.g., a
        <code class="filename">/$lang/man8/foo.8</code> pathname</p></li><li><p>if
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.subdirs.enabled.html"><em class="parameter"><code>man.output.subdirs.enabled</code></em></a> is zero,
        each file is output with a <code class="sgmltag-element">foo.$lang.8</code>
        filename</p></li></ul></div>

    </dd><dt><span class="term"><em class="parameter"><code>index.page.number.properties</code></em> property set</span></dt><dd>
      <p>For FO output, use the
      <em class="parameter"><code>index.page.number.properties</code></em> to control
      formatting of page numbers in <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a> output &#8212; to (for
      example) to display page numbers in <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a> output in a
      different color (to indicate that they are links).</p>
    </dd><dt><span class="term">Crop marks in output from Antenna House XSL Formatter</span></dt><dd>
      <p>Support has been added for generating crop marks in
      print/PDF output generated using Antenna House XSL Formatter</p>
    </dd><dt><span class="term">More string-substitution hooks in manpages output</span></dt><dd>
      <p>The <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.local.pre.html"><em class="parameter"><code>man.string.subst.map.local.pre</code></em></a>
      and <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.local.post.html"><em class="parameter"><code>man.string.subst.map.local.post</code></em></a>
      parameters have been added to enable easier control over
      custom string substitutions.</p>
    </dd><dt><span class="term">Moved verbatim properties to attribute-set</span></dt><dd>
      <p>The hardcoded properties used in verbatim elements (literallayout,
      programlisting, screen) were moved to the verbatim.properties 
      attribute-set so they can be more easily customized.</p>
    </dd><dt><span class="term">enhanced simple.xlink template</span></dt><dd>
      <p>Now the simple.xlink template in inline.xsl works with
      cross reference elements xref and link as well.  Also, more elements
      call simple.xlink, which enables DB5 xlink functionality.
      </p>
    </dd><dt><span class="term">DocBook 5 compatibility</span></dt><dd>
      <p>Stylesheets now consistently support DocBook 5 attributes
      (such as xml:id). Also, DocBook 5 info elements are now checked
      along with other *info elements, and the use of name() function
      was replaced by local-name() so it also matches on DocBook 5 elements.
      These changes enable reusing the stylesheets with DocBook 5 
      documents with minimal fixup.
      </p>
    </dd><dt><span class="term">HTML class attributes now handled in class.attribute mode </span></dt><dd>
      <p>The HTML class attributes were formerly hardcoded to the 
      element name.  Now the class attribute is generated by applying
      templates in class.attribute mode so class attribute names
      can be customized. The default is still the element name.</p>
    </dd><dt><span class="term">arabic-indic numbering enabled in autolabels</span></dt><dd>
      <p>Numbering of chapter, sections, and pages can now use
      arabic-indic numbering when number format is set to 'arabicindic' or
      to &#1633;.</p>
    </dd></dl></div><p>
The following is a detailed list of changes (not
including bug fixes) that have been made since the 1.71.1
release.</p>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_Common"></a>Common</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">common</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/labels.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;arabicindic&nbsp;numbering&nbsp;to&nbsp;autolabel.format&nbsp;template.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/gentext.xsl; M: /trunk/xsl/common/titles.xsl - Robert Stayton" class="commit-message">Finish&nbsp;support&nbsp;for&nbsp;@xml:id&nbsp;everywhere&nbsp;@id&nbsp;is&nbsp;used.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/l10n.xsl; M: /trunk/xsl/common/olink.xsl; M: /trunk/xsl/common/subtitles.xsl; M: /trunk/xsl/common/labels.xsl; M: /trunk/xsl/common/titles.xsl; M: /trunk/xsl/common/common.xsl - Robert Stayton" class="commit-message">replace&nbsp;name()&nbsp;with&nbsp;local-name()&nbsp;in&nbsp;most&nbsp;cases.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/subtitles.xsl; M: /trunk/xsl/common/labels.xsl; M: /trunk/xsl/common/titles.xsl; M: /trunk/xsl/common/common.xsl; M: /trunk/xsl/common/targets.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;<a href="http://docbook.org/tdg/en/html/info.html"><code class="sgmltag-element">info</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/table.xsl - Robert Stayton" class="commit-message">Add&nbsp;utility&nbsp;template&nbsp;tabstyle&nbsp;to&nbsp;return&nbsp;the&nbsp;tabstyle&nbsp;from<br>
any&nbsp;<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>&nbsp;element.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_FO"></a>FO</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">fo</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent; M: /trunk/xsl/fo/glossary.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;sorting&nbsp;<a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element">glossary</code></a>&nbsp;entries</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/table.xsl - Robert Stayton" class="commit-message">Add&nbsp;table.row.properties&nbsp;template&nbsp;to&nbsp;customize&nbsp;<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>&nbsp;rows.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/verbatim.xsl - Robert Stayton" class="commit-message">Moved&nbsp;all&nbsp;properties&nbsp;to&nbsp;attribute-sets&nbsp;so&nbsp;can&nbsp;be&nbsp;customized&nbsp;more&nbsp;easily.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton" class="commit-message">Add&nbsp;index.page.number.properties&nbsp;attribute-set&nbsp;to&nbsp;format&nbsp;page&nbsp;numbers.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/xref.xsl - Robert Stayton" class="commit-message"><a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a>&nbsp;now&nbsp;supports&nbsp;xlink:href,&nbsp;using&nbsp;simple.xlink&nbsp;template.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/inline.xsl - Robert Stayton" class="commit-message">Rewrote&nbsp;simple.xlink,&nbsp;and&nbsp;call&nbsp;it&nbsp;with&nbsp;all&nbsp;charseq&nbsp;templates.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/lists.xsl - Robert Stayton" class="commit-message">Add&nbsp;simple.xlink&nbsp;processing&nbsp;to&nbsp;<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/member.html"><code class="sgmltag-element">member</code></a>&nbsp;elements.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/axf.xsl; M: /trunk/xsl/fo/pagesetup.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;crop&nbsp;marks&nbsp;in&nbsp;Antenna&nbsp;House.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_HTML"></a>HTML</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">html</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/glossary.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;sorting&nbsp;<a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element">glossary</code></a>&nbsp;entries</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/autotoc.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.in.toc.html"><em class="parameter"><code>qanda.in.toc</code></em></a>&nbsp;to&nbsp;add&nbsp;<a href="http://docbook.org/tdg/en/html/qandaentry.html"><code class="sgmltag-element">qandaentry</code></a>&nbsp;questions&nbsp;to&nbsp;document&nbsp;<a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">TOC</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/lists.xsl - Robert Stayton" class="commit-message">add&nbsp;simple.xlink&nbsp;support&nbsp;to&nbsp;<a href="http://docbook.org/tdg/en/html/variablelist.html"><code class="sgmltag-element">variablelist</code></a>&nbsp;<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/simplelist.html"><code class="sgmltag-element">simplelist</code></a>&nbsp;<a href="http://docbook.org/tdg/en/html/member.html"><code class="sgmltag-element">member</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/block.xsl; M: /trunk/xsl/html/footnote.xsl - Robert Stayton" class="commit-message">*.propagates.style&nbsp;now&nbsp;handled&nbsp;in&nbsp;class.attribute&nbsp;mode.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/html.xsl - Robert Stayton" class="commit-message">add&nbsp;class&nbsp;parameter&nbsp;to&nbsp;class.attribute&nbsp;mode&nbsp;to&nbsp;set&nbsp;default&nbsp;class.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/chunk-code.xsl; M: /trunk/xsl/html/division.xsl; M: /trunk/xsl/html/sections.xsl; M: /trunk/xsl/html/math.xsl; M: /trunk/xsl/html/block.xsl; M: /trunk/xsl/html/info.xsl; M: /trunk/xsl/html/footnote.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/admon.xsl; M: /trunk/xsl/html/refentry.xsl; M: /trunk/xsl/html/qandaset.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/biblio.xsl; M: /trunk/xsl/html/task.xsl; M: /trunk/xsl/html/component.xsl; M: /trunk/xsl/html/glossary.xsl; M: /trunk/xsl/html/callout.xsl; M: /trunk/xsl/html/index.xsl; M: /trunk/xsl/html/synop.xsl; M: /trunk/xsl/html/verbatim.xsl; M: /trunk/xsl/html/ebnf.xsl - Robert Stayton" class="commit-message">Convert&nbsp;all&nbsp;class&nbsp;attributes&nbsp;to&nbsp;use&nbsp;the&nbsp;class.attribute&nbsp;mode<br>
so&nbsp;class&nbsp;names&nbsp;can&nbsp;be&nbsp;customized&nbsp;more&nbsp;easily.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/html.xsl - Robert Stayton" class="commit-message">Add&nbsp;class.attribute&nbsp;mode&nbsp;to&nbsp;generate&nbsp;class&nbsp;attributes.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl - Robert Stayton" class="commit-message">Added&nbsp;simple.xlink&nbsp;to&nbsp;most&nbsp;remaining&nbsp;inlines.<br>
Changed&nbsp;class&nbsp;attributes&nbsp;to&nbsp;applying&nbsp;class.attributes&nbsp;mode.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/xref.xsl - Robert Stayton" class="commit-message">Changed&nbsp;<a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a>&nbsp;template&nbsp;to&nbsp;use&nbsp;simple.xlink&nbsp;tempalte.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/html.xsl - Robert Stayton" class="commit-message">Improve&nbsp;generate.html.title&nbsp;to&nbsp;work&nbsp;with&nbsp;<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>&nbsp;targets&nbsp;too.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl - Robert Stayton" class="commit-message">Improved&nbsp;simple.xlink&nbsp;to&nbsp;support&nbsp;<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/xref.xsl - Robert Stayton" class="commit-message">Use&nbsp;new&nbsp;link.title.attribute&nbsp;now.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl - Robert Stayton" class="commit-message">Rewrote&nbsp;simple.xlink&nbsp;to&nbsp;handle&nbsp;linkend&nbsp;also.<br>
Better&nbsp;computation&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;attribute&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>&nbsp;too.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/db5strip.xsl - Robert Stayton" class="commit-message">Handle&nbsp;Xalan&nbsp;quirk&nbsp;as&nbsp;special&nbsp;case.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/admon.xsl; M: /trunk/xsl/html/autotoc.xsl; M: /trunk/xsl/html/lists.xsl; M: /trunk/xsl/html/refentry.xsl; M: /trunk/xsl/html/biblio.xsl; M: /trunk/xsl/html/qandaset.xsl; M: /trunk/xsl/html/component.xsl; M: /trunk/xsl/html/glossary.xsl; M: /trunk/xsl/html/division.xsl; M: /trunk/xsl/html/index.xsl; M: /trunk/xsl/html/sections.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/block.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;<a href="http://docbook.org/tdg/en/html/info.html"><code class="sgmltag-element">info</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/graphics.xsl - Robert Stayton" class="commit-message">Fixed&nbsp;imagemaps&nbsp;so&nbsp;they&nbsp;work&nbsp;properly&nbsp;going&nbsp;from&nbsp;calspair&nbsp;coords<br>
to&nbsp;HTML&nbsp;<a href="http://docbook.org/tdg/en/html/area.html"><code class="sgmltag-element">area</code></a>&nbsp;coords.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_Manpages"></a>Manpages</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">manpages</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;doc&nbsp;for&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>&nbsp;parameter.&nbsp;This<br>
checkin&nbsp;completes&nbsp;support&nbsp;for&nbsp;writing&nbsp;file/pathnames&nbsp;for&nbsp;man-pages<br>
with&nbsp;$lang&nbsp;include&nbsp;in&nbsp;the&nbsp;names.&nbsp;Closes&nbsp;#1585967.&nbsp;knightly<br>
accolades&nbsp;to&nbsp;Daniel&nbsp;Leidert&nbsp;for&nbsp;providing&nbsp;the&nbsp;feature&nbsp;request.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;new&nbsp;param&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>,&nbsp;which<br>
controls&nbsp;whether&nbsp;$LANG&nbsp;value&nbsp;is&nbsp;included&nbsp;in&nbsp;manpages<br>
filenames&nbsp;and&nbsp;pathnames.&nbsp;It&nbsp;works&nbsp;like&nbsp;this:<br>
<br>
If&nbsp;the&nbsp;value&nbsp;of&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>&nbsp;is&nbsp;non-zero,<br>
man-page&nbsp;files&nbsp;are&nbsp;output&nbsp;with&nbsp;the&nbsp;$lang&nbsp;value&nbsp;included&nbsp;in<br>
their&nbsp;filenames&nbsp;or&nbsp;pathnames&nbsp;as&nbsp;follows;<br>
<br>
-&nbsp;if&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.subdirs.enabled.html"><em class="parameter"><code>man.output.subdirs.enabled</code></em></a>&nbsp;is&nbsp;non-zero,&nbsp;each&nbsp;file&nbsp;is<br>
&nbsp;&nbsp;output&nbsp;to,&nbsp;e.g.,&nbsp;a&nbsp;/$lang/man8/foo.8&nbsp;pathname<br>
<br>
-&nbsp;if&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.subdirs.enabled.html"><em class="parameter"><code>man.output.subdirs.enabled</code></em></a>&nbsp;is&nbsp;zero,&nbsp;each&nbsp;file&nbsp;is&nbsp;output<br>
&nbsp;&nbsp;with&nbsp;a&nbsp;foo.$lang.8&nbsp;<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/charmap.groff.xsl - Michael(tm) Smith" class="commit-message">Use&nbsp;"\e"&nbsp;instead&nbsp;of&nbsp;"\\"&nbsp;for&nbsp;backslash&nbsp;output,&nbsp;because&nbsp;the<br>
groff&nbsp;docs&nbsp;say&nbsp;that's&nbsp;the&nbsp;correct&nbsp;thing&nbsp;to&nbsp;do;&nbsp;also&nbsp;because<br>
testing&nbsp;(thanks,&nbsp;Paul&nbsp;Dubois)&nbsp;shows&nbsp;that&nbsp;"\\"&nbsp;doesn't&nbsp;always<br>
work&nbsp;as&nbsp;expected;&nbsp;for&nbsp;example,&nbsp;"\\"&nbsp;within&nbsp;a&nbsp;<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>&nbsp;seems&nbsp;to<br>
mess&nbsp;things&nbsp;up.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent; M: /trunk/xsl/manpages/other.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;the&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.local.pre.html"><em class="parameter"><code>man.string.subst.map.local.pre</code></em></a>&nbsp;and<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.local.post.html"><em class="parameter"><code>man.string.subst.map.local.post</code></em></a>&nbsp;parameters.&nbsp;Those&nbsp;parameters<br>
enable&nbsp;local&nbsp;additions&nbsp;and&nbsp;changes&nbsp;to&nbsp;string-substitution&nbsp;mappings<br>
without&nbsp;the&nbsp;need&nbsp;to&nbsp;change&nbsp;the&nbsp;value&nbsp;of&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.html"><em class="parameter"><code>man.string.subst.map</code></em></a><br>
parameter&nbsp;(which&nbsp;is&nbsp;for&nbsp;standard&nbsp;system&nbsp;mappings).&nbsp;Closes<br>
#1456738.&nbsp;Thanks&nbsp;to&nbsp;Sam&nbsp;Steingold&nbsp;for&nbsp;constructing&nbsp;a&nbsp;true<br>
stylesheet&nbsp;torture&nbsp;test&nbsp;(the&nbsp;clisp&nbsp;docs)&nbsp;that&nbsp;exposed&nbsp;the&nbsp;need&nbsp;for<br>
these&nbsp;params.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/inline.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;the&nbsp;Markup&nbsp;element&nbsp;to&nbsp;the&nbsp;list&nbsp;of&nbsp;elements&nbsp;that&nbsp;get&nbsp;output<br>
in&nbsp;bold.&nbsp;Thanks&nbsp;to&nbsp;Eric&nbsp;S.&nbsp;Raymond.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/table.xsl; M: /trunk/xsl/manpages/synop.xsl; M: /trunk/xsl/manpages/block.xsl; M: /trunk/xsl/manpages/info.xsl; M: /trunk/xsl/manpages/lists.xsl; M: /trunk/xsl/manpages/refentry.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith" class="commit-message">Replaced&nbsp;all&nbsp;dots&nbsp;in&nbsp;roff&nbsp;requests&nbsp;with&nbsp;U+2302&nbsp;("house"<br>
character),&nbsp;and&nbsp;added&nbsp;escaping&nbsp;in&nbsp;output&nbsp;for&nbsp;all&nbsp;instances&nbsp;of&nbsp;dot<br>
that&nbsp;are&nbsp;not&nbsp;in&nbsp;roff&nbsp;requests.&nbsp;This&nbsp;fixes&nbsp;the&nbsp;problem&nbsp;case&nbsp;where&nbsp;a<br>
string&nbsp;beginning&nbsp;with&nbsp;a&nbsp;dot&nbsp;(for&nbsp;example,&nbsp;the&nbsp;string&nbsp;".bashrc")<br>
might&nbsp;occur&nbsp;at&nbsp;the&nbsp;beginning&nbsp;of&nbsp;a&nbsp;line&nbsp;in&nbsp;output,&nbsp;in&nbsp;which&nbsp;case&nbsp;<br>
would&nbsp;mistakenly&nbsp;get&nbsp;interpreted&nbsp;as&nbsp;a&nbsp;roff&nbsp;request.&nbsp;Thanks&nbsp;to&nbsp;Eric<br>
S.&nbsp;Raymond&nbsp;for&nbsp;pushing&nbsp;to&nbsp;fix&nbsp;this.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/lists.xsl - Michael(tm) Smith" class="commit-message">Made&nbsp;change&nbsp;to&nbsp;ensure&nbsp;that&nbsp;list&nbsp;content&nbsp;nested&nbsp;in<br>
<a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a>&nbsp;instances&nbsp;is&nbsp;properly&nbsp;indented.&nbsp;This<br>
is&nbsp;a&nbsp;switch&nbsp;from&nbsp;using&nbsp;.TP&nbsp;to&nbsp;format&nbsp;those&nbsp;lists&nbsp;to&nbsp;using&nbsp;.RS/.RE<br>
to&nbsp;format&nbsp;them&nbsp;instead&nbsp;(because&nbsp;.TP&nbsp;does&nbsp;not&nbsp;allow&nbsp;nesting).&nbsp;Closes&nbsp;bug&nbsp;#1602616.<br>
Thanks&nbsp;to&nbsp;Daniel&nbsp;Leidert.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_Params"></a>Params</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">params</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/man.output.lang.in.name.enabled.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;doc&nbsp;for&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>&nbsp;parameter.&nbsp;This<br>
checkin&nbsp;completes&nbsp;support&nbsp;for&nbsp;writing&nbsp;file/pathnames&nbsp;for&nbsp;man-pages<br>
with&nbsp;$lang&nbsp;include&nbsp;in&nbsp;the&nbsp;names.&nbsp;Closes&nbsp;#1585967.&nbsp;knightly<br>
accolades&nbsp;to&nbsp;Daniel&nbsp;Leidert&nbsp;for&nbsp;providing&nbsp;the&nbsp;feature&nbsp;request.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;new&nbsp;param&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>,&nbsp;which<br>
controls&nbsp;whether&nbsp;$LANG&nbsp;value&nbsp;is&nbsp;included&nbsp;in&nbsp;manpages<br>
filenames&nbsp;and&nbsp;pathnames.&nbsp;It&nbsp;works&nbsp;like&nbsp;this:<br>
<br>
If&nbsp;the&nbsp;value&nbsp;of&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.lang.in.name.enabled.html"><em class="parameter"><code>man.output.lang.in.name.enabled</code></em></a>&nbsp;is&nbsp;non-zero,<br>
man-page&nbsp;files&nbsp;are&nbsp;output&nbsp;with&nbsp;the&nbsp;$lang&nbsp;value&nbsp;included&nbsp;in<br>
their&nbsp;filenames&nbsp;or&nbsp;pathnames&nbsp;as&nbsp;follows;<br>
<br>
-&nbsp;if&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.subdirs.enabled.html"><em class="parameter"><code>man.output.subdirs.enabled</code></em></a>&nbsp;is&nbsp;non-zero,&nbsp;each&nbsp;file&nbsp;is<br>
&nbsp;&nbsp;output&nbsp;to,&nbsp;e.g.,&nbsp;a&nbsp;/$lang/man8/foo.8&nbsp;pathname<br>
<br>
-&nbsp;if&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.subdirs.enabled.html"><em class="parameter"><code>man.output.subdirs.enabled</code></em></a>&nbsp;is&nbsp;zero,&nbsp;each&nbsp;file&nbsp;is&nbsp;output<br>
&nbsp;&nbsp;with&nbsp;a&nbsp;foo.$lang.8&nbsp;<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/man.string.subst.map.local.post.xml; A: /trunk/xsl/params/man.string.subst.map.local.pre.xml; M: /trunk/xsl/params/man.string.subst.map.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;the&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.local.pre.html"><em class="parameter"><code>man.string.subst.map.local.pre</code></em></a>&nbsp;and<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.local.post.html"><em class="parameter"><code>man.string.subst.map.local.post</code></em></a>&nbsp;parameters.&nbsp;Those&nbsp;parameters<br>
enable&nbsp;local&nbsp;additions&nbsp;and&nbsp;changes&nbsp;to&nbsp;string-substitution&nbsp;mappings<br>
without&nbsp;the&nbsp;need&nbsp;to&nbsp;change&nbsp;the&nbsp;value&nbsp;of&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.html"><em class="parameter"><code>man.string.subst.map</code></em></a><br>
parameter&nbsp;(which&nbsp;is&nbsp;for&nbsp;standard&nbsp;system&nbsp;mappings).&nbsp;Closes<br>
#1456738.&nbsp;Thanks&nbsp;to&nbsp;Sam&nbsp;Steingold&nbsp;for&nbsp;constructing&nbsp;a&nbsp;true<br>
stylesheet&nbsp;torture&nbsp;test&nbsp;(the&nbsp;clisp&nbsp;docs)&nbsp;that&nbsp;exposed&nbsp;the&nbsp;need&nbsp;for<br>
these&nbsp;params.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/params/xep.index.item.properties.xml - Robert Stayton" class="commit-message">Add&nbsp;index.page.number.properties&nbsp;by&nbsp;default.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/index.page.number.properties.xml - Robert Stayton" class="commit-message">Added&nbsp;<em class="parameter"><code>index.page.number.properties</code></em>&nbsp;to&nbsp;allow&nbsp;customizations&nbsp;of&nbsp;page&nbsp;numbers&nbsp;in&nbsp;indexes.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/params/olink.properties.xml - Robert Stayton" class="commit-message">Move&nbsp;show-destination="replace"&nbsp;property&nbsp;from&nbsp;template&nbsp;to&nbsp;attribute-set<br>
so&nbsp;it&nbsp;can&nbsp;be&nbsp;customized.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/glossary.sort.xml - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;sorting&nbsp;<a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element">glossary</code></a>&nbsp;entries</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/qanda.in.toc.xml - Robert Stayton" class="commit-message">Add&nbsp;option&nbsp;to&nbsp;include&nbsp;qanda&nbsp;in&nbsp;tables&nbsp;of&nbsp;contents.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/params/verbatim.properties.xml - Robert Stayton" class="commit-message">Moved&nbsp;all&nbsp;properties&nbsp;to&nbsp;attribute-sets&nbsp;so&nbsp;can&nbsp;be&nbsp;customized&nbsp;more&nbsp;easily.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_Template"></a>Template</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">template</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/template/titlepage.xsl - Mauritz Jeanson" class="commit-message">Added&nbsp;workaround&nbsp;for&nbsp;Xalan&nbsp;bug:&nbsp;use&nbsp;for-each&nbsp;and&nbsp;copy&nbsp;instead&nbsp;of&nbsp;copy-of&nbsp;(#1604770).</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.72.0_Roundtrip"></a>Roundtrip</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">roundtrip</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/roundtrip/docbook-pages.xsl; M: /trunk/xsl/roundtrip/specifications.xml; A: /trunk/xsl/roundtrip/dbk2ooo.xsl; M: /trunk/xsl/roundtrip/docbook.xsl; A: /trunk/xsl/roundtrip/dbk2pages.xsl; M: /trunk/xsl/roundtrip/template.xml; A: /trunk/xsl/roundtrip/dbk2wordml.xsl; A: /trunk/xsl/roundtrip/dbk2wp.xsl; M: /trunk/xsl/roundtrip/template.dot; M: /trunk/xsl/roundtrip/wordml-final.xsl - Steve Ball" class="commit-message">rename&nbsp;to&nbsp;roundtrip,&nbsp;add&nbsp;OpenOffice&nbsp;support</span></p></div>
</li></ul></div>
</div>
</div>

<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1.71.1"></a>Release: 1.71.1</h2></div></div></div>

<p>This is a minor update to the 1.71.0 release. Along with a
number of bug fixes, it includes two feature changes:

</p><div class="itemizedlist"><ul type="disc"><li>
    <p>Added support for profiling based on <code class="sgmltag-attribute">xml:lang</code> and <code class="sgmltag-attribute">status</code> attributes.</p>
  </li><li>
    <p>Added initial support in manpages output for
    <a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>, <a href="http://docbook.org/tdg/en/html/annotation.html"><code class="sgmltag-element">annotation</code></a>, and <a href="http://docbook.org/tdg/en/html/alt.html"><code class="sgmltag-element">alt</code></a>
    instances. Basically, they all now get handled the same way
    <code class="sgmltag-element">ulink</code> instances are. They are treated as a class as
    "note sources": A numbered marker is generated at the place in the
    main text flow where they occur, then their contents are displayed
    in an endnotes section at the end of the man page.</p>
  </li></ul></div><p>
</p>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_Common"></a>Common</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">common</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="D: /trunk/xsl/common/autoidx-ng.xsl - Jirka Kosek" class="commit-message">For&nbsp;backward&nbsp;compatability&nbsp;autoidx-ng.xsl&nbsp;is&nbsp;invoking&nbsp;"kosek"&nbsp;indexing&nbsp;method&nbsp;again.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/stripns.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;Xalan&nbsp;generating&nbsp;a&nbsp;root&nbsp;xml:base&nbsp;like&nbsp;saxon.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_FO"></a>FO</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">fo</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/autoidx-ng.xsl; M: /trunk/xsl/fo/autoidx-kosek.xsl - Jirka Kosek" class="commit-message">For&nbsp;backward&nbsp;compatability&nbsp;autoidx-ng.xsl&nbsp;is&nbsp;invoking&nbsp;"kosek"&nbsp;indexing&nbsp;method&nbsp;again.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/docbook.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;Xalan&nbsp;to&nbsp;add&nbsp;root&nbsp;node&nbsp;xml:base&nbsp;for&nbsp;db5&nbsp;docs.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Jirka Kosek" class="commit-message">Added&nbsp;support&nbsp;for&nbsp;profiling&nbsp;based&nbsp;on&nbsp;xml:lang&nbsp;and&nbsp;status&nbsp;attributes.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_HTML"></a>HTML</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">html</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/autoidx-ng.xsl; M: /trunk/xsl/html/autoidx-kosek.xsl - Jirka Kosek" class="commit-message">For&nbsp;backward&nbsp;compatability&nbsp;autoidx-ng.xsl&nbsp;is&nbsp;invoking&nbsp;"kosek"&nbsp;indexing&nbsp;method&nbsp;again.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/chunk-code.xsl; M: /trunk/xsl/html/docbook.xsl - Robert Stayton" class="commit-message">Add&nbsp;support&nbsp;for&nbsp;Xalan&nbsp;to&nbsp;add&nbsp;root&nbsp;node&nbsp;xml:base&nbsp;for&nbsp;db5&nbsp;docs.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Jirka Kosek" class="commit-message">Added&nbsp;support&nbsp;for&nbsp;profiling&nbsp;based&nbsp;on&nbsp;xml:lang&nbsp;and&nbsp;status&nbsp;attributes.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/oldchunker.xsl; M: /trunk/xsl/html/chunker.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/callout.xsl; M: /trunk/xsl/html/autoidx-kimber.xsl; M: /trunk/xsl/html/autoidx-kosek.xsl; M: /trunk/xsl/html/table.xsl; M: /trunk/xsl/html/verbatim.xsl - Michael(tm) Smith" class="commit-message">Made&nbsp;changes&nbsp;in&nbsp;namespace&nbsp;declarations&nbsp;to&nbsp;prevent&nbsp;xmllint's<br>
canonicalizer&nbsp;from&nbsp;treating&nbsp;them&nbsp;as&nbsp;relative&nbsp;namespace&nbsp;URIs.<br>
<br>
&nbsp;&nbsp;-&nbsp;Changed&nbsp;xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"<br>
&nbsp;&nbsp;&nbsp;&nbsp;to&nbsp;xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService";<br>
&nbsp;&nbsp;&nbsp;&nbsp;Saxon&nbsp;accepts&nbsp;either&nbsp;form<br>
&nbsp;&nbsp;&nbsp;&nbsp;(see&nbsp;http://www.saxonica.com/documentation/extensibility/functions.html);<br>
&nbsp;&nbsp;&nbsp;&nbsp;to&nbsp;Saxon,&nbsp;"the&nbsp;part&nbsp;of&nbsp;the&nbsp;URI&nbsp;before&nbsp;the&nbsp;final&nbsp;'/'&nbsp;is&nbsp;immaterial".<br>
<br>
&nbsp;&nbsp;-&nbsp;Changed,&nbsp;e.g.&nbsp;xmlns:xverb="com.nwalsh.xalan.Verbatim"&nbsp;to<br>
&nbsp;&nbsp;&nbsp;&nbsp;xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim";&nbsp;Xalan&nbsp;accepts<br>
&nbsp;&nbsp;&nbsp;&nbsp;either&nbsp;form<br>
&nbsp;&nbsp;&nbsp;&nbsp;(see&nbsp;http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare);<br>
&nbsp;&nbsp;&nbsp;&nbsp;just&nbsp;as&nbsp;Saxon&nbsp;does,&nbsp;it&nbsp;will&nbsp;"simply&nbsp;use&nbsp;the&nbsp;string&nbsp;to&nbsp;the<br>
&nbsp;&nbsp;&nbsp;&nbsp;right&nbsp;of&nbsp;the&nbsp;rightmost&nbsp;forward&nbsp;slash&nbsp;as&nbsp;the&nbsp;Java&nbsp;class&nbsp;name".<br>
<br>
&nbsp;&nbsp;-&nbsp;Changed&nbsp;xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect"<br>
&nbsp;&nbsp;&nbsp;&nbsp;to&nbsp;xmlns:redirect="http://xml.apache.org/xalan/redirect",&nbsp;and<br>
&nbsp;&nbsp;&nbsp;&nbsp;adjusted&nbsp;associated&nbsp;code&nbsp;to&nbsp;make&nbsp;the&nbsp;current&nbsp;Xalan&nbsp;redirect&nbsp;spec.<br>
&nbsp;&nbsp;&nbsp;&nbsp;(see&nbsp;http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/chunk-common.xsl; M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/docbook.xsl; M: /trunk/xsl/html/graphics.xsl; M: /trunk/xsl/html/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;the&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/html.append.html"><em class="parameter"><code>html.append</code></em></a>&nbsp;and&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.append.html"><em class="parameter"><code>chunk.append</code></em></a>&nbsp;parameters.&nbsp;By&nbsp;default,&nbsp;the<br>
value&nbsp;of&nbsp;both&nbsp;is&nbsp;empty;&nbsp;but&nbsp;the&nbsp;internal&nbsp;DocBook&nbsp;XSL&nbsp;stylesheets<br>
build&nbsp;sets&nbsp;their&nbsp;value&nbsp;to&nbsp;"&lt;xsl:text&gt;&amp;#x0a;&lt;/xsl:text&gt;",&nbsp;in&nbsp;order<br>
to&nbsp;ensure&nbsp;that&nbsp;all&nbsp;files&nbsp;in&nbsp;the&nbsp;docbook-xsl-doc&nbsp;package&nbsp;end&nbsp;in&nbsp;a<br>
newline&nbsp;character.&nbsp;(Because&nbsp;diff&nbsp;and&nbsp;some&nbsp;other&nbsp;tools&nbsp;may&nbsp;emit<br>
error&nbsp;messages&nbsp;and/or&nbsp;not&nbsp;behave&nbsp;as&nbsp;expected&nbsp;when&nbsp;processing<br>
files&nbsp;that&nbsp;are&nbsp;not&nbsp;newline-terminated.)</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_Highlighting"></a>Highlighting</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">highlighting</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/highlighting/delphi-hl.xml; M: /trunk/xsl/highlighting/myxml-hl.xml; M: /trunk/xsl/highlighting/php-hl.xml; M: /trunk/xsl/highlighting/m2-hl.xml; M: /trunk/xsl/highlighting/ini-hl.xml; M: /trunk/xsl/highlighting/xslthl-config.xml; M: /trunk/xsl/highlighting/java-hl.xml - Jirka Kosek" class="commit-message">Added&nbsp;license&nbsp;information</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_Manpages"></a>Manpages</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">manpages</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/table.xsl; M: /trunk/xsl/manpages/block.xsl; M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl; M: /trunk/xsl/manpages/utility.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;initial&nbsp;support&nbsp;in&nbsp;manpages&nbsp;output&nbsp;for&nbsp;<a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>,&nbsp;<a href="http://docbook.org/tdg/en/html/annotation.html"><code class="sgmltag-element">annotation</code></a>,<br>
and&nbsp;<a href="http://docbook.org/tdg/en/html/alt.html"><code class="sgmltag-element">alt</code></a>&nbsp;instances.&nbsp;Basically,&nbsp;they&nbsp;all&nbsp;now&nbsp;get&nbsp;handled&nbsp;the&nbsp;same<br>
way&nbsp;ulink&nbsp;instances&nbsp;are.&nbsp;They&nbsp;are&nbsp;treated&nbsp;as&nbsp;a&nbsp;class&nbsp;as&nbsp;"note<br>
sources":&nbsp;A&nbsp;numbered&nbsp;marker&nbsp;is&nbsp;generated&nbsp;at&nbsp;the&nbsp;place&nbsp;in&nbsp;the&nbsp;main<br>
text&nbsp;flow&nbsp;where&nbsp;they&nbsp;occur,&nbsp;then&nbsp;their&nbsp;contents&nbsp;are&nbsp;displayed&nbsp;in<br>
an&nbsp;endnotes&nbsp;<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>&nbsp;at&nbsp;the&nbsp;end&nbsp;of&nbsp;the&nbsp;man&nbsp;page&nbsp;(currently&nbsp;titled<br>
REFERENCES,&nbsp;for&nbsp;English&nbsp;output,&nbsp;but&nbsp;will&nbsp;be&nbsp;changed&nbsp;to&nbsp;NOTES).<br>
<br>
This&nbsp;support&nbsp;is&nbsp;not&nbsp;yet&nbsp;complete.&nbsp;It&nbsp;works&nbsp;for&nbsp;most&nbsp;"normal"<br>
cases,&nbsp;but&nbsp;probably&nbsp;mishandles&nbsp;a&nbsp;good&nbsp;number&nbsp;of&nbsp;cases.&nbsp;More<br>
testing&nbsp;will&nbsp;be&nbsp;needed&nbsp;to&nbsp;expose&nbsp;the&nbsp;problems.&nbsp;It&nbsp;may&nbsp;well&nbsp;also<br>
introduce&nbsp;some&nbsp;bugs&nbsp;and&nbsp;regressions&nbsp;in&nbsp;other&nbsp;areas,&nbsp;including<br>
basic&nbsp;paragraph&nbsp;handling,&nbsp;handling&nbsp;of&nbsp;"mixed&nbsp;block"&nbsp;content,<br>
handling&nbsp;of&nbsp;other&nbsp;indented&nbsp;content,&nbsp;and&nbsp;handling&nbsp;of&nbsp;authorblurb<br>
and&nbsp;<a href="http://docbook.org/tdg/en/html/personblurb.html"><code class="sgmltag-element">personblurb</code></a>&nbsp;in&nbsp;the&nbsp;AUTHORS&nbsp;<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_Params"></a>Params</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">params</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/profile.status.xml - Jirka Kosek" class="commit-message">Added&nbsp;support&nbsp;for&nbsp;profiling&nbsp;based&nbsp;on&nbsp;xml:lang&nbsp;and&nbsp;status&nbsp;attributes.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/html.append.xml; A: /trunk/xsl/params/chunk.append.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;the&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/html.append.html"><em class="parameter"><code>html.append</code></em></a>&nbsp;and&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.append.html"><em class="parameter"><code>chunk.append</code></em></a>&nbsp;parameters.&nbsp;By&nbsp;default,&nbsp;the<br>
value&nbsp;of&nbsp;both&nbsp;is&nbsp;empty;&nbsp;but&nbsp;the&nbsp;internal&nbsp;DocBook&nbsp;XSL&nbsp;stylesheets<br>
build&nbsp;sets&nbsp;their&nbsp;value&nbsp;to&nbsp;"&lt;xsl:text&gt;&amp;#x0a;&lt;/xsl:text&gt;",&nbsp;in&nbsp;order<br>
to&nbsp;ensure&nbsp;that&nbsp;all&nbsp;files&nbsp;in&nbsp;the&nbsp;docbook-xsl-doc&nbsp;<a href="http://docbook.org/tdg/en/html/package.html"><code class="sgmltag-element">package</code></a>&nbsp;end&nbsp;in&nbsp;a<br>
newline&nbsp;character.&nbsp;(Because&nbsp;diff&nbsp;and&nbsp;some&nbsp;other&nbsp;tools&nbsp;may&nbsp;emit<br>
error&nbsp;messages&nbsp;and/or&nbsp;not&nbsp;behave&nbsp;as&nbsp;expected&nbsp;when&nbsp;processing<br>
files&nbsp;that&nbsp;are&nbsp;not&nbsp;newline-terminated.)</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.1_Profiling"></a>Profiling</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">profiling</code> code
            since the 1.71.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/profiling/profile.xsl; M: /trunk/xsl/profiling/profile-mode.xsl - Jirka Kosek" class="commit-message">Added&nbsp;support&nbsp;for&nbsp;profiling&nbsp;based&nbsp;on&nbsp;xml:lang&nbsp;and&nbsp;status&nbsp;attributes.</span></p></div>
</li></ul></div>
</div>

</div>

<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1.71.0"></a>Release: 1.71.0</h2></div></div></div>

<p>This is mainly a bug fix release, but it also includes two
significant feature changes:
</p><div class="variablelist"><dl><dt><span class="term">Highlighting support added</span></dt><dd>
      <p>The stylesheets now include support for source-code
      highlighting in output of programlisting instances (controlled
      through the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/highlight.source.html"><em class="parameter"><code>highlight.source</code></em></a>
      parameter). The Java-based implementation requires Saxon and
      makes use of <a xmlns:xlink="http://www.w3.org/1999/xlink" href="http://molhanec.net/" target="_top"><span class="person"><span class="personname"><span class="firstname">Michal</span> <span class="surname">Molhanec</span></span></span></a>&#8217;s <a xmlns:xlink="http://www.w3.org/1999/xlink" href="http://sourceforge.net/projects/xslthl" target="_top">XSLTHL</a>. More details are available at Jirka Kosek&#8217;s
      website: </p><div class="blockquote"><blockquote class="blockquote"><p><a xmlns:xlink="http://www.w3.org/1999/xlink" href="http://xmlguru.cz/2006/07/docbook-syntax-highlighting" target="_top">http://xmlguru.cz/2006/07/docbook-syntax-highlighting</a></p></blockquote></div><p> The support is currently limited to highlighting
      of XML, Java, PHP, Delphi, Modula-2 sources, and INI
      files.</p>
    </dd><dt><span class="term">Changes to autoindexing</span></dt><dd>
      <p>The templates that handle alternative indexing methods
      were reworked to avoid errors produced by certain processors not
      being able to tolerate the presence of unused functions.  With
      this release, none of the code for the 'kimber' or 'kosek'
      methods is included in the default stylesheets.  In order to use
      one of those methods, your customization layer must import one
      of the optional stylesheet modules:</p>
      <p>
        </p><div class="itemizedlist"><ul type="disc"><li>
             html/autoidx-kosek.xsl
           </li><li>
             html/autoidx-kimber.xsl
           </li><li>
             fo/autoidx-kosek.xsl
           </li><li>
             fo/autoidx-kimber.xsl
           </li></ul></div><p>
        See the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.method.html"><em class="parameter"><code>index.method</code></em></a> parameter
        reference page for more information.
      </p>
      <p>Two other changes to note:
      </p><div class="itemizedlist"><ul type="disc"><li>
          The default indexing method now can handle accented
          characters in latin-based alphabets, not just English. This
          means accented latin letters will group and sort with their
          unaccented counterpart.
        </li><li>
          The default value for the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.method.html"><em class="parameter"><code>index.method</code></em></a> parameter was changed
          from 'english' to 'basic' because now the default method can
          handle latin-based alphabets, not just English.
        </li></ul></div><p>
      </p>
    </dd></dl></div><p>
The following is a list of changes that have
been made since the 1.70.1 release.</p>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_Common"></a>Common</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">common</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/labels.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/reference.autolabel.html"><em class="parameter"><code>reference.autolabel</code></em></a>&nbsp;parameter&nbsp;for&nbsp;controlling&nbsp;labels&nbsp;on<br>
<a href="http://docbook.org/tdg/en/html/reference.html"><code class="sgmltag-element">reference</code></a>&nbsp;output.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/table.xsl - Norman Walsh" class="commit-message">Support&nbsp;<a href="http://docbook.org/tdg/en/html/row.html"><code class="sgmltag-element">row</code></a>s&nbsp;that&nbsp;are&nbsp;*completely*&nbsp;overlapped&nbsp;by&nbsp;the&nbsp;preceding&nbsp;<a href="http://docbook.org/tdg/en/html/row.html"><code class="sgmltag-element">row</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/common/autoidx-kimber.xsl; A: /trunk/xsl/common/autoidx-kosek.xsl - Robert Stayton" class="commit-message">New&nbsp;modules&nbsp;for&nbsp;supporting&nbsp;indexing&nbsp;extensions.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/common/common.xsl - Norman Walsh" class="commit-message">Support&nbsp;startinglinenumber&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a></span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_Extensions"></a>Extensions</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">extensions</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="D: /trunk/xsl/extensions/xalan27/.cvsignore; A: /trunk/xsl/extensions/saxon65/nbproject; A: /trunk/xsl/extensions/saxon65/nbproject/project.properties; D: /trunk/xsl/extensions/prj.el; A: /trunk/xsl/extensions/saxon65/src; A: /trunk/xsl/extensions/xalan2/src/com; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Text.java; A: /trunk/xsl/extensions/saxon65/nbproject/project.xml; D: /trunk/xsl/extensions/build.xml; A: /trunk/xsl/extensions/saxon65/build.xml; A: /trunk/xsl/extensions/xalan2/nbproject/genfiles.properties; A: /trunk/xsl/extensions/saxon65; D: /trunk/xsl/extensions/xalan2/com; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Func.java; A: /trunk/xsl/extensions/xalan2/test; A: /trunk/xsl/extensions/saxon65/src/com; A: /trunk/xsl/extensions/xalan2/nbproject/build-impl.xml; A: /trunk/xsl/extensions/xalan2/nbproject; A: /trunk/xsl/extensions/xalan2/src; A: /trunk/xsl/extensions/xalan2/nbproject/project.properties; D: /trunk/xsl/extensions/.cvsignore; M: /trunk/xsl/extensions/Makefile; D: /trunk/xsl/extensions/saxon8; A: /trunk/xsl/extensions/saxon65/nbproject/genfiles.properties; A: /trunk/xsl/extensions/xalan2/nbproject/project.xml; A: /trunk/xsl/extensions/saxon65/test; M: /trunk/xsl/extensions/xalan2/src/com/nwalsh/xalan/Verbatim.java; A: /trunk/xsl/extensions/xalan2/build.xml; M: /trunk/xsl/extensions/xalan2; D: /trunk/xsl/extensions/saxon643; A: /trunk/xsl/extensions/saxon65/nbproject/build-impl.xml - Norman Walsh" class="commit-message">Completely&nbsp;reworked&nbsp;extensions&nbsp;build&nbsp;system;&nbsp;now&nbsp;uses&nbsp;NetBeans&nbsp;and&nbsp;ant</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_FO"></a>FO</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">fo</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/autoidx-kimber.xsl - Robert Stayton" class="commit-message">xsl:sort&nbsp;lang&nbsp;attribute&nbsp;now&nbsp;uses&nbsp;two-char&nbsp;substring&nbsp;of&nbsp;lang&nbsp;attribute.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/synop.xsl - Michael(tm) Smith" class="commit-message">Support&nbsp;titlecase&nbsp;"Java",&nbsp;"Perl",&nbsp;and&nbsp;"IDL"&nbsp;as&nbsp;values&nbsp;for&nbsp;the<br>
language&nbsp;attribute&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/classsynopsis.html"><code class="sgmltag-element">classsynopsis</code></a>,&nbsp;etc.&nbsp;(instead&nbsp;of&nbsp;just<br>
lowercase&nbsp;"java",&nbsp;"perl",&nbsp;and&nbsp;"idl").&nbsp;Also&nbsp;support&nbsp;"c++"&nbsp;and&nbsp;"C++"<br>
(instead&nbsp;of&nbsp;just&nbsp;"cpp").<br>
<br>
Affects&nbsp;HTML,&nbsp;FO,&nbsp;and&nbsp;manpages&nbsp;output.&nbsp;Closes&nbsp;bug&nbsp;1552332.&nbsp;Thanks<br>
to&nbsp;"Brian&nbsp;A.&nbsp;Vanderburg&nbsp;II".</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;support&nbsp;for&nbsp;the&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/reference.autolabel.html"><em class="parameter"><code>reference.autolabel</code></em></a>&nbsp;param&nbsp;in&nbsp;(X)HTML&nbsp;and&nbsp;FO<br>
output.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/table.xsl - Norman Walsh" class="commit-message">Support&nbsp;<a href="http://docbook.org/tdg/en/html/row.html"><code class="sgmltag-element">row</code></a>s&nbsp;that&nbsp;are&nbsp;*completely*&nbsp;overlapped&nbsp;by&nbsp;the&nbsp;preceding&nbsp;<a href="http://docbook.org/tdg/en/html/row.html"><code class="sgmltag-element">row</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton" class="commit-message">Rearranged&nbsp;templates&nbsp;for&nbsp;the&nbsp;3&nbsp;indexing&nbsp;methods<br>
and&nbsp;changed&nbsp;method&nbsp;named&nbsp;'english'&nbsp;to&nbsp;'basic'.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/fo/autoidx-kimber.xsl; A: /trunk/xsl/fo/autoidx-kosek.xsl - Robert Stayton" class="commit-message">New&nbsp;modules&nbsp;for&nbsp;supporting&nbsp;indexing&nbsp;extensions.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/pagesetup.xsl - Robert Stayton" class="commit-message">Turn&nbsp;off&nbsp;blank-body&nbsp;for&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/fop1.extensions.html"><em class="parameter"><code>fop1.extensions</code></em></a>&nbsp;too&nbsp;since&nbsp;fop&nbsp;0.92<br>
does&nbsp;not&nbsp;support&nbsp;it&nbsp;either.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/autoidx.xsl - Robert Stayton" class="commit-message">Add&nbsp;Xalan&nbsp;variant&nbsp;to&nbsp;test&nbsp;for&nbsp;exslt:node-set&nbsp;<a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a>.<br>
Xalan&nbsp;can&nbsp;use&nbsp;<a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a>&nbsp;named&nbsp;node-set(),&nbsp;but&nbsp;doesn't<br>
recognize&nbsp;it&nbsp;using&nbsp;function-available().</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/inline.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;support&nbsp;to&nbsp;FO&nbsp;stylesheets&nbsp;for&nbsp;handling&nbsp;instances&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/org.html"><code class="sgmltag-element">Org</code></a><br>
where&nbsp;it&nbsp;occurs&nbsp;outside&nbsp;of&nbsp;*<a href="http://docbook.org/tdg/en/html/info.html"><code class="sgmltag-element">info</code></a>&nbsp;content.&nbsp;In&nbsp;HTML&nbsp;stylesheets,<br>
moved&nbsp;handling&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/org.html"><code class="sgmltag-element">Org</code></a>&nbsp;out&nbsp;of&nbsp;info.xsl&nbsp;and&nbsp;into&nbsp;inline.xsl.&nbsp;In&nbsp;both<br>
FO&nbsp;and&nbsp;HTML&nbsp;stylesheets,&nbsp;added&nbsp;support&nbsp;for&nbsp;correctly&nbsp;processing<br>
<a href="http://docbook.org/tdg/en/html/affiliation.html"><code class="sgmltag-element">Affiliation</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/jobtitle.html"><code class="sgmltag-element">Jobtitle</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/refentry.xsl - Michael(tm) Smith" class="commit-message">Don't&nbsp;output&nbsp;punctuation&nbsp;between&nbsp;<a href="http://docbook.org/tdg/en/html/refname.html"><code class="sgmltag-element">Refname</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>&nbsp;if<br>
<a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>&nbsp;is&nbsp;empty.&nbsp;Also&nbsp;corrected&nbsp;handling&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/refsect2.html"><code class="sgmltag-element">Refsect2</code></a>/<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a><br>
instances,&nbsp;and&nbsp;removed&nbsp;some&nbsp;debugging&nbsp;stuff&nbsp;that&nbsp;was&nbsp;generated&nbsp;in<br>
manpages&nbsp;output&nbsp;to&nbsp;mark&nbsp;the&nbsp;ends&nbsp;of&nbsp;sections.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/inline.xsl; M: /trunk/xsl/fo/param.xweb; M: /trunk/xsl/fo/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;new&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/email.delimiters.enabled.html"><em class="parameter"><code>email.delimiters.enabled</code></em></a>&nbsp;param.&nbsp;If&nbsp;non-zero&nbsp;(the<br>
default),&nbsp;delimiters&nbsp;are&nbsp;generated&nbsp;around&nbsp;e-mail&nbsp;addresses&nbsp;(output<br>
of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/email.html"><code class="sgmltag-element">email</code></a>&nbsp;element).&nbsp;If&nbsp;zero,&nbsp;the&nbsp;delimiters&nbsp;are&nbsp;suppressed.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/param.ent; M: /trunk/xsl/fo/param.xweb; A: /trunk/xsl/fo/highlight.xsl; M: /trunk/xsl/fo/verbatim.xsl - Jirka Kosek" class="commit-message">Initial&nbsp;support&nbsp;of&nbsp;syntax&nbsp;highlighting&nbsp;of&nbsp;programlistings.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/fo/pagesetup.xsl - Jirka Kosek" class="commit-message"><a href="http://docbook.org/tdg/en/html/chapter.html"><code class="sgmltag-element">Chapter</code></a>&nbsp;after&nbsp;<a href="http://docbook.org/tdg/en/html/preface.html"><code class="sgmltag-element">preface</code></a>&nbsp;should&nbsp;restart&nbsp;numbering&nbsp;of&nbsp;pages.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_HTML"></a>HTML</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">html</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/autoidx-kimber.xsl - Robert Stayton" class="commit-message">xsl:sort&nbsp;lang&nbsp;attribute&nbsp;now&nbsp;uses&nbsp;two-char&nbsp;substring&nbsp;of&nbsp;lang&nbsp;attribute.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/synop.xsl - Michael(tm) Smith" class="commit-message">Support&nbsp;titlecase&nbsp;"Java",&nbsp;"Perl",&nbsp;and&nbsp;"IDL"&nbsp;as&nbsp;values&nbsp;for&nbsp;the<br>
language&nbsp;attribute&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/classsynopsis.html"><code class="sgmltag-element">classsynopsis</code></a>,&nbsp;etc.&nbsp;(instead&nbsp;of&nbsp;just<br>
lowercase&nbsp;"java",&nbsp;"perl",&nbsp;and&nbsp;"idl").&nbsp;Also&nbsp;support&nbsp;"c++"&nbsp;and&nbsp;"C++"<br>
(instead&nbsp;of&nbsp;just&nbsp;"cpp").<br>
<br>
Affects&nbsp;HTML,&nbsp;FO,&nbsp;and&nbsp;manpages&nbsp;output.&nbsp;Closes&nbsp;bug&nbsp;1552332.&nbsp;Thanks<br>
to&nbsp;"Brian&nbsp;A.&nbsp;Vanderburg&nbsp;II".</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;support&nbsp;for&nbsp;the&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/reference.autolabel.html"><em class="parameter"><code>reference.autolabel</code></em></a>&nbsp;param&nbsp;in&nbsp;(X)HTML&nbsp;and&nbsp;FO<br>
output.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/table.xsl - Norman Walsh" class="commit-message">Support&nbsp;<a href="http://docbook.org/tdg/en/html/row.html"><code class="sgmltag-element">row</code></a>s&nbsp;that&nbsp;are&nbsp;*completely*&nbsp;overlapped&nbsp;by&nbsp;the&nbsp;preceding&nbsp;<a href="http://docbook.org/tdg/en/html/row.html"><code class="sgmltag-element">row</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/autoidx.xsl - Robert Stayton" class="commit-message">Rearranged&nbsp;templates&nbsp;for&nbsp;the&nbsp;3&nbsp;indexing&nbsp;methods<br>
and&nbsp;changed&nbsp;method&nbsp;named&nbsp;'english'&nbsp;to&nbsp;'basic'.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/html/autoidx-kimber.xsl; A: /trunk/xsl/html/autoidx-kosek.xsl - Robert Stayton" class="commit-message">New&nbsp;modules&nbsp;for&nbsp;supporting&nbsp;indexing&nbsp;extensions.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/titlepage.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;several&nbsp;new&nbsp;HTML&nbsp;parameters&nbsp;for&nbsp;controlling&nbsp;appearance&nbsp;of<br>
content&nbsp;on&nbsp;HTML&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;pages:<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/contrib.inline.enabled.html"><em class="parameter"><code>contrib.inline.enabled</code></em></a>:<br>
&nbsp;&nbsp;If&nbsp;non-zero&nbsp;(the&nbsp;default),&nbsp;output&nbsp;of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/contrib.html"><code class="sgmltag-element">contrib</code></a>&nbsp;element&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;as&nbsp;inline&nbsp;content&nbsp;rather&nbsp;than&nbsp;as&nbsp;block&nbsp;content.<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/othercredit.like.author.enabled.html"><em class="parameter"><code>othercredit.like.author.enabled</code></em></a>:<br>
&nbsp;&nbsp;If&nbsp;non-zero,&nbsp;output&nbsp;of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/othercredit.html"><code class="sgmltag-element">othercredit</code></a>&nbsp;element&nbsp;on&nbsp;titlepages&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;in&nbsp;the&nbsp;same&nbsp;style&nbsp;as&nbsp;<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>&nbsp;output.&nbsp;If&nbsp;zero<br>
&nbsp;&nbsp;(the&nbsp;default),&nbsp;<a href="http://docbook.org/tdg/en/html/othercredit.html"><code class="sgmltag-element">othercredit</code></a>&nbsp;output&nbsp;is&nbsp;displayed&nbsp;using&nbsp;a&nbsp;style<br>
&nbsp;&nbsp;different&nbsp;than&nbsp;that&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>.<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/blurb.on.titlepage.enabled.html"><em class="parameter"><code>blurb.on.titlepage.enabled</code></em></a>:<br>
&nbsp;&nbsp;If&nbsp;non-zero,&nbsp;output&nbsp;from&nbsp;authorblurb&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/personblurb.html"><code class="sgmltag-element">personblurb</code></a>&nbsp;elements&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;pages.&nbsp;If&nbsp;zero&nbsp;(the&nbsp;default),&nbsp;output&nbsp;from<br>
&nbsp;&nbsp;those&nbsp;elements&nbsp;is&nbsp;suppressed&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;pages&nbsp;(unless&nbsp;you&nbsp;are<br>
&nbsp;&nbsp;using&nbsp;a&nbsp;titlepage&nbsp;customization&nbsp;that&nbsp;causes&nbsp;them&nbsp;to&nbsp;be&nbsp;included).<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/editedby.enabled.html"><em class="parameter"><code>editedby.enabled</code></em></a><br>
&nbsp;&nbsp;If&nbsp;non-zero&nbsp;(the&nbsp;default),&nbsp;a&nbsp;localized&nbsp;Edited&nbsp;by&nbsp;heading&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;above&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>&nbsp;names&nbsp;in&nbsp;output&nbsp;of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>&nbsp;element.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/autoidx.xsl - Robert Stayton" class="commit-message">Add&nbsp;Xalan&nbsp;variant&nbsp;to&nbsp;test&nbsp;for&nbsp;exslt:node-set&nbsp;<a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a>.<br>
Xalan&nbsp;can&nbsp;use&nbsp;<a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a>&nbsp;named&nbsp;node-set(),&nbsp;but&nbsp;doesn't<br>
recognize&nbsp;it&nbsp;using&nbsp;function-available().</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/info.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;support&nbsp;to&nbsp;FO&nbsp;stylesheets&nbsp;for&nbsp;handling&nbsp;instances&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/org.html"><code class="sgmltag-element">Org</code></a><br>
where&nbsp;it&nbsp;occurs&nbsp;outside&nbsp;of&nbsp;*<a href="http://docbook.org/tdg/en/html/info.html"><code class="sgmltag-element">info</code></a>&nbsp;content.&nbsp;In&nbsp;HTML&nbsp;stylesheets,<br>
moved&nbsp;handling&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/org.html"><code class="sgmltag-element">Org</code></a>&nbsp;out&nbsp;of&nbsp;info.xsl&nbsp;and&nbsp;into&nbsp;inline.xsl.&nbsp;In&nbsp;both<br>
FO&nbsp;and&nbsp;HTML&nbsp;stylesheets,&nbsp;added&nbsp;support&nbsp;for&nbsp;correctly&nbsp;processing<br>
<a href="http://docbook.org/tdg/en/html/affiliation.html"><code class="sgmltag-element">Affiliation</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/jobtitle.html"><code class="sgmltag-element">Jobtitle</code></a>.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/refentry.xsl - Michael(tm) Smith" class="commit-message">Don't&nbsp;output&nbsp;punctuation&nbsp;between&nbsp;<a href="http://docbook.org/tdg/en/html/refname.html"><code class="sgmltag-element">Refname</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>&nbsp;if<br>
<a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>&nbsp;is&nbsp;empty.&nbsp;Also&nbsp;corrected&nbsp;handling&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/refsect2.html"><code class="sgmltag-element">Refsect2</code></a>/<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a><br>
instances,&nbsp;and&nbsp;removed&nbsp;some&nbsp;debugging&nbsp;stuff&nbsp;that&nbsp;was&nbsp;generated&nbsp;in<br>
manpages&nbsp;output&nbsp;to&nbsp;mark&nbsp;the&nbsp;ends&nbsp;of&nbsp;sections.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl; M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;new&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/email.delimiters.enabled.html"><em class="parameter"><code>email.delimiters.enabled</code></em></a>&nbsp;param.&nbsp;If&nbsp;non-zero&nbsp;(the<br>
default),&nbsp;delimiters&nbsp;are&nbsp;generated&nbsp;around&nbsp;e-mail&nbsp;addresses&nbsp;(output<br>
of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/email.html"><code class="sgmltag-element">email</code></a>&nbsp;element).&nbsp;If&nbsp;zero,&nbsp;the&nbsp;delimiters&nbsp;are&nbsp;suppressed.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/param.xweb; M: /trunk/xsl/html/param.ent; M: /trunk/xsl/html/qandaset.xsl - Michael(tm) Smith" class="commit-message">Added&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.nested.in.toc.html"><em class="parameter"><code>qanda.nested.in.toc</code></em></a>&nbsp;param.&nbsp;Default&nbsp;value&nbsp;is&nbsp;zero.&nbsp;If<br>
non-zero,&nbsp;instances&nbsp;of&nbsp;"nested"&nbsp;<a href="http://docbook.org/tdg/en/html/qandaentry.html"><code class="sgmltag-element">Qandaentry</code></a>&nbsp;(ones&nbsp;that&nbsp;are&nbsp;children<br>
of&nbsp;<a href="http://docbook.org/tdg/en/html/answer.html"><code class="sgmltag-element">Answer</code></a>&nbsp;elements)&nbsp;are&nbsp;displayed&nbsp;in&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">TOC</code></a>.&nbsp;Closes&nbsp;patch&nbsp;1509018<br>
(from&nbsp;Daniel&nbsp;Leidert).&nbsp;Currently&nbsp;on&nbsp;affects&nbsp;HTML&nbsp;output&nbsp;(no&nbsp;patch<br>
for&nbsp;FO&nbsp;output&nbsp;provided).</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/html.xsl - Jirka Kosek" class="commit-message">Improved&nbsp;handling&nbsp;of&nbsp;relative&nbsp;locations&nbsp;generated&nbsp;files</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/param.ent; M: /trunk/xsl/html/param.xweb; A: /trunk/xsl/html/highlight.xsl; M: /trunk/xsl/html/verbatim.xsl - Jirka Kosek" class="commit-message">Initial&nbsp;support&nbsp;of&nbsp;syntax&nbsp;highlighting&nbsp;of&nbsp;programlistings.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/info.xsl - Norman Walsh" class="commit-message">Support&nbsp;<a href="http://docbook.org/tdg/en/html/org.html"><code class="sgmltag-element">org</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/inline.xsl - Norman Walsh" class="commit-message">Support&nbsp;<a href="http://docbook.org/tdg/en/html/person.html"><code class="sgmltag-element">person</code></a></span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/html/chunk-code.xsl - Jirka Kosek" class="commit-message">Support&nbsp;$keep.relative.image.uris&nbsp;also&nbsp;when&nbsp;chunking</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_Highlighting"></a>Highlighting</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">highlighting</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/highlighting/php-hl.xml; A: /trunk/xsl/highlighting/common.xsl; A: /trunk/xsl/highlighting/delphi-hl.xml; A: /trunk/xsl/highlighting/myxml-hl.xml; A: /trunk/xsl/highlighting/m2-hl.xml; A: /trunk/xsl/highlighting/ini-hl.xml; A: /trunk/xsl/highlighting/xslthl-config.xml; A: /trunk/xsl/highlighting/java-hl.xml - Jirka Kosek" class="commit-message">Initial&nbsp;support&nbsp;of&nbsp;syntax&nbsp;highlighting&nbsp;of&nbsp;programlistings.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_Manpages"></a>Manpages</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">manpages</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/docbook.xsl; M: /trunk/xsl/manpages/links.xsl; M: /trunk/xsl/manpages/other.xsl - Michael(tm) Smith" class="commit-message">Suppress&nbsp;<a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>&nbsp;markers&nbsp;and&nbsp;output&nbsp;warning&nbsp;that&nbsp;footnotes&nbsp;are<br>
not&nbsp;yet&nbsp;supported.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/info.xsl - Michael(tm) Smith" class="commit-message">Handle&nbsp;instances&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/address.html"><code class="sgmltag-element">address</code></a>/<a href="http://docbook.org/tdg/en/html/otheraddr.html"><code class="sgmltag-element">otheraddr</code></a>/ulink&nbsp;in&nbsp;<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>&nbsp;et&nbsp;al&nbsp;in&nbsp;the<br>
same&nbsp;way&nbsp;as&nbsp;<a href="http://docbook.org/tdg/en/html/email.html"><code class="sgmltag-element">email</code></a>&nbsp;instances;&nbsp;that&nbsp;is,&nbsp;display&nbsp;them&nbsp;on&nbsp;the&nbsp;same<br>
linke&nbsp;as&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>,&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>,&nbsp;etc.,&nbsp;name.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/links.xsl - Michael(tm) Smith" class="commit-message">Don't&nbsp;number&nbsp;or&nbsp;link-list&nbsp;any&nbsp;Ulink&nbsp;instance&nbsp;whose&nbsp;string&nbsp;value&nbsp;is<br>
identical&nbsp;to&nbsp;the&nbsp;value&nbsp;of&nbsp;its&nbsp;url&nbsp;attribute.&nbsp;Just&nbsp;display&nbsp;it&nbsp;inline.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/refentry.xsl - Michael(tm) Smith" class="commit-message">Don't&nbsp;output&nbsp;punctuation&nbsp;between&nbsp;<a href="http://docbook.org/tdg/en/html/refname.html"><code class="sgmltag-element">Refname</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>&nbsp;if<br>
<a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>&nbsp;is&nbsp;empty.&nbsp;Also&nbsp;corrected&nbsp;handling&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/refsect2.html"><code class="sgmltag-element">Refsect2</code></a>/<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a><br>
instances,&nbsp;and&nbsp;removed&nbsp;some&nbsp;debugging&nbsp;stuff&nbsp;that&nbsp;was&nbsp;generated&nbsp;in<br>
manpages&nbsp;output&nbsp;to&nbsp;mark&nbsp;the&nbsp;ends&nbsp;of&nbsp;sections.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/param.xweb; M: /trunk/xsl/manpages/param.ent - Michael(tm) Smith" class="commit-message">Added&nbsp;new&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/email.delimiters.enabled.html"><em class="parameter"><code>email.delimiters.enabled</code></em></a>&nbsp;param.&nbsp;If&nbsp;non-zero&nbsp;(the<br>
default),&nbsp;delimiters&nbsp;are&nbsp;generated&nbsp;around&nbsp;e-mail&nbsp;addresses&nbsp;(output<br>
of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/email.html"><code class="sgmltag-element">email</code></a>&nbsp;element).&nbsp;If&nbsp;zero,&nbsp;the&nbsp;delimiters&nbsp;are&nbsp;suppressed.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/manpages/info.xsl - Michael(tm) Smith" class="commit-message">In&nbsp;manpages&nbsp;output,&nbsp;if&nbsp;the&nbsp;last/nearest&nbsp;*<a href="http://docbook.org/tdg/en/html/info.html"><code class="sgmltag-element">info</code></a>&nbsp;element&nbsp;for<br>
particular&nbsp;<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a>&nbsp;has&nbsp;multiple&nbsp;<a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">Copyright</code></a>&nbsp;and/or&nbsp;<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">Legalnotice</code></a><br>
children,&nbsp;process&nbsp;them&nbsp;all&nbsp;(not&nbsp;just&nbsp;the&nbsp;first&nbsp;ones).&nbsp;Closes&nbsp;bug<br>
1524576.&nbsp;Thanks&nbsp;to&nbsp;Sam&nbsp;Steingold&nbsp;for&nbsp;the&nbsp;report&nbsp;and&nbsp;to&nbsp;Daniel<br>
Leidert&nbsp;for&nbsp;providing&nbsp;a&nbsp;patch.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_Params"></a>Params</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">params</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/reference.autolabel.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/reference.autolabel.html"><em class="parameter"><code>reference.autolabel</code></em></a>&nbsp;parameter&nbsp;for&nbsp;controlling&nbsp;labels&nbsp;on<br>
<a href="http://docbook.org/tdg/en/html/reference.html"><code class="sgmltag-element">reference</code></a>&nbsp;output.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/params/toc.line.properties.xml; M: /trunk/xsl/params/title.font.family.xml; M: /trunk/xsl/params/component.label.includes.part.label.xml; M: /trunk/xsl/params/refentry.manual.profile.xml; M: /trunk/xsl/params/orderedlist.properties.xml; M: /trunk/xsl/params/olink.pubid.xml; M: /trunk/xsl/params/informalexample.properties.xml; M: /trunk/xsl/params/appendix.autolabel.xml; M: /trunk/xsl/params/htmlhelp.show.toolbar.text.xml; M: /trunk/xsl/params/index.on.role.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.url.xml; M: /trunk/xsl/params/variablelist.term.separator.xml; M: /trunk/xsl/params/para.propagates.style.xml; M: /trunk/xsl/params/html.stylesheet.xml; M: /trunk/xsl/params/qanda.nested.in.toc.xml; M: /trunk/xsl/params/annotation.css.xml; M: /trunk/xsl/params/funcsynopsis.style.xml; M: /trunk/xsl/params/htmlhelp.encoding.xml; M: /trunk/xsl/params/footer.content.properties.xml; M: /trunk/xsl/params/verbatim.properties.xml; M: /trunk/xsl/params/autotoc.label.in.hyperlink.xml; M: /trunk/xsl/params/body.margin.top.xml; M: /trunk/xsl/params/bibliography.numbered.xml; M: /trunk/xsl/params/figure.properties.xml; M: /trunk/xsl/params/variablelist.max.termlength.xml; M: /trunk/xsl/params/table.cell.border.style.xml; M: /trunk/xsl/params/htmlhelp.button.options.xml; M: /trunk/xsl/params/preferred.mediaobject.role.xml; M: /trunk/xsl/params/htmlhelp.chm.xml; M: /trunk/xsl/params/man.charmap.subset.profile.xml; M: /trunk/xsl/params/qanda.title.level3.properties.xml; M: /trunk/xsl/params/page.width.xml; M: /trunk/xsl/params/firstterm.only.link.xml; M: /trunk/xsl/params/section.level6.properties.xml; M: /trunk/xsl/params/htmlhelp.button.locate.xml; M: /trunk/xsl/params/chunk.sections.xml; M: /trunk/xsl/params/use.local.olink.style.xml; M: /trunk/xsl/params/refentry.date.profile.enabled.xml; M: /trunk/xsl/params/refentry.version.suppress.xml; M: /trunk/xsl/params/refentry.generate.title.xml; M: /trunk/xsl/params/punct.honorific.xml; M: /trunk/xsl/params/column.gap.index.xml; M: /trunk/xsl/params/body.start.indent.xml; M: /trunk/xsl/params/crop.mark.width.xml; M: /trunk/xsl/params/refentry.version.profile.enabled.xml; M: /trunk/xsl/params/superscript.properties.xml; M: /trunk/xsl/params/chunker.output.doctype-public.xml; M: /trunk/xsl/params/saxon.character.representation.xml; M: /trunk/xsl/params/saxon.linenumbering.xml; M: /trunk/xsl/params/shade.verbatim.style.xml; M: /trunk/xsl/params/annotate.toc.xml; M: /trunk/xsl/params/profile.attribute.xml; M: /trunk/xsl/params/callout.graphics.number.limit.xml; M: /trunk/xsl/params/profile.arch.xml; M: /trunk/xsl/params/saxon.tablecolumns.xml; M: /trunk/xsl/params/glossterm.auto.link.xml; M: /trunk/xsl/params/default.units.xml; M: /trunk/xsl/params/qanda.title.level1.properties.xml; M: /trunk/xsl/params/list.block.spacing.xml; M: /trunk/xsl/params/section.level4.properties.xml; M: /trunk/xsl/params/spacing.paras.xml; M: /trunk/xsl/params/column.count.index.xml; M: /trunk/xsl/params/dingbat.font.family.xml; M: /trunk/xsl/params/citerefentry.link.xml; M: /trunk/xsl/params/keep.relative.image.uris.xml; M: /trunk/xsl/params/ulink.footnotes.xml; M: /trunk/xsl/params/prefer.internal.olink.xml; M: /trunk/xsl/params/refentry.title.properties.xml; M: /trunk/xsl/params/variablelist.term.break.after.xml; M: /trunk/xsl/params/use.id.function.xml; M: /trunk/xsl/params/callout.unicode.start.character.xml; M: /trunk/xsl/params/column.gap.titlepage.xml; M: /trunk/xsl/params/editedby.enabled.xml; M: /trunk/xsl/params/funcsynopsis.tabular.threshold.xml; M: /trunk/xsl/params/use.extensions.xml; M: /trunk/xsl/params/index.preferred.page.properties.xml; M: /trunk/xsl/params/man.th.extra3.max.length.xml; M: /trunk/xsl/params/column.gap.back.xml; M: /trunk/xsl/params/tex.math.delims.xml; M: /trunk/xsl/params/article.appendix.title.properties.xml; M: /trunk/xsl/params/ulink.target.xml; M: /trunk/xsl/params/suppress.header.navigation.xml; M: /trunk/xsl/params/olink.resolver.xml; M: /trunk/xsl/params/admon.textlabel.xml; M: /trunk/xsl/params/procedure.properties.xml; M: /trunk/xsl/params/blurb.on.titlepage.enabled.xml; M: /trunk/xsl/params/section.level2.properties.xml; M: /trunk/xsl/params/column.gap.front.xml; M: /trunk/xsl/params/margin.note.title.properties.xml; M: /trunk/xsl/params/glossary.collection.xml; M: /trunk/xsl/params/admon.graphics.xml; M: /trunk/xsl/params/current.docid.xml; M: /trunk/xsl/params/qanda.inherit.numeration.xml; M: /trunk/xsl/params/table.cell.padding.xml; M: /trunk/xsl/params/preface.autolabel.xml; M: /trunk/xsl/params/man.th.extra3.suppress.xml; M: /trunk/xsl/params/wordml.template.xml; M: /trunk/xsl/params/htmlhelp.use.hhk.xml; M: /trunk/xsl/params/textinsert.extension.xml; M: /trunk/xsl/params/ebnf.table.bgcolor.xml; M: /trunk/xsl/params/refentry.source.fallback.profile.xml; M: /trunk/xsl/params/body.font.master.xml; M: /trunk/xsl/params/l10n.gentext.default.language.xml; M: /trunk/xsl/params/list.block.properties.xml; M: /trunk/xsl/params/refentry.source.name.suppress.xml; M: /trunk/xsl/params/htmlhelp.hhp.window.xml; M: /trunk/xsl/params/sidebar.properties.xml; M: /trunk/xsl/params/tex.math.file.xml; M: /trunk/xsl/params/man.justify.xml; M: /trunk/xsl/params/subscript.properties.xml; M: /trunk/xsl/params/column.count.front.xml; M: /trunk/xsl/params/index.term.separator.xml; M: /trunk/xsl/params/biblioentry.properties.xml; M: /trunk/xsl/params/biblioentry.item.separator.xml; M: /trunk/xsl/params/htmlhelp.button.home.url.xml; M: /trunk/xsl/params/column.count.body.xml; M: /trunk/xsl/params/suppress.navigation.xml; M: /trunk/xsl/params/htmlhelp.remember.window.position.xml; M: /trunk/xsl/params/htmlhelp.hhc.section.depth.xml; M: /trunk/xsl/params/xref.with.number.and.title.xml; M: /trunk/xsl/params/make.year.ranges.xml; M: /trunk/xsl/params/region.before.extent.xml; M: /trunk/xsl/params/xref.label-page.separator.xml; M: /trunk/xsl/params/html.longdesc.link.xml; M: /trunk/xsl/params/man.subheading.divider.enabled.xml; M: /trunk/xsl/params/index.entry.properties.xml; M: /trunk/xsl/params/generate.legalnotice.link.xml; M: /trunk/xsl/params/section.autolabel.xml; M: /trunk/xsl/params/html.base.xml; M: /trunk/xsl/params/suppress.footer.navigation.xml; M: /trunk/xsl/params/nominal.image.depth.xml; M: /trunk/xsl/params/table.footnote.number.symbols.xml; M: /trunk/xsl/params/table.footnote.number.format.xml; M: /trunk/xsl/params/callout.graphics.xml; M: /trunk/xsl/params/man.break.after.slash.xml; M: /trunk/xsl/params/function.parens.xml; M: /trunk/xsl/params/part.autolabel.xml; M: /trunk/xsl/params/saxon.callouts.xml; M: /trunk/xsl/params/css.decoration.xml; M: /trunk/xsl/params/htmlhelp.button.home.xml; M: /trunk/xsl/params/email.delimiters.enabled.xml; M: /trunk/xsl/params/column.count.lot.xml; M: /trunk/xsl/params/draft.mode.xml; M: /trunk/xsl/params/use.role.for.mediaobject.xml; M: /trunk/xsl/params/refentry.separator.xml; M: /trunk/xsl/params/man.font.funcsynopsisinfo.xml; M: /trunk/xsl/params/man.output.manifest.filename.xml; M: /trunk/xsl/params/process.empty.source.toc.xml; M: /trunk/xsl/params/man.output.in.separate.dir.xml; M: /trunk/xsl/params/graphicsize.use.img.src.path.xml; M: /trunk/xsl/params/man.output.encoding.xml; M: /trunk/xsl/params/column.gap.lot.xml; M: /trunk/xsl/params/profile.role.xml; M: /trunk/xsl/params/column.count.titlepage.xml; M: /trunk/xsl/params/show.comments.xml; M: /trunk/xsl/params/informalfigure.properties.xml; M: /trunk/xsl/params/entry.propagates.style.xml; M: /trunk/xsl/params/bibliography.collection.xml; M: /trunk/xsl/params/contrib.inline.enabled.xml; M: /trunk/xsl/params/section.title.level5.properties.xml; M: /trunk/xsl/params/fop.extensions.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.xml; M: /trunk/xsl/params/man.hyphenate.urls.xml; M: /trunk/xsl/params/profile.condition.xml; M: /trunk/xsl/params/header.column.widths.xml; M: /trunk/xsl/params/annotation.js.xml; M: /trunk/xsl/params/chunker.output.standalone.xml; M: /trunk/xsl/params/targets.filename.xml; M: /trunk/xsl/params/default.float.class.xml; M: /trunk/xsl/params/chapter.autolabel.xml; M: /trunk/xsl/params/sidebar.float.type.xml; M: /trunk/xsl/params/profile.separator.xml; M: /trunk/xsl/params/generate.index.xml; M: /trunk/xsl/params/nongraphical.admonition.properties.xml; M: /trunk/xsl/params/navig.graphics.xml; M: /trunk/xsl/params/htmlhelp.button.next.xml; M: /trunk/xsl/params/insert.olink.pdf.frag.xml; M: /trunk/xsl/params/htmlhelp.button.stop.xml; M: /trunk/xsl/params/footnote.font.size.xml; M: /trunk/xsl/params/profile.value.xml; M: /trunk/xsl/params/ebnf.table.border.xml; M: /trunk/xsl/params/htmlhelp.hhc.folders.instead.books.xml; M: /trunk/xsl/params/glossary.as.blocks.xml; M: /trunk/xsl/params/body.end.indent.xml; M: /trunk/xsl/params/use.role.as.xrefstyle.xml; M: /trunk/xsl/params/man.indent.blurbs.xml; M: /trunk/xsl/params/chunker.output.encoding.xml; M: /trunk/xsl/params/chunker.output.omit-xml-declaration.xml; M: /trunk/xsl/params/sans.font.family.xml; M: /trunk/xsl/params/html.cleanup.xml; M: /trunk/xsl/params/htmlhelp.hhp.xml; M: /trunk/xsl/params/htmlhelp.only.xml; M: /trunk/xsl/params/eclipse.plugin.name.xml; M: /trunk/xsl/params/section.title.level3.properties.xml; M: /trunk/xsl/params/man.th.extra1.suppress.xml; M: /trunk/xsl/params/chunk.section.depth.xml; M: /trunk/xsl/params/htmlhelp.hhp.tail.xml; M: /trunk/xsl/params/sidebar.title.properties.xml; M: /trunk/xsl/params/hyphenate.xml; M: /trunk/xsl/params/paper.type.xml; M: /trunk/xsl/params/chunk.tocs.and.lots.has.title.xml; M: /trunk/xsl/params/symbol.font.family.xml; M: /trunk/xsl/params/page.margin.bottom.xml; M: /trunk/xsl/params/callout.unicode.number.limit.xml; M: /trunk/xsl/params/itemizedlist.properties.xml; M: /trunk/xsl/params/root.filename.xml; M: /trunk/xsl/params/tablecolumns.extension.xml; M: /trunk/xsl/params/htmlhelp.show.favorities.xml; M: /trunk/xsl/params/informaltable.properties.xml; M: /trunk/xsl/params/revhistory.table.cell.properties.xml; M: /trunk/xsl/params/htmlhelp.default.topic.xml; M: /trunk/xsl/params/compact.list.item.spacing.xml; M: /trunk/xsl/params/page.height.portrait.xml; M: /trunk/xsl/params/html.head.legalnotice.link.types.xml; M: /trunk/xsl/params/passivetex.extensions.xml; M: /trunk/xsl/params/orderedlist.label.properties.xml; M: /trunk/xsl/params/othercredit.like.author.enabled.xml; M: /trunk/xsl/params/header.content.properties.xml; M: /trunk/xsl/params/refentry.meta.get.quietly.xml; M: /trunk/xsl/params/section.properties.xml; M: /trunk/xsl/params/htmlhelp.button.hideshow.xml; M: /trunk/xsl/params/simplesect.in.toc.xml; M: /trunk/xsl/params/chunk.quietly.xml; M: /trunk/xsl/params/htmlhelp.enumerate.images.xml; M: /trunk/xsl/params/section.title.level1.properties.xml; M: /trunk/xsl/params/qanda.defaultlabel.xml; M: /trunk/xsl/params/htmlhelp.enhanced.decompilation.xml; M: /trunk/xsl/params/man.th.title.max.length.xml; M: /trunk/xsl/params/footnote.number.format.xml; M: /trunk/xsl/params/body.margin.bottom.xml; M: /trunk/xsl/params/htmlhelp.window.geometry.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.xml; M: /trunk/xsl/params/use.svg.xml; M: /trunk/xsl/params/qanda.title.level6.properties.xml; M: /trunk/xsl/params/collect.xref.targets.xml; M: /trunk/xsl/params/html.extra.head.links.xml; M: /trunk/xsl/params/variablelist.as.table.xml; M: /trunk/xsl/params/man.indent.width.xml; M: /trunk/xsl/params/eclipse.plugin.id.xml; M: /trunk/xsl/params/linenumbering.width.xml; M: /trunk/xsl/params/axf.extensions.xml; M: /trunk/xsl/params/menuchoice.separator.xml; M: /trunk/xsl/params/glossterm.separation.xml; M: /trunk/xsl/params/htmlhelp.autolabel.xml; M: /trunk/xsl/params/chunk.separate.lots.xml; M: /trunk/xsl/params/man.hyphenate.computer.inlines.xml; M: /trunk/xsl/params/linenumbering.separator.xml; M: /trunk/xsl/params/htmlhelp.title.xml; M: /trunk/xsl/params/index.number.separator.xml; M: /trunk/xsl/params/htmlhelp.button.prev.xml; M: /trunk/xsl/params/refentry.manual.fallback.profile.xml; M: /trunk/xsl/params/table.frame.border.color.xml; M: /trunk/xsl/params/footnote.sep.leader.properties.xml; M: /trunk/xsl/params/hyphenate.verbatim.characters.xml; M: /trunk/xsl/params/table.cell.border.thickness.xml; M: /trunk/xsl/params/template.xml; M: /trunk/xsl/params/margin.note.properties.xml; M: /trunk/xsl/params/man.segtitle.suppress.xml; M: /trunk/xsl/params/generate.toc.xml; M: /trunk/xsl/params/formal.object.properties.xml; M: /trunk/xsl/params/footnote.mark.properties.xml; M: /trunk/xsl/params/header.table.height.xml; M: /trunk/xsl/params/htmlhelp.button.back.xml; M: /trunk/xsl/params/qanda.title.level4.properties.xml; M: /trunk/xsl/params/man.links.are.numbered.xml; M: /trunk/xsl/params/manual.toc.xml; M: /trunk/xsl/params/olink.lang.fallback.sequence.xml; M: /trunk/xsl/params/refentry.manual.profile.enabled.xml; M: /trunk/xsl/params/ulink.hyphenate.chars.xml; M: /trunk/xsl/params/manifest.xml; M: /trunk/xsl/params/olink.fragid.xml; M: /trunk/xsl/params/refentry.date.profile.xml; M: /trunk/xsl/params/linenumbering.extension.xml; M: /trunk/xsl/params/component.title.properties.xml; M: /trunk/xsl/params/alignment.xml; M: /trunk/xsl/params/refentry.version.profile.xml; M: /trunk/xsl/params/ebnf.assignment.xml; M: /trunk/xsl/params/htmlhelp.button.print.xml; M: /trunk/xsl/params/annotation.support.xml; M: /trunk/xsl/params/sidebar.float.width.xml; M: /trunk/xsl/params/normal.para.spacing.xml; M: /trunk/xsl/params/xref.title-page.separator.xml; M: /trunk/xsl/params/callout.unicode.font.xml; M: /trunk/xsl/params/default.table.frame.xml; M: /trunk/xsl/params/pages.template.xml; M: /trunk/xsl/params/htmlhelp.button.zoom.xml; M: /trunk/xsl/params/admonition.title.properties.xml; M: /trunk/xsl/params/callout.graphics.extension.xml; M: /trunk/xsl/params/make.valid.html.xml; M: /trunk/xsl/params/qanda.title.level2.properties.xml; M: /trunk/xsl/params/page.margin.top.xml; M: /trunk/xsl/params/xep.index.item.properties.xml; M: /trunk/xsl/params/section.level5.properties.xml; M: /trunk/xsl/params/line-height.xml; M: /trunk/xsl/params/table.cell.border.color.xml; M: /trunk/xsl/params/qandadiv.autolabel.xml; M: /trunk/xsl/params/xref.label-title.separator.xml; M: /trunk/xsl/params/chunk.tocs.and.lots.xml; M: /trunk/xsl/params/man.font.funcprototype.xml; M: /trunk/xsl/params/process.source.toc.xml; M: /trunk/xsl/params/page.orientation.xml; M: /trunk/xsl/params/refentry.generate.name.xml; M: /trunk/xsl/params/navig.showtitles.xml; M: /trunk/xsl/params/table.table.properties.xml; M: /trunk/xsl/params/arbortext.extensions.xml; M: /trunk/xsl/params/informalequation.properties.xml; M: /trunk/xsl/params/headers.on.blank.pages.xml; M: /trunk/xsl/params/table.footnote.properties.xml; M: /trunk/xsl/params/root.properties.xml; M: /trunk/xsl/params/htmlhelp.display.progress.xml; M: /trunk/xsl/params/htmlhelp.hhp.windows.xml; M: /trunk/xsl/params/graphical.admonition.properties.xml; M: /trunk/xsl/params/refclass.suppress.xml; M: /trunk/xsl/params/profile.conformance.xml; M: /trunk/xsl/params/htmlhelp.button.forward.xml; M: /trunk/xsl/params/segmentedlist.as.table.xml; M: /trunk/xsl/params/margin.note.float.type.xml; M: /trunk/xsl/params/man.table.footnotes.divider.xml; M: /trunk/xsl/params/man.output.quietly.xml; M: /trunk/xsl/params/htmlhelp.hhc.show.root.xml; M: /trunk/xsl/params/footers.on.blank.pages.xml; M: /trunk/xsl/params/crop.mark.offset.xml; M: /trunk/xsl/params/olink.doctitle.xml; M: /trunk/xsl/params/section.level3.properties.xml; M: /trunk/xsl/params/callout.unicode.xml; M: /trunk/xsl/params/formal.procedures.xml; M: /trunk/xsl/params/toc.section.depth.xml; M: /trunk/xsl/params/index.prefer.titleabbrev.xml; M: /trunk/xsl/params/nominal.image.width.xml; M: /trunk/xsl/params/htmlhelp.show.menu.xml; M: /trunk/xsl/params/linenumbering.everyNth.xml; M: /trunk/xsl/params/double.sided.xml; M: /trunk/xsl/params/generate.revhistory.link.xml; M: /trunk/xsl/params/olink.properties.xml; M: /trunk/xsl/params/tex.math.in.alt.xml; M: /trunk/xsl/params/man.output.subdirs.enabled.xml; M: /trunk/xsl/params/section.title.properties.xml; M: /trunk/xsl/params/column.count.back.xml; M: /trunk/xsl/params/toc.indent.width.xml; M: /trunk/xsl/params/man.charmap.uri.xml; M: /trunk/xsl/params/index.method.xml; M: /trunk/xsl/params/generate.section.toc.level.xml; M: /trunk/xsl/params/page.width.portrait.xml; M: /trunk/xsl/params/man.th.extra2.max.length.xml; M: /trunk/xsl/params/abstract.properties.xml; M: /trunk/xsl/params/revhistory.table.properties.xml; M: /trunk/xsl/params/nominal.table.width.xml; M: /trunk/xsl/params/ulink.show.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.title.xml; M: /trunk/xsl/params/index.div.title.properties.xml; M: /trunk/xsl/params/profile.userlevel.xml; M: /trunk/xsl/params/html.cellpadding.xml; M: /trunk/xsl/params/orderedlist.label.width.xml; M: /trunk/xsl/params/crop.marks.xml; M: /trunk/xsl/params/menuchoice.menu.separator.xml; M: /trunk/xsl/params/author.othername.in.middle.xml; M: /trunk/xsl/params/section.level1.properties.xml; M: /trunk/xsl/params/textdata.default.encoding.xml; M: /trunk/xsl/params/label.from.part.xml; M: /trunk/xsl/params/use.embed.for.svg.xml; M: /trunk/xsl/params/list.item.spacing.xml; M: /trunk/xsl/params/htmlhelp.hhc.width.xml; M: /trunk/xsl/params/column.gap.body.xml; M: /trunk/xsl/params/rootid.xml; M: /trunk/xsl/params/glosslist.as.blocks.xml; M: /trunk/xsl/params/index.range.separator.xml; M: /trunk/xsl/params/html.ext.xml; M: /trunk/xsl/params/callout.list.table.xml; M: /trunk/xsl/params/highlight.source.xml; M: /trunk/xsl/params/show.revisionflag.xml; M: /trunk/xsl/params/man.output.manifest.enabled.xml; M: /trunk/xsl/params/make.single.year.ranges.xml; M: /trunk/xsl/params/pgwide.properties.xml; M: /trunk/xsl/params/generate.id.attributes.xml; M: /trunk/xsl/params/emphasis.propagates.style.xml; M: /trunk/xsl/params/abstract.title.properties.xml; M: /trunk/xsl/params/htmlhelp.hhc.xml; M: /trunk/xsl/params/monospace.properties.xml; M: /trunk/xsl/params/htmlhelp.hhk.xml; M: /trunk/xsl/params/table.borders.with.css.xml; M: /trunk/xsl/params/man.links.are.underlined.xml; M: /trunk/xsl/params/profile.vendor.xml; M: /trunk/xsl/params/shade.verbatim.xml; M: /trunk/xsl/params/callout.graphics.path.xml; M: /trunk/xsl/params/olink.debug.xml; M: /trunk/xsl/params/make.graphic.viewport.xml; M: /trunk/xsl/params/footnote.number.symbols.xml; M: /trunk/xsl/params/man.charmap.enabled.xml; M: /trunk/xsl/params/page.height.xml; M: /trunk/xsl/params/htmlhelp.button.jump1.url.xml; M: /trunk/xsl/params/man.font.table.title.xml; M: /trunk/xsl/params/revhistory.title.properties.xml; M: /trunk/xsl/params/chunker.output.media-type.xml; M: /trunk/xsl/params/glossterm.width.xml; M: /trunk/xsl/params/points.per.em.xml; M: /trunk/xsl/params/page.margin.inner.xml; M: /trunk/xsl/params/itemizedlist.label.width.xml; M: /trunk/xsl/params/ulink.hyphenate.xml; M: /trunk/xsl/params/crop.mark.bleed.xml; M: /trunk/xsl/params/use.id.as.filename.xml; M: /trunk/xsl/params/section.title.level6.properties.xml; M: /trunk/xsl/params/highlight.default.language.xml; M: /trunk/xsl/params/man.th.extra2.suppress.xml; M: /trunk/xsl/params/id.warnings.xml; M: /trunk/xsl/params/title.margin.left.xml; M: /trunk/xsl/params/chunker.output.doctype-system.xml; M: /trunk/xsl/params/man.indent.verbatims.xml; M: /trunk/xsl/params/table.frame.border.thickness.xml; M: /trunk/xsl/params/monospace.verbatim.properties.xml; M: /trunk/xsl/params/formal.title.properties.xml; M: /trunk/xsl/params/margin.note.width.xml; M: /trunk/xsl/params/man.hyphenate.filenames.xml; M: /trunk/xsl/params/blockquote.properties.xml; M: /trunk/xsl/params/callout.defaultcolumn.xml; M: /trunk/xsl/params/profile.security.xml; M: /trunk/xsl/params/informal.object.properties.xml; M: /trunk/xsl/params/formal.title.placement.xml; M: /trunk/xsl/params/draft.watermark.image.xml; M: /trunk/xsl/params/equation.properties.xml; M: /trunk/xsl/params/body.font.family.xml; M: /trunk/xsl/params/ignore.image.scaling.xml; M: /trunk/xsl/params/chunk.first.sections.xml; M: /trunk/xsl/params/base.dir.xml; M: /trunk/xsl/params/footnote.properties.xml; M: /trunk/xsl/params/olink.outline.ext.xml; M: /trunk/xsl/params/img.src.path.xml; M: /trunk/xsl/params/qanda.title.properties.xml; M: /trunk/xsl/params/ebnf.statement.terminator.xml; M: /trunk/xsl/params/callouts.extension.xml; M: /trunk/xsl/params/manifest.in.base.dir.xml; M: /trunk/xsl/params/fop1.extensions.xml; M: /trunk/xsl/params/olink.sysid.xml; M: /trunk/xsl/params/section.title.level4.properties.xml; M: /trunk/xsl/params/monospace.font.family.xml; M: /trunk/xsl/params/l10n.gentext.language.xml; M: /trunk/xsl/params/graphic.default.extension.xml; M: /trunk/xsl/params/default.image.width.xml; M: /trunk/xsl/params/htmlhelp.button.refresh.xml; M: /trunk/xsl/params/chunker.output.cdata-section-elements.xml; M: /trunk/xsl/params/admon.graphics.path.xml; M: /trunk/xsl/params/admon.style.xml; M: /trunk/xsl/params/profile.revision.xml; M: /trunk/xsl/params/generate.manifest.xml; M: /trunk/xsl/params/html.longdesc.xml; M: /trunk/xsl/params/footer.rule.xml; M: /trunk/xsl/params/eclipse.plugin.provider.xml; M: /trunk/xsl/params/refentry.source.name.profile.xml; M: /trunk/xsl/params/toc.max.depth.xml; M: /trunk/xsl/params/chunker.output.indent.xml; M: /trunk/xsl/params/html.head.legalnotice.link.multiple.xml; M: /trunk/xsl/params/toc.list.type.xml; M: /trunk/xsl/params/link.mailto.url.xml; M: /trunk/xsl/params/table.properties.xml; M: /trunk/xsl/params/side.float.properties.xml; M: /trunk/xsl/params/man.charmap.use.subset.xml; M: /trunk/xsl/params/annotation.graphic.open.xml; M: /trunk/xsl/params/html.cellspacing.xml; M: /trunk/xsl/params/default.table.width.xml; M: /trunk/xsl/params/xep.extensions.xml; M: /trunk/xsl/params/admonition.properties.xml; M: /trunk/xsl/params/toc.margin.properties.xml; M: /trunk/xsl/params/chunk.toc.xml; M: /trunk/xsl/params/table.entry.padding.xml; M: /trunk/xsl/params/header.rule.xml; M: /trunk/xsl/params/glossentry.show.acronym.xml; M: /trunk/xsl/params/variablelist.as.blocks.xml; M: /trunk/xsl/params/man.hyphenate.xml; M: /trunk/xsl/params/refentry.source.name.profile.enabled.xml; M: /trunk/xsl/params/section.label.includes.component.label.xml; M: /trunk/xsl/params/bridgehead.in.toc.xml; M: /trunk/xsl/params/section.title.level2.properties.xml; M: /trunk/xsl/params/admon.graphics.extension.xml; M: /trunk/xsl/params/inherit.keywords.xml; M: /trunk/xsl/params/insert.xref.page.number.xml; M: /trunk/xsl/params/pixels.per.inch.xml; M: /trunk/xsl/params/refentry.pagebreak.xml; M: /trunk/xsl/params/profile.lang.xml; M: /trunk/xsl/params/insert.olink.page.number.xml; M: /trunk/xsl/params/generate.meta.abstract.xml; M: /trunk/xsl/params/graphicsize.extension.xml; M: /trunk/xsl/params/man.indent.lists.xml; M: /trunk/xsl/params/funcsynopsis.decoration.xml; M: /trunk/xsl/params/runinhead.title.end.punct.xml; M: /trunk/xsl/params/man.string.subst.map.xml; M: /trunk/xsl/params/man.links.list.enabled.xml; M: /trunk/xsl/params/section.autolabel.max.depth.xml; M: /trunk/xsl/params/htmlhelp.show.advanced.search.xml; M: /trunk/xsl/params/htmlhelp.map.file.xml; M: /trunk/xsl/params/l10n.gentext.use.xref.language.xml; M: /trunk/xsl/params/body.font.size.xml; M: /trunk/xsl/params/html.stylesheet.type.xml; M: /trunk/xsl/params/refentry.xref.manvolnum.xml; M: /trunk/xsl/params/runinhead.default.title.end.punct.xml; M: /trunk/xsl/params/navig.graphics.extension.xml; M: /trunk/xsl/params/itemizedlist.label.properties.xml; M: /trunk/xsl/params/htmlhelp.force.map.and.alias.xml; M: /trunk/xsl/params/profile.os.xml; M: /trunk/xsl/params/htmlhelp.alias.file.xml; M: /trunk/xsl/params/page.margin.outer.xml; M: /trunk/xsl/params/annotation.graphic.close.xml; M: /trunk/xsl/params/eclipse.autolabel.xml; M: /trunk/xsl/params/table.frame.border.style.xml; M: /trunk/xsl/params/navig.graphics.path.xml; M: /trunk/xsl/params/htmlhelp.hhc.binary.xml; M: /trunk/xsl/params/index.on.type.xml; M: /trunk/xsl/params/target.database.document.xml; M: /trunk/xsl/params/man.subheading.divider.xml; M: /trunk/xsl/params/chunker.output.method.xml; M: /trunk/xsl/params/make.index.markup.xml; M: /trunk/xsl/params/olink.base.uri.xml; M: /trunk/xsl/params/phrase.propagates.style.xml; M: /trunk/xsl/params/man.indent.refsect.xml; M: /trunk/xsl/params/example.properties.xml; M: /trunk/xsl/params/man.font.table.headings.xml; M: /trunk/xsl/params/profile.revisionflag.xml; M: /trunk/xsl/params/region.after.extent.xml; M: /trunk/xsl/params/qanda.title.level5.properties.xml; M: /trunk/xsl/params/marker.section.level.xml; M: /trunk/xsl/params/footer.table.height.xml; M: /trunk/xsl/params/autotoc.label.separator.xml; M: /trunk/xsl/params/footer.column.widths.xml; M: /trunk/xsl/params/hyphenate.verbatim.xml; M: /trunk/xsl/params/xref.properties.xml; M: /trunk/xsl/params/man.output.base.dir.xml; M: /trunk/xsl/params/man.links.list.heading.xml; M: /trunk/xsl/params/insert.link.page.number.xml; M: /trunk/xsl/params/htmlhelp.button.jump2.title.xml; M: /trunk/xsl/params/l10n.lang.value.rfc.compliant.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;namespace&nbsp;declarations&nbsp;to&nbsp;document&nbsp;elements&nbsp;for&nbsp;all&nbsp;param&nbsp;files.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/params/index.method.xml - Robert Stayton" class="commit-message">Updated&nbsp;index.method&nbsp;doc&nbsp;to&nbsp;describe&nbsp;revised&nbsp;setup&nbsp;for&nbsp;importing&nbsp;<a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>&nbsp;extensions.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/contrib.inline.enabled.xml; A: /trunk/xsl/params/blurb.on.titlepage.enabled.xml; A: /trunk/xsl/params/othercredit.like.author.enabled.xml; A: /trunk/xsl/params/editedby.enabled.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;several&nbsp;new&nbsp;HTML&nbsp;parameters&nbsp;for&nbsp;controlling&nbsp;appearance&nbsp;of<br>
content&nbsp;on&nbsp;HTML&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;pages:<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/contrib.inline.enabled.html"><em class="parameter"><code>contrib.inline.enabled</code></em></a>:<br>
&nbsp;&nbsp;If&nbsp;non-zero&nbsp;(the&nbsp;default),&nbsp;output&nbsp;of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/contrib.html"><code class="sgmltag-element">contrib</code></a>&nbsp;element&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;as&nbsp;inline&nbsp;content&nbsp;rather&nbsp;than&nbsp;as&nbsp;block&nbsp;content.<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/othercredit.like.author.enabled.html"><em class="parameter"><code>othercredit.like.author.enabled</code></em></a>:<br>
&nbsp;&nbsp;If&nbsp;non-zero,&nbsp;output&nbsp;of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/othercredit.html"><code class="sgmltag-element">othercredit</code></a>&nbsp;element&nbsp;on&nbsp;titlepages&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;in&nbsp;the&nbsp;same&nbsp;style&nbsp;as&nbsp;<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>&nbsp;output.&nbsp;If&nbsp;zero<br>
&nbsp;&nbsp;(the&nbsp;default),&nbsp;<a href="http://docbook.org/tdg/en/html/othercredit.html"><code class="sgmltag-element">othercredit</code></a>&nbsp;output&nbsp;is&nbsp;displayed&nbsp;using&nbsp;a&nbsp;style<br>
&nbsp;&nbsp;different&nbsp;than&nbsp;that&nbsp;of&nbsp;<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>.<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/blurb.on.titlepage.enabled.html"><em class="parameter"><code>blurb.on.titlepage.enabled</code></em></a>:<br>
&nbsp;&nbsp;If&nbsp;non-zero,&nbsp;output&nbsp;from&nbsp;authorblurb&nbsp;and&nbsp;<a href="http://docbook.org/tdg/en/html/personblurb.html"><code class="sgmltag-element">personblurb</code></a>&nbsp;elements&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;pages.&nbsp;If&nbsp;zero&nbsp;(the&nbsp;default),&nbsp;output&nbsp;from<br>
&nbsp;&nbsp;those&nbsp;elements&nbsp;is&nbsp;suppressed&nbsp;on&nbsp;<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>&nbsp;pages&nbsp;(unless&nbsp;you&nbsp;are<br>
&nbsp;&nbsp;using&nbsp;a&nbsp;titlepage&nbsp;customization&nbsp;that&nbsp;causes&nbsp;them&nbsp;to&nbsp;be&nbsp;included).<br>
<br>
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/editedby.enabled.html"><em class="parameter"><code>editedby.enabled</code></em></a><br>
&nbsp;&nbsp;If&nbsp;non-zero&nbsp;(the&nbsp;default),&nbsp;a&nbsp;localized&nbsp;Edited&nbsp;by&nbsp;heading&nbsp;is<br>
&nbsp;&nbsp;displayed&nbsp;above&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>&nbsp;names&nbsp;in&nbsp;output&nbsp;of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">editor</code></a>&nbsp;element.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/email.delimiters.enabled.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;new&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/email.delimiters.enabled.html"><em class="parameter"><code>email.delimiters.enabled</code></em></a>&nbsp;param.&nbsp;If&nbsp;non-zero&nbsp;(the<br>
default),&nbsp;delimiters&nbsp;are&nbsp;generated&nbsp;around&nbsp;e-mail&nbsp;addresses&nbsp;(output<br>
of&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/email.html"><code class="sgmltag-element">email</code></a>&nbsp;element).&nbsp;If&nbsp;zero,&nbsp;the&nbsp;delimiters&nbsp;are&nbsp;suppressed.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/qanda.nested.in.toc.xml - Michael(tm) Smith" class="commit-message">Added&nbsp;<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.nested.in.toc.html"><em class="parameter"><code>qanda.nested.in.toc</code></em></a>&nbsp;param.&nbsp;Default&nbsp;value&nbsp;is&nbsp;zero.&nbsp;If<br>
non-zero,&nbsp;instances&nbsp;of&nbsp;"nested"&nbsp;<a href="http://docbook.org/tdg/en/html/qandaentry.html"><code class="sgmltag-element">Qandaentry</code></a>&nbsp;(ones&nbsp;that&nbsp;are&nbsp;children<br>
of&nbsp;<a href="http://docbook.org/tdg/en/html/answer.html"><code class="sgmltag-element">Answer</code></a>&nbsp;elements)&nbsp;are&nbsp;displayed&nbsp;in&nbsp;the&nbsp;<a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">TOC</code></a>.&nbsp;Closes&nbsp;patch&nbsp;1509018<br>
(from&nbsp;Daniel&nbsp;Leidert).&nbsp;Currently&nbsp;on&nbsp;affects&nbsp;HTML&nbsp;output&nbsp;(no&nbsp;patch<br>
for&nbsp;FO&nbsp;output&nbsp;provided).</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/params/highlight.source.xml; A: /trunk/xsl/params/highlight.default.language.xml - Jirka Kosek" class="commit-message">Initial&nbsp;support&nbsp;of&nbsp;syntax&nbsp;highlighting&nbsp;of&nbsp;programlistings.</span></p></div>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1.71.0_Tools"></a>Tools</h3></div></div></div>

<p>The following changes have been made to the
            <code class="filename">tools</code> code
            since the 1.70.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith" class="commit-message">Racheted&nbsp;down&nbsp;font&nbsp;sizes&nbsp;of&nbsp;headings&nbsp;in&nbsp;example&nbsp;makefile&nbsp;FO&nbsp;output.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith" class="commit-message">Added&nbsp;param&nbsp;and&nbsp;attribute&nbsp;set&nbsp;to&nbsp;example&nbsp;makefile,&nbsp;for&nbsp;getting<br>
wrapping&nbsp;in&nbsp;verbatims&nbsp;in&nbsp;FO&nbsp;output.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/tools/make/Makefile.docParam; D: /trunk/xsl/tools/make/Makefile.paramDoc - Michael(tm) Smith" class="commit-message">Renamed&nbsp;Makefile.paramDoc&nbsp;to&nbsp;Makefile.docParam.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="A: /trunk/xsl/tools/make/Makefile.paramDoc - Michael(tm) Smith" class="commit-message">Added&nbsp;Makefile.paramDoc&nbsp;file,&nbsp;for&nbsp;creating&nbsp;versions&nbsp;of&nbsp;param.xsl<br>
files&nbsp;with&nbsp;doc&nbsp;embedded.</span></p></div>
</li><li>
<div class="literallayout"><p><span title="M: /trunk/xsl/tools/make/Makefile.DocBook - Michael(tm) Smith" class="commit-message">Added&nbsp;variable&nbsp;to&nbsp;example&nbsp;makefile&nbsp;for&nbsp;controlling&nbsp;whether&nbsp;HTML&nbsp;or<br>
XHTML&nbsp;is&nbsp;generated.</span></p></div>
</li></ul></div>
</div>
</div>

<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1701"></a>Release: 1.70.1</h2></div></div></div>


<p>This is a stable release of the 1.70 stylesheets. It includes only a
few small changes from 1.70.0.</p>

<p>The following is a list of changes that have been made
        since the 1.70.0 release.</p>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1701_FO"></a>FO</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">fo</code> code
        since the 1.70.0 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.</p>
<p class="commit-changes">Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek</p>
</li><li>
<p>Support DBv5 revisions with full author name (not only authorinitials)</p>
<p class="commit-changes">Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1701_HTML"></a>HTML</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">html</code> code
        since the 1.70.0 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Support DBv5 revisions with full author name (not only authorinitials)</p>
<p class="commit-changes">Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1701_HTMLHelp"></a>HTMLHelp</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">htmlhelp</code> code
        since the 1.70.0 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>htmlhelp.generate.index is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).</p>
<p class="commit-changes">Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek</p>
</li><li>
<p>Support chunk.tocs.and.lots in HTML Help</p>
<p class="commit-changes">Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1701_Params"></a>Params</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">params</code> code
        since the 1.70.0 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.</p>
<p class="commit-changes">Modified: fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek</p>
</li></ul></div>
</div>

</div>

<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1700"></a>Release: 1.70.0</h2></div></div></div>

<p>As with all DocBook Project <a href="#dot0" title="About dot-zero releases">dot-zero</a>
releases, this is an experimental release. It will be followed shortly
by a stable release.</p>

<p>This release adds a number of new features,
including:</p>

<div class="itemizedlist"><ul type="disc"><li>
    <p>support for selecting alternative index-collation methods
    (in particular, support for using a collation library developed by
    Eliot Kimber)</p>
  </li><li>
    <p>improved handling of DocBook 5 document instances (through a
    namespace-stripping mechanism)</p>
  </li><li>
    <p>full support for CALS and HTML tables in manpages
    output</p>
  </li><li>
    <p>a mechanism for preserving relative URIs in documents that
    make use of XInclude</p>
  </li><li>
    <p>support for the "new" <code class="literal">.90</code> version of
    FOP</p>
  </li><li>
    <p>enhanced capabilities for controlling formatting of lists in HTML
    and FO output</p>
  </li><li>
    <p>autogeneration of AUTHOR and COPYRIGHT sections in manpages
    output</p>
  </li><li>
    <p>support for generating crop marks in FO/PDF output</p>
  </li><li>
    <p>support for qandaset as a root element in FO output</p>
  </li><li>
    <p>support for floatstyle and orient on all table types</p>
  </li><li>
    <p>support for floatstyle in figure, and example</p>
  </li><li>
    <p>pgwide.properties attribute-set supports extending figure,
      example and table into the left indent area instead of spanning
      multiple columns.</p>
  </li></ul></div>
    <p>The following is a detailed list of enhancements and API
    changes that have been made since the 1.69.1 release.</p>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Common"></a>Common</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">common</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Add the xsl:key for the kimber
indexing method.</p>
<p class="commit-changes">Modified: common/autoidx-ng.xsl,1.2 - Robert
Stayton</p>
</li><li>
<p>Add support for
<a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a>.</p>
<p class="commit-changes">Modified: common/labels.xsl,1.37;
common/subtitles.xsl,1.7; common/titles.xsl,1.35 - Robert
Stayton</p>
</li><li>
<p>Support dbhtml/dbfo start PI for
<a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a> numbering in both HTML and
FO</p>
<p class="commit-changes">Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman
Walsh</p>
</li><li>
<p>Added CVS
header.</p>
<p class="commit-changes">Modified: common/stripns.xsl,1.12 - Robert
Stayton</p>
</li><li>
<p>Changed content model of text
element to ANY rather than #PCDATA because they could contain
markup.</p>
<p class="commit-changes">Modified: common/targetdatabase.dtd,1.7 - Robert
Stayton</p>
</li><li>
<p>Added
<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.meta.get.quietly param.</p>
<p>If zero (the
default), notes and warnings about "missing" markup are generated
during gathering of <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> metadata. If
non-zero, the metadata is gathered "quietly" -- that is, the
notes and warnings are suppressed.</p>
<p>NOTE: If you are
processing a large amount of <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> content,  you
may be able to speed up processing significantly by  setting a
non-zero value for
<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.meta.get.quietly.</p>
<p class="commit-changes">Modified: common/refentry.xsl,1.17;
manpages/param.ent,1.15; manpages/param.xweb,1.17;
params/refentry.meta.get.quietly.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>After namespace stripping, the
source document is the temporary tree created by the stripping
process and it has the wrong base <a href="http://docbook.org/tdg/en/html/uri.html"><code class="sgmltag-element">URI</code></a> for relative
references. Earlier versions of this code used to try to fix that
by patching the elements with relative @fileref attributes. That
was inadequate because it calculated an absolute base <a href="http://docbook.org/tdg/en/html/uri.html"><code class="sgmltag-element">URI</code></a>
without considering that there might be xml:base attributes
already in effect. It seems obvious now that the right thing to
do is simply to put the xml:base on the root of the document. And
that seems to work.</p>
<p class="commit-changes">Modified: common/stripns.xsl,1.7 - Norman
Walsh</p>
</li><li>
<p>Added support for "software" and
"sectdesc" class values on <a href="http://docbook.org/tdg/en/html/refmiscinfo.html"><code class="sgmltag-element">refmiscinfo</code></a>; "software" is
treated identically to "source", and "setdesc" is treated
identically to "manual".</p>
<p class="commit-changes">Modified: common/refentry.xsl,1.10;
params/man.th.extra2.max.length.xml,1.3;
params/refentry.source.name.profile.xml,1.4 - Michael(tm)
Smith</p>
</li><li>
<p>Added support for DocBook 5
namespace-stripping in manpages stylesheet. Closes request
#1210692.</p>
<p class="commit-changes">Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 -
Michael(tm) Smith</p>
</li><li>
<p>Added &lt;xsl:template
match="/"&gt; to make stripns.xsl usable as a standalone
stylesheet for stripping out DocBook 5/NG to DocBook 4. Note that
DocBook XSLT drivers that include this stylesheet all override
the match="/" template.</p>
<p class="commit-changes">Modified: common/stripns.xsl,1.4 - Michael(tm)
Smith</p>
</li><li>
<p>Number figures, examples, and
tables from <a href="http://docbook.org/tdg/en/html/book.html"><code class="sgmltag-element">book</code></a> if there is no prefix (i.e. if
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chapter.autolabel.html"><em class="parameter"><code>chapter.autolabel</code></em></a> is set to 0). This avoids
having the list of figures where the figures mysteriously restart
their numeration periodically when
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chapter.autolabel.html"><em class="parameter"><code>chapter.autolabel</code></em></a> is set to
0.</p>
<p class="commit-changes">Modified: common/labels.xsl,1.36 - David Cramer</p>
</li><li>
<p>Add <a href="http://docbook.org/tdg/en/html/task.html"><code class="sgmltag-element">task</code></a> template in
<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>.markup mode.</p>
<p class="commit-changes">Modified: common/titles.xsl,1.34 - Robert
Stayton</p>
</li><li>
<p>Add children (with ids) of formal
objects to target data.</p>
<p class="commit-changes">Modified: common/targets.xsl,1.10 - Robert
Stayton</p>
</li><li>
<p>Added support for case when
<a href="http://docbook.org/tdg/en/html/personname.html"><code class="sgmltag-element">personname</code></a> doesn't contain specific name markup (as allowed
in DocBook 5.0)</p>
<p class="commit-changes">Modified: common/common.xsl,1.54 - Jirka
Kosek</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Extensions"></a>Extensions</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">extensions</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Support Xalan
2.7</p>
<p class="commit-changes">Modified: extensions/xalan27/.cvsignore,1.1;
extensions/xalan27/build.xml,1.1;
extensions/xalan27/nbproject/.cvsignore,1.1;
extensions/xalan27/nbproject/build-impl.xml,1.1;
extensions/xalan27/nbproject/genfiles.properties,1.1;
extensions/xalan27/nbproject/project.properties,1.1;
extensions/xalan27/nbproject/project.xml,1.1;
extensions/xalan27/src/com/nwalsh/xalan/CVS.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/Callout.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/FormatCallout.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/FormatDingbatCallout.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/FormatGraphicCallout.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/FormatTextCallout.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/FormatUnicodeCallout.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/Func.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/ImageIntrinsics.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/Params.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/Table.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/Text.java,1.1;
extensions/xalan27/src/com/nwalsh/xalan/Verbatim.java,1.1 - Norman
Walsh</p>
</li><li>
<p>Handle the case where the imageFn
is actually a <a href="http://docbook.org/tdg/en/html/uri.html"><code class="sgmltag-element">URI</code></a>. This still needs
work.</p>
<p class="commit-changes">Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4
- Norman Walsh</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_FO"></a>FO</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">fo</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Adapted to the new indexing
code. Now works just like a wrapper that calls kosek indexing method,
originally implemented here.</p>
<p class="commit-changes">Modified: fo/autoidx-ng.xsl,1.5 - Jirka
Kosek</p>
</li><li>
<p>Added parameters for header/footer
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> minimum height.</p>
<p class="commit-changes">Modified: fo/pagesetup.xsl,1.60;
fo/param.ent,1.100; fo/param.xweb,1.113 - Robert
Stayton</p>
</li><li>
<p>Add the <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>.method
parameter.</p>
<p class="commit-changes">Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert
Stayton</p>
</li><li>
<p>Integrate support for three
indexing methods: - the original English-only method. -
Jirka Kosek's method using EXSLT extensions. - Eliot Kimber's
method using Saxon extensions. Use the '<a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>.method'
parameter to select.</p>
<p class="commit-changes">Modified: fo/autoidx.xsl,1.38 - Robert
Stayton</p>
</li><li>
<p>Add support for <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">TOC</code></a> for
<a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a> in fo output.</p>
<p class="commit-changes">Modified: fo/autotoc.xsl,1.30;
fo/qandaset.xsl,1.20 - Robert Stayton</p>
</li><li>
<p>Added parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/ulink.hyphenate.html"><em class="parameter"><code>ulink.hyphenate</code></em></a>.chars. Added parameter
insert.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.page.number.</p>
<p class="commit-changes">Modified: fo/param.ent,1.98;
fo/param.xweb,1.111 - Robert Stayton</p>
</li><li>
<p>Implemented feature request
#942524 to add insert.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.page.number to allow link
element cross references to have a page number.</p>
<p class="commit-changes">Modified: fo/xref.xsl,1.67 -
Robert Stayton</p>
</li><li>
<p>Add support for
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/ulink.hyphenate.html"><em class="parameter"><code>ulink.hyphenate</code></em></a>.chars so more characters
can be break points in urls.</p>
<p class="commit-changes">Modified: fo/xref.xsl,1.66 - Robert
Stayton</p>
</li><li>
<p>Implemented patch #1075144 to make
the url text in a ulink in FO output an active <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> as
well.</p>
<p class="commit-changes">Modified: fo/xref.xsl,1.65 - Robert Stayton</p>
</li><li>
<p><a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> footnotes now
have their own <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.<a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>.properties
attribute set.</p>
<p class="commit-changes">Modified: fo/footnote.xsl,1.23 - Robert
Stayton</p>
</li><li>
<p>Add <a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a> to
root.elements.</p>
<p class="commit-changes">Modified: fo/docbook.xsl,1.41 - Robert
Stayton</p>
</li><li>
<p>Added mode="page.sequence" to make
it easier to put content into a page sequence.  First used for
<a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a>.</p>
<p class="commit-changes">Modified: fo/component.xsl,1.37 - Robert
Stayton</p>
</li><li>
<p>Implemented feature request
#1434408 to support formatting
of <a href="http://docbook.org/tdg/en/html/biblioentry.html"><code class="sgmltag-element">biblioentry</code></a>.</p>
<p class="commit-changes">Modified: fo/biblio.xsl,1.35 - Robert
Stayton</p>
</li><li>
<p>Added
<a href="http://docbook.org/tdg/en/html/biblioentry.html"><code class="sgmltag-element">biblioentry</code></a>.properties.</p>
<p class="commit-changes">Modified: fo/param.ent,1.97;
fo/param.xweb,1.110 - Robert Stayton</p>
</li><li>
<p>Support PTC/Arbortext
bookmarks</p>
<p class="commit-changes">Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman
Walsh</p>
</li><li>
<p>Added
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.<a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>.properties to permit
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> footnotes to format differently from regular
footnotes.</p>
<p class="commit-changes">Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert
Stayton</p>
</li><li>
<p>Refactored <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>
templates to unify their processing and support all options in
all types.  Now <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> and <a href="http://docbook.org/tdg/en/html/informaltable.html"><code class="sgmltag-element">informaltable</code></a>, in
both Cals and Html markup, use the same templates where possible,
and all support pgwide, rotation, and floats. There is also a
placeholder <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.container template to
support wrapping a <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> in a layout <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>,
so the XEP <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> "continued"
extension can be more easily implemented.</p>
<p class="commit-changes">Modified: fo/formal.xsl,1.52;
fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 - Robert
Stayton</p>
</li><li>
<p>Added new attribute set
<a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">toc</code></a>.line.properties for controlling appearance of lines in
ToC/LoT</p>
<p class="commit-changes">Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95;
fo/param.xweb,1.108 - Jirka Kosek</p>
</li><li>
<p>Added support for float to example
and <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a>. Added support for pgwide to
<a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a>, example, and <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> (the latter
two via a dbfo pgwide="1" processing
instruction).</p>
<p class="commit-changes">Modified: fo/formal.xsl,1.51 - Robert
Stayton</p>
</li><li>
<p>Add pgwide.properties
attribute-set.</p>
<p class="commit-changes">Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert
Stayton</p>
</li><li>
<p>Added <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress
param.</p>
<p>If the value of <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress is
non-zero, then display <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a> contents is suppressed
in output. Affects HTML and FO output
only.</p>
<p class="commit-changes">Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90;
html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Improved support for
<a href="http://docbook.org/tdg/en/html/task.html"><code class="sgmltag-element">task</code></a> subelements</p>
<p class="commit-changes">Modified: fo/task.xsl,1.3; html/task.xsl,1.3 -
Jirka Kosek</p>
</li><li>
<p>Adjusted spacing around
K&amp;R-formatted <a href="http://docbook.org/tdg/en/html/funcdef.html"><code class="sgmltag-element">Funcdef</code></a> and <a href="http://docbook.org/tdg/en/html/paramdef.html"><code class="sgmltag-element">Paramdef</code></a>
output such that it can more easily be discerned where one ends
and the other begins. Closes #1213264.</p>
<p class="commit-changes">Modified: fo/synop.xsl,1.18 -
Michael(tm) Smith</p>
</li><li>
<p>Made handling of
paramdef/parameter in FO output consistent with that in HTML and
manpages output. Closes #1213259.</p>
<p class="commit-changes">Modified: fo/synop.xsl,1.17 - Michael(tm)
Smith</p>
</li><li>
<p>Made handling of
<a href="http://docbook.org/tdg/en/html/refnamediv.html"><code class="sgmltag-element">Refnamediv</code></a> consistent with formatting in HTML
and manpages output; specifically, changed so that
<a href="http://docbook.org/tdg/en/html/refname.html"><code class="sgmltag-element">Refname</code></a> (comma-separated list of multiple instances
found) is used (instead of <a href="http://docbook.org/tdg/en/html/refentrytitle.html"><code class="sgmltag-element">Refentrytitle</code></a> as
previously), then em-dash, then the <a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">Refpurpose</code></a>. Closes
#1212562.</p>
<p class="commit-changes">Modified: fo/refentry.xsl,1.30 - Michael(tm)
Smith</p>
</li><li>
<p>Added output of
<a href="http://docbook.org/tdg/en/html/releaseinfo.html"><code class="sgmltag-element">Releaseinfo</code></a> to recto titlepage ("<a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">copyright</code></a>"
page) for <a href="http://docbook.org/tdg/en/html/book.html"><code class="sgmltag-element">Book</code></a> in FO output. This makes it consistent
with HTML output. Closes #1327034. Thanks to Paul DuBois for
reporting.</p>
<p class="commit-changes">Modified: fo/titlepage.templates.xml,1.28 - Michael(tm)
Smith</p>
</li><li>
<p>Added condition for setting
block-progression-dimension.minimum on table-row, instead of
height, when <a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/fop1.extensions.html"><em class="parameter"><code>fop1.extensions</code></em></a> is
non-zero. For an explanation of the reason for the change,
<a href="http://docbook.org/tdg/en/html/see.html"><code class="sgmltag-element">see</code></a>: http://wiki.apache.org/xmlgraphics-fop/Troubleshooting/CommonLogMessages</p>
<p class="commit-changes">Modified: fo/pagesetup.xsl,1.59
- Michael(tm) Smith</p>
</li><li>
<p>Added new
<a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress param for suppressing display
of <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">Refclass</code></a> in HTML and FO output. Did not add it to
manpages because manpages stylesheet is currently just silently
ignoring <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">Refclass</code></a> anyway. Closes request
#1461065. Thanks to Davor Ocelic (docelic) for
reporting.</p>
<p class="commit-changes">Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 -
Michael(tm) Smith</p>
</li><li>
<p>Add support for keep-together PI
to informal objects.</p>
<p class="commit-changes">Modified: fo/formal.xsl,1.50 - Robert
Stayton</p>
</li><li>
<p>Add support for
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/fop1.extensions.html"><em class="parameter"><code>fop1.extensions</code></em></a>.</p>
<p class="commit-changes">Modified: fo/formal.xsl,1.49;
fo/graphics.xsl,1.44; fo/table.xsl,1.47 - Robert
Stayton</p>
</li><li>
<p>Add support for fop1
bookmarks.</p>
<p class="commit-changes">Modified: fo/docbook.xsl,1.39 - Robert
Stayton</p>
</li><li>
<p>Add fop1.extentions parameter to
add support for fop development version.</p>
<p class="commit-changes">Modified: fo/param.ent,1.92;
fo/param.xweb,1.105 - Robert Stayton</p>
</li><li>
<p>Start supporting fop development
version, which will become fop version 1.</p>
<p class="commit-changes">Modified: fo/fop1.xsl,1.1 -
Robert Stayton</p>
</li><li>
<p>Add template for <a href="http://docbook.org/tdg/en/html/task.html"><code class="sgmltag-element">task</code></a>
in mode="xref-to".</p>
<p class="commit-changes">Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert
Stayton</p>
</li><li>
<p><a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> footnotes now
also get <a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>.properties
attribute-set.</p>
<p class="commit-changes">Modified: fo/footnote.xsl,1.22 - Robert
Stayton</p>
</li><li>
<p>Added <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>.separator
named template to compute the separator punctuation based on
locale.</p>
<p class="commit-changes">Modified: fo/autoidx.xsl,1.36 - Robert Stayton</p>
</li><li>
<p>Added support for <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>,
<a href="http://docbook.org/tdg/en/html/olink.html"><code class="sgmltag-element">olink</code></a>, and <a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a> within OO
<a href="http://docbook.org/tdg/en/html/classsynopsis.html"><code class="sgmltag-element">Classsynopsis</code></a> and children. (Because DocBook NG/5
allows it).</p>
<p class="commit-changes">Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm)
Smith</p>
</li><li>
<p>Support <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a> as an
inline</p>
<p class="commit-changes">Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman
Walsh</p>
</li><li>
<p>Added new parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/keep.relative.image.uris.html"><em class="parameter"><code>keep.relative.image.uris</code></em></a></p>
<p class="commit-changes">Modified: fo/param.ent,1.91;
fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96;
params/keep.relative.image.uris.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>Map Unicode space characters
U+2000-U+200A to fo:leaders.</p>
<p class="commit-changes">Modified: fo/docbook.xsl,1.38;
fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 - Jirka
Kosek</p>
</li><li>
<p>Output a real em dash for em-dash
dingbat (instead of two hypens).</p>
<p class="commit-changes">Modified: fo/fo.xsl,1.7 - Michael(tm)
Smith</p>
</li><li>
<p>Support default <a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>
width parameters for itemized and ordered lists</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.64;
fo/param.ent,1.90; fo/param.xweb,1.103;
params/itemizedlist.label.width.xml,1.1;
params/orderedlist.label.width.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>Generate localized
<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> for <a href="http://docbook.org/tdg/en/html/refsynopsisdiv.html"><code class="sgmltag-element">Refsynopsisdiv</code></a> if no
appropriate <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">Title</code></a> descendant found in source. Closes
#1212398. This change makes behavior for the <a href="http://docbook.org/tdg/en/html/synopsis.html"><code class="sgmltag-element">Synopsis</code></a>
<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> consistent with the behavior of HTML and
manpages output.</p>
<p>Also, added
xsl:use-attribute-sets="normal.<a href="http://docbook.org/tdg/en/html/para.html"><code class="sgmltag-element">para</code></a>.spacing" to
block generated for <a href="http://docbook.org/tdg/en/html/cmdsynopsis.html"><code class="sgmltag-element">Cmdsynopsis</code></a> output. Previously,
that block had no spacing at all specified, which resulted it
being crammed up to closely to the <a href="http://docbook.org/tdg/en/html/synopsis.html"><code class="sgmltag-element">Synopsis</code></a>
head.</p>
<p class="commit-changes">Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm)
Smith</p>
</li><li>
<p>Added parameters to support
localization of <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>
item punctuation.</p>
<p class="commit-changes">Modified: fo/autoidx.xsl,1.35 - Robert
Stayton</p>
</li><li>
<p>Added
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.number.separator.html"><em class="parameter"><code>index.number.separator</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.range.separator.html"><em class="parameter"><code>index.range.separator</code></em></a>,
and <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.term.separator.html"><em class="parameter"><code>index.term.separator</code></em></a> parameters to
support localization of punctuation in <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>
entries.</p>
<p class="commit-changes">Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert
Stayton</p>
</li><li>
<p>Added "Cross References"
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> in HTML doc (for consistency with the FO
doc). Also, moved the existing FO "Cross
References" <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> to follow the "Linking"
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>.</p>
<p class="commit-changes">Modified: fo/param.xweb,1.101; html/param.xweb,1.95 -
Michael(tm) Smith</p>
</li><li>
<p>Added ID attribues to all
<a href="http://docbook.org/tdg/en/html/reference.html"><code class="sgmltag-element">Reference</code></a> elements (e.g., id="tables" for the doc for
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> on <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">Table</code></a> params). So pages for
all subsections of ref docs now have stable filenames instead
of arbitrary generated filenames.</p>
<p class="commit-changes">Modified: fo/param.xweb,1.100;
html/param.xweb,1.94 - Michael(tm) Smith</p>
</li><li>
<p>Added two new parameters for
handling of multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> elements:</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a>: 
When the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a> is
non-zero, it will  generate a line break after each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a>.</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>: 
When a <a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> contains multiple <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>
elements, the string  specified in the value of the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>  parameter is
placed after each <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> except the last. The default 
is ", " (a comma followed by a space). To suppress rendering of 
the separator, set the value of
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a> to  the empty
string ("").</p>
<p>These parameters are primarily intended to be
useful if you have multi-term varlistentries that have long
terms.</p>
<p>Closes #1306676. Thanks to Sam Steingold for
providing an example "lots of long terms" doc that demonstrated
the value of having these options.</p>
<p>Also, added
normalize-space() call to processing of each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>.</p>
<p>This change affects all output formats
(HTML, PDF, manpages). The default behavior should pretty much
remain the same as before, but it is possible (as always) that
the change may introduce some
new bugginess.</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.62; fo/param.ent,1.88;
fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86;
html/param.xweb,1.93; manpages/lists.xsl,1.22;
manpages/param.ent,1.14; manpages/param.xweb,1.16;
params/variablelist.term.break.after.xml,1.1;
params/variablelist.term.separator.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Add <a href="http://docbook.org/tdg/en/html/sidebar.html"><code class="sgmltag-element">sidebar</code></a> titlepage
placeholder attset for styles.</p>
<p class="commit-changes">Modified: fo/titlepage.xsl,1.37 - Robert
Stayton</p>
</li><li>
<p>Add titlepage for
<a href="http://docbook.org/tdg/en/html/sidebar.html"><code class="sgmltag-element">sidebar</code></a>.</p>
<p class="commit-changes">Modified: fo/titlepage.templates.xml,1.27 - Robert
Stayton</p>
</li><li>
<p>Implemented RFE
#1292615.</p>
<p>Added bunch of new parameters (attribute sets)
that affect list presentation: list.block.properties,
<a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a>.properties, <a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a>.properties,
<a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a>.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.properties and
<a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a>.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.properties. Default behaviour
of stylesheets has not been changed but further customizations will be
much more easier.</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.61; fo/param.ent,1.87;
fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1;
params/itemizedlist.properties.xml,1.1;
params/list.block.properties.xml,1.1;
params/orderedlist.label.properties.xml,1.1;
params/orderedlist.properties.xml,1.1 - Jirka
Kosek</p>
</li><li>
<p>Implemented RFE
#1242092.</p>
<p>You can enable crop marks in your document by
setting crop.marks=1 and xep.extensions=1. Appearance of crop
marks can be controlled by parameters
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/crop.mark.bleed.html"><em class="parameter"><code>crop.mark.bleed</code></em></a> (6pt),
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/crop.mark.offset.html"><em class="parameter"><code>crop.mark.offset</code></em></a> (24pt) and
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/crop.mark.width.html"><em class="parameter"><code>crop.mark.width</code></em></a> (0.5pt).</p>
<p>Also there
is new named template called user-xep-pis. You can overwrite it in
order to produce some PIs that can control XEP as described in
http://www.renderx.com/reference.html#Output_Formats</p>
<p class="commit-changes">Modified: fo/docbook.xsl,1.36;
fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23;
params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1;
params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka
Kosek</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_HTML"></a>HTML</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">html</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>implemented
<a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>.method parameter and three
methods.</p>
<p class="commit-changes">Modified: html/autoidx.xsl,1.28 - Robert
Stayton</p>
</li><li>
<p>added <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>.method
parameter to support 3 indexing methods.</p>
<p class="commit-changes">Modified: html/param.ent,1.94;
html/param.xweb,1.103 - Robert Stayton</p>
</li><li>
<p>Implemented feature request
#1072510 as a processing instruction to permit including external
HTML content into HTML output.</p>
<p class="commit-changes">Modified: html/pi.xsl,1.9 - Robert
Stayton</p>
</li><li>
<p>Added new parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.tocs.and.lots.html"><em class="parameter"><code>chunk.tocs.and.lots</code></em></a>.has.<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> which
controls presence of <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> in a separate chunk with
ToC/LoT. Disabling <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> can be very useful if you are
generating frameset output (well, yes those frames, but some customers
really want them ;-).</p>
<p class="commit-changes">Modified: html/chunk-code.xsl,1.15;
html/param.ent,1.93; html/param.xweb,1.102;
params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka
Kosek</p>
</li><li>
<p>Support dbhtml/dbfo start PI for
<a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a> numbering in both HTML and
FO</p>
<p class="commit-changes">Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman
Walsh</p>
</li><li>
<p>Allow <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">ToC</code></a> without
<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> also for set and
<a href="http://docbook.org/tdg/en/html/book.html"><code class="sgmltag-element">book</code></a>.</p>
<p class="commit-changes">Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 -
Jirka Kosek</p>
</li><li>
<p>Implemented floats uniformly for
<a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a>, example, <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a>
and <a href="http://docbook.org/tdg/en/html/informalfigure.html"><code class="sgmltag-element">informalfigure</code></a>, <a href="http://docbook.org/tdg/en/html/informalexample.html"><code class="sgmltag-element">informalexample</code></a>, and
<a href="http://docbook.org/tdg/en/html/informalequation.html"><code class="sgmltag-element">informalequation</code></a>.</p>
<p class="commit-changes">Modified: html/formal.xsl,1.22 - Robert
Stayton</p>
</li><li>
<p>Added the
autotoc.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.in.hyperlink param.</p>
<p>If the value
of autotoc.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.in.hyperlink is non-zero, labels
are included in hyperlinked titles in the <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">TOC</code></a>. If it
is instead zero, labels are still displayed prior to the
hyperlinked titles, but are not hyperlinked along with the
titles.</p>
<p>Closes patch #1065868. Thanks to anatoly techtonik
for the patch.</p>
<p class="commit-changes">Modified: html/autotoc.xsl,1.36; html/param.ent,1.92;
html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added two new params:
html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.types
and html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.multiple.</p>
<p>If
the value of the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/generate.legalnotice.link.html"><em class="parameter"><code>generate.legalnotice.link</code></em></a> is
non-zero, then the stylesheet generates (in the head
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> of the HTML source) either a single HTML
<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> element or, if the value of
the html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.multiple is
non-zero, one <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> element for each <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>
type specified. Each <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> has the
following attributes:</p>
<p> - a rel attribute whose value
is derived from the value of 
html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.types</p>
<p> -
an href attribute whose value is set to the URL of the file 
containing the <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a></p>
<p> - a <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>
attribute whose value is set to the <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> of the 
corresponding <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a> (or a <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>
programatically  determined by the stylesheet)</p>
<p>For
example:</p>
<p> &lt;<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> rel="<a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">copyright</code></a>"
href="ln-id2524073.html" title="Legal Notice"&gt;</p>
<p>Closes
#1476450. Thanks to Sam Steingold.</p>
<p class="commit-changes">Modified: html/chunk-common.xsl,1.45;
html/param.ent,1.91; html/param.xweb,1.100;
params/generate.legalnotice.link.xml,1.4;
params/html.head.legalnotice.link.multiple.xml,1.1;
params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress
param.</p>
<p>If the value of <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress is
non-zero, then display <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a> contents is suppressed
in output. Affects HTML and FO output
only.</p>
<p class="commit-changes">Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90;
html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Improved support for
<a href="http://docbook.org/tdg/en/html/task.html"><code class="sgmltag-element">task</code></a> subelements</p>
<p class="commit-changes">Modified: fo/task.xsl,1.3; html/task.xsl,1.3 -
Jirka Kosek</p>
</li><li>
<p>Added new
<a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress param for suppressing display
of <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">Refclass</code></a> in HTML and FO output. Did not add it to
manpages because manpages stylesheet is currently just silently
ignoring <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">Refclass</code></a> anyway. Closes request
#1461065. Thanks to Davor Ocelic (docelic) for
reporting.</p>
<p class="commit-changes">Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 -
Michael(tm) Smith</p>
</li><li>
<p>Process <a href="http://docbook.org/tdg/en/html/alt.html"><code class="sgmltag-element">alt</code></a> text with
normalize-space(). Replace tab indents with
spaces.</p>
<p class="commit-changes">Modified: html/graphics.xsl,1.57 - Robert
Stayton</p>
</li><li>
<p>Content of <a href="http://docbook.org/tdg/en/html/citation.html"><code class="sgmltag-element">citation</code></a>
element is automatically linked to the bibliographic <a href="http://docbook.org/tdg/en/html/entry.html"><code class="sgmltag-element">entry</code></a>
with the corresponding <a href="http://docbook.org/tdg/en/html/abbrev.html"><code class="sgmltag-element">abbrev</code></a>.</p>
<p class="commit-changes">Modified: html/biblio.xsl,1.26;
html/inline.xsl,1.47; html/xref.xsl,1.58 - Jirka
Kosek</p>
</li><li>
<p>Add template for <a href="http://docbook.org/tdg/en/html/task.html"><code class="sgmltag-element">task</code></a>
in mode="xref-to".</p>
<p class="commit-changes">Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert
Stayton</p>
</li><li>
<p>Suppress ID warnings if the
.warnings parameter is 0</p>
<p class="commit-changes">Modified: html/html.xsl,1.17 - Norman
Walsh</p>
</li><li>
<p>Add support for floatstyle to
<a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a>.</p>
<p class="commit-changes">Modified: html/formal.xsl,1.21 - Robert
Stayton</p>
</li><li>
<p>Handling of <a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a> to
area/areaset need support in extensions code also. I currently have no
time to touch extensions code, so code is here to be enabled when
extension is fixed also.</p>
<p class="commit-changes">Modified: html/xref.xsl,1.56 - Jirka
Kosek</p>
</li><li>
<p>Added 3 parameters for overriding
gentext for <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>
punctuation.</p>
<p class="commit-changes">Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert
Stayton</p>
</li><li>
<p>Added parameters to support
localization of <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a> item punctuation. Added
<a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a>.separator named template to compute
the separator punctuation based on
locale.</p>
<p class="commit-changes">Modified: html/autoidx.xsl,1.27 - Robert
Stayton</p>
</li><li>
<p>Added a &lt;div
class="{$class}-contents"&gt; wrapper around output of contents
of all formal objects. Also, added an optional &lt;br
class="{class}-break"/&gt; linebreak after all formal
objects.</p>
<p>WARNING: Because this change places an additional
DIV between the DIV wrapper for the <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> and the
<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> contents, it may break some existing CSS
stylesheets that have been created with the assumption that there
would never be an intervening DIV there.</p>
<p>The following is
an example of what <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">Equation</code></a> output looks like as a
result of the changes described above.</p>
<p> &lt;div
class="<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a>"&gt;  &lt;a name="three"
id="three"&gt;&lt;/a&gt;</p>
<p> &lt;p
class="<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>"&gt;&lt;b&gt;(1.3)&lt;/b&gt;&lt;/p&gt;</p>
<p>
&lt;div class="equation-contents"&gt;  &lt;span
class="<a href="http://docbook.org/tdg/en/html/mathphrase.html"><code class="sgmltag-element">mathphrase</code></a>"&gt;1+1=3&lt;/span&gt; 
&lt;/div&gt;  &lt;/div&gt;&lt;br
class="equation-break"&gt;</p>
<p>Rationale: These changes allow
CSS control of the placement of the formal-object
<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> relative to the formal-object
contents. For example, using the CSS "float" <a href="http://docbook.org/tdg/en/html/property.html"><code class="sgmltag-element">property</code></a>
enables the <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> and contents to be rendered on the
same line. Example stylesheet:</p>
<p> .<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a>
{  margin-top: 20px;  margin-bottom: 20px;  } 
.equation-contents {  float: left;  }</p>
<p>
.<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> .<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> {  margin-top: 0; 
float: right;  margin-right: 200px;  }</p>
<p>
.<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> .<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> b {  font-weight:
normal;  }</p>
<p> .equation-break {  clear: both; 
}</p>
<p>Note that the purpose of the ".equation-break" class is
to provide a way to clear off the floats.</p>
<p>If you want
to instead have the <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> rendered to
the left of the <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> contents, you can do
something like this:</p>
<p> .<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> { 
margin-top: 20px;  width: 300px;  margin-bottom: 20px; 
}  .equation-contents {  float: right;  }</p>
<p>
.<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> .<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> {  margin-top: 0; 
float: left;  margin-right: 200px;  }</p>
<p>
.<a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a> .<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> b {  font-weight:
normal;  }</p>
<p> .equation-break {  clear: both; 
}</p>
<p class="commit-changes">Modified: html/formal.xsl,1.20 - Michael(tm) Smith</p>
</li><li>
<p>Added a chunker.output.quiet
top-level parameter so that the chunker can be made quiet by
default</p>
<p class="commit-changes">Modified: html/chunker.xsl,1.26 - Norman Walsh</p>
</li><li>
<p>Added support for <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>,
<a href="http://docbook.org/tdg/en/html/olink.html"><code class="sgmltag-element">olink</code></a>, and <a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a> within OO
<a href="http://docbook.org/tdg/en/html/classsynopsis.html"><code class="sgmltag-element">Classsynopsis</code></a> and children. (Because DocBook NG/5
allows it).</p>
<p class="commit-changes">Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm)
Smith</p>
</li><li>
<p>New parameter:
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/id.warnings.html"><em class="parameter"><code>id.warnings</code></em></a>. If non-zero, warnings are
generated for titled objects that don't have titles. True by default;
I wonder if this will be too aggressive?</p>
<p class="commit-changes">Modified: html/biblio.xsl,1.25;
html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19;
html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16;
html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22;
html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>If the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/keep.relative.image.uris.html"><em class="parameter"><code>keep.relative.image.uris</code></em></a> parameter is true,
don't use the absolute <a href="http://docbook.org/tdg/en/html/uri.html"><code class="sgmltag-element">URI</code></a> (as calculated from xml:base) in
the img src attribute, us the value the <a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>
specified. Note that we still have to calculate the absolute
<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a> for use in the image intrinsics
extension.</p>
<p class="commit-changes">Modified: html/graphics.xsl,1.56 - Norman
Walsh</p>
</li><li>
<p>Support <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a> as an
inline</p>
<p class="commit-changes">Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman
Walsh</p>
</li><li>
<p>Added new parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/keep.relative.image.uris.html"><em class="parameter"><code>keep.relative.image.uris</code></em></a></p>
<p class="commit-changes">Modified: fo/param.ent,1.91;
fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96;
params/keep.relative.image.uris.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>Added two new parameters for
handling of multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> elements:</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a>: 
When the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a> is
non-zero, it will  generate a line break after each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a>.</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>: 
When a <a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> contains multiple <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>
elements, the string  specified in the value of the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>  parameter is
placed after each <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> except the last. The default 
is ", " (a comma followed by a space). To suppress rendering of 
the separator, set the value of
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a> to  the empty
string ("").</p>
<p>These parameters are primarily intended to be
useful if you have multi-term varlistentries that have long
terms.</p>
<p>Closes #1306676. Thanks to Sam Steingold for
providing an example "lots of long terms" doc that demonstrated
the value of having these options.</p>
<p>Also, added
normalize-space() call to processing of each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>.</p>
<p>This change affects all output formats
(HTML, PDF, manpages). The default behavior should pretty much
remain the same as before, but it is possible (as always) that
the change may introduce some
new bugginess.</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.62; fo/param.ent,1.88;
fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86;
html/param.xweb,1.93; manpages/lists.xsl,1.22;
manpages/param.ent,1.14; manpages/param.xweb,1.16;
params/variablelist.term.break.after.xml,1.1;
params/variablelist.term.separator.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added "wrapper-name" param to
inline.charseq named template, enabling it to output inlines
other than just "span". <a href="http://docbook.org/tdg/en/html/acronym.html"><code class="sgmltag-element">Acronym</code></a> and <a href="http://docbook.org/tdg/en/html/abbrev.html"><code class="sgmltag-element">Abbrev</code></a>
templates now use inline.charseq to output HTML
"<a href="http://docbook.org/tdg/en/html/acronym.html"><code class="sgmltag-element">acronym</code></a>" and "abbr" elements (instead of
"span"). Closes #1305468. Thanks to Sam Steingold for suggesting
the change.</p>
<p class="commit-changes">Modified: html/inline.xsl,1.45 - Michael(tm)
Smith</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Manpages"></a>Manpages</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">manpages</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Added the following
params:</p>
<p> - man.indent.width (string-valued)  -
man.indent.refsect (boolean)  - man.indent.blurbs (boolean) 
- man.indent.lists (boolean)  - man.indent.verbatims
(boolean)</p>
<p>Note that in earlier snapshots, man.indent.width
was named man.indentation.default.value and the boolean params
had names like man.indentation.*.adjust. Also the
man.indent.blurbs param was called man.indentation.authors.adjust
(or something).</p>
<p>The behavior now is: If the value of a
particular man.indent.* boolean param is non-zero, the
corresponding contents (refsect*, list items,
authorblurb/personblurb, vervatims) are displayed with a left
margin indented by a width equal to the value
of man.indent.width.</p>
<p class="commit-changes">Modified: params/man.indent.blurbs.xml,1.1;
manpages/docbook.xsl,1.74; manpages/info.xsl,1.20;
manpages/lists.xsl,1.30; manpages/other.xsl,1.20;
manpages/param.ent,1.22; manpages/param.xweb,1.24;
manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1;
params/man.indent.refsect.xml,1.1;
params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added
man.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.footnotes.divider param.</p>
<p>In each
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> that contains footenotes, the string specified
by the man.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.footnotes.divider parameter is output
before the list of footnotes for the
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.73;
manpages/links.xsl,1.6; manpages/param.ent,1.21;
manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added the
man.output.in.separate.dir,
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a>,
and man.output.subdirs.enabled parameters.</p>
<p>The
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a> parameter specifies the
base directory into which man-page files are
output. The man.output.subdirs.enabled parameter controls whether
the files are output in subdirectories within the base
directory.</p>
<p>The values of the
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a>
and man.output.subdirs.enabled parameters are used only if the
value of man.output.in.separate.dir parameter is non-zero. If the
value of man.output.in.separate.dir is zero, man-page files are
not output in a separate
directory.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20;
manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1;
params/man.output.in.separate.dir.xml,1.1;
params/man.output.subdirs.enabled.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added
man.font.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.headings and
man.font.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> params, for
controlling font in <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> headings and
titles.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19;
manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1;
params/man.font.table.title.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added
man.font.<a href="http://docbook.org/tdg/en/html/funcsynopsisinfo.html"><code class="sgmltag-element">funcsynopsisinfo</code></a> and
man.font.<a href="http://docbook.org/tdg/en/html/funcprototype.html"><code class="sgmltag-element">funcprototype</code></a> params, for specifying the roff
font (for example, BI, B, I) for <a href="http://docbook.org/tdg/en/html/funcsynopsisinfo.html"><code class="sgmltag-element">funcsynopsisinfo</code></a> and
<a href="http://docbook.org/tdg/en/html/funcprototype.html"><code class="sgmltag-element">funcprototype</code></a> output.</p>
<p class="commit-changes">Modified: manpages/block.xsl,1.19;
manpages/docbook.xsl,1.69; manpages/param.ent,1.18;
manpages/param.xweb,1.20; manpages/synop.xsl,1.29;
manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1;
params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added
man.<a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a>.suppress param.</p>
<p>If the value of
man.<a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a>.suppress is non-zero, then display
of <a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a> contents is suppressed in
output.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17;
manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a>.enabled and
man.output.manifest.<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a> params.</p>
<p>If
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a>.enabled is non-zero, a list
of filenames for man pages generated by the stylesheet
transformation is written to the file named by
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a>.<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a></p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.67;
manpages/other.xsl,1.19; manpages/param.ent,1.16;
manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1;
params/man.output.manifest.filename.xml,1.1;
tools/make/Makefile.DocBook,1.4 - Michael(tm)
Smith</p>
</li><li>
<p>Added
<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.meta.get.quietly param.</p>
<p>If zero (the
default), notes and warnings about "missing" markup are generated
during gathering of <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> metadata. If
non-zero, the metadata is gathered "quietly" -- that is, the
notes and warnings are suppressed.</p>
<p>NOTE: If you are
processing a large amount of <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> content,  you
may be able to speed up processing significantly by  setting a
non-zero value for
<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.meta.get.quietly.</p>
<p class="commit-changes">Modified: common/refentry.xsl,1.17;
manpages/param.ent,1.15; manpages/param.xweb,1.17;
params/refentry.meta.get.quietly.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Changed names of all boolean
indentation params to man.indent.* Also discarded individual
man.indent.*.value params and switched to just using a common
man.indent.width param (3n by default).</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.66;
manpages/info.xsl,1.19; manpages/lists.xsl,1.29;
manpages/other.xsl,1.18; manpages/refentry.xsl,1.13 - Michael(tm)
Smith</p>
</li><li>
<p>Added boolean
man.output.in.separate.dir param, to control whether or not man
files are output in separate directory.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.65;
manpages/utility.xsl,1.14 - Michael(tm) Smith</p>
</li><li>
<p>Added options for controlling
indentation of verbatim output. Controlled through the
man.indentation.verbatims.adjust
and man.indentation.verbatims.value params. Closes
#1242997</p>
<p class="commit-changes">Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 -
Michael(tm) Smith</p>
</li><li>
<p>Added options for controlling
indentation in lists and in *blurb output in the AUTHORS
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>. Controlled through
the man.indentation.lists.adjust,
man.indentation.lists.value, man.indentation.authors.adjust, and
man.indentation.authors.value parameters. Default is 3 characters
(instead of the roff default of 8 characters). Closes
#1449369.</p>
<p>Also, removed the indent that was being set on
<a href="http://docbook.org/tdg/en/html/informalexample.html"><code class="sgmltag-element">informalexample</code></a> outuput. I will instead add an option
for indenting verbatims, which I think is what the
<a href="http://docbook.org/tdg/en/html/informalexample.html"><code class="sgmltag-element">informalexample</code></a> indent was intended
for originally.</p>
<p class="commit-changes">Modified: manpages/block.xsl,1.14;
manpages/docbook.xsl,1.63; manpages/info.xsl,1.18;
manpages/lists.xsl,1.28 - Michael(tm) Smith</p>
</li><li>
<p>Changed line-spacing call before
<a href="http://docbook.org/tdg/en/html/synopfragment.html"><code class="sgmltag-element">synopfragment</code></a> to use ".sp -1n" ("n" units specified)
instead of plain ".sp -1"</p>
<p class="commit-changes">Modified: manpages/synop.xsl,1.28 - Michael(tm)
Smith</p>
</li><li>
<p>Added support for writing man
files into a specific output directory and into appropriate
subdirectories within that output directory. Controlled through
the man.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a> parameter (similar to the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a> support in the HTML stylesheet) and
the man.subdirs.enabled parameter, which automatically determines
the name of an appropriate subdir (for example, man/man7,
man/man1, etc.) based on the <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> number/manvolnum
of the source <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a>.</p>
<p>Closes #1255036 and
#1170317. Thanks to Denis Bradford for the original feature
request, and to Costin Stroie for submitting a patch that was
very helpful in implementing the
support.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 -
Michael(tm) Smith</p>
</li><li>
<p>Refined XPath statements and
notification messages for <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> metadata
handling.</p>
<p class="commit-changes">Modified: common/common.xsl,1.59; common/refentry.xsl,1.14;
manpages/docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm)
Smith</p>
</li><li>
<p>Added support for
<a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">copyright</code></a> and <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>. The manpages
stylesheets now output a <a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">COPYRIGHT</code></a> <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>,
after the AUTHORS <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>, if a <a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">copyright</code></a>
or <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a> is found in the source. The
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> contains the <a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">copyright</code></a> contents followed
by the <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a> contents. Closes
#1450209.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 -
Michael(tm) Smith</p>
</li><li>
<p>Drastically reworked all of the
XPath expressions used in <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> metadata gathering
-- completely removed $parentinfo and turned $info into a set of
nodes that includes the *info contents of the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a>
plus the *info contents all all of its ancestor elements. The
basic XPath expression now used throughout is (using the example
of checking for a <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a>):</p>
<p>
(($info[//date])[last()]/date)[1].</p>
<p>That selects the "last"
*info/date <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a> in document order -- that is, the one
eitther on the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a> itself or on the
closest ancestor to the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a>.</p>
<p>It's
likely this change may break some things; may need to pick up
some pieces later.</p>
<p>Also, changed the default value for the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.th.extra2.max.length.html"><em class="parameter"><code>man.th.extra2.max.length</code></em></a> from 40 to
30.</p>
<p class="commit-changes">Modified: common/common.xsl,1.58; common/refentry.xsl,1.7;
params/man.th.extra2.max.length.xml,1.2;
params/refentry.date.profile.xml,1.2;
params/refentry.manual.profile.xml,1.2;
params/refentry.source.name.profile.xml,1.2;
params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58;
manpages/other.xsl,1.15 - Michael(tm) Smith</p>
</li><li>
<p>Added support for DocBook 5
namespace-stripping in manpages stylesheet. Closes request
#1210692.</p>
<p class="commit-changes">Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 -
Michael(tm) Smith</p>
</li><li>
<p>Fixed handling of <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>
footnotes. With this checkin, the <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> support in the
manpages stylesheet is now basically feature complete. So this
change closes request #619532, "No support for tables" -- the
oldest currently open manpages feature request, submitted by Ben
Secrest (blsecres) on 2002-10-07. Congratulations to me [patting
myself on the back].</p>
<p class="commit-changes">Modified: manpages/block.xsl,1.11;
manpages/docbook.xsl,1.55; manpages/table.xsl,1.15 - Michael(tm)
Smith</p>
</li><li>
<p>Added handling for
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> titles. Also fixed handling of nested tables;
nest tables are now "extracted" and displayed just after their
parent tables.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14
- Michael(tm) Smith</p>
</li><li>
<p>Added option for turning off bold
formatting in <a href="http://docbook.org/tdg/en/html/funcsynopsis.html"><code class="sgmltag-element">Funcsynopsis</code></a>. Boldface formatting in
<a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a> <a href="http://docbook.org/tdg/en/html/synopsis.html"><code class="sgmltag-element">synopsis</code></a> is mandated in the
man(7) man page and is used almost universally in existing man
pages. Despite that, it really does look like crap to have an
entire <a href="http://docbook.org/tdg/en/html/funcsynopsis.html"><code class="sgmltag-element">Funcsynopsis</code></a> output in bold, so I added params
for turning off the bold formatting and/or replacing it with a
different roff special font (e.g., "RI" for alternating
roman/italic instead of the default "BI" for alternating
bold/italic). The new params
are "man.<a href="http://docbook.org/tdg/en/html/funcprototype.html"><code class="sgmltag-element">funcprototype</code></a>.font" and
"man.<a href="http://docbook.org/tdg/en/html/funcsynopsisinfo.html"><code class="sgmltag-element">funcsynopsisinfo</code></a>.font". To be documented
later.</p>
<p>Closes #1452247. Thanks to Joe Orton for the feature
request.</p>
<p class="commit-changes">Modified: params/man.string.subst.map.xml,1.16;
manpages/block.xsl,1.10; manpages/docbook.xsl,1.51;
manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm)
Smith</p>
</li><li>
<p>Use AUTHORS instead of
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">AUTHOR</code></a> if we have multiple people to attribute. Also,
fixed checking such that we generate
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a> <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> even if we don't have an
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a> (as long as there is at least one other
person/entity we can put in the
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>). Also adjusted assembly of content for
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">Author</code></a> metainfo field such that we now not only use
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a>, but try to find a "best match" if we can't
find an <a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a> name to put there.</p>
<p>Closes
#1233592. Thanks to Sam Steingold for the
request.</p>
<p class="commit-changes">Modified: manpages/info.xsl,1.12 - Michael(tm)
Smith</p>
</li><li>
<p>Changes for request #1243027,
"Impove handling of <a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">AUTHOR</code></a> <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a>." This
adds support for <a href="http://docbook.org/tdg/en/html/collab.html"><code class="sgmltag-element">Collab</code></a>, Corpauthor, Corpcredt,
<a href="http://docbook.org/tdg/en/html/orgname.html"><code class="sgmltag-element">Orgname</code></a>, <a href="http://docbook.org/tdg/en/html/publishername.html"><code class="sgmltag-element">Publishername</code></a>, and
<a href="http://docbook.org/tdg/en/html/publisher.html"><code class="sgmltag-element">Publisher</code></a>. Also adds support for output
of <a href="http://docbook.org/tdg/en/html/affiliation.html"><code class="sgmltag-element">Affiliation</code></a> and its children, and support for using
gentext strings for auto-attributing roles (<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">Author</code></a>,
<a href="http://docbook.org/tdg/en/html/editor.html"><code class="sgmltag-element">Editor</code></a>, <a href="http://docbook.org/tdg/en/html/publisher.html"><code class="sgmltag-element">Publisher</code></a>, Translator, etc.). Also
did a lot of code cleanup and modularization of all the
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">AUTHOR</code></a> handling code. And fixed a bug that was causing
<a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">Author</code></a> <a href="http://docbook.org/tdg/en/html/info.html"><code class="sgmltag-element">info</code></a> to not be picked up correctly
for metainfo comment we embed in man-page
source.</p>
<p class="commit-changes">Modified: manpages/info.xsl,1.11 - Michael(tm)
Smith</p>
</li><li>
<p>Support bold output for
"<a href="http://docbook.org/tdg/en/html/emphasis.html"><code class="sgmltag-element">emphasis</code></a> remap='B'". (because Eric Raymond's
doclifter(1) tool converts groff source marked up with ".B"
request or "\fB" escapes to DocBook "<a href="http://docbook.org/tdg/en/html/emphasis.html"><code class="sgmltag-element">emphasis</code></a>
remap='B'".)</p>
<p class="commit-changes">Modified: manpages/inline.xsl,1.14 - Michael(tm)
Smith</p>
</li><li>
<p>Added support for
<a href="http://docbook.org/tdg/en/html/segmentedlist.html"><code class="sgmltag-element">Segmentedlist</code></a>. Details: Output is tabular, with no
option for "list" type output. Output for <a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">Segtitle</code></a>
elements can be supressed by
setting man.<a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a>.suppress. If <a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">Segtitle</code></a>
content is output, it is rendered in italic type (not bold
because not all terminals support bold and so italic ensures the
stand out on those terminals). Extra space (.sp line) at end of
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> code ensures that it gets handled correctly in
the case where its source is the child of a <a href="http://docbook.org/tdg/en/html/para.html"><code class="sgmltag-element">Para</code></a>.
Closes feature-request #1400097. Thanks to Daniel Leidert for the
patch and push, and to Alastair Rankine for filing the original
feature request.</p>
<p class="commit-changes">Modified: manpages/lists.xsl,1.23;
manpages/utility.xsl,1.10 - Michael(tm) Smith</p>
</li><li>
<p>Improved handling or
Author/Editor/Othercredit.</p>
<p>Reworked content of
(non-visible) comment added at top of each page (metadata
stuff).</p>
<p>Added support for generating a
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a> file (useful for cleaning up
after builds, etc.)</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.46;
manpages/info.xsl,1.9; manpages/other.xsl,1.12;
manpages/utility.xsl,1.6 - Michael(tm) Smith</p>
</li><li>
<p>Added two new parameters for
handling of multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> elements:</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a>: 
When the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a> is
non-zero, it will  generate a line break after each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a>.</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>: 
When a <a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> contains multiple <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>
elements, the string  specified in the value of the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>  parameter is
placed after each <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> except the last. The default 
is ", " (a comma followed by a space). To suppress rendering of 
the separator, set the value of
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a> to  the empty
string ("").</p>
<p>These parameters are primarily intended to be
useful if you have multi-term varlistentries that have long
terms.</p>
<p>Closes #1306676. Thanks to Sam Steingold for
providing an example "lots of long terms" doc that demonstrated
the value of having these options.</p>
<p>Also, added
normalize-space() call to processing of each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>.</p>
<p>This change affects all output formats
(HTML, PDF, manpages). The default behavior should pretty much
remain the same as before, but it is possible (as always) that
the change may introduce some
new bugginess.</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.62; fo/param.ent,1.88;
fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86;
html/param.xweb,1.93; manpages/lists.xsl,1.22;
manpages/param.ent,1.14; manpages/param.xweb,1.16;
params/variablelist.term.break.after.xml,1.1;
params/variablelist.term.separator.xml,1.1 - Michael(tm)
Smith</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Params"></a>Params</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">params</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>New parameters to set
header/footer <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> minimum
height.</p>
<p class="commit-changes">Modified: params/footer.table.height.xml,1.1;
params/header.table.height.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Support multiple indexing methods
for different languages.</p>
<p class="commit-changes">Modified: params/index.method.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Remove <a href="http://docbook.org/tdg/en/html/qandaset.html"><code class="sgmltag-element">qandaset</code></a> and
<a href="http://docbook.org/tdg/en/html/qandadiv.html"><code class="sgmltag-element">qandadiv</code></a> from <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/generate.toc.html"><em class="parameter"><code>generate.toc</code></em></a> for fo
output because formerly it wasn't working, but now it is and
the default behavior should stay the
same.</p>
<p class="commit-changes">Modified: params/generate.toc.xml,1.8 - Robert
Stayton</p>
</li><li>
<p>add support for page number
references to <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> element
too.</p>
<p class="commit-changes">Modified: params/insert.link.page.number.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Add support for more characters to
hyphen on when <a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/ulink.hyphenate.html"><em class="parameter"><code>ulink.hyphenate</code></em></a> is turned
on.</p>
<p class="commit-changes">Modified: params/ulink.hyphenate.chars.xml,1.1;
params/ulink.hyphenate.xml,1.3 - Robert Stayton</p>
</li><li>
<p>New attribute-set to format
<a href="http://docbook.org/tdg/en/html/biblioentry.html"><code class="sgmltag-element">biblioentry</code></a> and
<a href="http://docbook.org/tdg/en/html/bibliomixed.html"><code class="sgmltag-element">bibliomixed</code></a>.</p>
<p class="commit-changes">Modified: params/biblioentry.properties.xml,1.1 -
Robert Stayton</p>
</li><li>
<p>Added new parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.tocs.and.lots.html"><em class="parameter"><code>chunk.tocs.and.lots</code></em></a>.has.<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> which
controls presence of <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> in a separate chunk with
ToC/LoT. Disabling <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> can be very useful if you are
generating frameset output (well, yes those frames, but some customers
really want them ;-).</p>
<p class="commit-changes">Modified: html/chunk-code.xsl,1.15;
html/param.ent,1.93; html/param.xweb,1.102;
params/chunk.tocs.and.lots.has.title.xml,1.1 - Jirka
Kosek</p>
</li><li>
<p>Added new attribute set
<a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">toc</code></a>.line.properties for controlling appearance of lines in
ToC/LoT</p>
<p class="commit-changes">Modified: params/toc.line.properties.xml,1.1 - Jirka
Kosek</p>
</li><li>
<p>Allow <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> footnotes
to have different properties from regular
footnotes.</p>
<p class="commit-changes">Modified: params/table.footnote.properties.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Set properties for pgwide="1"
objects.</p>
<p class="commit-changes">Modified: params/pgwide.properties.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Added the
autotoc.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.in.hyperlink param.</p>
<p>If the value
of autotoc.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.in.hyperlink is non-zero, labels
are included in hyperlinked titles in the <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">TOC</code></a>. If it
is instead zero, labels are still displayed prior to the
hyperlinked titles, but are not hyperlinked along with the
titles.</p>
<p>Closes patch #1065868. Thanks to anatoly techtonik
for the patch.</p>
<p class="commit-changes">Modified: html/autotoc.xsl,1.36; html/param.ent,1.92;
html/param.xweb,1.101; params/autotoc.label.in.hyperlink.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added two new params:
html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.types
and html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.multiple.</p>
<p>If
the value of the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/generate.legalnotice.link.html"><em class="parameter"><code>generate.legalnotice.link</code></em></a> is
non-zero, then the stylesheet generates (in the head
<a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> of the HTML source) either a single HTML
<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> element or, if the value of
the html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.multiple is
non-zero, one <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> element for each <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>
type specified. Each <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> has the
following attributes:</p>
<p> - a rel attribute whose value
is derived from the value of 
html.head.<a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>.<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>.types</p>
<p> -
an href attribute whose value is set to the URL of the file 
containing the <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a></p>
<p> - a <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>
attribute whose value is set to the <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> of the 
corresponding <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a> (or a <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>
programatically  determined by the stylesheet)</p>
<p>For
example:</p>
<p> &lt;<a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a> rel="<a href="http://docbook.org/tdg/en/html/copyright.html"><code class="sgmltag-element">copyright</code></a>"
href="ln-id2524073.html" title="Legal Notice"&gt;</p>
<p>Closes
#1476450. Thanks to Sam Steingold.</p>
<p class="commit-changes">Modified: html/chunk-common.xsl,1.45;
html/param.ent,1.91; html/param.xweb,1.100;
params/generate.legalnotice.link.xml,1.4;
params/html.head.legalnotice.link.multiple.xml,1.1;
params/html.head.legalnotice.link.types.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added the following
params:</p>
<p> - man.indent.width (string-valued)  -
man.indent.refsect (boolean)  - man.indent.blurbs (boolean) 
- man.indent.lists (boolean)  - man.indent.verbatims
(boolean)</p>
<p>Note that in earlier snapshots, man.indent.width
was named man.indentation.default.value and the boolean params
had names like man.indentation.*.adjust. Also the
man.indent.blurbs param was called man.indentation.authors.adjust
(or something).</p>
<p>The behavior now is: If the value of a
particular man.indent.* boolean param is non-zero, the
corresponding contents (refsect*, list items,
authorblurb/personblurb, vervatims) are displayed with a left
margin indented by a width equal to the value
of man.indent.width.</p>
<p class="commit-changes">Modified: params/man.indent.blurbs.xml,1.1;
manpages/docbook.xsl,1.74; manpages/info.xsl,1.20;
manpages/lists.xsl,1.30; manpages/other.xsl,1.20;
manpages/param.ent,1.22; manpages/param.xweb,1.24;
manpages/refentry.xsl,1.14; params/man.indent.lists.xml,1.1;
params/man.indent.refsect.xml,1.1;
params/man.indent.verbatims.xml,1.1; params/man.indent.width.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added
man.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.footnotes.divider param.</p>
<p>In each
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> that contains footenotes, the string specified
by the man.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.footnotes.divider parameter is output
before the list of footnotes for the
<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.73;
manpages/links.xsl,1.6; manpages/param.ent,1.21;
manpages/param.xweb,1.23; params/man.table.footnotes.divider.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added the
man.output.in.separate.dir,
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a>,
and man.output.subdirs.enabled parameters.</p>
<p>The
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a> parameter specifies the
base directory into which man-page files are
output. The man.output.subdirs.enabled parameter controls whether
the files are output in subdirectories within the base
directory.</p>
<p>The values of the
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a>
and man.output.subdirs.enabled parameters are used only if the
value of man.output.in.separate.dir parameter is non-zero. If the
value of man.output.in.separate.dir is zero, man-page files are
not output in a separate
directory.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.72; manpages/param.ent,1.20;
manpages/param.xweb,1.22; params/man.output.base.dir.xml,1.1;
params/man.output.in.separate.dir.xml,1.1;
params/man.output.subdirs.enabled.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added
man.font.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.headings and
man.font.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> params, for
controlling font in <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> headings and
titles.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.71; manpages/param.ent,1.19;
manpages/param.xweb,1.21; params/man.font.table.headings.xml,1.1;
params/man.font.table.title.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added
man.font.<a href="http://docbook.org/tdg/en/html/funcsynopsisinfo.html"><code class="sgmltag-element">funcsynopsisinfo</code></a> and
man.font.<a href="http://docbook.org/tdg/en/html/funcprototype.html"><code class="sgmltag-element">funcprototype</code></a> params, for specifying the roff
font (for example, BI, B, I) for <a href="http://docbook.org/tdg/en/html/funcsynopsisinfo.html"><code class="sgmltag-element">funcsynopsisinfo</code></a> and
<a href="http://docbook.org/tdg/en/html/funcprototype.html"><code class="sgmltag-element">funcprototype</code></a> output.</p>
<p class="commit-changes">Modified: manpages/block.xsl,1.19;
manpages/docbook.xsl,1.69; manpages/param.ent,1.18;
manpages/param.xweb,1.20; manpages/synop.xsl,1.29;
manpages/table.xsl,1.21; params/man.font.funcprototype.xml,1.1;
params/man.font.funcsynopsisinfo.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Changed to select="0" in
<a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress (instead of
..&gt;0&lt;/..)</p>
<p class="commit-changes">Modified: params/refclass.suppress.xml,1.3 - Michael(tm)
Smith</p>
</li><li>
<p>Added
man.<a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a>.suppress param.</p>
<p>If the value of
man.<a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a>.suppress is non-zero, then display
of <a href="http://docbook.org/tdg/en/html/segtitle.html"><code class="sgmltag-element">segtitle</code></a> contents is suppressed in
output.</p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.68; manpages/param.ent,1.17;
manpages/param.xweb,1.19; params/man.segtitle.suppress.xml,1.1 -
Michael(tm) Smith</p>
</li><li>
<p>Added
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a>.enabled and
man.output.manifest.<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a> params.</p>
<p>If
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a>.enabled is non-zero, a list
of filenames for man pages generated by the stylesheet
transformation is written to the file named by
man.output.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/manifest.html"><em class="parameter"><code>manifest</code></em></a>.<a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a></p>
<p class="commit-changes">Modified: manpages/docbook.xsl,1.67;
manpages/other.xsl,1.19; manpages/param.ent,1.16;
manpages/param.xweb,1.18; params/man.output.manifest.enabled.xml,1.1;
params/man.output.manifest.filename.xml,1.1;
tools/make/Makefile.DocBook,1.4 - Michael(tm)
Smith</p>
</li><li>
<p>Added <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress
param.</p>
<p>If the value of <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a>.suppress is
non-zero, then display <a href="http://docbook.org/tdg/en/html/refclass.html"><code class="sgmltag-element">refclass</code></a> contents is suppressed
in output. Affects HTML and FO output
only.</p>
<p class="commit-changes">Modified: fo/param.ent,1.93; fo/param.xweb,1.106; html/param.ent,1.90;
html/param.xweb,1.99; params/refclass.suppress.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added
<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.meta.get.quietly param.</p>
<p>If zero (the
default), notes and warnings about "missing" markup are generated
during gathering of <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> metadata. If
non-zero, the metadata is gathered "quietly" -- that is, the
notes and warnings are suppressed.</p>
<p>NOTE: If you are
processing a large amount of <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> content,  you
may be able to speed up processing significantly by  setting a
non-zero value for
<a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.meta.get.quietly.</p>
<p class="commit-changes">Modified: common/refentry.xsl,1.17;
manpages/param.ent,1.15; manpages/param.xweb,1.17;
params/refentry.meta.get.quietly.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Added support for "software" and
"sectdesc" class values on <a href="http://docbook.org/tdg/en/html/refmiscinfo.html"><code class="sgmltag-element">refmiscinfo</code></a>; "software" is
treated identically to "source", and "setdesc" is treated
identically to "manual".</p>
<p class="commit-changes">Modified: common/refentry.xsl,1.10;
params/man.th.extra2.max.length.xml,1.3;
params/refentry.source.name.profile.xml,1.4 - Michael(tm)
Smith</p>
</li><li>
<p>Drastically reworked all of the
XPath expressions used in <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> metadata gathering
-- completely removed $parentinfo and turned $info into a set of
nodes that includes the *info contents of the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a>
plus the *info contents all all of its ancestor elements. The
basic XPath expression now used throughout is (using the example
of checking for a <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a>):</p>
<p>
(($info[//date])[last()]/date)[1].</p>
<p>That selects the "last"
*info/date <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a> in document order -- that is, the one
eitther on the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a> itself or on the
closest ancestor to the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">Refentry</code></a>.</p>
<p>It's
likely this change may break some things; may need to pick up
some pieces later.</p>
<p>Also, changed the default value for the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.th.extra2.max.length.html"><em class="parameter"><code>man.th.extra2.max.length</code></em></a> from 40 to
30.</p>
<p class="commit-changes">Modified: common/common.xsl,1.58; common/refentry.xsl,1.7;
params/man.th.extra2.max.length.xml,1.2;
params/refentry.date.profile.xml,1.2;
params/refentry.manual.profile.xml,1.2;
params/refentry.source.name.profile.xml,1.2;
params/refentry.version.profile.xml,1.2; manpages/docbook.xsl,1.58;
manpages/other.xsl,1.15 - Michael(tm) Smith</p>
</li><li>
<p>Added option for turning off bold
formatting in <a href="http://docbook.org/tdg/en/html/funcsynopsis.html"><code class="sgmltag-element">Funcsynopsis</code></a>. Boldface formatting in
<a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a> <a href="http://docbook.org/tdg/en/html/synopsis.html"><code class="sgmltag-element">synopsis</code></a> is mandated in the
man(7) man page and is used almost universally in existing man
pages. Despite that, it really does look like crap to have an
entire <a href="http://docbook.org/tdg/en/html/funcsynopsis.html"><code class="sgmltag-element">Funcsynopsis</code></a> output in bold, so I added params
for turning off the bold formatting and/or replacing it with a
different roff special font (e.g., "RI" for alternating
roman/italic instead of the default "BI" for alternating
bold/italic). The new params
are "man.<a href="http://docbook.org/tdg/en/html/funcprototype.html"><code class="sgmltag-element">funcprototype</code></a>.font" and
"man.<a href="http://docbook.org/tdg/en/html/funcsynopsisinfo.html"><code class="sgmltag-element">funcsynopsisinfo</code></a>.font". To be documented
later.</p>
<p>Closes #1452247. Thanks to Joe Orton for the feature
request.</p>
<p class="commit-changes">Modified: params/man.string.subst.map.xml,1.16;
manpages/block.xsl,1.10; manpages/docbook.xsl,1.51;
manpages/inline.xsl,1.16; manpages/synop.xsl,1.27 - Michael(tm)
Smith</p>
</li><li>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/fop.extensions.html"><em class="parameter"><code>fop.extensions</code></em></a> now only
for FOP version 0.20.5 and earlier.</p>
<p class="commit-changes">Modified: params/fop.extensions.xml,1.4
- Robert Stayton</p>
</li><li>
<p>Support for fop1 different from
fop 0.20.5 and earlier.</p>
<p class="commit-changes">Modified: params/fop1.extensions.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Reset default value to empty
string so template uses gentext first, then the parameter value
if not empty.</p>
<p class="commit-changes">Modified: params/index.number.separator.xml,1.2;
params/index.range.separator.xml,1.2;
params/index.term.separator.xml,1.2 - Robert
Stayton</p>
</li><li>
<p>New parameter:
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/id.warnings.html"><em class="parameter"><code>id.warnings</code></em></a>. If non-zero, warnings are
generated for titled objects that don't have titles. True by default;
I wonder if this will be too aggressive?</p>
<p class="commit-changes">Modified: html/biblio.xsl,1.25;
html/component.xsl,1.27; html/division.xsl,1.11; html/formal.xsl,1.19;
html/glossary.xsl,1.20; html/html.xsl,1.13; html/index.xsl,1.16;
html/param.ent,1.88; html/param.xweb,1.97; html/refentry.xsl,1.22;
html/sections.xsl,1.30; params/id.warnings.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>Added new parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/keep.relative.image.uris.html"><em class="parameter"><code>keep.relative.image.uris</code></em></a></p>
<p class="commit-changes">Modified: fo/param.ent,1.91;
fo/param.xweb,1.104; html/param.ent,1.87; html/param.xweb,1.96;
params/keep.relative.image.uris.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>Support default <a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>
width parameters for itemized and ordered lists</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.64;
fo/param.ent,1.90; fo/param.xweb,1.103;
params/itemizedlist.label.width.xml,1.1;
params/orderedlist.label.width.xml,1.1 - Norman
Walsh</p>
</li><li>
<p>Added parameters to localize
punctuation in indexes.</p>
<p class="commit-changes">Modified: params/index.number.separator.xml,1.1;
params/index.range.separator.xml,1.1;
params/index.term.separator.xml,1.1 - Robert
Stayton</p>
</li><li>
<p>Added two new parameters for
handling of multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> elements:</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a>: 
When the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.break.after.html"><em class="parameter"><code>variablelist.term.break.after</code></em></a> is
non-zero, it will  generate a line break after each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> multi-term
<a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a>.</p>
<p><a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>: 
When a <a href="http://docbook.org/tdg/en/html/varlistentry.html"><code class="sgmltag-element">varlistentry</code></a> contains multiple <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>
elements, the string  specified in the value of the
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a>  parameter is
placed after each <a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a> except the last. The default 
is ", " (a comma followed by a space). To suppress rendering of 
the separator, set the value of
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/variablelist.term.separator.html"><em class="parameter"><code>variablelist.term.separator</code></em></a> to  the empty
string ("").</p>
<p>These parameters are primarily intended to be
useful if you have multi-term varlistentries that have long
terms.</p>
<p>Closes #1306676. Thanks to Sam Steingold for
providing an example "lots of long terms" doc that demonstrated
the value of having these options.</p>
<p>Also, added
normalize-space() call to processing of each
<a href="http://docbook.org/tdg/en/html/term.html"><code class="sgmltag-element">term</code></a>.</p>
<p>This change affects all output formats
(HTML, PDF, manpages). The default behavior should pretty much
remain the same as before, but it is possible (as always) that
the change may introduce some
new bugginess.</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.62; fo/param.ent,1.88;
fo/param.xweb,1.99; html/lists.xsl,1.48; html/param.ent,1.86;
html/param.xweb,1.93; manpages/lists.xsl,1.22;
manpages/param.ent,1.14; manpages/param.xweb,1.16;
params/variablelist.term.break.after.xml,1.1;
params/variablelist.term.separator.xml,1.1 - Michael(tm)
Smith</p>
</li><li>
<p>Convert 'no' to string in default
value.</p>
<p class="commit-changes">Modified: params/olink.doctitle.xml,1.4 - Robert
Stayton</p>
</li><li>
<p>Implemented RFE
#1292615.</p>
<p>Added bunch of new parameters (attribute sets)
that affect list presentation: list.block.properties,
<a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a>.properties, <a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a>.properties,
<a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a>.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.properties and
<a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a>.<a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a>.properties. Default behaviour
of stylesheets has not been changed but further customizations will be
much more easier.</p>
<p class="commit-changes">Modified: fo/lists.xsl,1.61; fo/param.ent,1.87;
fo/param.xweb,1.98; params/itemizedlist.label.properties.xml,1.1;
params/itemizedlist.properties.xml,1.1;
params/list.block.properties.xml,1.1;
params/orderedlist.label.properties.xml,1.1;
params/orderedlist.properties.xml,1.1 - Jirka
Kosek</p>
</li><li>
<p>Implemented RFE
#1242092.</p>
<p>You can enable crop marks in your document by
setting crop.marks=1 and xep.extensions=1. Appearance of crop
marks can be controlled by parameters
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/crop.mark.bleed.html"><em class="parameter"><code>crop.mark.bleed</code></em></a> (6pt),
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/crop.mark.offset.html"><em class="parameter"><code>crop.mark.offset</code></em></a> (24pt) and
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/crop.mark.width.html"><em class="parameter"><code>crop.mark.width</code></em></a> (0.5pt).</p>
<p>Also there
is new named template called user-xep-pis. You can overwrite it in
order to produce some PIs that can control XEP as described in
http://www.renderx.com/reference.html#Output_Formats</p>
<p class="commit-changes">Modified: fo/docbook.xsl,1.36;
fo/param.ent,1.86; fo/param.xweb,1.97; fo/xep.xsl,1.23;
params/crop.mark.bleed.xml,1.1; params/crop.mark.offset.xml,1.1;
params/crop.mark.width.xml,1.1; params/crop.marks.xml,1.1 - Jirka
Kosek</p>
</li><li>
<p>Changed short descriptions in doc
for *autolabel* params to match new autolabel
behavior.</p>
<p class="commit-changes">Modified: params/appendix.autolabel.xml,1.5;
params/chapter.autolabel.xml,1.4; params/part.autolabel.xml,1.5;
params/preface.autolabel.xml,1.4 - Michael(tm)
Smith</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Profiling"></a>Profiling</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">profiling</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Profiling now works together with
namespace stripping (V5 documents). Namespace striping should work
with all stylesheets named profile-, even if they are not supporting
namespace stripping in a non-profiling
variant.</p>
<p class="commit-changes">Modified: profiling/profile-mode.xsl,1.4;
profiling/xsl2profile.xsl,1.7 - Jirka Kosek</p>
</li><li>
<p>Moved profiling stage out of
templates. This make possible to reuse profiled content by several
templates and still maintaing node indentity (needed for example for
HTML Help where content is processed multiple times).</p>
<p>I
don't know why this was not on the top level before. Maybe some XSLT
processors choked on it. I hope this will be OK
now.</p>
<p class="commit-changes">Modified: profiling/xsl2profile.xsl,1.5 - Jirka
Kosek</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Tools"></a>Tools</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">tools</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>Moved Makefile.DocBook from
<a href="http://docbook.org/tdg/en/html/contrib.html"><code class="sgmltag-element">contrib</code></a> module to xsl
module.</p>
<p class="commit-changes">Modified: tools/make/Makefile.DocBook,1.1 - Michael(tm)
Smith</p>
</li></ul></div>
</div>

<div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_WordML"></a>WordML</h3></div></div></div>

<p>The following changes have been made to the
        <code class="filename">wordml</code> code
        since the 1.69.1 release.</p>
<div class="itemizedlist"><ul type="disc"><li>
<p>added <a href="http://docbook.org/tdg/en/html/contrib.html"><code class="sgmltag-element">contrib</code></a> element,
better handling of default paragraph
style</p>
<p class="commit-changes">Modified: wordml/pages-normalise.xsl,1.6; wordml/supported.xml,1.2;
wordml/wordml-final.xsl,1.14 - Steve Ball</p>
</li><li>
<p>added
<a href="http://docbook.org/tdg/en/html/bridgehead.html"><code class="sgmltag-element">bridgehead</code></a></p>
<p class="commit-changes">Modified: wordml/docbook-pages.xsl,1.6;
wordml/docbook.xsl,1.17; wordml/pages-normalise.xsl,1.5;
wordml/template-pages.xml,1.7; wordml/template.dot,1.4;
wordml/template.xml,1.14; wordml/wordml-final.xsl,1.13 - Steve
Ball</p>
</li><li>
<p>added blocks stylesheet to support
bibliographies, glossaries and qandasets</p>
<p class="commit-changes">Modified: wordml/Makefile,1.4;
wordml/README,1.3; wordml/blocks-spec.xml,1.1;
wordml/docbook-pages.xsl,1.5; wordml/docbook.xsl,1.16;
wordml/pages-normalise.xsl,1.4; wordml/sections-spec.xml,1.3;
wordml/specifications.xml,1.13; wordml/template-pages.xml,1.6;
wordml/template.dot,1.3; wordml/template.xml,1.13;
wordml/wordml-blocks.xsl,1.1; wordml/wordml-final.xsl,1.12;
wordml/wordml-sections.xsl,1.3 - Steve Ball</p>
</li><li>
<p>added <a href="http://docbook.org/tdg/en/html/mediaobject.html"><code class="sgmltag-element">mediaobject</code></a>
<a href="http://docbook.org/tdg/en/html/caption.html"><code class="sgmltag-element">caption</code></a></p>
<p class="commit-changes">Modified: wordml/docbook-pages.xsl,1.4;
wordml/docbook.xsl,1.15; wordml/specifications.xml,1.12;
wordml/template-pages.xml,1.5; wordml/template.dot,1.2;
wordml/template.xml,1.12; wordml/wordml-final.xsl,1.11 - Steve
Ball</p>
</li><li>
<p>added
callouts</p>
<p class="commit-changes">Modified: wordml/docbook-pages.xsl,1.3; wordml/docbook.xsl,1.14;
wordml/pages-normalise.xsl,1.3; wordml/specifications.xml,1.11;
wordml/template-pages.xml,1.4; wordml/wordml-final.xsl,1.10 - Steve
Ball</p>
</li><li>
<p>added Word template
file</p>
<p class="commit-changes">Modified: wordml/template.dot,1.1 - Steve Ball</p>
</li><li>
<p>added <a href="http://docbook.org/tdg/en/html/abstract.html"><code class="sgmltag-element">abstract</code></a>, fixed
<a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a>, ulink</p>
<p class="commit-changes">Modified: wordml/specifications.xml,1.10;
wordml/wordml-final.xsl,1.9 - Steve Ball</p>
</li><li>
<p>fixed Makefile added many
features to Pages support added <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>, inlines,
highlights, <a href="http://docbook.org/tdg/en/html/abstract.html"><code class="sgmltag-element">abstract</code></a></p>
<p class="commit-changes">Modified: wordml/Makefile,1.2;
wordml/docbook-pages.xsl,1.2; wordml/pages-normalise.xsl,1.2;
wordml/sections-spec.xml,1.2; wordml/specifications.xml,1.9;
wordml/template-pages.xml,1.3; wordml/template.xml,1.11;
wordml/wordml-final.xsl,1.8; wordml/wordml-sections.xsl,1.2 - Steve
Ball</p>
</li><li>
<p>fixed handling linebreaks when
generating WordML added Apple Pages
support</p>
<p class="commit-changes">Modified: wordml/docbook.xsl,1.13; wordml/template-pages.xml,1.2 -
Steve Ball</p>
</li></ul></div>
</div>
</div>

  <div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1691"></a>Release 1.69.1</h2></div></div></div>
    
    <p>This release is a minor bug-fix update to the 1.69.0
    release. Along with bug fixes, it includes one
    configuration-parameter change: The default value of the
    <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/annotation.support.html"><em class="parameter"><code>annotation.support</code></em></a> parameter is now
    <code class="literal">0</code> (off). The reason for that change is that
    there have been reports that <a href="http://docbook.org/tdg/en/html/annotation.html"><code class="sgmltag-element">annotation</code></a> handling is
    causing a significant performance degradation in processing of
    large documents with <span><strong class="command">xsltproc</strong></span>.</p>
  </div>
  

  <div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1690"></a>Release 1.69.0</h2></div></div></div>
    
    <p>The release includes major feature changes,
    particularly in the <a href="#V1690_MAN" title="man">manpages
    stylesheets</a>, as well as a large number of bug fixes.</p>

    <p>As with all DocBook Project &#8220;<span class="quote">dot zero</span>&#8221; releases, this is an
    <a href="#dot0" title="About dot-zero releases">experimental release </a>.</p>
   
    <div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1690_COMMON"></a>Common</h3></div></div></div>
      
      <div class="itemizedlist"><ul type="disc"><li>
          <p>This release adds localizations for the following
          languages:
            <span class="simplelist">Albanian, Amharic, Azerbaijani, Hindi, Irish (Gaelic), Gujarati, Kannada, Mongolian, Oriya, Punjabi, Tagalog, Tamil, and Welsh</span>.</p>
        </li><li>
          <p>Added support for specifying number format for auto
          labels for <a href="http://docbook.org/tdg/en/html/chapter.html"><code class="sgmltag-element">chapter</code></a>, <a href="http://docbook.org/tdg/en/html/appendix.html"><code class="sgmltag-element">appendix</code></a>,
          <a href="http://docbook.org/tdg/en/html/part.html"><code class="sgmltag-element">part</code></a>, and <a href="http://docbook.org/tdg/en/html/preface.html"><code class="sgmltag-element">preface</code></a>. Contolled with the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/appendix.autolabel.html"><em class="parameter"><code>appendix.autolabel</code></em></a>,
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chapter.autolabel.html"><em class="parameter"><code>chapter.autolabel</code></em></a>,
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/part.autolabel.html"><em class="parameter"><code>part.autolabel</code></em></a>, and
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/preface.autolabel.html"><em class="parameter"><code>preface.autolabel</code></em></a> parameters.</p>
        </li><li>
          <p>Added basic support for <a href="http://docbook.org/tdg/en/html/biblioref.html"><code class="sgmltag-element">biblioref</code></a> cross
          referencing.</p>
        </li><li>
          <p>Added support for <code class="sgmltag-attribute">align</code>
          on <a href="http://docbook.org/tdg/en/html/caption.html"><code class="sgmltag-element">caption</code></a> in <a href="http://docbook.org/tdg/en/html/mediaobject.html"><code class="sgmltag-element">mediaobject</code></a>.</p>
        </li><li>
          <p>Added support for processing documents that use the
          DocBook V5 namespace.</p>
        </li><li>
          <p>Added support for <a href="http://docbook.org/tdg/en/html/termdef.html"><code class="sgmltag-element">termdef</code></a> and
          <a href="http://docbook.org/tdg/en/html/mathphrase.html"><code class="sgmltag-element">mathphrase</code></a>.</p>
        </li><li>
          <p>EXPERIMENTAL: Incorporated the Slides and Website
          stylesheets into the DocBook XSL stylesheets package. So,
          for example, Website documents can now be processed using
          the following URI for the driver Website
          <code class="filename">tabular.xsl</code> file: </p><pre class="literallayout"><code class="uri">http://docbook.sourceforge.net/release/xsl/current/website/tabular.xsl</code></pre>
        </li><li>
          <p>A <a href="http://docbook.org/tdg/en/html/procedure.html"><code class="sgmltag-element">procedure</code></a> without a <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> is
          now treated as an &#8220;<span class="quote">informal</span>&#8221; procedure (meaning
          that it is not added to any generated &#8220;<span class="quote">list of
          procedures</span>&#8221; and has no affect on numbering of
          generated labels for other procedures).</p>
        </li><li>
          <p><code class="sgmltag-element">docname</code> is no longer added to
          <a href="http://docbook.org/tdg/en/html/olink.html"><code class="sgmltag-element">olink</code></a> when pointing to a root element.</p>
        </li><li>
        <p>Added support for generation of choice separator in
        inline simplelist. This enables auto-generation of an
        appropriate localized &#8220;<span class="quote">choice separator</span>&#8221; (for
        example, &#8220;<span class="quote">and</span>&#8221; or &#8220;<span class="quote">or</span>&#8221;) before the
        final item in an inline <a href="http://docbook.org/tdg/en/html/simplelist.html"><code class="sgmltag-element">simplelist</code></a>.</p>
        <p>To indicate that you want a choice separator
        generated for a particular list, you need to put a processing
        instruction (PI) of the form
        <code class="sgmltag-xmlpi">&lt;?dbchoice&nbsp;choice="foo"?&gt;</code> as a
        child of the list. For example:
        </p><pre class="literallayout">  &lt;para&gt;Choose from
  ONE and ONLY ONE of the following: 
  &lt;simplelist type="inline"&gt;
  &lt;?dbchoice choice="or" ?&gt;
  &lt;member&gt;A&lt;/member&gt;
  &lt;member&gt;B&lt;/member&gt;
  &lt;member&gt;C&lt;/member&gt;.&lt;/simplelist&gt;&lt;/para&gt;</pre><p>

        Output (for English):
        </p><div class="blockquote"><blockquote class="blockquote">
          <p>Choose from ONE and only ONE of the
          following choices: A, B, or C.</p>
        </blockquote></div><p>
        As a temporary workaround for the fact that most of the
        DocBook non-English locale files don't have a localization for
        the word &#8220;<span class="quote">or</span>&#8221;, you can put in a literal string to
        be used; example for French: <code class="sgmltag-pi">&lt;?dbchoice&nbsp;choice="ou"&gt;</code>.  That is, use
        &#8220;<span class="quote">ou</span>&#8221; instead of &#8220;<span class="quote">or</span>&#8221;.</p>
      </li></ul></div>
    </div>
    <div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1690_FO"></a>FO</h3></div></div></div>
      
      <div class="itemizedlist"><ul type="disc"><li>
          <p> Added <code class="literal">content-type</code> property to
          <code class="literal">external-graphic</code> element, based on
          <a href="http://docbook.org/tdg/en/html/imagedata.html"><code class="sgmltag-element">imagedata</code></a> <code class="sgmltag-attribute">format</code>
          attribute.</p>
        </li><li>
          <p>Added support for generating
          <code class="literal">&lt;rx:meta-field&nbsp;creator="$VERSION"/&gt;</code>
          field for XEP output. This makes the DocBook XSL
          stylesheet version information available through the
          <span class="guimenu">Document Properties</span> menu in Acrobat
          Reader and other PDF viewers.</p>
        </li><li>
          <p>Trademark symbol handling made consistent with
          handling of same in HTML stylesheets. Prior to this change,
          if you processed a document that contained no value for the
          <code class="sgmltag-attribute">class</code> attribute on the
          <a href="http://docbook.org/tdg/en/html/trademark.html"><code class="sgmltag-element">trademark</code></a> element, the HTML stylesheets would
          default to rendering a superscript <code class="literal">TM
          </code>symbol after the <a href="http://docbook.org/tdg/en/html/trademark.html"><code class="sgmltag-element">trademark</code></a> contents,
          but the FO stylesheets would render nothing.</p>
        </li><li>
          <p>Added support for generating XEP bookmarks for
          <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>.</p>
        </li><li>
          <p>Added support for HTML markup <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> <code class="sgmltag-attribute">border</code> attribute, applied to each
          table cell.</p>
        </li><li>
          <p>The <code class="function">table.width</code> template can now
          sum column specs if none use <code class="literal">%</code> or
          <code class="literal">*</code>.</p>
        </li><li>
          <p>Added <code class="literal">fox:destination</code> extension
          inside <code class="literal">fox:outline</code> to support linking to
          internal destinations.</p>
        </li><li>
          <p>Added support for customizing
          <code class="literal">abstract</code> with property sets. Controlled
          with the <em class="parameter"><code>abstract.properties</code></em> and
          <em class="parameter"><code>abstract.title.properties</code></em>
          parameters.</p>
        </li><li>
          <p>Add <a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a>s in <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> title to
          table footnote set, and add support for table footnotes to
          HTML table markup.</p>
        </li><li>
          <p>Added support for <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> in
          <a href="http://docbook.org/tdg/en/html/glosslist.html"><code class="sgmltag-element">glosslist</code></a>.</p>
        </li><li>
          <p>Added support for <a href="http://docbook.org/tdg/en/html/itemizedlist.html"><code class="sgmltag-element">itemizedlist</code></a> symbol
          <code class="literal">none</code>.</p>
        </li><li>
          <p>Implemented the new
          <em class="parameter"><code>graphical.admonition.properties</code></em> and
          <em class="parameter"><code>nongraphical.admonition.properties</code></em>
          attribute sets.</p>
        </li><li>
          <p>Added <code class="sgmltag-attribute">id</code> to
          <a href="http://docbook.org/tdg/en/html/formalpara.html"><code class="sgmltag-element">formalpara</code></a> and some other blocks that were
          missing it.</p>
        </li><li>
          <p>Changed the anchor template to output
          <code class="literal">fo:inline</code> instead of
          <code class="literal">fo:wrapper</code>.</p>
        </li><li>
          <p>Added support for <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/toc.max.depth.html"><em class="parameter"><code>toc.max.depth</code></em></a>
          parameter.</p>
        </li></ul></div>
    </div>
    
    <div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1690_HELP"></a>Help</h3></div></div></div>
      
      <div class="itemizedlist"><ul type="disc"><li>
          <p>Eclipse Help: Added support for generating olink
          database.</p>
        </li></ul></div>
    </div>

    <div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1690_HTML"></a>HTML</h3></div></div></div>
      
      <div class="itemizedlist"><ul type="disc"><li>
          <p>Added a first cut at support in HTML output for
          DocBook 5 style <a href="http://docbook.org/tdg/en/html/annotation.html"><code class="sgmltag-element">annotation</code></a>s. Controlled using the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/annotation.support.html"><em class="parameter"><code>annotation.support</code></em></a> parameter, and
          implemented using JavaScript and CSS styling. For more
          details, see the documentation for the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/annotation.js.html"><em class="parameter"><code>annotation.js</code></em></a>,
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/annotation.css.html"><em class="parameter"><code>annotation.css</code></em></a>,
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/annotation.graphic.open.html"><em class="parameter"><code>annotation.graphic.open</code></em></a>, and
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/annotation.graphic.close.html"><em class="parameter"><code>annotation.graphic.close</code></em></a>
          parameters.</p>
        </li><li>
          <p>Generate client-side image map for
          <a href="http://docbook.org/tdg/en/html/imageobjectco.html"><code class="sgmltag-element">imageobjectco</code></a> with areas using
          <code class="literal">calspair</code> units</p>
        </li><li>
          <p>Added support for <code class="sgmltag-xmlpi">&lt;?img.src.path?&gt;</code> PI.</p>
        </li><li>
          <p>Added support for passing
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/img.src.path.html"><em class="parameter"><code>img.src.path</code></em></a> to DocBook Java XSLT
          image extensions when appropriate. Controlled using the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/graphicsize.use.img.src.path.html"><em class="parameter"><code>graphicsize.use.img.src.path</code></em></a>
          parameter.</p>
        </li><li>
          <p>Added support for (not
          valid for DocBook 4) <code class="sgmltag-attribute">xlink:href</code>
          on <a href="http://docbook.org/tdg/en/html/area.html"><code class="sgmltag-element">area</code></a> and (not valid for DocBook 4)
          <a href="http://docbook.org/tdg/en/html/alt.html"><code class="sgmltag-element">alt</code></a> in <a href="http://docbook.org/tdg/en/html/area.html"><code class="sgmltag-element">area</code></a>.</p>
        </li><li>
          <p>Added new parameter
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/default.table.frame.html"><em class="parameter"><code>default.table.frame</code></em></a> to control table
          framing if there is no <code class="sgmltag-attribute">frame</code>
          attribute on a table.</p>
        </li><li>
          <p>Added initial, experimental support for generating
          content for the HTML <code class="literal">title</code> attribute from
          content of the <a href="http://docbook.org/tdg/en/html/alt.html"><code class="sgmltag-element">alt</code></a> element. This change adds
          support for the following inline elements only (none of them
          are block elements):
          <span class="simplelist"><a href="http://docbook.org/tdg/en/html/abbrev.html"><code class="sgmltag-element">abbrev</code></a>, <a href="http://docbook.org/tdg/en/html/accel.html"><code class="sgmltag-element">accel</code></a>, <a href="http://docbook.org/tdg/en/html/acronym.html"><code class="sgmltag-element">acronym</code></a>, <code class="sgmltag-element">action</code>, <a href="http://docbook.org/tdg/en/html/application.html"><code class="sgmltag-element">application</code></a>, <a href="http://docbook.org/tdg/en/html/authorinitials.html"><code class="sgmltag-element">authorinitials</code></a>, <code class="sgmltag-element">beginpage</code>, <a href="http://docbook.org/tdg/en/html/citation.html"><code class="sgmltag-element">citation</code></a>, <a href="http://docbook.org/tdg/en/html/citerefentry.html"><code class="sgmltag-element">citerefentry</code></a>, <a href="http://docbook.org/tdg/en/html/citetitle.html"><code class="sgmltag-element">citetitle</code></a>, <a href="http://docbook.org/tdg/en/html/city.html"><code class="sgmltag-element">city</code></a>, <a href="http://docbook.org/tdg/en/html/classname.html"><code class="sgmltag-element">classname</code></a>, <a href="http://docbook.org/tdg/en/html/code.html"><code class="sgmltag-element">code</code></a>, <a href="http://docbook.org/tdg/en/html/command.html"><code class="sgmltag-element">command</code></a>, <a href="http://docbook.org/tdg/en/html/computeroutput.html"><code class="sgmltag-element">computeroutput</code></a>, <a href="http://docbook.org/tdg/en/html/constant.html"><code class="sgmltag-element">constant</code></a>, <a href="http://docbook.org/tdg/en/html/country.html"><code class="sgmltag-element">country</code></a>, <a href="http://docbook.org/tdg/en/html/database.html"><code class="sgmltag-element">database</code></a>, <a href="http://docbook.org/tdg/en/html/email.html"><code class="sgmltag-element">email</code></a>, <a href="http://docbook.org/tdg/en/html/envar.html"><code class="sgmltag-element">envar</code></a>, <a href="http://docbook.org/tdg/en/html/errorcode.html"><code class="sgmltag-element">errorcode</code></a>, <a href="http://docbook.org/tdg/en/html/errorname.html"><code class="sgmltag-element">errorname</code></a>, <a href="http://docbook.org/tdg/en/html/errortext.html"><code class="sgmltag-element">errortext</code></a>, <a href="http://docbook.org/tdg/en/html/errortype.html"><code class="sgmltag-element">errortype</code></a>, <a href="http://docbook.org/tdg/en/html/exceptionname.html"><code class="sgmltag-element">exceptionname</code></a>, <a href="http://docbook.org/tdg/en/html/fax.html"><code class="sgmltag-element">fax</code></a>, <a href="http://docbook.org/tdg/en/html/filename.html"><code class="sgmltag-element">filename</code></a>, <a href="http://docbook.org/tdg/en/html/firstname.html"><code class="sgmltag-element">firstname</code></a>, <a href="http://docbook.org/tdg/en/html/firstterm.html"><code class="sgmltag-element">firstterm</code></a>, <a href="http://docbook.org/tdg/en/html/foreignphrase.html"><code class="sgmltag-element">foreignphrase</code></a>, <a href="http://docbook.org/tdg/en/html/function.html"><code class="sgmltag-element">function</code></a>, <a href="http://docbook.org/tdg/en/html/glossterm.html"><code class="sgmltag-element">glossterm</code></a>, <a href="http://docbook.org/tdg/en/html/guibutton.html"><code class="sgmltag-element">guibutton</code></a>, <a href="http://docbook.org/tdg/en/html/guiicon.html"><code class="sgmltag-element">guiicon</code></a>, <a href="http://docbook.org/tdg/en/html/guilabel.html"><code class="sgmltag-element">guilabel</code></a>, <a href="http://docbook.org/tdg/en/html/guimenu.html"><code class="sgmltag-element">guimenu</code></a>, <a href="http://docbook.org/tdg/en/html/guimenuitem.html"><code class="sgmltag-element">guimenuitem</code></a>, <a href="http://docbook.org/tdg/en/html/guisubmenu.html"><code class="sgmltag-element">guisubmenu</code></a>, <a href="http://docbook.org/tdg/en/html/hardware.html"><code class="sgmltag-element">hardware</code></a>, <a href="http://docbook.org/tdg/en/html/honorific.html"><code class="sgmltag-element">honorific</code></a>, <code class="sgmltag-element">interface</code>, <a href="http://docbook.org/tdg/en/html/interfacename.html"><code class="sgmltag-element">interfacename</code></a>, <a href="http://docbook.org/tdg/en/html/keycap.html"><code class="sgmltag-element">keycap</code></a>, <a href="http://docbook.org/tdg/en/html/keycode.html"><code class="sgmltag-element">keycode</code></a>, <a href="http://docbook.org/tdg/en/html/keysym.html"><code class="sgmltag-element">keysym</code></a>, <a href="http://docbook.org/tdg/en/html/lineage.html"><code class="sgmltag-element">lineage</code></a>, <a href="http://docbook.org/tdg/en/html/lineannotation.html"><code class="sgmltag-element">lineannotation</code></a>, <a href="http://docbook.org/tdg/en/html/literal.html"><code class="sgmltag-element">literal</code></a>, <a href="http://docbook.org/tdg/en/html/markup.html"><code class="sgmltag-element">markup</code></a>, <code class="sgmltag-element">medialabel</code>, <a href="http://docbook.org/tdg/en/html/methodname.html"><code class="sgmltag-element">methodname</code></a>, <a href="http://docbook.org/tdg/en/html/mousebutton.html"><code class="sgmltag-element">mousebutton</code></a>, <a href="http://docbook.org/tdg/en/html/option.html"><code class="sgmltag-element">option</code></a>, <a href="http://docbook.org/tdg/en/html/optional.html"><code class="sgmltag-element">optional</code></a>, <a href="http://docbook.org/tdg/en/html/otheraddr.html"><code class="sgmltag-element">otheraddr</code></a>, <a href="http://docbook.org/tdg/en/html/othername.html"><code class="sgmltag-element">othername</code></a>, <a href="http://docbook.org/tdg/en/html/package.html"><code class="sgmltag-element">package</code></a>, <a href="http://docbook.org/tdg/en/html/parameter.html"><code class="sgmltag-element">parameter</code></a>, <a href="http://docbook.org/tdg/en/html/personname.html"><code class="sgmltag-element">personname</code></a>, <a href="http://docbook.org/tdg/en/html/phone.html"><code class="sgmltag-element">phone</code></a>, <a href="http://docbook.org/tdg/en/html/pob.html"><code class="sgmltag-element">pob</code></a>, <a href="http://docbook.org/tdg/en/html/postcode.html"><code class="sgmltag-element">postcode</code></a>, <a href="http://docbook.org/tdg/en/html/productname.html"><code class="sgmltag-element">productname</code></a>, <a href="http://docbook.org/tdg/en/html/productnumber.html"><code class="sgmltag-element">productnumber</code></a>, <a href="http://docbook.org/tdg/en/html/prompt.html"><code class="sgmltag-element">prompt</code></a>, <a href="http://docbook.org/tdg/en/html/property.html"><code class="sgmltag-element">property</code></a>, <a href="http://docbook.org/tdg/en/html/quote.html"><code class="sgmltag-element">quote</code></a>, <a href="http://docbook.org/tdg/en/html/refentrytitle.html"><code class="sgmltag-element">refentrytitle</code></a>, <a href="http://docbook.org/tdg/en/html/remark.html"><code class="sgmltag-element">remark</code></a>, <a href="http://docbook.org/tdg/en/html/replaceable.html"><code class="sgmltag-element">replaceable</code></a>, <a href="http://docbook.org/tdg/en/html/returnvalue.html"><code class="sgmltag-element">returnvalue</code></a>, <a href="http://docbook.org/tdg/en/html/tag.html"><code class="sgmltag-element">tag</code></a>, <a href="http://docbook.org/tdg/en/html/shortcut.html"><code class="sgmltag-element">shortcut</code></a>, <a href="http://docbook.org/tdg/en/html/state.html"><code class="sgmltag-element">state</code></a>, <a href="http://docbook.org/tdg/en/html/street.html"><code class="sgmltag-element">street</code></a>, <code class="sgmltag-element">structfield</code>, <code class="sgmltag-element">structname</code>, <a href="http://docbook.org/tdg/en/html/subscript.html"><code class="sgmltag-element">subscript</code></a>, <a href="http://docbook.org/tdg/en/html/superscript.html"><code class="sgmltag-element">superscript</code></a>, <a href="http://docbook.org/tdg/en/html/surname.html"><code class="sgmltag-element">surname</code></a>, <a href="http://docbook.org/tdg/en/html/symbol.html"><code class="sgmltag-element">symbol</code></a>, <a href="http://docbook.org/tdg/en/html/systemitem.html"><code class="sgmltag-element">systemitem</code></a>, <a href="http://docbook.org/tdg/en/html/tag.html"><code class="sgmltag-element">tag</code></a>, <a href="http://docbook.org/tdg/en/html/termdef.html"><code class="sgmltag-element">termdef</code></a>, <a href="http://docbook.org/tdg/en/html/token.html"><code class="sgmltag-element">token</code></a>, <a href="http://docbook.org/tdg/en/html/trademark.html"><code class="sgmltag-element">trademark</code></a>, <a href="http://docbook.org/tdg/en/html/type.html"><code class="sgmltag-element">type</code></a>, <a href="http://docbook.org/tdg/en/html/uri.html"><code class="sgmltag-element">uri</code></a>, <a href="http://docbook.org/tdg/en/html/userinput.html"><code class="sgmltag-element">userinput</code></a>, <a href="http://docbook.org/tdg/en/html/varname.html"><code class="sgmltag-element">varname</code></a>, and <a href="http://docbook.org/tdg/en/html/wordasword.html"><code class="sgmltag-element">wordasword</code></a></span>
        </p>
        </li><li>
          <p>Added support for chunking <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a> into
          separate file (similar to the support for doing same with
          <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a>). Patch from Thomas
          Schraitle. Controlled through <em class="parameter"><code>new
          generate.revhistory.link</code></em> parameter.</p>
        </li><li>
          <p>l10n.xsl: Made language codes RFC compliant. Added a
          new boolean config parameter,
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/l10n.lang.value.rfc.compliant.html"><em class="parameter"><code>l10n.lang.value.rfc.compliant</code></em></a>. If it
          is non-zero (the default), any underscore in a language code
          will be converted to a hyphen in HTML output. If it is zero,
          the language code will be left as-is.</p>
        </li></ul></div>
    </div>
    <div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1690_MAN"></a>man</h3></div></div></div>
      
      <p>This release closes out 44 manpages stylesheet bug reports
      and feature requests. It adds more than 35 new configuration
      parameters for controlling aspects of man-page output --
      including hyphenation and justification, handling of links,
      conversion of Unicode characters, and contents of man-page
      headers and footers.</p>
      <div class="itemizedlist"><ul type="disc"><li>
          <p>New options for globally disabling/enabling
          hyphenation and justification:
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.justify.html"><em class="parameter"><code>man.justify</code></em></a> and
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.hyphenate.html"><em class="parameter"><code>man.hyphenate</code></em></a>.</p>
          <p>Note that the default
          for the both of those is zero (off), because justified text
          looks good only when it is also hyphenated; to quote the
          &#8220;<span class="quote">Hyphenation</span>&#8221; node from the groff info page:
          </p><div class="blockquote"><blockquote class="blockquote">
            <p><span class="emphasis"><em>Since the odds are not great for finding a
            set of words, for every output line, which fit nicely on a
            line without inserting excessive amounts of space between
            words, `gtroff' hyphenates words so that it can justify
            lines without inserting too much space between
            words.</em></span></p>
          </blockquote></div><p>
          The problem is that groff can end up hyphenating a lot of
          things that you don't want hyphenated (variable names and
          command names, for example). Keeping both justification and
          hyphenation disabled ensures that hyphens won't get inserted
          where you don't want to them, and you don't end up with
          lines containing excessive amounts of space between
          words. These default settings run counter to how most
          existing man pages are formatted. But there are some notable
          exceptions, such as the perl man pages.</p>
        </li><li>
          <p> Added parameters for controlling hyphenation of
          computer inlines, filenames, and URLs. By default, even when
          hyphenation is enabled (globally), hyphenation is now
          suppressed for "computer inlines" (currently, just
          <a href="http://docbook.org/tdg/en/html/classname.html"><code class="sgmltag-element">classname</code></a>, <a href="http://docbook.org/tdg/en/html/constant.html"><code class="sgmltag-element">constant</code></a>, <a href="http://docbook.org/tdg/en/html/envar.html"><code class="sgmltag-element">envar</code></a>,
          <a href="http://docbook.org/tdg/en/html/errorcode.html"><code class="sgmltag-element">errorcode</code></a>, <a href="http://docbook.org/tdg/en/html/option.html"><code class="sgmltag-element">option</code></a>,
          <a href="http://docbook.org/tdg/en/html/replaceable.html"><code class="sgmltag-element">replaceable</code></a>, <a href="http://docbook.org/tdg/en/html/userinput.html"><code class="sgmltag-element">userinput</code></a>,
          <a href="http://docbook.org/tdg/en/html/type.html"><code class="sgmltag-element">type</code></a>, and <a href="http://docbook.org/tdg/en/html/varname.html"><code class="sgmltag-element">varname</code></a>, and for
          <code class="sgmltag-element">filenames</code>, and for URLs from <a href="http://docbook.org/tdg/en/html/link.html"><code class="sgmltag-element">link</code></a>. It
          can be (re)enabled using the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.hyphenate.computer.inlines.html"><em class="parameter"><code>man.hyphenate.computer.inlines</code></em></a>,
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.hyphenate.filenames.html"><em class="parameter"><code>man.hyphenate.filenames</code></em></a>, and
          <em class="parameter"><code>man.hyphenate.urls parameters</code></em>.</p>
        </li><li>
          <p>Implemented a new system for replacing Unicode
          characters. There are two parts to the new system: a
          &#8220;<span class="quote">string substitution map</span>&#8221; for doing
          &#8220;<span class="quote">essential</span>&#8221; replacements, and a
          &#8220;<span class="quote">character map</span>&#8221; that can optionally be disabled
          and enabled.</p>
          <p>The new system fixes all open bugs that had to do with
          literal Unicode numbered entities such as &amp;#8220; and
          &amp;#8221; showing up in output, and greatly expands the
          ability of the stylesheets to generate &#8220;<span class="quote">good</span>&#8221; roff
          equivalents for Unicode symbols and special
          characters.</p>
          <p>Here are some details...</p>
          <p>The previous manpages mechanism for replacing Unicode
          symbols and special characters with roff equivalents (the
          <code class="function">replace-entities</code> template) was not
          scalable and not complete. The mechanism handled a somewhat
          arbitrary selection of less than 20 or so Unicode
          characters. But there are potentially more than
          <span class="emphasis"><em>800</em></span> Unicode special characters that
          have some groff equivalent they can be mapped to. And there
          are about 34 symbols in the Latin-1 (ISO-8859-1) block
          alone. Users might reasonably expect that if they include
          any of those Latin-1 characters in their DocBook source
          documents, they will get correctly converted to known roff
          equivalents in output.</p>
          <p>In addition to those common symbols, certain users may
          have a need to use symbols from other Unicode blocks. Say,
          somebody who is documenting an application related to math
          might need to use a bunch of symbols from the
          &#8220;<span class="quote">Mathematical Operators</span>&#8221; Unicode block (there
          are about 65 characters in that block that have reasonable
          roff equivalents). Or somebody else might really like
          Dingbats -- such as the checkmark character -- and so might
          use a bunch of things from the &#8220;<span class="quote">Dingbat</span>&#8221; block
          (141 characters in that that have roff equivalents or that
          can at least be &#8220;<span class="quote">degraded</span>&#8221; somewhat gracefully
          into roff).</p>
          <p>So, the old <code class="function">replace-entities</code>
          mechanism was replaced with a completely different mechanism
          that is based on use of two &#8220;<span class="quote">maps</span>&#8221;: a
          &#8220;<span class="quote">substitution map</span>&#8221; and a &#8220;<span class="quote">character
          map</span>&#8221; (the latter in a format compliant with the XSLT
          2.0 spec and therefore completely &#8220;<span class="quote">forward
          compatible</span>&#8221; with XSLT 2.0).</p>
          <p>The substitution map is controlled through the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.html"><em class="parameter"><code>man.string.subst.map</code></em></a> parameter, and
          is used to replace things like the backslash character
          (which needs special handling to prevent it from being
          interpreted as a roff escape). The substitution map cannot
          be disabled, because disabling it will cause the output to
          be broken. However, you can add to it and change it if
          needed.</p>

          <p>The &#8220;<span class="quote">character map</span>&#8221; mechanism, on the
          other hand, can be completely disabled. It is enabled by
          default, and, by default, does replacement of all Latin-1
          symbols, along with most special spaces, dashes, and quotes
          (about 75 characters by default). Also, you can optionally
          enable a &#8220;<span class="quote">full</span>&#8221; character map that provides
          support for converting all 800 or so of the characters that
          have some reasonable groff equivalent.</p>

          <p>The character-map mechanism is controlled through the
          following parameters:
          </p><div class="variablelist"><dl><dt><span class="term"><a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.charmap.enabled.html"><em class="parameter"><code>man.charmap.enabled</code></em></a></span></dt><dd><p>turns character-map support
              on/off</p></dd><dt><span class="term"><a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.charmap.use.subset.html"><em class="parameter"><code>man.charmap.use.subset</code></em></a></span></dt><dd><p>specifies that a subset of the character
              map is used instead of the full map</p></dd><dt><span class="term"><a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.charmap.subset.profile.html"><em class="parameter"><code>man.charmap.subset.profile</code></em></a></span></dt><dd><p>specifies profile of character-map
              subset</p></dd><dt><span class="term"><a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.charmap.uri.html"><em class="parameter"><code>man.charmap.uri</code></em></a></span></dt><dd><p>specifies an alternate character map to
              use instead of the &#8220;<span class="quote">standard</span>&#8221; character map
              provided in the distribution</p></dd></dl></div><p>
          </p>
        </li><li>
          <p>Implemented out-of-line handling of display of URLs
          for links (currently, only for <code class="sgmltag-element">ulink</code>). This gives
          you three choices for handling of links:
          </p><div class="orderedlist"><ol type="1"><li>
              <p>Number and list links. Each link is numbered
              inline, with a number in square brackets preceding the
              link contents, and a numbered list of all links is added
              to the end of the document.</p>
            </li><li>
              <p>Only list links. Links are not numbered, but an
              (unnumbered) list of links is added to the end of the
              document.</p>
            </li><li>
              <p>Suppress links. Don't number links and don't add
              any list of links to the end of the document.</p>
            </li></ol></div><p>
          You can also choose whether links should be underlined. The
          default is &#8220;<span class="quote">the works</span>&#8221; -- list, number, and
          underline links. You can use the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.links.list.enabled.html"><em class="parameter"><code>man.links.list.enabled</code></em></a>, <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.links.are.numbered.html"><em class="parameter"><code>
          man.links.are.numbered</code></em></a>, and
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.links.are.underlined.html"><em class="parameter"><code>man.links.are.underlined</code></em></a> parameters
          to change the defaults. The default heading for the link
          list is REFERENCES. You can be change that using the
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.links.list.heading.html"><em class="parameter"><code>man.links.list.heading</code></em></a>
          parameter.</p>
        </li><li>
          <p>Changed default output encoding to UTF-8. <span class="bold"><strong>This does not mean that man pages are output in
          raw UTF-8</strong></span>, because the character map is applied
          before final output, causing all UTF-8 characters covered in
          the map to be converted to roff equivalents.</p>
        </li><li>
          <p>Added support for processing <a href="http://docbook.org/tdg/en/html/refsect3.html"><code class="sgmltag-element">refsect3</code></a> and
          <a href="http://docbook.org/tdg/en/html/formalpara.html"><code class="sgmltag-element">formalpara</code></a> and nested <a href="http://docbook.org/tdg/en/html/refsection.html"><code class="sgmltag-element">refsection</code></a>
          elements, down to any arbitrary level of nesting.</p>
        </li><li>
          <p>Output of the <code class="literal">NAME</code> and
          <code class="literal">SYNOPSIS</code> and <code class="literal">AUTHOR</code>
          headings and the headings for admonitions (<a href="http://docbook.org/tdg/en/html/note.html"><code class="sgmltag-element">note</code></a>,
          <a href="http://docbook.org/tdg/en/html/caution.html"><code class="sgmltag-element">caution</code></a>, etc.) are no longer hard-coded for
          English. Instead, headings are generated for those in the
          correct locale (just as the FO and HTML stylesheets
          do).</p>
        </li><li>
          <p>Re-worked mechanism for assembling page
          headers/footers (the contents of the <code class="literal">.TH</code>
          macro &#8220;<span class="quote">title line</span>&#8221;).</p>

          <p>Here are some details...</p>

          <p>All man pages contain a <code class="literal">.TH</code> roff
          macro whose contents are used for rendering the &#8220;<span class="quote">title
          line</span>&#8221; displayed in the header and footer of each
          page. Here are a couple of examples of real-world man pages
          that have useful page headers/footers: </p><pre class="literallayout">
  gtk-options(7)    GTK+ User's Manual   gtk-options(7) &lt;-- header
  GTK+ 1.2              2003-10-20       gtk-options(7) &lt;-- footer

  svgalib(7)       Svgalib User Manual       svgalib(7) &lt;-- header
  Svgalib 1.4.1      16 December 1999        svgalib(7) &lt;-- footer</pre>

          <p>And here are the terms with which the
          <code class="literal">groff_man(7)</code> man page refers to the
          various parts of the header/footer: </p><pre class="literallayout">
  title(section)  extra3  title(section)  &lt;- header
  extra2          extra1  title(section)  &lt;- footer</pre>
  <p> Or, using the names with which the <code class="literal">man(7)</code>
   man page refers to those same fields: </p><pre class="literallayout">
  title(section)  manual  title(section)  &lt;- page header
  source          date    title(section)  &lt;- page footer</pre>
  
            <p>The easiest way to control the contents of those
            fields is to mark up your <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> content like
            the following (note that this is a &#8220;<span class="quote">minimal</span>&#8221;
            example). </p><pre class="programlisting">
  &lt;refentry&gt;
    &lt;info&gt;
      &lt;date&gt;2003-10-20&lt;/date&gt; <a name="V1690_date-co" href="#V1690_date"><img src="images/callouts/1.png" alt="1" border="0"></a>
    &lt;/info&gt;
    &lt;refmeta&gt;
      &lt;refentrytitle&gt;gtk-options&lt;/refentrytitle&gt; <a name="V1690_title-co" href="#V1690_title"><img src="images/callouts/2.png" alt="2" border="0"></a>
      &lt;manvolnum&gt;7&lt;/manvolnum&gt; <a name="V1690_manvolnum-co" href="#V1690_manvolnum"><img src="images/callouts/3.png" alt="3" border="0"></a>
      &lt;refmiscinfo class="source-name"&gt;GTK+&lt;/refmiscinfo&gt; <a name="V1690_source-name-co" href="#V1690_source-name"><img src="images/callouts/4.png" alt="4" border="0"></a>
      &lt;refmiscinfo class="version"&gt;1.2&lt;/refmiscinfo&gt; <a name="V1690_version-co" href="#V1690_version"><img src="images/callouts/5.png" alt="5" border="0"></a>
      &lt;refmiscinfo class="manual"&gt;GTK+ User's Manual&lt;/refmiscinfo&gt; <a name="V1690_manual-co" href="#V1690_manual"><img src="images/callouts/6.png" alt="6" border="0"></a>
    &lt;/refmeta&gt;
    &lt;refnamediv&gt;
      &lt;refname&gt;gtk-options&lt;/refname&gt;
      &lt;refpurpose&gt;Standard Command Line Options for GTK+ Programs&lt;/refpurpose&gt;
    &lt;/refnamediv&gt;
    &lt;refsect1&gt;
      &lt;title&gt;Description&lt;/title&gt;
      &lt;para&gt;This manual page describes the command line options, which
      are common to all GTK+ based applications.&lt;/para&gt;
    &lt;/refsect1&gt;
  &lt;/refentry&gt;</pre><p>
  </p><div class="calloutlist"><table border="0" summary="Callout list"><tr><td width="5%" valign="top" align="left"><a name="V1690_date"></a><a href="#V1690_date-co"><img src="images/callouts/1.png" alt="1" border="0"></a> </td><td valign="top" align="left">
      <p>Sets the &#8220;<span class="quote">date</span>&#8221; part of the header/footer.</p>
    </td></tr><tr><td width="5%" valign="top" align="left"><a name="V1690_title"></a><a href="#V1690_title-co"><img src="images/callouts/2.png" alt="2" border="0"></a> </td><td valign="top" align="left">
      <p>Sets the &#8220;<span class="quote">title</span>&#8221; part.</p>
    </td></tr><tr><td width="5%" valign="top" align="left"><a name="V1690_manvolnum"></a><a href="#V1690_manvolnum-co"><img src="images/callouts/3.png" alt="3" border="0"></a> </td><td valign="top" align="left">
      <p>Sets the &#8220;<span class="quote">section</span>&#8221; part.</p>
    </td></tr><tr><td width="5%" valign="top" align="left"><a name="V1690_source-name"></a><a href="#V1690_source-name-co"><img src="images/callouts/4.png" alt="4" border="0"></a> </td><td valign="top" align="left">
      <p>Sets the &#8220;<span class="quote">source name</span>&#8221; part.</p>
    </td></tr><tr><td width="5%" valign="top" align="left"><a name="V1690_version"></a><a href="#V1690_version-co"><img src="images/callouts/5.png" alt="5" border="0"></a> </td><td valign="top" align="left">
      <p>Sets the &#8220;<span class="quote">version</span>&#8221; part.</p>
    </td></tr><tr><td width="5%" valign="top" align="left"><a name="V1690_manual"></a><a href="#V1690_manual-co"><img src="images/callouts/6.png" alt="6" border="0"></a> </td><td valign="top" align="left">
      <p>Sets the &#8220;<span class="quote">manual</span>&#8221; part.</p>
    </td></tr></table></div><p>
            </p>
            <p>Below are explanations of the steps the stylesheets
            take to attempt to assemble and display
            &#8220;<span class="quote">good</span>&#8221; headers and footer. [In the
            descriptions, note that <em class="replaceable"><code>*info</code></em>
            is the <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> &#8220;<span class="quote">info</span>&#8221; child
            (whatever its name), and
            <em class="replaceable"><code>parentinfo</code></em> is the
            &#8220;<span class="quote">info</span>&#8221; child of its parent (again, whatever
            its name).]
          </p><div class="variablelist"><dl><dt><span class="term">extra1 field (date)</span></dt><dd>
                <p>Content of the &#8220;<span class="quote">extra1</span>&#8221; field is
                what shows up in the <span class="bold"><strong>center
                footer</strong></span> position of each page. The
                <code class="literal">man(7)</code> man page describes it as
                &#8220;<span class="quote">the date of the last revision</span>&#8221;.</p>
                <p>To provide this content, if the
                <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/refentry.date.profile.enabled.html"><em class="parameter"><code>refentry.date.profile.enabled</code></em></a>
                is non-zero, the stylesheets check the value of
                <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/refentry.date.profile.html"><em class="parameter"><code>refentry.date.profile</code></em></a>.</p>
                <p>Otherwise, by default, they check for a
                <a href="http://docbook.org/tdg/en/html/date.html"><code class="sgmltag-element">date</code></a> or <a href="http://docbook.org/tdg/en/html/pubdate.html"><code class="sgmltag-element">pubdate</code></a> not only in the
                <em class="replaceable"><code>*info</code></em> contents, but also in
                the <em class="replaceable"><code>parentinfo</code></em>
                contents.</p>
                <p>If a date cannot be found, the stylesheets now
                automatically generate a localized &#8220;<span class="quote">long
                format</span>&#8221; date, ensuring that this field always
                has content in output.</p>
                <p>However, if for some reason you want to suppress
                this field, you can do so by setting a non-zero value
                for <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.th.extra1.suppress.html"><em class="parameter"><code>man.th.extra1.suppress</code></em></a>.</p>
              </dd><dt><span class="term">extra2 field (source)</span></dt><dd>
                <p>On Linux systems and on systems with a modern
                groff, the content of the &#8220;<span class="quote">extra2</span>&#8221; field
                are what shows up in the <span class="bold"><strong>left
                footer</strong></span> position of each page.</p>

                <p>The <code class="literal">man(7)</code> man page describes
                this as &#8220;<span class="quote">the source of the command</span>&#8221;, and
                provides the following examples:
                </p><div class="itemizedlist"><ul type="circle"><li>
                    <p>For binaries, use somwething like: GNU,
                    NET-2, SLS Distribution, MCC Distribution.</p>
                  </li><li>
                    <p>For system calls, use the version of the
                    kernel that you are currently looking at: Linux
                    0.99.11.</p>
                  </li><li>
                    <p>For library calls, use the source of the
                    function: GNU, BSD 4.3, Linux DLL 4.4.1.</p>
                  </li></ul></div><p>
                </p>

                <p>In practice, there are many pages that simply
                have a version number in the &#8220;<span class="quote">source</span>&#8221;
                field. So, it looks like what we have is a two-part
                field,
                <em class="replaceable"><code>Name</code></em>&nbsp;<em class="replaceable"><code>Version</code></em>,
                where:
                </p><div class="variablelist"><dl><dt><span class="term">Name</span></dt><dd>
                      <p>product name (e.g., BSD) or org. name
                      (e.g., GNU)</p>
                    </dd><dt><span class="term">Version</span></dt><dd>
                      <p>version name</p>
                    </dd></dl></div><p>
                Each part is optional. If the
                <em class="replaceable"><code>Name</code></em> is a product name,
                then the <em class="replaceable"><code>Version</code></em> is
                probably the version of the product. Or there may be
                no <em class="replaceable"><code>Name</code></em>, in which case, if
                there is a <em class="replaceable"><code>Version</code></em>, it is
                probably the version of the item itself, not the
                product it is part of. Or, if the
                <em class="replaceable"><code>Name</code></em> is an organization
                name, then there probably will be no
                <em class="replaceable"><code>Version</code></em>.
                </p>
                <p>To provide this content, if the
                <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/refentry.source.name.profile.enabled.html"><em class="parameter"><code>refentry.source.name.profile.enabled</code></em></a>
                and
                <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/refentry.version.profile.enabled.html"><em class="parameter"><code>refentry.version.profile.enabled</code></em></a>
                parameter are non-zero, the stylesheets check the
                value of <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/refentry.source.name.profile.html"><em class="parameter"><code>refentry.source.name.profile</code></em></a>
                <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/refentry.version.profile.html"><em class="parameter"><code>refentry.version.profile</code></em></a>.</p>

                <p>Otherwise, by default, they check the following
                places, in the following order:
                </p><div class="orderedlist"><ol type="1"><li>
                    <pre class="literallayout"><em class="replaceable"><code>*info</code></em>/<a href="http://docbook.org/tdg/en/html/productnumber.html"><code class="sgmltag-element">productnumber</code></a></pre>
                  </li><li>
                    <pre class="literallayout"><em class="replaceable"><code>*info</code></em>/<a href="http://docbook.org/tdg/en/html/productnumber.html"><code class="sgmltag-element">productnumber</code></a></pre>
                  </li><li>
                    <pre class="literallayout"><a href="http://docbook.org/tdg/en/html/refmeta.html"><code class="sgmltag-element">refmeta</code></a>/<a href="http://docbook.org/tdg/en/html/refmiscinfo.html"><code class="sgmltag-element">refmiscinfo</code></a>[@class = 'version']</pre>
                  </li><li>
                    <pre class="literallayout"><em class="replaceable"><code>parentinfo</code></em>/<a href="http://docbook.org/tdg/en/html/productnumber.html"><code class="sgmltag-element">productnumber</code></a></pre>
                  </li><li>
                    <pre class="literallayout"><em class="replaceable"><code>*info</code></em>/<a href="http://docbook.org/tdg/en/html/productname.html"><code class="sgmltag-element">productname</code></a></pre>
                  </li><li>
                    <pre class="literallayout"><em class="replaceable"><code>parentinfo</code></em>/<a href="http://docbook.org/tdg/en/html/productname.html"><code class="sgmltag-element">productname</code></a></pre>
                  </li><li>
                    <pre class="literallayout"><a href="http://docbook.org/tdg/en/html/refmeta.html"><code class="sgmltag-element">refmeta</code></a>/<a href="http://docbook.org/tdg/en/html/refmiscinfo.html"><code class="sgmltag-element">refmiscinfo</code></a></pre>
                  </li><li>
                    <p>[nothing found, so leave it empty]</p>
                  </li></ol></div><p>
                </p>
              </dd><dt><span class="term">extra3 field</span></dt><dd>
                <p>On Linux systems and on systems with a modern
                groff, the content of the &#8220;<span class="quote">extra3</span>&#8221; field
                are what shows up in the <span class="bold"><strong>center
                header</strong></span> position of each page. Some man
                pages have &#8220;<span class="quote">extra2</span>&#8221; content, some
                don't. If a particular man page has it, it is most
                often &#8220;<span class="quote">context</span>&#8221; data about some larger
                system the documented item belongs to (for example,
                the name or description of a group of related
                applications). The stylesheets now check the following
                places, in the following order, to look for content to
                add to the &#8220;<span class="quote">extra3</span>&#8221; field.</p>
                <div class="orderedlist"><ol type="1"><li>
                    <pre class="literallayout"><em class="replaceable"><code>parentinfo</code></em>/<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a></pre>
                  </li><li>
                    <pre class="literallayout">parent's <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a></pre>
                  </li><li>
                    <pre class="literallayout"><a href="http://docbook.org/tdg/en/html/refmeta.html"><code class="sgmltag-element">refmeta</code></a>/<a href="http://docbook.org/tdg/en/html/refmiscinfo.html"><code class="sgmltag-element">refmiscinfo</code></a></pre>
                  </li><li>
                    <p>[nothing found, so leave it empty]</p>
                  </li></ol></div>
              </dd></dl></div><p>
        </p>
      </li><li>
        <p>Reworked <em class="replaceable"><code>*info</code></em> gathering. For
        each <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> found, the stylesheets now cache its
        <em class="replaceable"><code>*info</code></em> content, then check for any
        valid parent of it that might have metainfo content and cache
        that, if found; they then then do all further matches against
        those node-sets (rather than re-selecting the original
        <em class="replaceable"><code>*info</code></em> nodes each time they are
        needed).</p>
      </li><li>
        <p>New option for breaking strings after forward
        slashes. This enables long URLs and pathnames to be broken
        across lines. Controlled through
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.break.after.slash.html"><em class="parameter"><code>man.break.after.slash</code></em></a> parameter.</p>
      </li><li>
        <p>Output for servicemark and trademark are now
        <code class="literal">(SM)</code> and <code class="literal">(TM)</code>. There is
        a groff <code class="literal">"\(tm"</code> escape, but output from that
        is not acceptable.</p>
      </li><li>
        <p>New option for controlling the length of the title
        part of the <code class="literal">.TH</code> title line. Controlled
        through the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.th.title.max.length.html"><em class="parameter"><code>man.th.title.max.length</code></em></a>
        parameter.</p>
      </li><li>
        <p>New option for specifying output encoding of each man
        page; controlled with
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.encoding.html"><em class="parameter"><code>man.output.encoding</code></em></a> (similar to the
        HTML <em class="parameter"><code>chunker.output.encoding </code></em>
        parameter).</p>
      </li><li>
        <p>New option for suppressing filename messages when
        generating output; controlled with
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.output.quietly.html"><em class="parameter"><code>man.output.quietly</code></em></a> (similar to the HTML
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.quietly.html"><em class="parameter"><code>chunk.quietly</code></em></a> parameter).</p>
      </li><li>
        <p>The text of cross-references to first-level
        <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> (<a href="http://docbook.org/tdg/en/html/refsect1.html"><code class="sgmltag-element">refsect1</code></a>, top-level
        <a href="http://docbook.org/tdg/en/html/refsection.html"><code class="sgmltag-element">refsection</code></a>, <a href="http://docbook.org/tdg/en/html/refnamediv.html"><code class="sgmltag-element">refnamediv</code></a>, and
        <a href="http://docbook.org/tdg/en/html/refsynopsisdiv.html"><code class="sgmltag-element">refsynopsisdiv</code></a>) are now capitalized.</p>
      </li><li>
        <p>Cross-references to <a href="http://docbook.org/tdg/en/html/refnamediv.html"><code class="sgmltag-element">refnamediv</code></a> now use the
        localized <code class="literal">NAME</code> title instead of using the
        first <a href="http://docbook.org/tdg/en/html/refname.html"><code class="sgmltag-element">refname</code></a> child. This makes the output
        inconsistent with HTML and FO output, but for man-page output,
        it seems to make better sense to have the
        <code class="literal">NAME</code>. (It may actually make better sense to
        do it that way in HTML and FO output as well...)</p>
      </li><li>
        <p>Added support for processing <a href="http://docbook.org/tdg/en/html/funcparams.html"><code class="sgmltag-element">funcparams</code></a>.</p>
      </li><li>
        <p>Removed the space that was being output between
        <a href="http://docbook.org/tdg/en/html/funcdef.html"><code class="sgmltag-element">funcdef</code></a> and <a href="http://docbook.org/tdg/en/html/paramdef.html"><code class="sgmltag-element">paramdef</code></a>; example: was:
        <code class="literal">float&nbsp;rand&nbsp;(void)</code>; now:
        <code class="literal">float&nbsp;rand(void)</code></p>
      </li><li>
        <p>Turned off bold formatting for the <a href="http://docbook.org/tdg/en/html/type.html"><code class="sgmltag-element">type</code></a>
        element when it occurs within a <a href="http://docbook.org/tdg/en/html/funcdef.html"><code class="sgmltag-element">funcdef</code></a> or
        <a href="http://docbook.org/tdg/en/html/paramdef.html"><code class="sgmltag-element">paramdef</code></a></p>
      </li><li>
        <p>Corrected rendering of <a href="http://docbook.org/tdg/en/html/simplelist.html"><code class="sgmltag-element">simplelist</code></a>. Any
        <code class="literal">&lt;simplelist&nbsp;type="inline"</code> instance
        is now rendered as a comma-separated list (also with an
        optional localized &#8220;<span class="quote">and</span>&#8221; or &#8220;<span class="quote">or</span>&#8221; before the last item -- see
        description elsewhere in these release notes). Any simplelist
        instance whose <code class="sgmltag-attribute">type</code> is not
        <code class="literal">inline</code> is rendered as a one-column vertical
        list (ignoring the values of the <code class="sgmltag-attribute">type</code> and <code class="sgmltag-attribute">columns</code> attributes if present)</p>
      </li><li>
        <p>Comment added at top of roff source for each page now
        includes DocBook XSL stylesheets version number (as in the
        HTML stylesheets)</p>
      </li><li>
        <p>Made change to prevent &#8220;<span class="quote">sticky</span>&#8221; fonts
        changes. Now, when the manpages stylesheets encounter node
        sets that need to be boldfaced or italicized, they put the
        <code class="literal">\fBfoo\fR</code> and <code class="literal">\fIbar\fR</code>
        groff bold/italic instructions separately around each node in
        the set.</p>
      </li><li>
        <p>synop.xsl: Boldface everything in
        <a href="http://docbook.org/tdg/en/html/funcsynopsis.html"><code class="sgmltag-element">funcsynopsis</code></a> output except parameters (which are in
        ital). The <code class="literal">man(7)</code> man page says:
        </p><div class="blockquote"><blockquote class="blockquote">
          <p>For functions, the arguments are always specified
          using italics, even in the SYNOPSIS section, where the rest
          of the function is specified in bold.</p>
          </blockquote></div><p>
          A look through the contents of the
          <code class="filename">man/man2</code> directory shows that most
          (all) existing pages do follow this &#8220;<span class="quote">everything in
          funcsynopsis bold</span>&#8221; rule. That means the
          <a href="http://docbook.org/tdg/en/html/type.html"><code class="sgmltag-element">type</code></a> content and any punctuation (parens,
          semicolons, <code class="sgmltag-element">vararg</code>s) also must be bolded.</p>
      </li><li>
        <p>Removed code for adding backslashes before periods/dots
        in roff source, because backslashes in front of periods/dots
        in roff source are needed only in the very rare case where a
        period is the very first character in a line, without any
        space in front of it. A better way to deal with that rare case
        is for you to add a zero-width space in front of the offending
        dot(s) in your source</p>
      </li><li>
        <p>Removed special handling of the <a href="http://docbook.org/tdg/en/html/quote.html"><code class="sgmltag-element">quote</code></a>
        element. That was hard-coded to cause anything marked up with
        the <a href="http://docbook.org/tdg/en/html/quote.html"><code class="sgmltag-element">quote</code></a> element to be output preceded by two
        backticks and followed by two apostrophes -- that is, that
        old-school kludge for generating &#8220;<span class="quote">curly</span>&#8221; quotes in Emacs and
        in X-Windows fonts. While Emacs still seems to support that, I
        don't think X-Windows has for a long time now. And, anyway, it
        looks (and has always looked) like crap when viewed on a
        normal tty/console. In addition, it breaks localiztion of
        <a href="http://docbook.org/tdg/en/html/quote.html"><code class="sgmltag-element">quote</code></a>. By default, <a href="http://docbook.org/tdg/en/html/quote.html"><code class="sgmltag-element">quote</code></a> content is
        output with localized quotation marks, which, depending on the
        locale, may or may not be left and right double quotation
        marks.</p>
      </li><li>
        <p>Changed mappings for left and right single quotation
        marks. Those had previously been incorrectly mapped to the
        backtick (&amp;#96;) and apostrophe (&amp;39;) characters (for
        kludgy reasons -- see above). They are now correctly mapped to
        the <code class="literal">\(oq</code> and <code class="literal">\(cq</code> roff
        escapes. If you want the old (broken) behavior, you need to
        manually change the mappings for those in the value of the
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.string.subst.map.html"><em class="parameter"><code>man.string.subst.map</code></em></a> parameter.</p>
      </li><li>
        <p>Removed <code class="filename">xref.xsl</code> file. Now, of the
        various cross-reference elements, only the <code class="sgmltag-element">ulink</code>
        element is handled differently; the rest are handled exactly
        as the HTML stylesheets handle them, except that no hypertext
        links are generated. (Because there is no equivalent hypertext
        mechanism is man pages.)</p>
      </li><li>
        <p>New option for making &#8220;<span class="quote">subheading dividers</span>&#8221; in generated
        roff source. The dividers are not visible in the rendered man
        page; they are just there to make the source
        readable. Controlled using
        <a href="http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.subheading.divider.html"><em class="parameter"><code>man.subheading.divider</code></em></a>.</p>
      </li><li>
        <p>Fixed many places where too much space was being added
        between lines.</p>
      </li></ul></div>
    
  </div>
</div>
  

  <div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1681"></a>Release 1.68.1</h2></div></div></div>
    
    <p>The release adds localization support for Farsi (thanks to
    Sina Heshmati) and improved support for the XLink-based DocBook NG
    <code class="sgmltag-element">db:link</code> element. Other than that, it is a minor
    bug-fix update to the 1.68.0 release. The main thing it fixes is a
    build error that caused the XSLT Java extensions to be jarred up
    with the wrong package structure. Thanks to Jens Stavnstrup for
    quickly reporting the problem, and to Mauritz Jeanson for
    investigating and finding the cause.</p>
  </div>
  

  <div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1680"></a>Release 1.68.0</h2></div></div></div>
    
    <p>This release includes some features changes, particularly
    for FO/PDF output, and a number of bug fixes.
      </p><div class="itemizedlist"><a name="V1680_FO"></a><p class="title"><b>FO</b></p><ul type="disc"><li>
          <p>Moved footnote properties to attribute-sets.</p>
        </li><li>
          <p>Added support for side floats, margin notes, and
   	  custom floats.</p>
        </li><li>
          <p>Added new parameters
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/body.start.indent.html"><em class="parameter"><code>body.start.indent</code></em></a> and
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/body.end.indent.html"><em class="parameter"><code>body.end.indent</code></em></a> to the
          <em class="parameter"><code>set.flow.properties template</code></em>.</p>
        </li><li>
          <p>Added support for <code class="sgmltag-attribute">xml:id</code></p>
        </li><li>
          <p>Added support for
          <a href="http://docbook.org/tdg/en/html/refdescriptor.html"><code class="sgmltag-element">refdescriptor</code></a>.</p>
        </li><li>
          <p>Added support for multiple <a href="http://docbook.org/tdg/en/html/refnamediv.html"><code class="sgmltag-element">refnamediv</code></a>s.</p>
        </li><li>
          <p>Added <em class="parameter"><code>index.entry.properties</code></em>
          attribute-set to support customization of index
          entries.</p>
        </li><li>
          <p>Added <em class="parameter"><code>set.flow.properties
          template</code></em> call to each <code class="sgmltag-element">fo:flow</code>
          to support customizations entry point.</p>
        </li><li>
          <p>Add support for <code class="literal">@floatstyle</code> in
          <a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a></p>
        </li><li>
          <p>Moved hardcoded properties for index division titles
          to the <em class="parameter"><code>index.div.title.properties</code></em>
          attribute-set.</p>
        </li><li>
          <p>Added support for
          <code class="sgmltag-element">table-layout</code>="<code class="sgmltag-attvalue">auto</code>" for XEP.</p>
        </li><li>
          <p>Added <em class="parameter"><code>index.div.title.properties</code></em>
   	  attribute-set.</p>
        </li><li>
          <p><em class="parameter"><code>$verbose</code></em> parameter is now
          passed to most elements.</p>
        </li><li>
          <p>Added <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a> to
          <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">toc</code></a> in <a href="http://docbook.org/tdg/en/html/part.html"><code class="sgmltag-element">part</code></a>, as it is
          permitted by the DocBook schema/DTD.</p>
        </li><li>
          <p>Added backmatter elements and
          <a href="http://docbook.org/tdg/en/html/article.html"><code class="sgmltag-element">article</code></a> to <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">toc</code></a> in
          <a href="http://docbook.org/tdg/en/html/part.html"><code class="sgmltag-element">part</code></a>, since they are permitted by the
          DocBook schema/DTD.</p>
        </li><li>
          <p>Added <code class="sgmltag-attribute">mode</code>="<code class="sgmltag-attvalue">toc</code>" for
          <a href="http://docbook.org/tdg/en/html/simplesect.html"><code class="sgmltag-element">simplesect</code></a>, since it is now permitted in
          the <a href="http://docbook.org/tdg/en/html/toc.html"><code class="sgmltag-element">toc</code></a> if
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/simplesect.in.toc.html"><em class="parameter"><code>simplesect.in.toc</code></em></a> is set.</p>
        </li><li>
          <p>Moved hard-coded properties to
          <em class="parameter"><code>nongraphical.admonintion.properties</code></em>
          and <em class="parameter"><code>graphical.admonition.properties</code></em>
          attribute sets.</p>
        </li><li>
          <p>Added support for <code class="literal">sidebar-width</code> and
          <code class="literal">float-type</code> processing instructions in
          <a href="http://docbook.org/tdg/en/html/sidebar.html"><code class="sgmltag-element">sidebar</code></a>.</p>
        </li><li>
          <p>For tables with HTML markup elements, added support
          for <code class="literal">dbfo bgcolor</code> PI, the attribute-sets
          named <em class="parameter"><code>table.properties</code></em>,
          <em class="parameter"><code>informaltable.properties</code></em>,
          <em class="parameter"><code>table.table.properties</code></em>, and
          <em class="parameter"><code>table.cell.padding</code></em>. Also added
          support for the templates named
          <em class="parameter"><code>table.cell.properties</code></em> and
          <em class="parameter"><code>table.cell.block.properties</code></em> so that
          tabstyles can be implemented. Also added support for tables
          containing only <a href="http://docbook.org/tdg/en/html/tr.html"><code class="sgmltag-element">tr</code></a> instead of
          <a href="http://docbook.org/tdg/en/html/tbody.html"><code class="sgmltag-element">tbody</code></a> with <a href="http://docbook.org/tdg/en/html/tr.html"><code class="sgmltag-element">tr</code></a>.</p>
        </li><li>
          <p>Added new paramater
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/hyphenate.verbatim.characters.html"><em class="parameter"><code>hyphenate.verbatim.characters</code></em></a> which
          can specify characters after which a line break can occur in
          verbatim environments.  This parameter can be used to extend
          the initial set of characters which contain only space and
          non-breakable space.</p>
        </li><li>
          <p>Added <em class="parameter"><code>itemizedlist.label.markup</code></em> to enable
 	  selection of different bullet symbol. Also added several
   	  potential bullet characters, commented out by default.</p>
        </li><li>
          <p>Enabled all id's in XEP output for external olinking.</p>
        </li></ul></div><p>

      </p><div class="itemizedlist"><a name="V1680_HTML"></a><p class="title"><b>HTML</b></p><ul type="disc"><li>
          <p>Added support for
          <a href="http://docbook.org/tdg/en/html/refdescriptor.html"><code class="sgmltag-element">refdescriptor</code></a>.</p>
        </li><li>
          <p>Added support for multiple <a href="http://docbook.org/tdg/en/html/refnamediv.html"><code class="sgmltag-element">refnamediv</code></a>s.</p>
        </li><li>
          <p>Added support for <code class="sgmltag-attribute">xml:id</code></p>
        </li><li>
          <p><a href="http://docbook.org/tdg/en/html/refsynopsisdiv.html"><code class="sgmltag-element">refsynopsisdiv</code></a> as a section for
          counting section levels</p>
        </li></ul></div><p>
      </p><div class="itemizedlist"><a name="V1680_images"></a><p class="title"><b>Images</b></p><ul type="disc"><li>
          <p>Added new SVG admonition graphics and navigation images.</p>
        </li></ul></div><p>
    </p>
  </div>
  

  <div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1672"></a>Release 1.67.2</h2></div></div></div>
    
    <p>This release fixes a table bug introduced in the 1.67.1
    release.</p>
  </div>
  <div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1671"></a>Release 1.67.1</h2></div></div></div>
    
    <p>This release includes a number of bug fixes.</p>
     <p>The following lists provide details about API and feature changes.
      </p><div class="itemizedlist"><a name="V1671_FO"></a><p class="title"><b>FO</b></p><ul type="disc"><li>
          <p>Tables: Inherited cell properties are now passed to the
          <code class="literal">table.cell.properties</code> template so they can
          be overridden by a customization.</p>
        </li><li>
          <p>Tables: Added support for bgcolor PI on table row
          element.</p>
        </li><li>
          <p>TOCs: Added new parameter
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/simplesect.in.toc.html"><em class="parameter"><code>simplesect.in.toc</code></em></a>; default value of
          <code class="literal">0</code> causes simplesect to be omitted from TOCs; to
          cause <a href="http://docbook.org/tdg/en/html/simplesect.html"><code class="sgmltag-element">simplesect</code></a> to be included in TOCs, you
          must set the value of <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/simplesect.in.toc.html"><em class="parameter"><code>simplesect.in.toc</code></em></a> to
          <code class="literal">1</code>.Comment from Norm:

            </p><div class="blockquote"><blockquote class="blockquote">
              <p><span class="emphasis"><em>Simplesect elements aren't supposed to
              appear in the ToC at all... The use case for simplesect
              is when, for example, every chapter in a book ends with
              "Exercises" or "For More Information" sections and you
              don't want those to appear in the ToC.</em></span></p>
            </blockquote></div><p>
            </p>
        </li><li>
          <p>Sections: Reverted change that caused a variable reference
          to be used in a template match and rewrote code to preserve
          intended semantics.</p>
        </li><li>
          <p>Lists: Added workaround to prevent "* 0.60 + 1em" garbage in
          list output from PassiveTeX</p>
        </li><li>
          <p>Moved the literal attributes from
          <em class="parameter"><code>component.title</code></em> to the
          <em class="parameter"><code>component.title.properties</code></em> attribute-set so
          they can be customized.</p>
        </li><li>
          <p>Lists: Added <a href="http://docbook.org/tdg/en/html/glossdef.html"><code class="sgmltag-element">glossdef</code></a>'s first
          <a href="http://docbook.org/tdg/en/html/para.html"><code class="sgmltag-element">para</code></a> to special handling in
          <code class="literal">fo:list-item-body</code>.</p>
        </li></ul></div><p>

      </p><div class="itemizedlist"><a name="V1671_HTML"></a><p class="title"><b>HTML</b></p><ul type="disc"><li>
          <p>TOCs: Added new parameter
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/simplesect.in.toc.html"><em class="parameter"><code>simplesect.in.toc</code></em></a>; for details, see
          the list of <a href="#V1671_FO" title="FO">FO</a> changes for this
          release.</p>
        </li><li>
          <p>Indexing: Added new parameter
          <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.prefer.titleabbrev.html"><em class="parameter"><code>index.prefer.titleabbrev</code></em></a>; when set to
          <code class="literal">1</code>, index references will use
          <a href="http://docbook.org/tdg/en/html/titleabbrev.html"><code class="sgmltag-element">titleabbrev</code></a> instead of
          <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a> when available.</p>
        </li></ul></div><p>
      </p><div class="itemizedlist"><a name="V1671_HELP"></a><p class="title"><b>HTML Help</b></p><ul type="disc"><li>
          <p>Added support for generating windows-1252-encoded
          output using Saxon; for more details, see the list of <a href="#V1671_EXT" title="XSL Java extensions">XSL Java extensions</a> changes for this release.</p>
        </li></ul></div><p>
      </p><div class="itemizedlist"><a name="V1671_MAN"></a><p class="title"><b>man pages</b></p><ul type="disc"><li>
          <p>Replaced named/numeric character-entity references for
          non-breaking space with groff equivalent (backslash-tilde).</p>
        </li></ul></div><p>
      </p><div class="itemizedlist"><a name="V1671_EXT"></a><p class="title"><b>XSL Java extensions</b></p><ul type="disc"><li>
          <p>Saxon extensions: Added the
          <code class="classname">Windows1252</code> class.  It extends Saxon
          6.5.x with the windows-1252 character set, which is
          particularly useful when generating HTML Help for Western
          European Languages (code from
          <span class="personname"><span class="firstname">Pontus</span> <span class="surname">Haglund</span></span> and contributed to the
          DocBook community by Sectra AB, Sweden).</p>
          <p>To use:
          </p><div class="orderedlist"><ol type="1"><li>
              <p>Make sure that the Saxon 6.5.x jar file and the jar file for
              the DocBook XSL Java extensions are in your <code class="envar">CLASSPATH</code></p>
            </li><li>
              <p>Create a DocBook XSL customization layer -- a file named
              <code class="filename">mystylesheet.xsl</code> or whatever -- that, at a
              minimum, contains the following:
              </p><pre class="screen">  &lt;xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version='1.0'&gt;
    &lt;xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/&gt;
    &lt;xsl:output method="html" encoding="WINDOWS-1252" indent="no"/&gt;
    &lt;xsl:param name="htmlhelp.encoding" select="'WINDOWS-1252'"&gt;&lt;/xsl:param&gt;
    &lt;xsl:param name="chunker.output.encoding" select="'WINDOWS-1252'"&gt;&lt;/xsl:param&gt;
    &lt;xsl:param name="saxon.character.representation" select="'native'"&gt;&lt;/xsl:param&gt;
  &lt;/xsl:stylesheet&gt;</pre><p>
              </p>
              <p>Invoke Saxon with the
              <code class="literal">encoding.windows-1252</code> Java system property set
              to <code class="literal">com.nwalsh.saxon.Windows1252</code>; for example
              </p><pre class="screen">  java \
    -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
  com.icl.saxon.StyleSheet \
  mydoc.xml mystylesheet.xsl</pre><p>

              Or, for a more complete "real world" case showing other
              options you'll typically want to use:
              </p><pre class="screen">  java \
    -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
    -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \
    -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \
    -Djavax.xml.transform.TransformerFactory=com.icl.saxon.TransformerFactoryImpl \
  com.icl.saxon.StyleSheet \
    -x org.apache.xml.resolver.tools.ResolvingXMLReader \
    -y org.apache.xml.resolver.tools.ResolvingXMLReader \
    -r org.apache.xml.resolver.tools.CatalogResolver \
  mydoc.xml mystylesheet.xsl</pre><p>

              In both cases, the "mystylesheet.xsl" file should be a
              DocBook customization layer containing the parameters
              show in step 2.</p>
            </li></ol></div><p>
          </p>
        </li><li>
          <p>Saxon extensions: Removed Saxon 8 extensions from release package</p>
        </li></ul></div><p>
    </p>
  </div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1670"></a>Release 1.67.0</h2></div></div></div>
  
  <div class="itemizedlist"><ul type="disc"><li>
    <p>A number of important bug fixes.</p>
  </li><li>
    <p>Added Saxon8 extensions</p>
  </li><li>
    <p>Enabled <code class="literal">dbfo table-width</code> on
    <a href="http://docbook.org/tdg/en/html/entrytbl.html"><code class="sgmltag-element">entrytbl</code></a> in FO output</p>
  </li><li>
    <p>Added support for <code class="literal">role=strong</code> on
    <a href="http://docbook.org/tdg/en/html/emphasis.html"><code class="sgmltag-element">emphasis</code></a> in FO output</p>
  </li><li>
    <p>Added new FO parameter
    <a href="http://docbook.sourceforge.net/release/xsl/current/doc/fo/hyphenate.verbatim.html"><em class="parameter"><code>hyphenate.verbatim</code></em></a> that can be used to turn
    on "intelligent" wrapping of verbatim environments.</p>
  </li><li>
    <p>Replaced all <code class="literal">&lt;tt&gt;&lt;/tt&gt;</code> output with
    <code class="literal">&lt;code&gt;&lt;/code&gt;</code></p>
  </li><li>
    <p>Changed <code class="literal">admon.graphic.width</code> template to a
    mode so that different admonitions can have different graphical
    widths.</p>
  </li><li>
    <p>Deprecated the HTML <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/shade.verbatim.html"><em class="parameter"><code>shade.verbatim</code></em></a>
    parameter (use CSS instead)</p>
  </li><li>
    <p>Wrapped ToC
    <a href="http://docbook.org/tdg/en/html/refentrytitle.html"><code class="sgmltag-element">refentrytitle</code></a>/<a href="http://docbook.org/tdg/en/html/refname.html"><code class="sgmltag-element">refname</code></a> and
    <a href="http://docbook.org/tdg/en/html/refpurpose.html"><code class="sgmltag-element">refpurpose</code></a> in span with class values. This
    makes it possible to style them using a CSS stylesheet.</p>
  </li><li>
    <p>Use <code class="literal">strong/em</code> instead of
    <code class="literal">b/i</code> in HTML output</p>
  </li><li>
    <p>Added support for converting <a href="http://docbook.org/tdg/en/html/emphasis.html"><code class="sgmltag-element">Emphasis</code></a> to
    groff italic and <a href="http://docbook.org/tdg/en/html/emphasis.html"><code class="sgmltag-element">Emphasis role='bold'</code></a> to
    bold. Controlled by
    <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/emphasis.propagates.style.html"><em class="parameter"><code>emphasis.propagates.style</code></em></a> param, but not
    documented yet using litprog system. Will do that next (planning
    to add some other parameter-controllable options for hyphenation
    and handling of line spacing).</p>
  </li><li>
    <p><em class="parameter"><code>callout.graphics.number.limit.xml</code></em>
    param: Changed the default from <code class="literal">10</code> to
    <code class="literal">15</code>.</p>
  </li><li>
    <p><em class="parameter"><code>verbatim.properties</code></em>: Added
    <code class="literal">hyphenate=false</code></p>
  </li><li>
    <p>Saxon and Xalan Text.java extensions: Added support for
    <code class="methodname">URIResolver()</code> on insertfile href's</p>
  </li><li>
    <p>Added generated <code class="filename">RELEASE-NOTES.txt</code>
    file.</p>
  </li><li>
    <p>Added <code class="filename">INSTALL</code> file (executable file for
    generating catalog.xml)</p>
  </li><li>
    <p>Removed obsolete <code class="filename">tools</code> directory from
    package</p>
  </li></ul></div>
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1661"></a>Release 1.66.1</h2></div></div></div>

  <div class="itemizedlist"><ul type="disc"><li>
<p>A number of important bug fixes.
</p>
</li><li>
<p>
Now <code class="literal">xml:base</code> attributes that are generated by an
XInclude processor are resolved for image files.
</p>
</li><li>
<p>
Rewrote olink templates to support several new features.
</p>
<div class="itemizedlist"><ul type="circle"><li>
<p>
Extended full olink support to FO output.
</p>
</li><li>
<p>
Add support for <code class="literal">xrefstyle</code> attribute in olinks.
</p>
</li><li>
<p>
New parameters to support new olink features:
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/insert.olink.page.number.html"><em class="parameter"><code>insert.olink.page.number</code></em></a>, <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/insert.olink.pdf.frag.html"><em class="parameter"><code>insert.olink.pdf.frag</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/olink.debug.html"><em class="parameter"><code>olink.debug</code></em></a>, <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/olink.lang.fallback.sequence.html"><em class="parameter"><code>olink.lang.fallback.sequence</code></em></a>, <em class="parameter"><code>olink.properties</code></em>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/prefer.internal.olink.html"><em class="parameter"><code>prefer.internal.olink</code></em></a>.
See the reference page for each parameter for more
information.</p>
</li></ul></div>
</li><li>
<p>
Added  <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.on.type.html"><em class="parameter"><code>index.on.type</code></em></a> parameter for new <code class="sgmltag-attribute">type</code>
attribute introduced in DocBook 4.3 for indexterms and index.
This allows you to create multiple indices containing
different categories of entries.
For users of 4.2 and earlier, you can use the new parameter <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/index.on.role.html"><em class="parameter"><code>index.on.role</code></em></a>
instead.
</p>
</li><li>
<p>
Added new
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/section.autolabel.max.depth.html"><em class="parameter"><code>section.autolabel.max.depth</code></em></a> parameter to turn off section numbering
below a certain depth.
This permits you to number major section levels and leave minor
section levels unnumbered.</p>
</li><li>
<p>
Added <em class="parameter"><code>footnote.sep.leader.properties</code></em> attribute set to format
the line separating footnotes in printed output.
</p>
</li><li>
<p>
Added parameter <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/img.src.path.html"><em class="parameter"><code>img.src.path</code></em></a> as a prefix to HTML img src
attributes.
The prefix is added to whatever path is already generated by the
stylesheet for each image file.</p>
</li><li>
<p>
Added new attribute-sets
<em class="parameter"><code>informalequation.properties</code></em>,
<em class="parameter"><code>informalexample.properties</code></em>,
<em class="parameter"><code>informalfigure.properties</code></em>, and <em class="parameter"><code>informaltable.properties</code></em>,
so each such element type can be formatted
individually if needed.
</p>
</li><li>
<p>
Add <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/component.label.includes.part.label.html"><em class="parameter"><code>component.label.includes.part.label</code></em></a>
parameter to add any  part number to chapter, appendix
and other component labels when
the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/label.from.part.html"><em class="parameter"><code>label.from.part</code></em></a> parameter  is nonzero.
This permits you to distinguish multiple chapters with the same
chapter number in cross references and the TOC.</p>
</li><li>
<p>
Added <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.separate.lots.html"><em class="parameter"><code>chunk.separate.lots</code></em></a> parameter for HTML output.
This parameter lets you generate separate chunk files for each LOT
(list of tables, list of figures, etc.).</p>
</li><li>
<p>Added several table features:</p>
<div class="itemizedlist"><ul type="circle"><li>
<p>
Added <em class="parameter"><code>table.table.properties</code></em> attribute set to add
properties to the fo:table element.
</p>
</li><li>
<p>
Added placeholder templates named <code class="literal">table.cell.properties</code>
and <code class="literal">table.cell.block.properties</code> to enable adding properties
to any <code class="sgmltag-element">fo:table-cell</code> or the cell's <code class="sgmltag-element">fo:block</code>, respectively.
 These templates are a start for implementing table styles.</p>
</li></ul></div>
</li><li>
<p>
Added new attribute
set <em class="parameter"><code>component.title.properties</code></em> for easy modifications of
component's title formatting in FO output.
</p>
</li><li>
<p>
Added Saxon support for an <code class="sgmltag-attribute">encoding</code> attribute on the <a href="http://docbook.org/tdg/en/html/textdata.html"><code class="sgmltag-element">textdata</code></a> element. Added new parameter
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/textdata.default.encoding.html"><em class="parameter"><code>textdata.default.encoding</code></em></a> which specifies encoding when
<code class="sgmltag-attribute">encoding</code> attribute on
<a href="http://docbook.org/tdg/en/html/textdata.html"><code class="sgmltag-element">textdata</code></a> is missing.
</p>
</li><li>
<p>
Template <code class="literal">label.this.section</code> now controls whole
section label, not only sub-label which corresponds to
particular label. Former behaviour was IMHO bug as it was
not usable.
</p>
</li><li>
<p>
Formatting in titleabbrev for TOC and headers
is preserved when there are no hotlink elements in the title. Formerly the title showed only the text of the title, no font changes or other markup.
</p>
</li><li>
<p>
Added <code class="literal">intial.page.number</code> template to set the <code class="literal">initial-page-number
property</code> for page sequences in print output.
Customizing this template lets you change when page numbering restarts. This is similar to the <code class="literal">format.page.number</code> template that lets you change how the page number formatting changes in the output.
</p>
</li><li>
<p>
Added <code class="literal">force.page.count</code> template to set the force-page-count
property for page sequences in print output.
This is similar to the <code class="literal">format.page.number</code> template.
</p>
</li><li>
<p>
Sort language for localized index sorting in <code class="filename">autoidx-ng.xsl</code> is now taken from document 
lang, not from system environment.
</p>
</li><li>
<p>
Numbering and formatting of normal
and ulink footnotes (if turned on) has been unified.
Now ulink footnotes are mixed in with any other footnotes.</p>
</li><li>
<p>
Added support for <code class="sgmltag-element">renderas</code> attribute in section and
sect1 et al.
This permits you to render a given section title as if it were a different level.</p>
</li><li>
<p>
Added support for <a href="http://docbook.org/tdg/en/html/label.html"><code class="sgmltag-element">label</code></a> attribute in footnote to manually
supply the footnote mark.
</p>
</li><li>
<p>
Added support for DocBook 4.3 <code class="sgmltag-element">corpcredit</code> element.
</p>
</li><li>
<p>
Added support for a <code class="literal">dbfo keep-together</code> PI for
formal objects (table, figure, example, equation, programlisting).  That permits a formal object to be kept together if it is not already, or to be broken if it
is very long and the
default keep-together is not appropriate.
</p>
</li><li>
<p>
For graphics files, made file extension matching case
insensitive, and updated the list of graphics extensions.
</p>
</li><li>
<p>
Allow <a href="http://docbook.org/tdg/en/html/calloutlist.html"><code class="sgmltag-element">calloutlist</code></a> to have block content before
the first callout
</p>
</li><li>
<p>
Added <code class="literal">dbfo-need</code> processing instruction to provide
soft page breaks.
</p>
</li><li>
<p>
Added implementation of existing but unused
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/default.image.width.html"><em class="parameter"><code>default.image.width</code></em></a> parameter for graphics.
</p>
</li><li>
<p>
Support DocBook NG <a href="http://docbook.org/tdg/en/html/tag.html"><code class="sgmltag-element">tag</code></a> inline element.
</p>
</li><li>
<p>
It appears that XEP now supports Unicode characters in
bookmarks. There is no further need to strip accents from
characters.
</p>
</li><li>
<p>
Make <a href="http://docbook.org/tdg/en/html/segmentedlist.html"><code class="sgmltag-element">segmentedlist</code></a> HTML markup
more semantic and available to CSS styles.
</p>
</li><li>
<p>
Added <code class="literal">user.preroot</code> placeholder template to
permit xsl-stylesheet and other PIs and comments to be
output before the HTML root element.
</p>
</li><li>
<p>
Non-chunked legalnotice now gets an &lt;a
name="id"&gt; element in HTML output
so it can be referenced with xref or link.
</p>
</li><li>
<p>
In chunked HTML output, changed <code class="literal">link rel="home"</code> to <code class="literal">rel="start"</code>,
and <code class="literal">link rel="previous"</code> to <code class="literal">rel="prev"</code>, per W3C HTML 4.01
spec.
</p>
</li><li>
<p>
Added several patches to htmlhelp from W. Borgert
</p>
</li><li>
<p>
Added Bosnian locale file as common/bs.xml.
</p>
</li></ul></div>
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1650"></a>Release 1.65.0</h2></div></div></div>
 
<div class="itemizedlist"><ul type="disc"><li>
<p>A number of important bug fixes.
</p>
</li><li>
<p>Added a workaround to allow these stylesheets to process DocBook NG
documents. (It&#8217;s a hack that pre-processes the document to strip off the
namespace and then uses <code class="function">exsl:node-set</code> to process
the result.)
</p>
</li><li>
<p>Added alternative indexing mechanism which has better
internationalization support. New indexing method allows grouping of
accented letters like e, &eacute;, &euml; into the same group under letter "e". It
can also treat special letters (e.g. "ch") as one character and place
them in the correct position (e.g. between "h" and "i" in Czech
language).</p> 
<p>In order to use this mechanism you must create customization
layer which imports some base stylesheet (like
<code class="filename">fo/docbook.xsl</code>,
<code class="filename">html/chunk.xsl</code>) and then includes appropriate
stylesheet with new indexing code
(<code class="filename">fo/autoidx-ng.xsl</code> or
<code class="filename">html/autoidx-ng.xsl</code>). For example:</p> 
<pre class="programlisting">&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0"&gt;

&lt;xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/&gt;
&lt;xsl:include href="http://docbook.sourceforge.net/release/xsl/current/fo/autoidx-ng.xsl"/&gt;

&lt;/xsl:stylesheet&gt;</pre>
<p>New method is known to work with Saxon and it should also work
with xsltproc 1.1.1 and later. Currently supported languages are
English, Czech, German, French, Spanish and Danish.</p> 
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1641"></a>Release 1.64.1</h2></div></div></div>
 
<div class="itemizedlist"><p>General bug fixes and improvements. Sorry about the failure to produce
an updated release notes file for 1.62.0&#8212;1.63.2</p><ul type="disc"><li>
<p>In the course of fixing bug #849787, wrapping Unicode callouts
with an appropriate font change in the Xalan extensions, I discovered
that the Xalan APIs have changed a bit. So <code class="filename">xalan2.jar</code>
will work with older Xalan 2 implementations, <code class="filename">xalan25.jar</code>
works with Xalan 2.5.</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1610"></a>Release 1.61.0</h2></div></div></div>
 
<div class="itemizedlist"><p>Lots of bug fixes and improvements.</p><ul type="disc"><li>
<p>Initial support for timestamp PI. From now you
  can use &lt;?dbtimestamp format="Y-m-d H:M:S"?&gt; to get current
  datetime in your document. Added localization support for datetime PI
</p>
</li><li>
<p>Added level 6 to test for <a href="http://docbook.org/tdg/en/html/section.html"><code class="sgmltag-element">section</code></a> depth in
section.level template so that
section.title.level6.properties will be used for sections
that are 6 deep or deeper. This should also cause a h6 to be
created in html output.
</p>
</li><li>
<p>Don't use SVG graphics if <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/use.svg.html"><em class="parameter"><code>use.svg</code></em></a>=0
</p>
</li><li>
<p>Now uses number-and-title-template for sections
  only if <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/section.autolabel.html"><em class="parameter"><code>section.autolabel</code></em></a> is not zero.
</p>
</li><li>
<p>Added missing 'english-language-name' attribute to
the l10n element, and the missing 'style' attribute to the
template element so the current gentext documents will
validate.
</p>
</li><li>
<p>Corrected several references to parameter
  <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/qanda.defaultlabel.html"><em class="parameter"><code>qanda.defaultlabel</code></em></a> that were missing the "$".
</p>
</li><li>
<p>Now accepts <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/admon.textlabel.html"><em class="parameter"><code>admon.textlabel</code></em></a> parameter to turn off
  Note, Warning, etc. label.
</p>
</li><li>
<p>FeatReq #684561: support more XEP metadata
</p>
</li><li>
<p>Added hyphenation support. Added support for <a href="http://docbook.org/tdg/en/html/coref.html"><code class="sgmltag-element">coref</code></a>.
Added <code class="sgmltag-element">beginpage</code> support. (does nothing; see TDG).
</p>
</li><li>
<p>Added support for
hyphenation-character, hyphenation-push-character-count, and
hyphenation-remain-character-count
</p>
</li><li>
<p>Added <em class="parameter"><code>root.properties</code></em>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/ebnf.assignment.html"><em class="parameter"><code>ebnf.assignment</code></em></a>,
and <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/ebnf.statement.terminator.html"><em class="parameter"><code>ebnf.statement.terminator</code></em></a>
</p>
</li><li>
<p>Support bgcolor PI in table cells; make sure
rowsep and colsep don't have any effect on the last row or
column
</p>
</li><li>
<p>Handle <a href="http://docbook.org/tdg/en/html/othercredit.html"><code class="sgmltag-element">othercredit</code></a> on titlepage a little
better
</p>
</li><li>
<p>Applied fix from Jeff Beal that fixed the bug
that put secondary page numbers on primary entries. Same
with tertiary page numbers on secondary entries.
</p>
</li><li>
<p>Added definition of missing variable
<em class="parameter"><code>collection</code></em>.
</p>
</li><li>
<p>Make <a href="http://docbook.org/tdg/en/html/footnote.html"><code class="sgmltag-element">footnote</code></a> formatting 'normal' even when it
occurs in a context that has special formatting
</p>
</li><li>
<p>Added warning when <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/glossary.collection.html"><em class="parameter"><code>glossary.collection</code></em></a> is not
blank, but it cannot open the specified file.
</p>
</li><li>
<p>Pick up the frame attribute on <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a> and
<a href="http://docbook.org/tdg/en/html/informaltable.html"><code class="sgmltag-element">informaltable</code></a>.
</p>
</li><li>
<p><a href="http://docbook.org/tdg/en/html/indexdiv.html"><code class="sgmltag-element">indexdiv</code></a>/<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>
in non-autogenerated indexes are
now picked up.
</p>
</li><li>
<p>Removed (unused)
component.title.properties
</p>
</li><li>
<p>Move IDs from
page-sequences down to titlepage blocks
</p>
</li><li>
<p>Use
proportional-column-width(1) on more <a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>s.
</p>
<p>Use proportional-column-width() for
header/footer tables; suppress relative-align when when
using FOP
</p>
</li><li>
<p>Check for <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/glossterm.auto.link.html"><em class="parameter"><code>glossterm.auto.link</code></em></a> when linking
firstterms; don't output gl. prefix on glossterm links
</p>
</li><li>
<p>Generate Part ToCs
</p>
</li><li>
<p>Support <a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element">glossary</code></a>, <a href="http://docbook.org/tdg/en/html/bibliography.html"><code class="sgmltag-element">bibliography</code></a>,
and <a href="http://docbook.org/tdg/en/html/index.html"><code class="sgmltag-element">index</code></a> in component ToCs.
</p>
</li><li>
<p>Refactored chunking code so that
customization of chunk algorithm and chunk elements is more
practical
</p>
</li><li>
<p>Support <a href="http://docbook.org/tdg/en/html/textobject.html"><code class="sgmltag-element">textobject</code></a>/<a href="http://docbook.org/tdg/en/html/phrase.html"><code class="sgmltag-element">phrase</code></a>
on <a href="http://docbook.org/tdg/en/html/inlinemediaobject.html"><code class="sgmltag-element">inlinemediaobject</code></a>.
</p>
</li><li>
<p>Support 'start' PI on ordered lists
</p>
</li><li>
<p>Fixed test of $toc PI to turn on qandaset TOC.
</p>
</li><li>
<p>Added process.chunk.footnotes to sect2 through
5 to fix bug of missing footnotes when chunk level greater
than 1.
</p>
</li><li>
<p>Added
paramater <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/toc.max.depth.html"><em class="parameter"><code>toc.max.depth</code></em></a> which controls maximal depth of ToC
as requested by PHP-DOC group.
</p>
</li><li>
<p>Exempted <a href="http://docbook.org/tdg/en/html/titleabbrev.html"><code class="sgmltag-element">titleabbrev</code></a> from preamble processing in
lists, and fixed variablelist preamble code to use the same
syntax as the other lists.
</p>
</li><li>
<p>Added support for elements between variablelist
and first varlistentry since DocBook 4.2 supports that now.
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1601"></a>Release 1.60.1</h2></div></div></div>
 
<div class="itemizedlist"><p>Lots of bug fixes.</p><ul type="disc"><li>
<p>The format of the <code class="filename">titlepage.templates.xml</code> files and
the stylesheet that transforms them have been significantly changed. All of the
attributes used to control the templates are now namespace qualified. So what
used to be:</p> 
<pre class="programlisting">&lt;t:titlepage element="article" wrapper="fo:block"&gt;</pre>
<p>is now:</p> 
<pre class="programlisting">&lt;t:titlepage t:element="article" t:wrapper="fo:block"&gt;</pre>
<p>Attributes from other namespaces (including those that are unqualified) are
now copied directly through. In practice, this means that the names that used
to be &#8220;<span class="quote">fo:</span>&#8221; qualified:</p> 
<pre class="programlisting">&lt;title named-template="component.title"
       param:node="ancestor-or-self::article[1]"
       fo:text-align="center"
       fo:keep-with-next="always"
       fo:font-size="&amp;hsize5;"
       fo:font-weight="bold"
       fo:font-family="{$title.font.family}"/&gt;</pre>
<p>are now unqualified:</p> 
<pre class="programlisting">&lt;title t:named-template="component.title"
       param:node="ancestor-or-self::article[1]"
       text-align="center"
       keep-with-next="always"
       font-size="&amp;hsize5;"
       font-weight="bold"
       font-family="{$title.font.family}"/&gt;</pre>
<p>The <code class="sgmltag-element">t:titlepage</code> and <code class="sgmltag-element">t:titlepage-content</code>
elements both generate wrappers now. And unqualified attributes on those elements
are passed through. This means that you can now make the title font apply to
ane entire titlepage and make the entire &#8220;<span class="quote">recto</span>&#8221;
titlepage centered by specifying the font and alignment on the those elements:</p> 
<pre class="programlisting">&lt;t:titlepage t:element="article" t:wrapper="fo:block"
             font-family="{$title.font.family}"&gt;

  &lt;t:titlepage-content t:side="recto"
             text-align="center"&gt;</pre>





</li><li>
<p>Support use of <a href="http://docbook.org/tdg/en/html/titleabbrev.html"><code class="sgmltag-element">titleabbrev</code></a> in running
headers and footers.
</p>
</li><li>
<p>Added (experimental) <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/xref.with.number.and.title.html"><em class="parameter"><code>xref.with.number.and.title</code></em></a>
parameter to enable number/title cross references even when the
default would
be just the number.
</p>
</li><li>
<p>Generate <a href="http://docbook.org/tdg/en/html/part.html"><code class="sgmltag-element">part</code></a> ToCs if they're requested.
</p>
</li><li>
<p>Use proportional-column-width() in header/footer tables.
</p>
</li><li>
<p>Handle alignment correctly when <a href="http://docbook.org/tdg/en/html/screenshot.html"><code class="sgmltag-element">screenshot</code></a>
wraps a graphic in a <a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a>.
</p>
</li><li>
<p>Format <a href="http://docbook.org/tdg/en/html/chapter.html"><code class="sgmltag-element">chapter</code></a> and <a href="http://docbook.org/tdg/en/html/appendix.html"><code class="sgmltag-element">appendix</code></a>
cross references consistently.
</p>
</li><li>
<p>Attempt to support tables with multiple <a href="http://docbook.org/tdg/en/html/tgroup.html"><code class="sgmltag-element">tgroup</code></a>s
in FO.
</p>
</li><li>
<p>Output <code class="sgmltag-element">fo:table-columns</code> in
<a href="http://docbook.org/tdg/en/html/simplelist.html"><code class="sgmltag-element">simplelist</code></a> tables.
</p>
</li><li>
<p>Use <code class="filename">titlepage.templates.xml</code> for
<a href="http://docbook.org/tdg/en/html/indexdiv.html"><code class="sgmltag-element">indexdiv</code></a> and <a href="http://docbook.org/tdg/en/html/glossdiv.html"><code class="sgmltag-element">glossdiv</code></a> formatting.
</p>
</li><li>
<p>Improve support for new bibliography elements.
</p>
</li><li>
<p>Added
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/footnote.number.format.html"><em class="parameter"><code>footnote.number.format</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.footnote.number.format.html"><em class="parameter"><code>table.footnote.number.format</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/footnote.number.symbols.html"><em class="parameter"><code>footnote.number.symbols</code></em></a>, and
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.footnote.number.symbols.html"><em class="parameter"><code>table.footnote.number.symbols</code></em></a> for better control of
footnote markers.
</p>
</li><li>
<p>Added <code class="sgmltag-element">glossentry.show.acronyms</code>.
</p>
</li><li>
<p>Suppress the draft-mode page masters when
<em class="parameter"><code>draft-mode</code></em> is &#8220;<span class="quote">no</span>&#8221;.
</p>
</li><li>
<p>Make blank pages verso not recto. D'Oh!
</p>
</li><li>
<p>Improved formatting of <code class="sgmltag-element">ulink</code> footnotes.
</p>
</li><li>
<p>Fixed bugs in graphic width/height calculations.
</p>
</li><li>
<p>Added class attributes to inline elements.
</p>
</li><li>
<p>Don't add &#8220;<span class="quote">.html</span>&#8221; to the filenames identified
with the &#8220;<span class="quote">dbhtml</span>&#8221; PI.
</p>
</li><li>
<p>Don't force a ToC when sections contain <a href="http://docbook.org/tdg/en/html/refentry.html"><code class="sgmltag-element">refentry</code></a>s.
</p>
</li><li>
<p>Make section title sizes a function of the
<em class="parameter"><code>body.master.size</code></em>.
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1592"></a>Release 1.59.2</h2></div></div></div>
 
<div class="itemizedlist"><p>The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail.
</p><ul type="disc"><li>
<p>Removed the region-name from the region-body of blank pages. There's
no reason to give the body of blank pages a unique name and doing so causes
a mismatch that FOP detects.
</p>
</li><li>
<p>Output IDs for the first paragraphs in listitems.
</p>
</li><li>
<p>Fixed some small bugs in the handling of page numbers in double-sided mode.
</p>
</li><li>
<p>Attempt to prevent duplicated IDs from being produced when
<code class="sgmltag-attribute">endterm</code> on <a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a> points
to something with nested structure.
</p>
</li><li>
<p>Fix aligment problems in <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a>s.
</p>
</li><li>
<p>Output the type attribute on unordered lists (UL) in HTML only if
the css.decoration parameter is true.
</p>
</li><li>
<p>Calculate the font size in formal.title.properties so that it's 1.2 times
the base font size, not a fixed "12pt".
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1591"></a>Release 1.59.1</h2></div></div></div>
 
<div class="itemizedlist"><p>The 1.59.1 fixes a few bugs.
</p><ul type="disc"><li>
<p>Added Bulgarian localization.
</p>
</li><li>
<p>Indexing improvements; localize book indexes to books but allow setindex
to index an entire set.
</p>
</li><li>
<p>The default value for rowsep and colsep is now "1" as per CALS.
</p>
</li><li>
<p>Added support for <a href="http://docbook.org/tdg/en/html/titleabbrev.html"><code class="sgmltag-element">titleabbrev</code></a> (use them for cross
references).
</p>
</li><li>
<p>Improvements to <a href="http://docbook.org/tdg/en/html/mediaobject.html"><code class="sgmltag-element">mediaobject</code></a> for selecting print vs. online
images.
</p>
</li><li>
<p>Added seperate property sets for <a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a>s,
<a href="http://docbook.org/tdg/en/html/example.html"><code class="sgmltag-element">example</code></a>s, <a href="http://docbook.org/tdg/en/html/equation.html"><code class="sgmltag-element">equation</code></a>s, <code class="sgmltag-element">tables</code>s,
and <a href="http://docbook.org/tdg/en/html/procedure.html"><code class="sgmltag-element">procedure</code></a>s.
</p>
</li><li>
<p>Make <a href="http://docbook.org/tdg/en/html/lineannotation.html"><code class="sgmltag-element">lineannotation</code></a>s italic.
</p>
</li><li>
<p>Support <code class="sgmltag-attribute">xrefstyle</code> attribute.
</p>
</li><li>
<p>Make <code class="sgmltag-attribute">endterm</code> on
<a href="http://docbook.org/tdg/en/html/xref.html"><code class="sgmltag-element">xref</code></a> higher priority than
<code class="sgmltag-attribute">xreflabel</code> target.
</p>
</li><li>
<p>Glossary formatting improvements.
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1580"></a>Release 1.58.0</h2></div></div></div>
 
<div class="itemizedlist"><p>The 1.58.0 adds some initial support for extensions in xsltproc, adds
a few features, and fixes bugs.
</p><ul type="disc"><li>
<p>This release contains the first attempt at extension support for xsltproc.
The only extension available to date is the one that adjusts table column widths.
Run <code class="filename">extensions/xsltproc/python/xslt.py</code>.
</p>
</li><li>
<p>Fixed bugs in calculation of adjusted column widths to correct for rounding
errors.
</p>
</li><li>
<p>Support nested <a href="http://docbook.org/tdg/en/html/refsection.html"><code class="sgmltag-element">refsection</code></a> elements correctly.
</p>
</li><li>
<p>Reworked <code class="literal">gentext.template</code> to take context into consideration.
The name of elements in localization files is now an xpath-like context list, not
just a simple name.
</p>
</li><li>
<p>Made some improvements to bibliography formatting.
</p>
</li><li>
<p>Improved graphical formatting of admonitions.
</p>
</li><li>
<p>Added support for <a href="http://docbook.org/tdg/en/html/entrytbl.html"><code class="sgmltag-element">entrytbl</code></a>.
</p>
</li><li>
<p>Support spanning index terms.
</p>
</li><li>
<p>Support <a href="http://docbook.org/tdg/en/html/bibliosource.html"><code class="sgmltag-element">bibliosource</code></a>.
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1570"></a>Release 1.57.0</h2></div></div></div>

<div class="itemizedlist"><ul type="disc"><li>
<p>The 1.57.0 release wasn't documented here. Oops.
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1560"></a>Release 1.56.0</h2></div></div></div>
 
<div class="itemizedlist"><p>The 1.56.0 release fixes bugs.
</p><ul type="disc"><li>
<p>Reworked chunking. <span class="emphasis"><em>This will break all existing customizations
layers that change the chunking algorithm.</em></span> If you're customizing chunking,
look at the new &#8220;<span class="quote">content</span>&#8221; parameter that's passed to
<code class="literal">process-chunk-element</code> and friends.
</p>
</li><li>
<p>Support continued and inherited numeration in <a href="http://docbook.org/tdg/en/html/orderedlist.html"><code class="sgmltag-element">orderedlist</code></a>
formatting for FOs.
</p>
</li><li>
<p>Added Thai localization.
</p>
</li><li>
<p>Tweaked stylesheet documentation stylesheets to link to TDG and
the parameter references.
</p>
</li><li>
<p>Allow title on tables of contents ("Table of Contents") to be optional.
Added new keyword to <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/generate.toc.html"><em class="parameter"><code>generate.toc</code></em></a>.
Support tables of contents on sections.
</p>
</li><li>
<p>Made separate parameters for table borders and table cell borders:
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.frame.border.color.html"><em class="parameter"><code>table.frame.border.color</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.frame.border.style.html"><em class="parameter"><code>table.frame.border.style</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.frame.border.thickness.html"><em class="parameter"><code>table.frame.border.thickness</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.cell.border.color.html"><em class="parameter"><code>table.cell.border.color</code></em></a>,
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.cell.border.style.html"><em class="parameter"><code>table.cell.border.style</code></em></a>, and
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/table.cell.border.thickness.html"><em class="parameter"><code>table.cell.border.thickness</code></em></a>.
</p>
</li><li>
<p>Suppress formatting of &#8220;<span class="quote">endofrange</span>&#8221; <a href="http://docbook.org/tdg/en/html/indexterm.html"><code class="sgmltag-element">indexterm</code></a>s.
This is only half-right. They should generate a range, but I haven't figured out how
to do that yet.
</p>
</li><li>
<p>Support <a href="http://docbook.org/tdg/en/html/revdescription.html"><code class="sgmltag-element">revdescription</code></a>. (Bug #582192)
</p>
</li><li>
<p>Added <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/default.float.class.html"><em class="parameter"><code>default.float.class</code></em></a> and fixed figure
floats. (Bug #497603)
</p>
</li><li>
<p>Fixed formatting of <a href="http://docbook.org/tdg/en/html/sbr.html"><code class="sgmltag-element">sbr</code></a> in FOs.
</p>
</li><li>
<p>Added context to the &#8220;<span class="quote">missing template</span>&#8221; error message.
</p>
</li><li>
<p>Process <a href="http://docbook.org/tdg/en/html/arg.html"><code class="sgmltag-element">arg</code></a> correctly in a <a href="http://docbook.org/tdg/en/html/group.html"><code class="sgmltag-element">group</code></a>.
(Bug #605150)
</p>
</li><li>
<p>Removed 'keep-with-next' from <em class="parameter"><code>formal.title.properties</code></em>
attribute set now that the stylesheets support the option of putting
such titles below the object. Now the $placement value determines if
'keep-with-next' or 'keep-with-previous' is used in the title block.
</p>
</li><li>
<p>Wrap &#8220;<span class="quote">url()</span>&#8221; around external-destinations when appropriate.
</p>
</li><li>
<p>Fixed typo in compact list spacing. (Bug #615464)
</p>
</li><li>
<p>Removed spurious hash in anchor name. (Bug #617717)
</p>
</li><li>
<p>Address is now displayed verbatim on title pages. (Bug #618600)
</p>
</li><li>
<p>The <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/bridgehead.in.toc.html"><em class="parameter"><code>bridgehead.in.toc</code></em></a> parameter is now properly
supported.
</p>
</li><li>
<p>Improved effectiveness of HTML cleanup by increasing the number
of places where it is used. Improve use of HTML cleanup in XHTML stylesheets.
</p>
</li><li>
<p>Support table of contents for <a href="http://docbook.org/tdg/en/html/appendix.html"><code class="sgmltag-element">appendix</code></a> in
<a href="http://docbook.org/tdg/en/html/article.html"><code class="sgmltag-element">article</code></a>. (Bug #596599)
</p>
</li><li>
<p>Don't duplicate footnotes in <a href="http://docbook.org/tdg/en/html/bibliography.html"><code class="sgmltag-element">bibliography</code></a>s and
<a href="http://docbook.org/tdg/en/html/glossary.html"><code class="sgmltag-element">glossary</code></a>s. (Bug #583282)
</p>
</li><li>
<p>Added <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/default.image.width.html"><em class="parameter"><code>default.image.width</code></em></a>. (Bug #516859)
</p>
</li><li>
<p>Totally reworked <a href="http://docbook.org/tdg/en/html/funcsynopsis.html"><code class="sgmltag-element">funcsynopsis</code></a> code; it now
supports a 'tabular' presentation style for 'wide' prototypes; see
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/funcsynopsis.tabular.threshold.html"><em class="parameter"><code>funcsynopsis.tabular.threshold</code></em></a>. (HTML only
right now, I think, FO support, uh, real soon now.)
</p>
</li><li>
<p>Reworked support for difference marking; toned down the colors a bit
and added a &#8220;<span class="quote">system.head.content</span>&#8221; template so that the diff CSS
wasn't overriding &#8220;<span class="quote">user.head.content</span>&#8221;. (Bug #610660)
</p>
</li><li>
<p>Added call to the &#8220;<span class="quote">*.head.content</span>&#8221; elements when writing
out long description chunks.
</p>
</li><li>
<p>Make sure <a href="http://docbook.org/tdg/en/html/legalnotice.html"><code class="sgmltag-element">legalnotice</code></a> link is correct even when
chunking to a different <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/base.dir.html"><em class="parameter"><code>base.dir</code></em></a>.
</p>
</li><li>
<p>Use CSS to set viewport characteristics if
<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/css.decoration.html"><em class="parameter"><code>css.decoration</code></em></a> is non-zero, use div instead of p for making
graphic a block element; make figure <a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>s the
default alt
text for images in a <a href="http://docbook.org/tdg/en/html/figure.html"><code class="sgmltag-element">figure</code></a>.</p>
</li><li>
<p>Added space-after to <em class="parameter"><code>list.block.spacing</code></em>.
</p>
</li><li>
<p>Reworked section.level template to give &#8220;<span class="quote">correct</span>&#8221; answer
instead of being off by one.
</p>
</li><li>
<p>When processing tables, use the <code class="sgmltag-attribute">tabstyle</code>
attribute as the division class.
</p>
</li><li>
<p>Fixed bug in <code class="filename">html2xhtml.xsl</code> that was causing the
XHTML chunker to output HTML instead of XHTML.
</p>
</li></ul></div> 
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="VOlder"></a>Older releases</h2></div></div></div>
  
  <p>To view the release notes for older releases, see <code class="uri"><a href="http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml">http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml</a></code>. Be
  aware that there were no release notes for releases prior to the
  1.50.0 release.</p>
</div>
<div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="dot0"></a>About dot-zero releases</h2></div></div></div>
  
    <p>DocBook Project &#8220;<span class="quote">dot zero</span>&#8221; releases should be
    considered <span class="emphasis"><em>experimental</em></span> and are always
    followed by stable &#8220;<span class="quote">dot one</span>&#8221; releases, usually within
    two or three weeks. Please help to ensure the stability of
    &#8220;<span class="quote">dot one</span>&#8221; releases by carefully testing each
    &#8220;<span class="quote">dot zero</span>&#8221; release and reporting back about any
    problems you find. </p>
    <p>It is not recommended that you use a &#8220;<span class="quote">dot zero</span>&#8221;
    release in a production system, or package it for an OS
    distro. Instead, you should wait for the &#8220;<span class="quote">dot one</span>&#8221;
    version.</p>
  </div>
</div></body></html>