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
|
Release Notes
DocBook Project XSL Stylesheets
$Revision: 1.2 $ $Date: 2007/01/30 18:21:19 $
2007-01-23
------------------------------------------------------------------------------
Table of Contents
Release: 1.72.0
Common
FO
HTML
Manpages
Params
Template
Roundtrip
Release: 1.71.1
Common
FO
HTML
Highlighting
Manpages
Params
Profiling
Release: 1.71.0
Common
Extensions
FO
HTML
Highlighting
Manpages
Params
Tools
Release: 1.70.1
FO
HTML
HTMLHelp
Params
Release: 1.70.0
Common
Extensions
FO
HTML
Manpages
Params
Profiling
Tools
WordML
Release 1.69.1
Release 1.69.0
Common
FO
Help
HTML
man
Release 1.68.1
Release 1.68.0
Release 1.67.2
Release 1.67.1
Release 1.67.0
Release 1.66.1
Release 1.65.0
Release 1.64.1
Release 1.61.0
Release 1.60.1
Release 1.59.2
Release 1.59.1
Release 1.58.0
Release 1.57.0
Release 1.56.0
Older releases
About dot-zero releases
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 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 NEWS (plain text) or NEWS.html files.
Release: 1.72.0
This release includes important bug fixes and adds the following significant
feature changes:
Automatic sorting of glossary entries
The HTML and FO stylesheets now support automatic sorting of glossary
entries. To enable glossary sorting, set the value of the glossary.sort
parameter to 1 (by default, its value is 0). When you enable glossary
sorting, glossentry elements within a glossary, glossdiv, or glosslist are
sorted on the glossterm, using the current language setting. If you dont
enable glossary sorting, then the order of glossentry elements is left as
is that is, they are not sorted but are instead just displayed in
document order.
WordML renamed to Roundtrip, OpenOffice support added
Stylesheets for roundtrip conversion between documents in OpenOffice
format (ODF) and DocBook XML have been added to the set of stylesheets
that formerly had the collective title WordML, and that set of stylesheets
has been renamed to Roundtrip to better reflect the actual scope and
purpose of its contents.
So the DocBook XSL Stylesheets now support roundtrip conversion (with
certain limitations) of WordML, OpenOffice, and Apple Pages documents to
and from DocBook XML.
Including QandASet questions in TOCs
The HTML stylesheet now provides support for including QandASet questions
in the document TOC. To enable display of questions in the document TOC,
set the value of the qanda.in.toc to 1 (by default, its 0). When you
enable qanda.in.toc, then the generated table of contents for a document
will include qandaset titles, qandadiv titles, and question elements. The
default value of zero excludes them from the TOC.
Note
The qanda.in.toc parameter does not affect any tables of contents that may
be generated within a qandaset or qandadiv (only in the document TOC).
Language identifier in man-page filenames and pathnames
Added new parameter man.output.lang.in.name.enabled, which controls
whether a language identifier is included in man-page filenames and
pathnames. It works like this:
If the value of man.output.lang.in.name.enabled is non-zero, man-page
files are output with a language identifier included in their filenames or
pathnames as follows:
* if man.output.subdirs.enabled is non-zero, each file is output to,
e.g., a /$lang/man8/foo.8 pathname
* if man.output.subdirs.enabled is zero, each file is output with a
foo.$lang.8 filename
index.page.number.properties property set
For FO output, use the index.page.number.properties to control formatting
of page numbers in index output to (for example) to display page numbers
in index output in a different color (to indicate that they are links).
Crop marks in output from Antenna House XSL Formatter
Support has been added for generating crop marks in print/PDF output
generated using Antenna House XSL Formatter
More string-substitution hooks in manpages output
The man.string.subst.map.local.pre and man.string.subst.map.local.post
parameters have been added to enable easier control over custom string
substitutions.
Moved verbatim properties to attribute-set
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.
enhanced simple.xlink template
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.
DocBook 5 compatibility
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.
HTML class attributes now handled in class.attribute mode
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.
arabic-indic numbering enabled in autolabels
Numbering of chapter, sections, and pages can now use arabic-indic
numbering when number format is set to 'arabicindic' or to .
The following is a detailed list of changes (not including bug fixes) that
have been made since the 1.71.1 release.
Common
The following changes have been made to the common code since the 1.71.1
release.
* Add support for arabicindic numbering to autolabel.format template.
* Finish support for @xml:id everywhere @id is used.
* replace name() with local-name() in most cases.
* Add support for info.
* Add utility template tabstyle to return the tabstyle from
any table element.
FO
The following changes have been made to the fo code since the 1.71.1 release.
* Add support for sorting glossary entries
* Add table.row.properties template to customize table rows.
* Moved all properties to attribute-sets so can be customized more easily.
* Add index.page.number.properties attribute-set to format page numbers.
* xref now supports xlink:href, using simple.xlink template.
* Rewrote simple.xlink, and call it with all charseq templates.
* Add simple.xlink processing to term and member elements.
* Add support for crop marks in Antenna House.
HTML
The following changes have been made to the html code since the 1.71.1
release.
* Add support for sorting glossary entries
* Add support for qanda.in.toc to add qandaentry questions to document TOC.
* add simple.xlink support to variablelist term and simplelist member.
* *.propagates.style now handled in class.attribute mode.
* add class parameter to class.attribute mode to set default class.
* Convert all class attributes to use the class.attribute mode
so class names can be customized more easily.
* Add class.attribute mode to generate class attributes.
* Added simple.xlink to most remaining inlines.
Changed class attributes to applying class.attributes mode.
* Changed xref template to use simple.xlink tempalte.
* Improve generate.html.title to work with link targets too.
* Improved simple.xlink to support link and xref.
* Use new link.title.attribute now.
* Rewrote simple.xlink to handle linkend also.
Better computation of title attribute on link too.
* Handle Xalan quirk as special case.
* Add support for info.
* Fixed imagemaps so they work properly going from calspair coords
to HTML area coords.
Manpages
The following changes have been made to the manpages code since the 1.71.1
release.
* Added doc for man.output.lang.in.name.enabled parameter. This
checkin completes support for writing file/pathnames for man-pages
with $lang include in the names. Closes #1585967. knightly
accolades to Daniel Leidert for providing the feature request.
* Added new param man.output.lang.in.name.enabled, which
controls whether $LANG value is included in manpages
filenames and pathnames. It works like this:
If the value of man.output.lang.in.name.enabled is non-zero,
man-page files are output with the $lang value included in
their filenames or pathnames as follows;
- if man.output.subdirs.enabled is non-zero, each file is
output to, e.g., a /$lang/man8/foo.8 pathname
- if man.output.subdirs.enabled is zero, each file is output
with a foo.$lang.8 filename
* Use "\e" instead of "\\" for backslash output, because the
groff docs say that's the correct thing to do; also because
testing (thanks, Paul Dubois) shows that "\\" doesn't always
work as expected; for example, "\\" within a table seems to
mess things up.
* Added the man.string.subst.map.local.pre and
man.string.subst.map.local.post parameters. Those parameters
enable local additions and changes to string-substitution mappings
without the need to change the value of man.string.subst.map
parameter (which is for standard system mappings). Closes
#1456738. Thanks to Sam Steingold for constructing a true
stylesheet torture test (the clisp docs) that exposed the need for
these params.
* Added the Markup element to the list of elements that get output
in bold. Thanks to Eric S. Raymond.
* Replaced all dots in roff requests with U+2302 ("house"
character), and added escaping in output for all instances of dot
that are not in roff requests. This fixes the problem case where a
string beginning with a dot (for example, the string ".bashrc")
might occur at the beginning of a line in output, in which case
would mistakenly get interpreted as a roff request. Thanks to Eric
S. Raymond for pushing to fix this.
* Made change to ensure that list content nested in
itemizedlist and orderedlist instances is properly indented. This
is a switch from using .TP to format those lists to using .RS/.RE
to format them instead (because .TP does not allow nesting). Closes bug #1602616.
Thanks to Daniel Leidert.
Params
The following changes have been made to the params code since the 1.71.1
release.
* Added doc for man.output.lang.in.name.enabled parameter. This
checkin completes support for writing file/pathnames for man-pages
with $lang include in the names. Closes #1585967. knightly
accolades to Daniel Leidert for providing the feature request.
* Added new param man.output.lang.in.name.enabled, which
controls whether $LANG value is included in manpages
filenames and pathnames. It works like this:
If the value of man.output.lang.in.name.enabled is non-zero,
man-page files are output with the $lang value included in
their filenames or pathnames as follows;
- if man.output.subdirs.enabled is non-zero, each file is
output to, e.g., a /$lang/man8/foo.8 pathname
- if man.output.subdirs.enabled is zero, each file is output
with a foo.$lang.8 filename
* Added the man.string.subst.map.local.pre and
man.string.subst.map.local.post parameters. Those parameters
enable local additions and changes to string-substitution mappings
without the need to change the value of man.string.subst.map
parameter (which is for standard system mappings). Closes
#1456738. Thanks to Sam Steingold for constructing a true
stylesheet torture test (the clisp docs) that exposed the need for
these params.
* Add index.page.number.properties by default.
* Added index.page.number.properties
to allow customizations of page numbers in indexes.
* Move show-destination="replace" property from template to attribute-set
so it can be customized.
* Add support for sorting glossary entries
* Add option to include qanda in tables of contents.
* Moved all properties to attribute-sets so can be customized more easily.
Template
The following changes have been made to the template code since the 1.71.1
release.
* Added workaround for Xalan bug: use for-each and copy instead of copy-of (#1604770).
Roundtrip
The following changes have been made to the roundtrip code since the 1.71.1
release.
* rename to roundtrip, add OpenOffice support
Release: 1.71.1
This is a minor update to the 1.71.0 release. Along with a number of bug
fixes, it includes two feature changes:
* Added support for profiling based on xml:lang and status attributes.
* Added initial support in manpages output for footnote, annotation, and alt
instances. Basically, they all now get handled the same way ulink
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.
Common
The following changes have been made to the common code since the 1.71.1
release.
* For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.
* Add support for Xalan generating a root xml:base like saxon.
FO
The following changes have been made to the fo code since the 1.71.1 release.
* For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.
* Add support for Xalan to add root node xml:base for db5 docs.
* Added support for profiling based on xml:lang and status attributes.
HTML
The following changes have been made to the html code since the 1.71.1
release.
* For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.
* Add support for Xalan to add root node xml:base for db5 docs.
* Added support for profiling based on xml:lang and status attributes.
* Made changes in namespace declarations to prevent xmllint's
canonicalizer from treating them as relative namespace URIs.
- Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService";
Saxon accepts either form
(see http://www.saxonica.com/documentation/extensibility/functions.html);
to Saxon, "the part of the URI before the final '/' is immaterial".
- Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to
xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts
either form
(see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare);
just as Saxon does, it will "simply use the string to the
right of the rightmost forward slash as the Java class name".
- Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect"
to xmlns:redirect="http://xml.apache.org/xalan/redirect", and
adjusted associated code to make the current Xalan redirect spec.
(see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)
* Added the html.append and chunk.append parameters. By default, the
value of both is empty; but the internal DocBook XSL stylesheets
build sets their value to "<xsl:text>
</xsl:text>", in order
to ensure that all files in the docbook-xsl-doc package end in a
newline character. (Because diff and some other tools may emit
error messages and/or not behave as expected when processing
files that are not newline-terminated.)
Highlighting
The following changes have been made to the highlighting code since the 1.71.1
release.
* Added license information
Manpages
The following changes have been made to the manpages code since the 1.71.1
release.
* Added initial support in manpages output for footnote, annotation,
and alt instances. Basically, they all now get handled the same
way ulink 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 (currently titled
REFERENCES, for English output, but will be changed to NOTES).
This support is not yet complete. It works for most "normal"
cases, but probably mishandles a good number of cases. More
testing will be needed to expose the problems. It may well also
introduce some bugs and regressions in other areas, including
basic paragraph handling, handling of "mixed block" content,
handling of other indented content, and handling of authorblurb
and personblurb in the AUTHORS section.
Params
The following changes have been made to the params code since the 1.71.1
release.
* Added support for profiling based on xml:lang and status attributes.
* Added the html.append and chunk.append parameters. By default, the
value of both is empty; but the internal DocBook XSL stylesheets
build sets their value to "<xsl:text>
</xsl:text>", in order
to ensure that all files in the docbook-xsl-doc package end in a
newline character. (Because diff and some other tools may emit
error messages and/or not behave as expected when processing
files that are not newline-terminated.)
Profiling
The following changes have been made to the profiling code since the 1.71.1
release.
* Added support for profiling based on xml:lang and status attributes.
Release: 1.71.0
This is mainly a bug fix release, but it also includes two significant feature
changes:
Highlighting support added
The stylesheets now include support for source-code highlighting in output
of programlisting instances (controlled through the highlight.source
parameter). The Java-based implementation requires Saxon and makes use of
Michal Molhanecs XSLTHL. More details are available at Jirka Koseks
website:
http://xmlguru.cz/2006/07/docbook-syntax-highlighting
The support is currently limited to highlighting of XML, Java, PHP,
Delphi, Modula-2 sources, and INI files.
Changes to autoindexing
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:
* html/autoidx-kosek.xsl
* html/autoidx-kimber.xsl
* fo/autoidx-kosek.xsl
* fo/autoidx-kimber.xsl
See the index.method parameter reference page for more information.
Two other changes to note:
* 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.
* The default value for the index.method parameter was changed from
'english' to 'basic' because now the default method can handle
latin-based alphabets, not just English.
The following is a list of changes that have been made since the 1.70.1
release.
Common
The following changes have been made to the common code since the 1.70.1
release.
* Added reference.autolabel parameter for controlling labels on
reference output.
* Support rows that are *completely* overlapped by the preceding row
* New modules for supporting indexing extensions.
* Support startinglinenumber on orderedlist
Extensions
The following changes have been made to the extensions code since the 1.70.1
release.
* Completely reworked extensions build system; now uses NetBeans and ant
FO
The following changes have been made to the fo code since the 1.70.1 release.
* xsl:sort lang attribute now uses two-char substring of lang attribute.
* Support titlecase "Java", "Perl", and "IDL" as values for the
language attribute on classsynopsis, etc. (instead of just
lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
(instead of just "cpp").
Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
to "Brian A. Vanderburg II".
* Added support for the reference.autolabel param in (X)HTML and FO
output.
* Support rows that are *completely* overlapped by the preceding row
* Rearranged templates for the 3 indexing methods
and changed method named 'english' to 'basic'.
* New modules for supporting indexing extensions.
* Turn off blank-body for fop1.extensions too since fop 0.92
does not support it either.
* Add Xalan variant to test for exslt:node-set function.
Xalan can use function named node-set(), but doesn't
recognize it using function-available().
* Added support to FO stylesheets for handling instances of Org
where it occurs outside of *info content. In HTML stylesheets,
moved handling of Org out of info.xsl and into inline.xsl. In both
FO and HTML stylesheets, added support for correctly processing
Affiliation and Jobtitle.
* Don't output punctuation between Refname and Refpurpose if
Refpurpose is empty. Also corrected handling of Refsect2/title
instances, and removed some debugging stuff that was generated in
manpages output to mark the ends of sections.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Initial support of syntax highlighting of programlistings.
* Chapter after preface should restart numbering of pages.
HTML
The following changes have been made to the html code since the 1.70.1
release.
* xsl:sort lang attribute now uses two-char substring of lang attribute.
* Support titlecase "Java", "Perl", and "IDL" as values for the
language attribute on classsynopsis, etc. (instead of just
lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
(instead of just "cpp").
Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
to "Brian A. Vanderburg II".
* Added support for the reference.autolabel param in (X)HTML and FO
output.
* Support rows that are *completely* overlapped by the preceding row
* Rearranged templates for the 3 indexing methods
and changed method named 'english' to 'basic'.
* New modules for supporting indexing extensions.
* Added several new HTML parameters for controlling appearance of
content on HTML title pages:
contrib.inline.enabled:
If non-zero (the default), output of the contrib element is
displayed as inline content rather than as block content.
othercredit.like.author.enabled:
If non-zero, output of the othercredit element on titlepages is
displayed in the same style as author and editor output. If zero
(the default), othercredit output is displayed using a style
different than that of author and editor.
blurb.on.titlepage.enabled:
If non-zero, output from authorblurb and personblurb elements is
displayed on title pages. If zero (the default), output from
those elements is suppressed on title pages (unless you are
using a titlepage customization that causes them to be included).
editedby.enabled
If non-zero (the default), a localized Edited by heading is
displayed above editor names in output of the editor element.
* Add Xalan variant to test for exslt:node-set function.
Xalan can use function named node-set(), but doesn't
recognize it using function-available().
* Added support to FO stylesheets for handling instances of Org
where it occurs outside of *info content. In HTML stylesheets,
moved handling of Org out of info.xsl and into inline.xsl. In both
FO and HTML stylesheets, added support for correctly processing
Affiliation and Jobtitle.
* Don't output punctuation between Refname and Refpurpose if
Refpurpose is empty. Also corrected handling of Refsect2/title
instances, and removed some debugging stuff that was generated in
manpages output to mark the ends of sections.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Added qanda.nested.in.toc param. Default value is zero. If
non-zero, instances of "nested" Qandaentry (ones that are children
of Answer elements) are displayed in the TOC. Closes patch 1509018
(from Daniel Leidert). Currently on affects HTML output (no patch
for FO output provided).
* Improved handling of relative locations generated files
* Initial support of syntax highlighting of programlistings.
* Support org
* Support person
* Support $keep.relative.image.uris also when chunking
Highlighting
The following changes have been made to the highlighting code since the 1.70.1
release.
* Initial support of syntax highlighting of programlistings.
Manpages
The following changes have been made to the manpages code since the 1.70.1
release.
* Suppress footnote markers and output warning that footnotes are
not yet supported.
* Handle instances of address/otheraddr/ulink in author et al in the
same way as email instances; that is, display them on the same
linke as the author, editor, etc., name.
* Don't number or link-list any Ulink instance whose string value is
identical to the value of its url attribute. Just display it inline.
* Don't output punctuation between Refname and Refpurpose if
Refpurpose is empty. Also corrected handling of Refsect2/title
instances, and removed some debugging stuff that was generated in
manpages output to mark the ends of sections.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* In manpages output, if the last/nearest *info element for
particular Refentry has multiple Copyright and/or Legalnotice
children, process them all (not just the first ones). Closes bug
1524576. Thanks to Sam Steingold for the report and to Daniel
Leidert for providing a patch.
Params
The following changes have been made to the params code since the 1.70.1
release.
* Added reference.autolabel parameter for controlling labels on
reference output.
* Added namespace declarations to document elements for all param files.
* Updated index.method doc to describe revised setup for importing index
extensions.
* Added several new HTML parameters for controlling appearance of
content on HTML title pages:
contrib.inline.enabled:
If non-zero (the default), output of the contrib element is
displayed as inline content rather than as block content.
othercredit.like.author.enabled:
If non-zero, output of the othercredit element on titlepages is
displayed in the same style as author and editor output. If zero
(the default), othercredit output is displayed using a style
different than that of author and editor.
blurb.on.titlepage.enabled:
If non-zero, output from authorblurb and personblurb elements is
displayed on title pages. If zero (the default), output from
those elements is suppressed on title pages (unless you are
using a titlepage customization that causes them to be included).
editedby.enabled
If non-zero (the default), a localized Edited by heading is
displayed above editor names in output of the editor element.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Added qanda.nested.in.toc param. Default value is zero. If
non-zero, instances of "nested" Qandaentry (ones that are children
of Answer elements) are displayed in the TOC. Closes patch 1509018
(from Daniel Leidert). Currently on affects HTML output (no patch
for FO output provided).
* Initial support of syntax highlighting of programlistings.
Tools
The following changes have been made to the tools code since the 1.70.1
release.
* Racheted down font sizes of headings in example makefile FO output.
* Added param and attribute set to example makefile, for getting
wrapping in verbatims in FO output.
* Renamed Makefile.paramDoc to Makefile.docParam.
* Added Makefile.paramDoc file, for creating versions of param.xsl
files with doc embedded.
* Added variable to example makefile for controlling whether HTML or
XHTML is generated.
Release: 1.70.1
This is a stable release of the 1.70 stylesheets. It includes only a few small
changes from 1.70.0.
The following is a list of changes that have been made since the 1.70.0
release.
FO
The following changes have been made to the fo code since the 1.70.0 release.
* Added three new attribute sets (revhistory.title.properties,
revhistory.table.properties and revhistory.table.cell.properties) for
controlling appearance of revhistory in FO output.
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
* Support DBv5 revisions with full author name (not only authorinitials)
Modified: fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek
HTML
The following changes have been made to the html code since the 1.70.0
release.
* Support DBv5 revisions with full author name (not only authorinitials)
Modified: html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek
HTMLHelp
The following changes have been made to the htmlhelp code since the 1.70.0
release.
* 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).
Modified: htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek
* Support chunk.tocs.and.lots in HTML Help
Modified: htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek
Params
The following changes have been made to the params code since the 1.70.0
release.
* Added three new attribute sets (revhistory.title.properties,
revhistory.table.properties and revhistory.table.cell.properties) for
controlling appearance of revhistory in FO output.
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
Release: 1.70.0
As with all DocBook Project dot-zero releases, this is an experimental
release. It will be followed shortly by a stable release.
This release adds a number of new features, including:
* support for selecting alternative index-collation methods (in particular,
support for using a collation library developed by Eliot Kimber)
* improved handling of DocBook 5 document instances (through a
namespace-stripping mechanism)
* full support for CALS and HTML tables in manpages output
* a mechanism for preserving relative URIs in documents that make use of
XInclude
* support for the "new" .90 version of FOP
* enhanced capabilities for controlling formatting of lists in HTML and FO
output
* autogeneration of AUTHOR and COPYRIGHT sections in manpages output
* support for generating crop marks in FO/PDF output
* support for qandaset as a root element in FO output
* support for floatstyle and orient on all table types
* support for floatstyle in figure, and example
* pgwide.properties attribute-set supports extending figure, example and
table into the left indent area instead of spanning multiple columns.
The following is a detailed list of enhancements and API changes that have
been made since the 1.69.1 release.
Common
The following changes have been made to the common code since the 1.69.1
release.
* Add the xsl:key for the kimber indexing method.
Modified: common/autoidx-ng.xsl,1.2 - Robert Stayton
* Add support for qandaset.
Modified: common/labels.xsl,1.37; common/subtitles.xsl,1.7;
common/titles.xsl,1.35 - Robert Stayton
* Support dbhtml/dbfo start PI for orderedlist numbering in both HTML and FO
Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman Walsh
* Added CVS header.
Modified: common/stripns.xsl,1.12 - Robert Stayton
* Changed content model of text element to ANY rather than #PCDATA because
they could contain markup.
Modified: common/targetdatabase.dtd,1.7 - Robert Stayton
* Added refentry.meta.get.quietly param.
If zero (the default), notes and warnings about "missing" markup are
generated during gathering of refentry metadata. If non-zero, the metadata
is gathered "quietly" -- that is, the notes and warnings are suppressed.
NOTE: If you are processing a large amount of refentry content, you may be
able to speed up processing significantly by setting a non-zero value for
refentry.meta.get.quietly.
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
* After namespace stripping, the source document is the temporary tree
created by the stripping process and it has the wrong base URI 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 URI 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.
Modified: common/stripns.xsl,1.7 - Norman Walsh
* Added support for "software" and "sectdesc" class values on refmiscinfo;
"software" is treated identically to "source", and "setdesc" is treated
identically to "manual".
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
* Added support for DocBook 5 namespace-stripping in manpages stylesheet.
Closes request #1210692.
Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - Michael(tm)
Smith
* Added <xsl:template match="/"> 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.
Modified: common/stripns.xsl,1.4 - Michael(tm) Smith
* Number figures, examples, and tables from book if there is no prefix (i.e.
if chapter.autolabel is set to 0). This avoids having the list of figures
where the figures mysteriously restart their numeration periodically when
chapter.autolabel is set to 0.
Modified: common/labels.xsl,1.36 - David Cramer
* Add task template in title.markup mode.
Modified: common/titles.xsl,1.34 - Robert Stayton
* Add children (with ids) of formal objects to target data.
Modified: common/targets.xsl,1.10 - Robert Stayton
* Added support for case when personname doesn't contain specific name
markup (as allowed in DocBook 5.0)
Modified: common/common.xsl,1.54 - Jirka Kosek
Extensions
The following changes have been made to the extensions code since the 1.69.1
release.
* Support Xalan 2.7
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
* Handle the case where the imageFn is actually a URI. This still needs
work.
Modified: extensions/saxon643/com/nwalsh/saxon/ImageIntrinsics.java,1.4 -
Norman Walsh
FO
The following changes have been made to the fo code since the 1.69.1 release.
* Adapted to the new indexing code. Now works just like a wrapper that calls
kosek indexing method, originally implemented here.
Modified: fo/autoidx-ng.xsl,1.5 - Jirka Kosek
* Added parameters for header/footer table minimum height.
Modified: fo/pagesetup.xsl,1.60; fo/param.ent,1.100; fo/param.xweb,1.113 -
Robert Stayton
* Add the index.method parameter.
Modified: fo/param.ent,1.99; fo/param.xweb,1.112 - Robert Stayton
* 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 'index.method' parameter to select.
Modified: fo/autoidx.xsl,1.38 - Robert Stayton
* Add support for TOC for qandaset in fo output.
Modified: fo/autotoc.xsl,1.30; fo/qandaset.xsl,1.20 - Robert Stayton
* Added parameter ulink.hyphenate.chars. Added parameter insert.link
.page.number.
Modified: fo/param.ent,1.98; fo/param.xweb,1.111 - Robert Stayton
* Implemented feature request #942524 to add insert.link.page.number to
allow link element cross references to have a page number.
Modified: fo/xref.xsl,1.67 - Robert Stayton
* Add support for ulink.hyphenate.chars so more characters can be break
points in urls.
Modified: fo/xref.xsl,1.66 - Robert Stayton
* Implemented patch #1075144 to make the url text in a ulink in FO output an
active link as well.
Modified: fo/xref.xsl,1.65 - Robert Stayton
* table footnotes now have their own table.footnote.properties attribute
set.
Modified: fo/footnote.xsl,1.23 - Robert Stayton
* Add qandaset to root.elements.
Modified: fo/docbook.xsl,1.41 - Robert Stayton
* Added mode="page.sequence" to make it easier to put content into a page
sequence. First used for qandaset.
Modified: fo/component.xsl,1.37 - Robert Stayton
* Implemented feature request #1434408 to support formatting of biblioentry.
Modified: fo/biblio.xsl,1.35 - Robert Stayton
* Added biblioentry.properties.
Modified: fo/param.ent,1.97; fo/param.xweb,1.110 - Robert Stayton
* Support PTC/Arbortext bookmarks
Modified: fo/docbook.xsl,1.40; fo/ptc.xsl,1.1 - Norman Walsh
* Added table.footnote.properties to permit table footnotes to format
differently from regular footnotes.
Modified: fo/param.ent,1.96; fo/param.xweb,1.109 - Robert Stayton
* Refactored table templates to unify their processing and support all
options in all types. Now table and informaltable, in both Cals and Html
markup, use the same templates where possible, and all support pgwide,
rotation, and floats. There is also a placeholder table.container template
to support wrapping a table in a layout table, so the XEP table title
"continued" extension can be more easily implemented.
Modified: fo/formal.xsl,1.52; fo/htmltbl.xsl,1.9; fo/table.xsl,1.48 -
Robert Stayton
* Added new attribute set toc.line.properties for controlling appearance of
lines in ToC/LoT
Modified: fo/autotoc.xsl,1.29; fo/param.ent,1.95; fo/param.xweb,1.108 -
Jirka Kosek
* Added support for float to example and equation. Added support for pgwide
to figure, example, and equation (the latter two via a dbfo pgwide="1"
processing instruction).
Modified: fo/formal.xsl,1.51 - Robert Stayton
* Add pgwide.properties attribute-set.
Modified: fo/param.ent,1.94; fo/param.xweb,1.107 - Robert Stayton
* Added refclass.suppress param.
If the value of refclass.suppress is non-zero, then display refclass
contents is suppressed in output. Affects HTML and FO output only.
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
* Improved support for task subelements
Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - Jirka Kosek
* Adjusted spacing around K&R-formatted Funcdef and Paramdef output such
that it can more easily be discerned where one ends and the other begins.
Closes #1213264.
Modified: fo/synop.xsl,1.18 - Michael(tm) Smith
* Made handling of paramdef/parameter in FO output consistent with that in
HTML and manpages output. Closes #1213259.
Modified: fo/synop.xsl,1.17 - Michael(tm) Smith
* Made handling of Refnamediv consistent with formatting in HTML and
manpages output; specifically, changed so that Refname (comma-separated
list of multiple instances found) is used (instead of Refentrytitle as
previously), then em-dash, then the Refpurpose. Closes #1212562.
Modified: fo/refentry.xsl,1.30 - Michael(tm) Smith
* Added output of Releaseinfo to recto titlepage ("copyright" page) for Book
in FO output. This makes it consistent with HTML output. Closes #1327034.
Thanks to Paul DuBois for reporting.
Modified: fo/titlepage.templates.xml,1.28 - Michael(tm) Smith
* Added condition for setting block-progression-dimension.minimum on
table-row, instead of height, when fop1.extensions is non-zero. For an
explanation of the reason for the change, see:
http://wiki.apache.org/xmlgraphics-fop/Troubleshooting/CommonLogMessages
Modified: fo/pagesetup.xsl,1.59 - Michael(tm) Smith
* Added new refclass.suppress param for suppressing display of Refclass in
HTML and FO output. Did not add it to manpages because manpages stylesheet
is currently just silently ignoring Refclass anyway. Closes request
#1461065. Thanks to Davor Ocelic (docelic) for reporting.
Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - Michael(tm) Smith
* Add support for keep-together PI to informal objects.
Modified: fo/formal.xsl,1.50 - Robert Stayton
* Add support for fop1.extensions.
Modified: fo/formal.xsl,1.49; fo/graphics.xsl,1.44; fo/table.xsl,1.47 -
Robert Stayton
* Add support for fop1 bookmarks.
Modified: fo/docbook.xsl,1.39 - Robert Stayton
* Add fop1.extentions parameter to add support for fop development version.
Modified: fo/param.ent,1.92; fo/param.xweb,1.105 - Robert Stayton
* Start supporting fop development version, which will become fop version 1.
Modified: fo/fop1.xsl,1.1 - Robert Stayton
* Add template for task in mode="xref-to".
Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert Stayton
* table footnotes now also get footnote.properties attribute-set.
Modified: fo/footnote.xsl,1.22 - Robert Stayton
* Added index.separator named template to compute the separator punctuation
based on locale.
Modified: fo/autoidx.xsl,1.36 - Robert Stayton
* Added support for link, olink, and xref within OO Classsynopsis and
children. (Because DocBook NG/5 allows it).
Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) Smith
* Support date as an inline
Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman Walsh
* Added new parameter keep.relative.image.uris
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
* Map Unicode space characters U+2000-U+200A to fo:leaders.
Modified: fo/docbook.xsl,1.38; fo/passivetex.xsl,1.4; fo/spaces.xsl,1.1 -
Jirka Kosek
* Output a real em dash for em-dash dingbat (instead of two hypens).
Modified: fo/fo.xsl,1.7 - Michael(tm) Smith
* Support default label width parameters for itemized and ordered lists
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
* Generate localized title for Refsynopsisdiv if no appropriate Title
descendant found in source. Closes #1212398. This change makes behavior
for the Synopsis title consistent with the behavior of HTML and manpages
output.
Also, added xsl:use-attribute-sets="normal.para.spacing" to block
generated for Cmdsynopsis output. Previously, that block had no spacing at
all specified, which resulted it being crammed up to closely to the
Synopsis head.
Modified: fo/refentry.xsl,1.28; fo/synop.xsl,1.13 - Michael(tm) Smith
* Added parameters to support localization of index item punctuation.
Modified: fo/autoidx.xsl,1.35 - Robert Stayton
* Added index.number.separator, index.range.separator, and
index.term.separator parameters to support localization of punctuation in
index entries.
Modified: fo/param.ent,1.89; fo/param.xweb,1.102 - Robert Stayton
* Added "Cross References" section in HTML doc (for consistency with the FO
doc). Also, moved the existing FO "Cross References" section to follow the
"Linking" section.
Modified: fo/param.xweb,1.101; html/param.xweb,1.95 - Michael(tm) Smith
* Added ID attribues to all Reference elements (e.g., id="tables" for the
doc for section on Table params). So pages for all subsections of ref docs
now have stable filenames instead of arbitrary generated filenames.
Modified: fo/param.xweb,1.100; html/param.xweb,1.94 - Michael(tm) Smith
* Added two new parameters for handling of multi-term varlistentry elements:
variablelist.term.break.after: When the variablelist.term.break.after is
non-zero, it will generate a line break after each term multi-term
varlistentry.
variablelist.term.separator: When a varlistentry contains multiple term
elements, the string specified in the value of the
variablelist.term.separator parameter is placed after each term except the
last. The default is ", " (a comma followed by a space). To suppress
rendering of the separator, set the value of variablelist.term.separator
to the empty string ("").
These parameters are primarily intended to be useful if you have
multi-term varlistentries that have long terms.
Closes #1306676. Thanks to Sam Steingold for providing an example "lots of
long terms" doc that demonstrated the value of having these options.
Also, added normalize-space() call to processing of each term.
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.
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
* Add sidebar titlepage placeholder attset for styles.
Modified: fo/titlepage.xsl,1.37 - Robert Stayton
* Add titlepage for sidebar.
Modified: fo/titlepage.templates.xml,1.27 - Robert Stayton
* Implemented RFE #1292615.
Added bunch of new parameters (attribute sets) that affect list
presentation: list.block.properties, itemizedlist.properties, orderedlist
.properties, itemizedlist.label.properties and orderedlist.label
.properties. Default behaviour of stylesheets has not been changed but
further customizations will be much more easier.
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
* Implemented RFE #1242092.
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
crop.mark.bleed (6pt), crop.mark.offset (24pt) and crop.mark.width
(0.5pt).
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
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
HTML
The following changes have been made to the html code since the 1.69.1
release.
* implemented index.method parameter and three methods.
Modified: html/autoidx.xsl,1.28 - Robert Stayton
* added index.method parameter to support 3 indexing methods.
Modified: html/param.ent,1.94; html/param.xweb,1.103 - Robert Stayton
* Implemented feature request #1072510 as a processing instruction to permit
including external HTML content into HTML output.
Modified: html/pi.xsl,1.9 - Robert Stayton
* Added new parameter chunk.tocs.and.lots.has.title which controls presence
of title in a separate chunk with ToC/LoT. Disabling title can be very
useful if you are generating frameset output (well, yes those frames, but
some customers really want them ;-).
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
* Support dbhtml/dbfo start PI for orderedlist numbering in both HTML and FO
Modified: common/common.xsl,1.61; html/lists.xsl,1.50 - Norman Walsh
* Allow ToC without title also for set and book.
Modified: html/autotoc.xsl,1.37; html/division.xsl,1.12 - Jirka Kosek
* Implemented floats uniformly for figure, example, equation and
informalfigure, informalexample, and informalequation.
Modified: html/formal.xsl,1.22 - Robert Stayton
* Added the autotoc.label.in.hyperlink param.
If the value of autotoc.label.in.hyperlink is non-zero, labels are
included in hyperlinked titles in the TOC. If it is instead zero, labels
are still displayed prior to the hyperlinked titles, but are not
hyperlinked along with the titles.
Closes patch #1065868. Thanks to anatoly techtonik for the patch.
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
* Added two new params: html.head.legalnotice.link.types and html.head.
legalnotice.link.multiple.
If the value of the generate.legalnotice.link is non-zero, then the
stylesheet generates (in the head section of the HTML source) either a
single HTML link element or, if the value of the html.head.legalnotice.
link.multiple is non-zero, one link element for each link type specified.
Each link has the following attributes:
- a rel attribute whose value is derived from the value of html.head.
legalnotice.link.types
- an href attribute whose value is set to the URL of the file containing
the legalnotice
- a title attribute whose value is set to the title of the corresponding
legalnotice (or a title programatically determined by the stylesheet)
For example:
<link rel="copyright" href="ln-id2524073.html" title="Legal Notice">
Closes #1476450. Thanks to Sam Steingold.
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
* Added refclass.suppress param.
If the value of refclass.suppress is non-zero, then display refclass
contents is suppressed in output. Affects HTML and FO output only.
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
* Improved support for task subelements
Modified: fo/task.xsl,1.3; html/task.xsl,1.3 - Jirka Kosek
* Added new refclass.suppress param for suppressing display of Refclass in
HTML and FO output. Did not add it to manpages because manpages stylesheet
is currently just silently ignoring Refclass anyway. Closes request
#1461065. Thanks to Davor Ocelic (docelic) for reporting.
Modified: fo/refentry.xsl,1.29; html/refentry.xsl,1.23 - Michael(tm) Smith
* Process alt text with normalize-space(). Replace tab indents with spaces.
Modified: html/graphics.xsl,1.57 - Robert Stayton
* Content of citation element is automatically linked to the bibliographic
entry with the corresponding abbrev.
Modified: html/biblio.xsl,1.26; html/inline.xsl,1.47; html/xref.xsl,1.58 -
Jirka Kosek
* Add template for task in mode="xref-to".
Modified: fo/xref.xsl,1.63; html/xref.xsl,1.57 - Robert Stayton
* Suppress ID warnings if the .warnings parameter is 0
Modified: html/html.xsl,1.17 - Norman Walsh
* Add support for floatstyle to figure.
Modified: html/formal.xsl,1.21 - Robert Stayton
* Handling of xref 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.
Modified: html/xref.xsl,1.56 - Jirka Kosek
* Added 3 parameters for overriding gentext for index punctuation.
Modified: html/param.ent,1.89; html/param.xweb,1.98 - Robert Stayton
* Added parameters to support localization of index item punctuation. Added
index.separator named template to compute the separator punctuation based
on locale.
Modified: html/autoidx.xsl,1.27 - Robert Stayton
* Added a <div class="{$class}-contents"> wrapper around output of contents
of all formal objects. Also, added an optional <br class="{class}-break"/>
linebreak after all formal objects.
WARNING: Because this change places an additional DIV between the DIV
wrapper for the equation and the equation contents, it may break some
existing CSS stylesheets that have been created with the assumption that
there would never be an intervening DIV there.
The following is an example of what Equation output looks like as a result
of the changes described above.
<div class="equation"> <a name="three" id="three"></a>
<p class="title"><b>(1.3)</b></p>
<div class="equation-contents"> <span class="mathphrase">1+1=3</span>
</div> </div><br class="equation-break">
Rationale: These changes allow CSS control of the placement of the
formal-object title relative to the formal-object contents. For example,
using the CSS "float" property enables the title and contents to be
rendered on the same line. Example stylesheet:
.equation { margin-top: 20px; margin-bottom: 20px; } .equation-contents {
float: left; }
.equation .title { margin-top: 0; float: right; margin-right: 200px; }
.equation .title b { font-weight: normal; }
.equation-break { clear: both; }
Note that the purpose of the ".equation-break" class is to provide a way
to clear off the floats.
If you want to instead have the equation title rendered to the left of the
equation contents, you can do something like this:
.equation { margin-top: 20px; width: 300px; margin-bottom: 20px; }
.equation-contents { float: right; }
.equation .title { margin-top: 0; float: left; margin-right: 200px; }
.equation .title b { font-weight: normal; }
.equation-break { clear: both; }
Modified: html/formal.xsl,1.20 - Michael(tm) Smith
* Added a chunker.output.quiet top-level parameter so that the chunker can
be made quiet by default
Modified: html/chunker.xsl,1.26 - Norman Walsh
* Added support for link, olink, and xref within OO Classsynopsis and
children. (Because DocBook NG/5 allows it).
Modified: fo/synop.xsl,1.15; html/synop.xsl,1.19 - Michael(tm) Smith
* New parameter: id.warnings. 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?
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
* If the keep.relative.image.uris parameter is true, don't use the absolute
URI (as calculated from xml:base) in the img src attribute, us the value
the author specified. Note that we still have to calculate the absolute
filename for use in the image intrinsics extension.
Modified: html/graphics.xsl,1.56 - Norman Walsh
* Support date as an inline
Modified: fo/inline.xsl,1.43; html/inline.xsl,1.46 - Norman Walsh
* Added new parameter keep.relative.image.uris
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
* Added two new parameters for handling of multi-term varlistentry elements:
variablelist.term.break.after: When the variablelist.term.break.after is
non-zero, it will generate a line break after each term multi-term
varlistentry.
variablelist.term.separator: When a varlistentry contains multiple term
elements, the string specified in the value of the
variablelist.term.separator parameter is placed after each term except the
last. The default is ", " (a comma followed by a space). To suppress
rendering of the separator, set the value of variablelist.term.separator
to the empty string ("").
These parameters are primarily intended to be useful if you have
multi-term varlistentries that have long terms.
Closes #1306676. Thanks to Sam Steingold for providing an example "lots of
long terms" doc that demonstrated the value of having these options.
Also, added normalize-space() call to processing of each term.
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.
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
* Added "wrapper-name" param to inline.charseq named template, enabling it
to output inlines other than just "span". Acronym and Abbrev templates now
use inline.charseq to output HTML "acronym" and "abbr" elements (instead
of "span"). Closes #1305468. Thanks to Sam Steingold for suggesting the
change.
Modified: html/inline.xsl,1.45 - Michael(tm) Smith
Manpages
The following changes have been made to the manpages code since the 1.69.1
release.
* Added the following params:
- man.indent.width (string-valued) - man.indent.refsect (boolean) -
man.indent.blurbs (boolean) - man.indent.lists (boolean) -
man.indent.verbatims (boolean)
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).
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.
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
* Added man.table.footnotes.divider param.
In each table that contains footenotes, the string specified by the man.
table.footnotes.divider parameter is output before the list of footnotes
for the table.
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
* Added the man.output.in.separate.dir, man.output.base.dir, and
man.output.subdirs.enabled parameters.
The man.output.base.dir 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.
The values of the man.output.base.dir 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.
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
* Added man.font.table.headings and man.font.table.title params, for
controlling font in table headings and titles.
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
* Added man.font.funcsynopsisinfo and man.font.funcprototype params, for
specifying the roff font (for example, BI, B, I) for funcsynopsisinfo and
funcprototype output.
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
* Added man.segtitle.suppress param.
If the value of man.segtitle.suppress is non-zero, then display of
segtitle contents is suppressed in output.
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
* Added man.output.manifest.enabled and man.output.manifest.filename params.
If man.output.manifest.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.manifest.filename
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
* Added refentry.meta.get.quietly param.
If zero (the default), notes and warnings about "missing" markup are
generated during gathering of refentry metadata. If non-zero, the metadata
is gathered "quietly" -- that is, the notes and warnings are suppressed.
NOTE: If you are processing a large amount of refentry content, you may be
able to speed up processing significantly by setting a non-zero value for
refentry.meta.get.quietly.
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
* 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).
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
* Added boolean man.output.in.separate.dir param, to control whether or not
man files are output in separate directory.
Modified: manpages/docbook.xsl,1.65; manpages/utility.xsl,1.14 -
Michael(tm) Smith
* Added options for controlling indentation of verbatim output. Controlled
through the man.indentation.verbatims.adjust and
man.indentation.verbatims.value params. Closes #1242997
Modified: manpages/block.xsl,1.15; manpages/docbook.xsl,1.64 - Michael(tm)
Smith
* Added options for controlling indentation in lists and in *blurb output in
the AUTHORS section. 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.
Also, removed the indent that was being set on informalexample outuput. I
will instead add an option for indenting verbatims, which I think is what
the informalexample indent was intended for originally.
Modified: manpages/block.xsl,1.14; manpages/docbook.xsl,1.63;
manpages/info.xsl,1.18; manpages/lists.xsl,1.28 - Michael(tm) Smith
* Changed line-spacing call before synopfragment to use ".sp -1n" ("n" units
specified) instead of plain ".sp -1"
Modified: manpages/synop.xsl,1.28 - Michael(tm) Smith
* Added support for writing man files into a specific output directory and
into appropriate subdirectories within that output directory. Controlled
through the man.base.dir parameter (similar to the base.dir 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 section number/manvolnum of the
source Refentry.
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.
Modified: manpages/docbook.xsl,1.62; manpages/utility.xsl,1.13 -
Michael(tm) Smith
* Refined XPath statements and notification messages for refentry metadata
handling.
Modified: common/common.xsl,1.59; common/refentry.xsl,1.14;
manpages/docbook.xsl,1.61; manpages/other.xsl,1.17 - Michael(tm) Smith
* Added support for copyright and legalnotice. The manpages stylesheets now
output a COPYRIGHT section, after the AUTHORS section, if a copyright or
legalnotice is found in the source. The section contains the copyright
contents followed by the legalnotice contents. Closes #1450209.
Modified: manpages/docbook.xsl,1.59; manpages/info.xsl,1.17 - Michael(tm)
Smith
* Drastically reworked all of the XPath expressions used in refentry
metadata gathering -- completely removed $parentinfo and turned $info into
a set of nodes that includes the *info contents of the Refentry 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
date):
(($info[//date])[last()]/date)[1].
That selects the "last" *info/date date in document order -- that is, the
one eitther on the Refentry itself or on the closest ancestor to the
Refentry.
It's likely this change may break some things; may need to pick up some
pieces later.
Also, changed the default value for the man.th.extra2.max.length from 40
to 30.
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
* Added support for DocBook 5 namespace-stripping in manpages stylesheet.
Closes request #1210692.
Modified: common/common.xsl,1.56; manpages/docbook.xsl,1.57 - Michael(tm)
Smith
* Fixed handling of table footnotes. With this checkin, the table 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].
Modified: manpages/block.xsl,1.11; manpages/docbook.xsl,1.55;
manpages/table.xsl,1.15 - Michael(tm) Smith
* Added handling for table titles. Also fixed handling of nested tables;
nest tables are now "extracted" and displayed just after their parent
tables.
Modified: manpages/docbook.xsl,1.54; manpages/table.xsl,1.14 - Michael(tm)
Smith
* Added option for turning off bold formatting in Funcsynopsis. Boldface
formatting in function synopsis 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 Funcsynopsis 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.funcprototype.font" and "man.funcsynopsisinfo.font". To be
documented later.
Closes #1452247. Thanks to Joe Orton for the feature request.
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
* Use AUTHORS instead of AUTHOR if we have multiple people to attribute.
Also, fixed checking such that we generate author section even if we don't
have an author (as long as there is at least one other person/entity we
can put in the section). Also adjusted assembly of content for Author
metainfo field such that we now not only use author, but try to find a
"best match" if we can't find an author name to put there.
Closes #1233592. Thanks to Sam Steingold for the request.
Modified: manpages/info.xsl,1.12 - Michael(tm) Smith
* Changes for request #1243027, "Impove handling of AUTHOR section." This
adds support for Collab, Corpauthor, Corpcredt, Orgname, Publishername,
and Publisher. Also adds support for output of Affiliation and its
children, and support for using gentext strings for auto-attributing roles
(Author, Editor, Publisher, Translator, etc.). Also did a lot of code
cleanup and modularization of all the AUTHOR handling code. And fixed a
bug that was causing Author info to not be picked up correctly for
metainfo comment we embed in man-page source.
Modified: manpages/info.xsl,1.11 - Michael(tm) Smith
* Support bold output for "emphasis remap='B'". (because Eric Raymond's
doclifter(1) tool converts groff source marked up with ".B" request or
"\fB" escapes to DocBook "emphasis remap='B'".)
Modified: manpages/inline.xsl,1.14 - Michael(tm) Smith
* Added support for Segmentedlist. Details: Output is tabular, with no
option for "list" type output. Output for Segtitle elements can be
supressed by setting man.segtitle.suppress. If Segtitle 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 table code ensures that it gets handled correctly in
the case where its source is the child of a Para. Closes feature-request
#1400097. Thanks to Daniel Leidert for the patch and push, and to Alastair
Rankine for filing the original feature request.
Modified: manpages/lists.xsl,1.23; manpages/utility.xsl,1.10 - Michael(tm)
Smith
* Improved handling or Author/Editor/Othercredit.
Reworked content of (non-visible) comment added at top of each page
(metadata stuff).
Added support for generating a manifest file (useful for cleaning up after
builds, etc.)
Modified: manpages/docbook.xsl,1.46; manpages/info.xsl,1.9;
manpages/other.xsl,1.12; manpages/utility.xsl,1.6 - Michael(tm) Smith
* Added two new parameters for handling of multi-term varlistentry elements:
variablelist.term.break.after: When the variablelist.term.break.after is
non-zero, it will generate a line break after each term multi-term
varlistentry.
variablelist.term.separator: When a varlistentry contains multiple term
elements, the string specified in the value of the
variablelist.term.separator parameter is placed after each term except the
last. The default is ", " (a comma followed by a space). To suppress
rendering of the separator, set the value of variablelist.term.separator
to the empty string ("").
These parameters are primarily intended to be useful if you have
multi-term varlistentries that have long terms.
Closes #1306676. Thanks to Sam Steingold for providing an example "lots of
long terms" doc that demonstrated the value of having these options.
Also, added normalize-space() call to processing of each term.
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.
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
Params
The following changes have been made to the params code since the 1.69.1
release.
* New parameters to set header/footer table minimum height.
Modified: params/footer.table.height.xml,1.1;
params/header.table.height.xml,1.1 - Robert Stayton
* Support multiple indexing methods for different languages.
Modified: params/index.method.xml,1.1 - Robert Stayton
* Remove qandaset and qandadiv from generate.toc for fo output because
formerly it wasn't working, but now it is and the default behavior should
stay the same.
Modified: params/generate.toc.xml,1.8 - Robert Stayton
* add support for page number references to link element too.
Modified: params/insert.link.page.number.xml,1.1 - Robert Stayton
* Add support for more characters to hyphen on when ulink.hyphenate is
turned on.
Modified: params/ulink.hyphenate.chars.xml,1.1;
params/ulink.hyphenate.xml,1.3 - Robert Stayton
* New attribute-set to format biblioentry and bibliomixed.
Modified: params/biblioentry.properties.xml,1.1 - Robert Stayton
* Added new parameter chunk.tocs.and.lots.has.title which controls presence
of title in a separate chunk with ToC/LoT. Disabling title can be very
useful if you are generating frameset output (well, yes those frames, but
some customers really want them ;-).
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
* Added new attribute set toc.line.properties for controlling appearance of
lines in ToC/LoT
Modified: params/toc.line.properties.xml,1.1 - Jirka Kosek
* Allow table footnotes to have different properties from regular footnotes.
Modified: params/table.footnote.properties.xml,1.1 - Robert Stayton
* Set properties for pgwide="1" objects.
Modified: params/pgwide.properties.xml,1.1 - Robert Stayton
* Added the autotoc.label.in.hyperlink param.
If the value of autotoc.label.in.hyperlink is non-zero, labels are
included in hyperlinked titles in the TOC. If it is instead zero, labels
are still displayed prior to the hyperlinked titles, but are not
hyperlinked along with the titles.
Closes patch #1065868. Thanks to anatoly techtonik for the patch.
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
* Added two new params: html.head.legalnotice.link.types and html.head.
legalnotice.link.multiple.
If the value of the generate.legalnotice.link is non-zero, then the
stylesheet generates (in the head section of the HTML source) either a
single HTML link element or, if the value of the html.head.legalnotice.
link.multiple is non-zero, one link element for each link type specified.
Each link has the following attributes:
- a rel attribute whose value is derived from the value of html.head.
legalnotice.link.types
- an href attribute whose value is set to the URL of the file containing
the legalnotice
- a title attribute whose value is set to the title of the corresponding
legalnotice (or a title programatically determined by the stylesheet)
For example:
<link rel="copyright" href="ln-id2524073.html" title="Legal Notice">
Closes #1476450. Thanks to Sam Steingold.
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
* Added the following params:
- man.indent.width (string-valued) - man.indent.refsect (boolean) -
man.indent.blurbs (boolean) - man.indent.lists (boolean) -
man.indent.verbatims (boolean)
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).
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.
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
* Added man.table.footnotes.divider param.
In each table that contains footenotes, the string specified by the man.
table.footnotes.divider parameter is output before the list of footnotes
for the table.
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
* Added the man.output.in.separate.dir, man.output.base.dir, and
man.output.subdirs.enabled parameters.
The man.output.base.dir 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.
The values of the man.output.base.dir 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.
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
* Added man.font.table.headings and man.font.table.title params, for
controlling font in table headings and titles.
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
* Added man.font.funcsynopsisinfo and man.font.funcprototype params, for
specifying the roff font (for example, BI, B, I) for funcsynopsisinfo and
funcprototype output.
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
* Changed to select="0" in refclass.suppress (instead of ..>0</..)
Modified: params/refclass.suppress.xml,1.3 - Michael(tm) Smith
* Added man.segtitle.suppress param.
If the value of man.segtitle.suppress is non-zero, then display of
segtitle contents is suppressed in output.
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
* Added man.output.manifest.enabled and man.output.manifest.filename params.
If man.output.manifest.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.manifest.filename
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
* Added refclass.suppress param.
If the value of refclass.suppress is non-zero, then display refclass
contents is suppressed in output. Affects HTML and FO output only.
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
* Added refentry.meta.get.quietly param.
If zero (the default), notes and warnings about "missing" markup are
generated during gathering of refentry metadata. If non-zero, the metadata
is gathered "quietly" -- that is, the notes and warnings are suppressed.
NOTE: If you are processing a large amount of refentry content, you may be
able to speed up processing significantly by setting a non-zero value for
refentry.meta.get.quietly.
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
* Added support for "software" and "sectdesc" class values on refmiscinfo;
"software" is treated identically to "source", and "setdesc" is treated
identically to "manual".
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
* Drastically reworked all of the XPath expressions used in refentry
metadata gathering -- completely removed $parentinfo and turned $info into
a set of nodes that includes the *info contents of the Refentry 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
date):
(($info[//date])[last()]/date)[1].
That selects the "last" *info/date date in document order -- that is, the
one eitther on the Refentry itself or on the closest ancestor to the
Refentry.
It's likely this change may break some things; may need to pick up some
pieces later.
Also, changed the default value for the man.th.extra2.max.length from 40
to 30.
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
* Added option for turning off bold formatting in Funcsynopsis. Boldface
formatting in function synopsis 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 Funcsynopsis 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.funcprototype.font" and "man.funcsynopsisinfo.font". To be
documented later.
Closes #1452247. Thanks to Joe Orton for the feature request.
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
* fop.extensions now only for FOP version 0.20.5 and earlier.
Modified: params/fop.extensions.xml,1.4 - Robert Stayton
* Support for fop1 different from fop 0.20.5 and earlier.
Modified: params/fop1.extensions.xml,1.1 - Robert Stayton
* Reset default value to empty string so template uses gentext first, then
the parameter value if not empty.
Modified: params/index.number.separator.xml,1.2;
params/index.range.separator.xml,1.2; params/index.term.separator.xml,1.2
- Robert Stayton
* New parameter: id.warnings. 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?
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
* Added new parameter keep.relative.image.uris
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
* Support default label width parameters for itemized and ordered lists
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
* Added parameters to localize punctuation in indexes.
Modified: params/index.number.separator.xml,1.1;
params/index.range.separator.xml,1.1; params/index.term.separator.xml,1.1
- Robert Stayton
* Added two new parameters for handling of multi-term varlistentry elements:
variablelist.term.break.after: When the variablelist.term.break.after is
non-zero, it will generate a line break after each term multi-term
varlistentry.
variablelist.term.separator: When a varlistentry contains multiple term
elements, the string specified in the value of the
variablelist.term.separator parameter is placed after each term except the
last. The default is ", " (a comma followed by a space). To suppress
rendering of the separator, set the value of variablelist.term.separator
to the empty string ("").
These parameters are primarily intended to be useful if you have
multi-term varlistentries that have long terms.
Closes #1306676. Thanks to Sam Steingold for providing an example "lots of
long terms" doc that demonstrated the value of having these options.
Also, added normalize-space() call to processing of each term.
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.
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
* Convert 'no' to string in default value.
Modified: params/olink.doctitle.xml,1.4 - Robert Stayton
* Implemented RFE #1292615.
Added bunch of new parameters (attribute sets) that affect list
presentation: list.block.properties, itemizedlist.properties, orderedlist
.properties, itemizedlist.label.properties and orderedlist.label
.properties. Default behaviour of stylesheets has not been changed but
further customizations will be much more easier.
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
* Implemented RFE #1242092.
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
crop.mark.bleed (6pt), crop.mark.offset (24pt) and crop.mark.width
(0.5pt).
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
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
* Changed short descriptions in doc for *autolabel* params to match new
autolabel behavior.
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
Profiling
The following changes have been made to the profiling code since the 1.69.1
release.
* 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.
Modified: profiling/profile-mode.xsl,1.4; profiling/xsl2profile.xsl,1.7 -
Jirka Kosek
* 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).
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.
Modified: profiling/xsl2profile.xsl,1.5 - Jirka Kosek
Tools
The following changes have been made to the tools code since the 1.69.1
release.
* Moved Makefile.DocBook from contrib module to xsl module.
Modified: tools/make/Makefile.DocBook,1.1 - Michael(tm) Smith
WordML
The following changes have been made to the wordml code since the 1.69.1
release.
* added contrib element, better handling of default paragraph style
Modified: wordml/pages-normalise.xsl,1.6; wordml/supported.xml,1.2;
wordml/wordml-final.xsl,1.14 - Steve Ball
* added bridgehead
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
* added blocks stylesheet to support bibliographies, glossaries and
qandasets
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
* added mediaobject caption
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
* added callouts
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
* added Word template file
Modified: wordml/template.dot,1.1 - Steve Ball
* added abstract, fixed itemizedlist, ulink
Modified: wordml/specifications.xml,1.10; wordml/wordml-final.xsl,1.9 -
Steve Ball
* fixed Makefile added many features to Pages support added revhistory,
inlines, highlights, abstract
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
* fixed handling linebreaks when generating WordML added Apple Pages support
Modified: wordml/docbook.xsl,1.13; wordml/template-pages.xml,1.2 - Steve
Ball
Release 1.69.1
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 annotation.support parameter is now 0 (off). The reason for that change is
that there have been reports that annotation handling is causing a significant
performance degradation in processing of large documents with xsltproc.
Release 1.69.0
The release includes major feature changes, particularly in the manpages
stylesheets, as well as a large number of bug fixes.
As with all DocBook Project dot zero releases, this is an experimental
release .
Common
* This release adds localizations for the following languages: Albanian,
Amharic, Azerbaijani, Hindi, Irish (Gaelic), Gujarati, Kannada, Mongolian,
Oriya, Punjabi, Tagalog, Tamil, and Welsh.
* Added support for specifying number format for auto labels for chapter,
appendix, part, and preface. Contolled with the appendix.autolabel,
chapter.autolabel, part.autolabel, and preface.autolabel parameters.
* Added basic support for biblioref cross referencing.
* Added support for align on caption in mediaobject.
* Added support for processing documents that use the DocBook V5 namespace.
* Added support for termdef and mathphrase.
* 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
tabular.xsl file:
http://docbook.sourceforge.net/release/xsl/current/website/tabular.xsl
* A procedure without a title is now treated as an informal procedure
(meaning that it is not added to any generated list of procedures and
has no affect on numbering of generated labels for other procedures).
* docname is no longer added to olink when pointing to a root element.
* Added support for generation of choice separator in inline simplelist.
This enables auto-generation of an appropriate localized choice
separator (for example, and or or) before the final item in an inline
simplelist.
To indicate that you want a choice separator generated for a particular
list, you need to put a processing instruction (PI) of the form
<?dbchoice choice="foo"?> as a child of the list. For example:
<para>Choose from
ONE and ONLY ONE of the following:
<simplelist type="inline">
<?dbchoice choice="or" ?>
<member>A</member>
<member>B</member>
<member>C</member>.</simplelist></para>
Output (for English):
Choose from ONE and only ONE of the following choices: A, B, or C.
As a temporary workaround for the fact that most of the DocBook
non-English locale files don't have a localization for the word or, you
can put in a literal string to be used; example for French:
<?dbchoice choice="ou">. That is, use ou instead of or.
FO
* Added content-type property to external-graphic element, based on
imagedata format attribute.
* Added support for generating <rx:meta-field creator="$VERSION"/> field for
XEP output. This makes the DocBook XSL stylesheet version information
available through the Document Properties menu in Acrobat Reader and other
PDF viewers.
* 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 class attribute on the trademark element, the
HTML stylesheets would default to rendering a superscript TM symbol after
the trademark contents, but the FO stylesheets would render nothing.
* Added support for generating XEP bookmarks for refentry.
* Added support for HTML markup table border attribute, applied to each
table cell.
* The table.width template can now sum column specs if none use % or *.
* Added fox:destination extension inside fox:outline to support linking to
internal destinations.
* Added support for customizing abstract with property sets. Controlled with
the abstract.properties and abstract.title.properties parameters.
* Add footnotes in table title to table footnote set, and add support for
table footnotes to HTML table markup.
* Added support for title in glosslist.
* Added support for itemizedlist symbol none.
* Implemented the new graphical.admonition.properties and
nongraphical.admonition.properties attribute sets.
* Added id to formalpara and some other blocks that were missing it.
* Changed the anchor template to output fo:inline instead of fo:wrapper.
* Added support for toc.max.depth parameter.
Help
* Eclipse Help: Added support for generating olink database.
HTML
* Added a first cut at support in HTML output for DocBook 5 style annotation
s. Controlled using the annotation.support parameter, and implemented
using JavaScript and CSS styling. For more details, see the documentation
for the annotation.js, annotation.css, annotation.graphic.open, and
annotation.graphic.close parameters.
* Generate client-side image map for imageobjectco with areas using calspair
units
* Added support for <?img.src.path?> PI.
* Added support for passing img.src.path to DocBook Java XSLT image
extensions when appropriate. Controlled using the
graphicsize.use.img.src.path parameter.
* Added support for (not valid for DocBook 4) xlink:href on area and (not
valid for DocBook 4) alt in area.
* Added new parameter default.table.frame to control table framing if there
is no frame attribute on a table.
* Added initial, experimental support for generating content for the HTML
title attribute from content of the alt element. This change adds support
for the following inline elements only (none of them are block elements):
abbrev, accel, acronym, action, application, authorinitials, beginpage,
citation, citerefentry, citetitle, city, classname, code, command,
computeroutput, constant, country, database, email, envar, errorcode,
errorname, errortext, errortype, exceptionname, fax, filename, firstname,
firstterm, foreignphrase, function, glossterm, guibutton, guiicon,
guilabel, guimenu, guimenuitem, guisubmenu, hardware, honorific,
interface, interfacename, keycap, keycode, keysym, lineage, lineannotation
, literal, markup, medialabel, methodname, mousebutton, option, optional,
otheraddr, othername, package, parameter, personname, phone, pob, postcode
, productname, productnumber, prompt, property, quote, refentrytitle,
remark, replaceable, returnvalue, tag, shortcut, state, street,
structfield, structname, subscript, superscript, surname, symbol,
systemitem, tag, termdef, token, trademark, type, uri, userinput, varname,
and wordasword
* Added support for chunking revhistory into separate file (similar to the
support for doing same with legalnotice). Patch from Thomas Schraitle.
Controlled through new generate.revhistory.link parameter.
* l10n.xsl: Made language codes RFC compliant. Added a new boolean config
parameter, l10n.lang.value.rfc.compliant. 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.
man
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.
* New options for globally disabling/enabling hyphenation and justification:
man.justify and man.hyphenate.
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
Hyphenation node from the groff info page:
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.
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.
* 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 classname, constant, envar, errorcode, option,
replaceable, userinput, type, and varname, and for filenames, and for URLs
from link. It can be (re)enabled using the man.hyphenate.computer.inlines,
man.hyphenate.filenames, and man.hyphenate.urls parameters.
* Implemented a new system for replacing Unicode characters. There are two
parts to the new system: a string substitution map for doing essential
replacements, and a character map that can optionally be disabled and
enabled.
The new system fixes all open bugs that had to do with literal Unicode
numbered entities such as “ and ” showing up in output, and
greatly expands the ability of the stylesheets to generate good roff
equivalents for Unicode symbols and special characters.
Here are some details...
The previous manpages mechanism for replacing Unicode symbols and special
characters with roff equivalents (the replace-entities 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 800 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.
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
Mathematical Operators 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 Dingbat block (141 characters in that
that have roff equivalents or that can at least be degraded somewhat
gracefully into roff).
So, the old replace-entities mechanism was replaced with a completely
different mechanism that is based on use of two maps: a substitution
map and a character map (the latter in a format compliant with the XSLT
2.0 spec and therefore completely forward compatible with XSLT 2.0).
The substitution map is controlled through the man.string.subst.map
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.
The character map 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 full
character map that provides support for converting all 800 or so of the
characters that have some reasonable groff equivalent.
The character-map mechanism is controlled through the following
parameters:
man.charmap.enabled
turns character-map support on/off
man.charmap.use.subset
specifies that a subset of the character map is used instead of the
full map
man.charmap.subset.profile
specifies profile of character-map subset
man.charmap.uri
specifies an alternate character map to use instead of the standard
character map provided in the distribution
* Implemented out-of-line handling of display of URLs for links (currently,
only for ulink). This gives you three choices for handling of links:
1. 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.
2. Only list links. Links are not numbered, but an (unnumbered) list of
links is added to the end of the document.
3. Suppress links. Don't number links and don't add any list of links to
the end of the document.
You can also choose whether links should be underlined. The default is
the works -- list, number, and underline links. You can use the
man.links.list.enabled, man.links.are.numbered, and
man.links.are.underlined parameters to change the defaults. The default
heading for the link list is REFERENCES. You can be change that using the
man.links.list.heading parameter.
* Changed default output encoding to UTF-8. This does not mean that man
pages are output in raw UTF-8, because the character map is applied before
final output, causing all UTF-8 characters covered in the map to be
converted to roff equivalents.
* Added support for processing refsect3 and formalpara and nested refsection
elements, down to any arbitrary level of nesting.
* Output of the NAME and SYNOPSIS and AUTHOR headings and the headings for
admonitions (note, caution, 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).
* Re-worked mechanism for assembling page headers/footers (the contents of
the .TH macro title line).
Here are some details...
All man pages contain a .TH roff macro whose contents are used for
rendering the title line 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:
gtk-options(7) GTK+ User's Manual gtk-options(7) <-- header
GTK+ 1.2 2003-10-20 gtk-options(7) <-- footer
svgalib(7) Svgalib User Manual svgalib(7) <-- header
Svgalib 1.4.1 16 December 1999 svgalib(7) <-- footer
And here are the terms with which the groff_man(7) man page refers to the
various parts of the header/footer:
title(section) extra3 title(section) <- header
extra2 extra1 title(section) <- footer
Or, using the names with which the man(7) man page refers to those same
fields:
title(section) manual title(section) <- page header
source date title(section) <- page footer
The easiest way to control the contents of those fields is to mark up your
refentry content like the following (note that this is a minimal
example).
<refentry>
<info>
<date>2003-10-20</date> 1
</info>
<refmeta>
<refentrytitle>gtk-options</refentrytitle> 2
<manvolnum>7</manvolnum> 3
<refmiscinfo class="source-name">GTK+</refmiscinfo> 4
<refmiscinfo class="version">1.2</refmiscinfo> 5
<refmiscinfo class="manual">GTK+ User's Manual</refmiscinfo> 6
</refmeta>
<refnamediv>
<refname>gtk-options</refname>
<refpurpose>Standard Command Line Options for GTK+ Programs</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<para>This manual page describes the command line options, which
are common to all GTK+ based applications.</para>
</refsect1>
</refentry>
1 Sets the date part of the header/footer.
2 Sets the title part.
3 Sets the section part.
4 Sets the source name part.
5 Sets the version part.
6 Sets the manual part.
Below are explanations of the steps the stylesheets take to attempt to
assemble and display good headers and footer. [In the descriptions, note
that *info is the refentry info child (whatever its name), and
parentinfo is the info child of its parent (again, whatever its name).]
extra1 field (date)
Content of the extra1 field is what shows up in the center footer
position of each page. The man(7) man page describes it as the date
of the last revision.
To provide this content, if the refentry.date.profile.enabled is
non-zero, the stylesheets check the value of refentry.date.profile.
Otherwise, by default, they check for a date or pubdate not only in
the *info contents, but also in the parentinfo contents.
If a date cannot be found, the stylesheets now automatically generate
a localized long format date, ensuring that this field always has
content in output.
However, if for some reason you want to suppress this field, you can
do so by setting a non-zero value for man.th.extra1.suppress.
extra2 field (source)
On Linux systems and on systems with a modern groff, the content of
the extra2 field are what shows up in the left footer position of
each page.
The man(7) man page describes this as the source of the command, and
provides the following examples:
o For binaries, use somwething like: GNU, NET-2, SLS Distribution,
MCC Distribution.
o For system calls, use the version of the kernel that you are
currently looking at: Linux 0.99.11.
o For library calls, use the source of the function: GNU, BSD 4.3,
Linux DLL 4.4.1.
In practice, there are many pages that simply have a version number in
the source field. So, it looks like what we have is a two-part
field, Name Version, where:
Name
product name (e.g., BSD) or org. name (e.g., GNU)
Version
version name
Each part is optional. If the Name is a product name, then the Version
is probably the version of the product. Or there may be no Name, in
which case, if there is a Version, it is probably the version of the
item itself, not the product it is part of. Or, if the Name is an
organization name, then there probably will be no Version.
To provide this content, if the refentry.source.name.profile.enabled
and refentry.version.profile.enabled parameter are non-zero, the
stylesheets check the value of refentry.source.name.profile
refentry.version.profile.
Otherwise, by default, they check the following places, in the
following order:
1. *info/productnumber
2. *info/productnumber
3. refmeta/refmiscinfo[@class = 'version']
4. parentinfo/productnumber
5. *info/productname
6. parentinfo/productname
7. refmeta/refmiscinfo
8. [nothing found, so leave it empty]
extra3 field
On Linux systems and on systems with a modern groff, the content of
the extra3 field are what shows up in the center header position of
each page. Some man pages have extra2 content, some don't. If a
particular man page has it, it is most often context 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 extra3 field.
1. parentinfo/title
2. parent's title
3. refmeta/refmiscinfo
4. [nothing found, so leave it empty]
* Reworked *info gathering. For each refentry found, the stylesheets now
cache its *info 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 *info nodes each time they are needed).
* New option for breaking strings after forward slashes. This enables long
URLs and pathnames to be broken across lines. Controlled through
man.break.after.slash parameter.
* Output for servicemark and trademark are now (SM) and (TM). There is a
groff "\(tm" escape, but output from that is not acceptable.
* New option for controlling the length of the title part of the .TH title
line. Controlled through the man.th.title.max.length parameter.
* New option for specifying output encoding of each man page; controlled
with man.output.encoding (similar to the HTML chunker.output.encoding
parameter).
* New option for suppressing filename messages when generating output;
controlled with man.output.quietly (similar to the HTML chunk.quietly
parameter).
* The text of cross-references to first-level refentry (refsect1, top-level
refsection, refnamediv, and refsynopsisdiv) are now capitalized.
* Cross-references to refnamediv now use the localized NAME title instead of
using the first refname 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 NAME. (It may actually make better sense to do it that way in
HTML and FO output as well...)
* Added support for processing funcparams.
* Removed the space that was being output between funcdef and paramdef;
example: was: float rand (void); now: float rand(void)
* Turned off bold formatting for the type element when it occurs within a
funcdef or paramdef
* Corrected rendering of simplelist. Any <simplelist type="inline" instance
is now rendered as a comma-separated list (also with an optional localized
and or or before the last item -- see description elsewhere in these
release notes). Any simplelist instance whose type is not inline is
rendered as a one-column vertical list (ignoring the values of the type
and columns attributes if present)
* Comment added at top of roff source for each page now includes DocBook XSL
stylesheets version number (as in the HTML stylesheets)
* Made change to prevent sticky fonts changes. Now, when the manpages
stylesheets encounter node sets that need to be boldfaced or italicized,
they put the \fBfoo\fR and \fIbar\fR groff bold/italic instructions
separately around each node in the set.
* synop.xsl: Boldface everything in funcsynopsis output except parameters
(which are in ital). The man(7) man page says:
For functions, the arguments are always specified using italics, even
in the SYNOPSIS section, where the rest of the function is specified
in bold.
A look through the contents of the man/man2 directory shows that most
(all) existing pages do follow this everything in funcsynopsis bold
rule. That means the type content and any punctuation (parens, semicolons,
varargs) also must be bolded.
* 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
* Removed special handling of the quote element. That was hard-coded to
cause anything marked up with the quote element to be output preceded by
two backticks and followed by two apostrophes -- that is, that old-school
kludge for generating curly 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
quote. By default, quote content is output with localized quotation marks,
which, depending on the locale, may or may not be left and right double
quotation marks.
* Changed mappings for left and right single quotation marks. Those had
previously been incorrectly mapped to the backtick (`) and apostrophe
(&39;) characters (for kludgy reasons -- see above). They are now
correctly mapped to the \(oq and \(cq roff escapes. If you want the old
(broken) behavior, you need to manually change the mappings for those in
the value of the man.string.subst.map parameter.
* Removed xref.xsl file. Now, of the various cross-reference elements, only
the ulink 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.)
* New option for making subheading dividers 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 man.subheading.divider.
* Fixed many places where too much space was being added between lines.
Release 1.68.1
The release adds localization support for Farsi (thanks to Sina Heshmati) and
improved support for the XLink-based DocBook NG db:link 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.
Release 1.68.0
This release includes some features changes, particularly for FO/PDF output,
and a number of bug fixes.
FO
* Moved footnote properties to attribute-sets.
* Added support for side floats, margin notes, and custom floats.
* Added new parameters body.start.indent and body.end.indent to the
set.flow.properties template.
* Added support for xml:id
* Added support for refdescriptor.
* Added support for multiple refnamedivs.
* Added index.entry.properties attribute-set to support customization of
index entries.
* Added set.flow.properties template call to each fo:flow to support
customizations entry point.
* Add support for @floatstyle in figure
* Moved hardcoded properties for index division titles to the
index.div.title.properties attribute-set.
* Added support for table-layout="auto" for XEP.
* Added index.div.title.properties attribute-set.
* $verbose parameter is now passed to most elements.
* Added refentry to toc in part, as it is permitted by the DocBook
schema/DTD.
* Added backmatter elements and article to toc in part, since they are
permitted by the DocBook schema/DTD.
* Added mode="toc" for simplesect, since it is now permitted in the toc if
simplesect.in.toc is set.
* Moved hard-coded properties to nongraphical.admonintion.properties and
graphical.admonition.properties attribute sets.
* Added support for sidebar-width and float-type processing instructions in
sidebar.
* For tables with HTML markup elements, added support for dbfo bgcolor PI,
the attribute-sets named table.properties, informaltable.properties,
table.table.properties, and table.cell.padding. Also added support for the
templates named table.cell.properties and table.cell.block.properties so
that tabstyles can be implemented. Also added support for tables
containing only tr instead of tbody with tr.
* Added new paramater hyphenate.verbatim.characters 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.
* Added itemizedlist.label.markup to enable selection of different bullet
symbol. Also added several potential bullet characters, commented out by
default.
* Enabled all id's in XEP output for external olinking.
HTML
* Added support for refdescriptor.
* Added support for multiple refnamedivs.
* Added support for xml:id
* refsynopsisdiv as a section for counting section levels
Images
* Added new SVG admonition graphics and navigation images.
Release 1.67.2
This release fixes a table bug introduced in the 1.67.1 release.
Release 1.67.1
This release includes a number of bug fixes.
The following lists provide details about API and feature changes.
FO
* Tables: Inherited cell properties are now passed to the
table.cell.properties template so they can be overridden by a
customization.
* Tables: Added support for bgcolor PI on table row element.
* TOCs: Added new parameter simplesect.in.toc; default value of 0 causes
simplesect to be omitted from TOCs; to cause simplesect to be included in
TOCs, you must set the value of simplesect.in.toc to 1.Comment from Norm:
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.
* Sections: Reverted change that caused a variable reference to be used in a
template match and rewrote code to preserve intended semantics.
* Lists: Added workaround to prevent "* 0.60 + 1em" garbage in list output
from PassiveTeX
* Moved the literal attributes from component.title to the
component.title.properties attribute-set so they can be customized.
* Lists: Added glossdef's first para to special handling in
fo:list-item-body.
HTML
* TOCs: Added new parameter simplesect.in.toc; for details, see the list of
FO changes for this release.
* Indexing: Added new parameter index.prefer.titleabbrev; when set to 1,
index references will use titleabbrev instead of title when available.
HTML Help
* Added support for generating windows-1252-encoded output using Saxon; for
more details, see the list of XSL Java extensions changes for this
release.
man pages
* Replaced named/numeric character-entity references for non-breaking space
with groff equivalent (backslash-tilde).
XSL Java extensions
* Saxon extensions: Added the Windows1252 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 Pontus
Haglund and contributed to the DocBook community by Sectra AB, Sweden).
To use:
1. Make sure that the Saxon 6.5.x jar file and the jar file for the
DocBook XSL Java extensions are in your CLASSPATH
2. Create a DocBook XSL customization layer -- a file named
mystylesheet.xsl or whatever -- that, at a minimum, contains the
following:
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/>
<xsl:output method="html" encoding="WINDOWS-1252" indent="no"/>
<xsl:param name="htmlhelp.encoding" select="'WINDOWS-1252'"></xsl:param>
<xsl:param name="chunker.output.encoding" select="'WINDOWS-1252'"></xsl:param>
<xsl:param name="saxon.character.representation" select="'native'"></xsl:param>
</xsl:stylesheet>
Invoke Saxon with the encoding.windows-1252 Java system property set
to com.nwalsh.saxon.Windows1252; for example
java \
-Dencoding.windows-1252=com.nwalsh.saxon.Windows1252 \
com.icl.saxon.StyleSheet \
mydoc.xml mystylesheet.xsl
Or, for a more complete "real world" case showing other options you'll
typically want to use:
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
In both cases, the "mystylesheet.xsl" file should be a DocBook
customization layer containing the parameters show in step 2.
* Saxon extensions: Removed Saxon 8 extensions from release package
Release 1.67.0
* A number of important bug fixes.
* Added Saxon8 extensions
* Enabled dbfo table-width on entrytbl in FO output
* Added support for role=strong on emphasis in FO output
* Added new FO parameter hyphenate.verbatim that can be used to turn on
"intelligent" wrapping of verbatim environments.
* Replaced all <tt></tt> output with <code></code>
* Changed admon.graphic.width template to a mode so that different
admonitions can have different graphical widths.
* Deprecated the HTML shade.verbatim parameter (use CSS instead)
* Wrapped ToC refentrytitle/refname and refpurpose in span with class
values. This makes it possible to style them using a CSS stylesheet.
* Use strong/em instead of b/i in HTML output
* Added support for converting Emphasis to groff italic and Emphasis
role='bold' to bold. Controlled by emphasis.propagates.style 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).
* callout.graphics.number.limit.xml param: Changed the default from 10 to
15.
* verbatim.properties: Added hyphenate=false
* Saxon and Xalan Text.java extensions: Added support for URIResolver() on
insertfile href's
* Added generated RELEASE-NOTES.txt file.
* Added INSTALL file (executable file for generating catalog.xml)
* Removed obsolete tools directory from package
Release 1.66.1
* A number of important bug fixes.
* Now xml:base attributes that are generated by an XInclude processor are
resolved for image files.
* Rewrote olink templates to support several new features.
o Extended full olink support to FO output.
o Add support for xrefstyle attribute in olinks.
o New parameters to support new olink features: insert.olink.page.number
, insert.olink.pdf.frag, olink.debug, olink.lang.fallback.sequence,
olink.properties, prefer.internal.olink. See the reference page for
each parameter for more information.
* Added index.on.type parameter for new type 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 index.on.role instead.
* Added new section.autolabel.max.depth parameter to turn off section
numbering below a certain depth. This permits you to number major section
levels and leave minor section levels unnumbered.
* Added footnote.sep.leader.properties attribute set to format the line
separating footnotes in printed output.
* Added parameter img.src.path 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.
* Added new attribute-sets informalequation.properties,
informalexample.properties, informalfigure.properties, and
informaltable.properties, so each such element type can be formatted
individually if needed.
* Add component.label.includes.part.label parameter to add any part number
to chapter, appendix and other component labels when the label.from.part
parameter is nonzero. This permits you to distinguish multiple chapters
with the same chapter number in cross references and the TOC.
* Added chunk.separate.lots parameter for HTML output. This parameter lets
you generate separate chunk files for each LOT (list of tables, list of
figures, etc.).
* Added several table features:
o Added table.table.properties attribute set to add properties to the
fo:table element.
o Added placeholder templates named table.cell.properties and
table.cell.block.properties to enable adding properties to any
fo:table-cell or the cell's fo:block, respectively. These templates
are a start for implementing table styles.
* Added new attribute set component.title.properties for easy modifications
of component's title formatting in FO output.
* Added Saxon support for an encoding attribute on the textdata element.
Added new parameter textdata.default.encoding which specifies encoding
when encoding attribute on textdata is missing.
* Template label.this.section now controls whole section label, not only
sub-label which corresponds to particular label. Former behaviour was IMHO
bug as it was not usable.
* 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.
* Added intial.page.number template to set the initial-page-number property
for page sequences in print output. Customizing this template lets you
change when page numbering restarts. This is similar to the
format.page.number template that lets you change how the page number
formatting changes in the output.
* Added force.page.count template to set the force-page-count property for
page sequences in print output. This is similar to the format.page.number
template.
* Sort language for localized index sorting in autoidx-ng.xsl is now taken
from document lang, not from system environment.
* Numbering and formatting of normal and ulink footnotes (if turned on) has
been unified. Now ulink footnotes are mixed in with any other footnotes.
* Added support for renderas attribute in section and sect1 et al. This
permits you to render a given section title as if it were a different
level.
* Added support for label attribute in footnote to manually supply the
footnote mark.
* Added support for DocBook 4.3 corpcredit element.
* Added support for a dbfo keep-together 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.
* For graphics files, made file extension matching case insensitive, and
updated the list of graphics extensions.
* Allow calloutlist to have block content before the first callout
* Added dbfo-need processing instruction to provide soft page breaks.
* Added implementation of existing but unused default.image.width parameter
for graphics.
* Support DocBook NG tag inline element.
* It appears that XEP now supports Unicode characters in bookmarks. There is
no further need to strip accents from characters.
* Make segmentedlist HTML markup more semantic and available to CSS styles.
* Added user.preroot placeholder template to permit xsl-stylesheet and other
PIs and comments to be output before the HTML root element.
* Non-chunked legalnotice now gets an <a name="id"> element in HTML output
so it can be referenced with xref or link.
* In chunked HTML output, changed link rel="home" to rel="start", and link
rel="previous" to rel="prev", per W3C HTML 4.01 spec.
* Added several patches to htmlhelp from W. Borgert
* Added Bosnian locale file as common/bs.xml.
Release 1.65.0
* A number of important bug fixes.
* Added a workaround to allow these stylesheets to process DocBook NG
documents. (Its a hack that pre-processes the document to strip off the
namespace and then uses exsl:node-set to process the result.)
* Added alternative indexing mechanism which has better internationalization
support. New indexing method allows grouping of accented letters like e,
, 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).
In order to use this mechanism you must create customization layer which
imports some base stylesheet (like fo/docbook.xsl, html/chunk.xsl) and
then includes appropriate stylesheet with new indexing code
(fo/autoidx-ng.xsl or html/autoidx-ng.xsl). For example:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
<xsl:include href="http://docbook.sourceforge.net/release/xsl/current/fo/autoidx-ng.xsl"/>
</xsl:stylesheet>
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.
Release 1.64.1
General bug fixes and improvements. Sorry about the failure to produce an
updated release notes file for 1.62.01.63.2
* 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 xalan2.jar will work with older Xalan 2
implementations, xalan25.jar works with Xalan 2.5.
Release 1.61.0
Lots of bug fixes and improvements.
* Initial support for timestamp PI. From now you can use <?dbtimestamp
format="Y-m-d H:M:S"?> to get current datetime in your document. Added
localization support for datetime PI
* Added level 6 to test for section 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.
* Don't use SVG graphics if use.svg=0
* Now uses number-and-title-template for sections only if section.autolabel
is not zero.
* 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.
* Corrected several references to parameter qanda.defaultlabel that were
missing the "$".
* Now accepts admon.textlabel parameter to turn off Note, Warning, etc.
label.
* FeatReq #684561: support more XEP metadata
* Added hyphenation support. Added support for coref. Added beginpage
support. (does nothing; see TDG).
* Added support for hyphenation-character, hyphenation-push-character-count,
and hyphenation-remain-character-count
* Added root.properties, ebnf.assignment, and ebnf.statement.terminator
* Support bgcolor PI in table cells; make sure rowsep and colsep don't have
any effect on the last row or column
* Handle othercredit on titlepage a little better
* 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.
* Added definition of missing variable collection.
* Make footnote formatting 'normal' even when it occurs in a context that
has special formatting
* Added warning when glossary.collection is not blank, but it cannot open
the specified file.
* Pick up the frame attribute on table and informaltable.
* indexdiv/title in non-autogenerated indexes are now picked up.
* Removed (unused) component.title.properties
* Move IDs from page-sequences down to titlepage blocks
* Use proportional-column-width(1) on more tables.
Use proportional-column-width() for header/footer tables; suppress
relative-align when when using FOP
* Check for glossterm.auto.link when linking firstterms; don't output gl.
prefix on glossterm links
* Generate Part ToCs
* Support glossary, bibliography, and index in component ToCs.
* Refactored chunking code so that customization of chunk algorithm and
chunk elements is more practical
* Support textobject/phrase on inlinemediaobject.
* Support 'start' PI on ordered lists
* Fixed test of $toc PI to turn on qandaset TOC.
* Added process.chunk.footnotes to sect2 through 5 to fix bug of missing
footnotes when chunk level greater than 1.
* Added paramater toc.max.depth which controls maximal depth of ToC as
requested by PHP-DOC group.
* Exempted titleabbrev from preamble processing in lists, and fixed
variablelist preamble code to use the same syntax as the other lists.
* Added support for elements between variablelist and first varlistentry
since DocBook 4.2 supports that now.
Release 1.60.1
Lots of bug fixes.
* The format of the titlepage.templates.xml 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:
<t:titlepage element="article" wrapper="fo:block">
is now:
<t:titlepage t:element="article" t:wrapper="fo:block">
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 fo: qualified:
<title named-template="component.title"
param:node="ancestor-or-self::article[1]"
fo:text-align="center"
fo:keep-with-next="always"
fo:font-size="&hsize5;"
fo:font-weight="bold"
fo:font-family="{$title.font.family}"/>
are now unqualified:
<title t:named-template="component.title"
param:node="ancestor-or-self::article[1]"
text-align="center"
keep-with-next="always"
font-size="&hsize5;"
font-weight="bold"
font-family="{$title.font.family}"/>
The t:titlepage and t:titlepage-content 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 recto titlepage centered by specifying the font and
alignment on the those elements:
<t:titlepage t:element="article" t:wrapper="fo:block"
font-family="{$title.font.family}">
<t:titlepage-content t:side="recto"
text-align="center">
* Support use of titleabbrev in running headers and footers.
* Added (experimental) xref.with.number.and.title parameter to enable
number/title cross references even when the default would be just the
number.
* Generate part ToCs if they're requested.
* Use proportional-column-width() in header/footer tables.
* Handle alignment correctly when screenshot wraps a graphic in a figure.
* Format chapter and appendix cross references consistently.
* Attempt to support tables with multiple tgroups in FO.
* Output fo:table-columns in simplelist tables.
* Use titlepage.templates.xml for indexdiv and glossdiv formatting.
* Improve support for new bibliography elements.
* Added footnote.number.format, table.footnote.number.format,
footnote.number.symbols, and table.footnote.number.symbols for better
control of footnote markers.
* Added glossentry.show.acronyms.
* Suppress the draft-mode page masters when draft-mode is no.
* Make blank pages verso not recto. D'Oh!
* Improved formatting of ulink footnotes.
* Fixed bugs in graphic width/height calculations.
* Added class attributes to inline elements.
* Don't add .html to the filenames identified with the dbhtml PI.
* Don't force a ToC when sections contain refentrys.
* Make section title sizes a function of the body.master.size.
Release 1.59.2
The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail.
* 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.
* Output IDs for the first paragraphs in listitems.
* Fixed some small bugs in the handling of page numbers in double-sided
mode.
* Attempt to prevent duplicated IDs from being produced when endterm on xref
points to something with nested structure.
* Fix aligment problems in equations.
* Output the type attribute on unordered lists (UL) in HTML only if the
css.decoration parameter is true.
* Calculate the font size in formal.title.properties so that it's 1.2 times
the base font size, not a fixed "12pt".
Release 1.59.1
The 1.59.1 fixes a few bugs.
* Added Bulgarian localization.
* Indexing improvements; localize book indexes to books but allow setindex
to index an entire set.
* The default value for rowsep and colsep is now "1" as per CALS.
* Added support for titleabbrev (use them for cross references).
* Improvements to mediaobject for selecting print vs. online images.
* Added seperate property sets for figures, examples, equations, tabless,
and procedures.
* Make lineannotations italic.
* Support xrefstyle attribute.
* Make endterm on xref higher priority than xreflabel target.
* Glossary formatting improvements.
Release 1.58.0
The 1.58.0 adds some initial support for extensions in xsltproc, adds a few
features, and fixes bugs.
* 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 extensions/xsltproc/python/xslt.py.
* Fixed bugs in calculation of adjusted column widths to correct for
rounding errors.
* Support nested refsection elements correctly.
* Reworked gentext.template to take context into consideration. The name of
elements in localization files is now an xpath-like context list, not just
a simple name.
* Made some improvements to bibliography formatting.
* Improved graphical formatting of admonitions.
* Added support for entrytbl.
* Support spanning index terms.
* Support bibliosource.
Release 1.57.0
* The 1.57.0 release wasn't documented here. Oops.
Release 1.56.0
The 1.56.0 release fixes bugs.
* Reworked chunking. This will break all existing customizations layers that
change the chunking algorithm. If you're customizing chunking, look at the
new content parameter that's passed to process-chunk-element and
friends.
* Support continued and inherited numeration in orderedlist formatting for
FOs.
* Added Thai localization.
* Tweaked stylesheet documentation stylesheets to link to TDG and the
parameter references.
* Allow title on tables of contents ("Table of Contents") to be optional.
Added new keyword to generate.toc. Support tables of contents on sections.
* Made separate parameters for table borders and table cell borders:
table.frame.border.color, table.frame.border.style,
table.frame.border.thickness, table.cell.border.color,
table.cell.border.style, and table.cell.border.thickness.
* Suppress formatting of endofrange indexterms. This is only half-right.
They should generate a range, but I haven't figured out how to do that
yet.
* Support revdescription. (Bug #582192)
* Added default.float.class and fixed figure floats. (Bug #497603)
* Fixed formatting of sbr in FOs.
* Added context to the missing template error message.
* Process arg correctly in a group. (Bug #605150)
* Removed 'keep-with-next' from formal.title.properties 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.
* Wrap url() around external-destinations when appropriate.
* Fixed typo in compact list spacing. (Bug #615464)
* Removed spurious hash in anchor name. (Bug #617717)
* Address is now displayed verbatim on title pages. (Bug #618600)
* The bridgehead.in.toc parameter is now properly supported.
* Improved effectiveness of HTML cleanup by increasing the number of places
where it is used. Improve use of HTML cleanup in XHTML stylesheets.
* Support table of contents for appendix in article. (Bug #596599)
* Don't duplicate footnotes in bibliographys and glossarys. (Bug #583282)
* Added default.image.width. (Bug #516859)
* Totally reworked funcsynopsis code; it now supports a 'tabular'
presentation style for 'wide' prototypes; see
funcsynopsis.tabular.threshold. (HTML only right now, I think, FO support,
uh, real soon now.)
* Reworked support for difference marking; toned down the colors a bit and
added a system.head.content template so that the diff CSS wasn't
overriding user.head.content. (Bug #610660)
* Added call to the *.head.content elements when writing out long
description chunks.
* Make sure legalnotice link is correct even when chunking to a different
base.dir.
* Use CSS to set viewport characteristics if css.decoration is non-zero, use
div instead of p for making graphic a block element; make figure titles
the default alt text for images in a figure.
* Added space-after to list.block.spacing.
* Reworked section.level template to give correct answer instead of being
off by one.
* When processing tables, use the tabstyle attribute as the division class.
* Fixed bug in html2xhtml.xsl that was causing the XHTML chunker to output
HTML instead of XHTML.
Older releases
To view the release notes for older releases, see
http://cvs.sourceforge.net/viewcvs.py/docbook/xsl/RELEASE-NOTES.xml. Be aware
that there were no release notes for releases prior to the 1.50.0 release.
About dot-zero releases
DocBook Project dot zero releases should be considered experimental and are
always followed by stable dot one releases, usually within two or three
weeks. Please help to ensure the stability of dot one releases by carefully
testing each dot zero release and reporting back about any problems you
find.
It is not recommended that you use a dot zero release in a production
system, or package it for an OS distro. Instead, you should wait for the dot
one version.
|