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
|
2004-09-19 Robert Stayton <bobstayton@users.sourceforge.net>
* block.xsl: In abstract, only call title template if it has a title child.
* block.xsl: Removed obsolete 'title' param call in abstract template.
* titlepage.xsl: Removed obsolete title parameter usage from abstract's template.
* titlepage.xsl: Removed obsolete 'title' parameter usage from legalnotice template call.
* xref.xsl: Added default params to olink.outline template.
2004-09-02 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl, component.xsl, division.xsl, glossary.xsl, index.xsl, pagesetup.xsl, refentry.xsl, sections.xsl, toc.xsl:
Added templates to set initial-page-number and force-page-count
for page-sequences so they can be customized.
* xref.xsl: fixed bug in listitem xref-to.
2004-09-01 Jirka Kosek <kosek@users.sourceforge.net>
* footnote.xsl, xref.xsl: Footnote numbers doesn't count <ulink url="..."/>
2004-08-30 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: Fixed bug where an indexterm seealso turned off the primary page number.
2004-08-26 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx-ng.xsl: Sort language is taken from document not from system environment
2004-08-26 Robert Stayton <bobstayton@users.sourceforge.net>
* param.ent, param.xweb: Added component.label.includes.part.label parameter.
2004-08-19 Jirka Kosek <kosek@users.sourceforge.net>
* footnote.xsl, xref.xsl: Numbering and formatting of normal and ulink footnotes has been unifyed.
2004-08-17 Robert Stayton <bobstayton@users.sourceforge.net>
* component.xsl: article/appendix title now uses object.title.markup to get number labels.
2004-08-16 Robert Stayton <bobstayton@users.sourceforge.net>
* graphics.xsl: add eps to the filenames extensions support by fop.
2004-08-15 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl, param.ent, param.xweb: Added footnote.sep.leader.properties attribute set.
* sections.xsl: Added support for @renderas in section and sect1 et al.
2004-08-14 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Output ids on segmentedlist blocks so links can work.
2004-08-13 Robert Stayton <bobstayton@users.sourceforge.net>
* footnote.xsl: RFE 782817, added support for @label in footnote.
* titlepage.xsl: Add id to legalnotice block so can be linked to.
2004-08-12 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl, component.xsl, division.xsl, glossary.xsl, index.xsl, pagesetup.xsl, refentry.xsl, sections.xsl, toc.xsl:
Added master-reference parameter to page.number.format template
to permit customizations to use the master-reference instead of element.
2004-08-11 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl, titlepage.xsl: Added support for 4.3 corpcredit element.
* formal.xsl: Added support for a dbfo keep-together PI for formal objects
so one can be broken if very long and the default keep-together
is not appropriate.
* graphics.xsl: Removed PDF from fop image support, and added EPS to fop image support.
* graphics.xsl: Made file extension selection case insensitive, and updated
the list of graphics extensions.
* lists.xsl: Fixed bug 958433: simplelist table error in FOP.
Also added support for a PI to set the table width.
2004-08-09 Robert Stayton <bobstayton@users.sourceforge.net>
* docbook.xsl, fo.xsl, param.ent, param.xweb, xref.xsl:
Extended full olink support to FO output.
2004-07-25 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Allow calloutlist to have block content before the first callout
2004-07-22 Robert Stayton <bobstayton@users.sourceforge.net>
* graphics.xsl: Added missing id to mediaobject fo:block.
2004-06-29 Robert Stayton <bobstayton@users.sourceforge.net>
* pi.xsl: Turn off dbfo-need when using FOP because it doesn't work with fop.
2004-06-27 Robert Stayton <bobstayton@users.sourceforge.net>
* pi.xsl: Added dbfo-need processing instruction to provide soft page breaks.
2004-06-26 Robert Stayton <bobstayton@users.sourceforge.net>
* graphics.xsl: @fileref now resolves xml:base attributes.
* graphics.xsl: Changed @fileref processing to support xml:base.
2004-06-21 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: Use informaltable.properties, informalfigure.properties,
informalexample.properties, informalequation.properties
to allow separate formatting if needed.
* param.ent, param.xweb: Fixed names of informal*.properties.
* param.ent, param.xweb: Added informal.figure.properties, informal.table.properties,
informal.equation.properties, and informal.example.properties
so each element can be formatted individually if needed.
2004-06-20 Robert Stayton <bobstayton@users.sourceforge.net>
* param.ent, param.xweb: Added section.autolabel.max.depth parameter to control
the depth of section numbering.
2004-06-14 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx-ng.xsl: Updated i18n indexing method to support new type attribute and index.on.type parameter
2004-06-14 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: Process multiple seealso's when they are present in an indexterm.
2004-06-13 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: Added support for $index.on.type for new 'type' attribute
for indexterm and index.
* param.ent, param.xweb: Added index.on.type to support new 'type' attribute in
indexterm and index.
2004-05-26 Robert Stayton <bobstayton@users.sourceforge.net>
* graphics.xsl: Added implementation of existing but unused
$default.image.width parameter for graphics.
2004-05-25 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Support DocBook NG 'tag' element
2004-05-22 Robert Stayton <bobstayton@users.sourceforge.net>
* table.xsl: Added placeholder templates table.cell.properties and
table.cell.block.properties to enable adding properties
to any fo:table-cell or the cell's fo:block.
2004-05-20 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Also fixed footer.column.widths for single-sided output.
* pagesetup.xsl: Fixed header.column.widths for single-sided output.
2004-05-16 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx-ng.xsl: Added support for index.on.role into internatinalized indexing
2004-05-16 Robert Stayton <bobstayton@users.sourceforge.net>
* footnote.xsl: Added text-align="{$alignment}" to footnote body properties so it doesn't
inherit a center or right alignment from its paragraph.
* pagesetup.xsl: FOP now supports xsl-foonote-separator region to draw the horiz rule.
2004-05-07 Robert Stayton <bobstayton@users.sourceforge.net>
* autotoc.xsl: Added 'index' to selected nodes for component.toc. Since it is
permitted by the DTD, it should be in the TOC.
2004-04-29 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl, component.xsl, division.xsl, glossary.xsl, index.xsl, refentry.xsl, sections.xsl, toc.xsl:
Added force-page-count="end-on-even" to each page-sequence when
double-sided output so last page of document ends on even page.
2004-04-21 Jirka Kosek <kosek@users.sourceforge.net>
* formal.xsl: Apply informal.object.properties to informal objects.
* table.xsl: Recent versions of XEP work much better without this workaround.
2004-04-18 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: Add support for generating an index containing only
those terms with a matching role attribute.
* param.ent, param.xweb: Added index.on.role parameter.
2004-04-12 Robert Stayton <bobstayton@users.sourceforge.net>
* htmltbl.xsl: Now HTML tables have their id attribute so links from
the list of tables and xrefs to the tables work.
2004-04-11 Robert Stayton <bobstayton@users.sourceforge.net>
* autotoc.xsl: Fixes bug #814589, so that refentry in an appendix is now
listed in the table of contents.
* pdf2index: Applied patch from contributor to fix number sorting.
* verbatim.xsl: Fixed bug #875943 where programlisting and literallayout were not
getting an id attribute in the fo output.
2004-04-10 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Fixed bug #699224 where nested lists had too much space between last nested
item and next outer item.
* pagesetup.xsl: Fixed bug #800335 where single-sided output was getting mirrored margins.
* qandaset.xsl: Fixed bug #695030 where revhistory in qandaentry messed up list-block.
2004-04-08 Jirka Kosek <kosek@users.sourceforge.net>
* xep.xsl: Only first author in the document gets into PDF metainformation. Not all authors which are 1st childs of their parents (e.g. author in biblioentry).
2004-04-01 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx.xsl, index.xsl: Fixed bugs # 925117 and #894564 related to XEP index support.
2004-03-25 Jirka Kosek <kosek@users.sourceforge.net>
* component.xsl, param.ent, param.xweb: Added new attribute set component.title.properties for easy modifications of component's title formatting in FO output.
* graphics.xsl: Support default textdata encoding also on files included via imagedata and inlinegraphics.
* verbatim.xsl: wrap property for monospaced verbatim environments moved to attribute set so it can be overriden in customization layer.
2004-03-24 Jirka Kosek <kosek@users.sourceforge.net>
* graphics.xsl, param.ent, param.xweb: Added Saxon support for encoding attribute on textdata. Added new parameter textdata.default.encoding which specifies encoding when encoding attribute on textdata is missing.
2004-03-04 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl, table.xsl: Use table.table.properties on tables
* inline.xsl: Make linked first glossterms italic like all the glossterms
* param.ent, param.xweb: Added table.table.properties
2004-03-02 Jirka Kosek <kosek@users.sourceforge.net>
* xep.xsl: Seems that XEP now supports Unicode characters in bookmarks. There is no further need to strip accents from characters.
2004-02-29 Jirka Kosek <kosek@users.sourceforge.net>
* graphics.xsl: Improved mapping of scalefit attribute to content-width FO property
2004-02-26 Norman Walsh <nwalsh@users.sourceforge.net>
* verbatim.xsl: Bug #875229: add white-space-treatment=preserve
2004-02-11 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: informal.object template now handles informalequation.
2004-02-06 Robert Stayton <bobstayton@users.sourceforge.net>
* component.xsl: Add force-page-count="no-force" to preface when double.sided
is off to prevent extra blank page.
* component.xsl, division.xsl: Added force-page-count="no-force" when double.sided = 0
to prevent extra blank pages.
2004-01-30 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: calsTable template should use table.properties
instead of formal.object.properties.
2004-01-29 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl: Use titleabbrev in ToC
* biblio.xsl: Support 'info' and 'personblurb'
* docbook.xsl: Support DocBook NG by way of the following hack: if we find an NG document, do an identity transform to throw away the NG namespace and then process the result. Requires exsl:node-set().
* docbookng.xsl: New file.
* qandaset.xsl, titlepage.xsl: Support 'info'
2004-01-29 Robert Stayton <bobstayton@users.sourceforge.net>
* titlepage.xsl: Fix for multiple editor elements running together.
2004-01-26 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl, param.ent, param.xweb: Added header.column.widths and footer.column.widths to
permit adjustment of the header and footer widths.
2004-01-17 Robert Stayton <bobstayton@users.sourceforge.net>
* xep.xsl: Added 'chapter' to test for adding TOC bookmark.
2004-01-16 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: Fixed bug in evaluation of @float in figure.
2004-01-13 Robert Stayton <bobstayton@users.sourceforge.net>
* inline.xsl: Inline sequences now output id attribute if found.
2004-01-08 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Initial support for bibliolist
* table.xsl: Abort if there's no @cols
2003-12-31 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx-ng.xsl: New file.
2003-12-30 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl, xref.xsl: Changed document($bibliography.collection)
to document($bibliography.collection,.) so it will
look in the current directory instead of
the stylesheet directory.
* graphics.xsl: Fixed test for graphic inside inlineequation.
* xref.xsl: Added refsection to mode="xref-to" to support xref to refsection.
2003-12-16 Robert Stayton <bobstayton@users.sourceforge.net>
* index.xsl, pagesetup.xsl, titlepage.templates.xml: Fixed bug in index title indents when $title.margin.left is
non-zero.
2003-12-15 Robert Stayton <bobstayton@users.sourceforge.net>
* sections.xsl: Now marker respects $marker.section.level parameter.
2003-12-10 Robert Stayton <bobstayton@users.sourceforge.net>
* param.ent, param.xweb: Added marker.section.level to control which sections
are included in running headers or footers.
2003-12-07 Robert Stayton <bobstayton@users.sourceforge.net>
* component.xsl: Fixed bug #605761 where article/appendix title did not respect
the $title.margin.left setting. Use a new
article.appendix.title.properties attribute set.
* param.ent, param.xweb: Added article.appendix.title.properties to fix bug 605761.
2003-12-05 Robert Stayton <bobstayton@users.sourceforge.net>
* param.ent, param.xweb: Added refentry.pagebreak parameter.
* refentry.xsl: refnamediv now uses section.level template to compute title level.
* refentry.xsl: Added $refentry.pagebreak parameter to make page breaks optional.
2003-12-04 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl, param.ent, param.xweb: Support new parameters for superscript/subscript properties
2003-12-02 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Processing of listitems now processes and preserves order of comments and PIs.
2003-11-30 Robert Stayton <bobstayton@users.sourceforge.net>
* htmltbl.xsl, task.xsl: Added CVS $Id.
2003-11-25 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Remove $title.margin.left from the margin-left calculation
when $passivetex.extensions != 0 since it can't do the math.
2003-11-24 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Make sure that fo:list-item-body always contains an fo:block
2003-11-23 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Support code inline
2003-11-05 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: Moved id from fo:table to container block in informaltable
to eliminate duplicate ids when multiple tgroups used.
2003-11-05 Jirka Kosek <kosek@users.sourceforge.net>
* graphics.xsl: Added GIF extensions which is supported by FOP
2003-10-28 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: Add comment about span not working in most FO processor because
not on a child of fo:flow.
2003-10-15 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Added units to margin-left="0" in header and footer templates.
2003-10-11 Robert Stayton <bobstayton@users.sourceforge.net>
* titlepage.xsl: width property added to revhistory table, with
option to use <?dbfo table-width="xx%"?> processing instruction.
2003-10-08 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Removed title.margin.left indent for the index-*-draft
page masters as well.
2003-10-04 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx.xsl, index.xsl, param.ent, param.xweb: Significant index terms can get special rendering in XEP
2003-10-03 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Support stepalternatives
2003-09-29 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Fixed bug in variablelist width calc that was returning zero.
2003-09-28 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Bug #779655: fix PIs and comments in segmented lists
2003-09-27 Norman Walsh <nwalsh@users.sourceforge.net>
* block.xsl, qandaset.xsl: Bug #687783: attempt rudimentary support for blockinfo
2003-09-25 Robert Stayton <bobstayton@users.sourceforge.net>
* sections.xsl: call to section.heading now includes empty titleabbrev
param unless actual titleabbrev element is present.
2003-09-24 Robert Stayton <bobstayton@users.sourceforge.net>
* param.xweb: Fixed typo.
2003-09-18 Robert Stayton <bobstayton@users.sourceforge.net>
* verbatim.xsl: Added text-align='start' in literallayout when
not monospaced.
2003-09-16 Robert Stayton <bobstayton@users.sourceforge.net>
* titlepage.templates.xml: Changed "0" to "0pt" in index margin-left property.
2003-09-12 Robert Stayton <bobstayton@users.sourceforge.net>
* xref.xsl: Add a nonbreaking space before ulink footnote reference.
2003-09-10 Robert Stayton <bobstayton@users.sourceforge.net>
* sections.xsl: Modified template for "section" to handle section.level*.properties
attribute sets.
2003-09-09 Robert Stayton <bobstayton@users.sourceforge.net>
* param.ent, param.xweb: Added section.*.properties.
* sections.xsl: Added section.*.properties to container block for
each section level.
2003-09-08 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Exclude indexterms from calculation of string length
in longest.term template since they are not visible.
2003-09-07 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl: Remove slides from root.elements; let slides stylesheet override root.elements instead
2003-09-05 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl: Added "part" to list of parents that require a page-sequence
for bibliography.
2003-09-03 Robert Stayton <bobstayton@users.sourceforge.net>
* docbook.xsl: Added slides to the root.elements variable so the slides
customization doesn't break.
2003-09-02 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Turn off procedure/titleabbrev in regular output.
Adjust variablelist termlength from em * 0.50 to em * 0.60
so short terms fit better.
2003-08-29 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Rudimentary support for @dir
2003-08-29 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl, titlepage.templates.xml: For index, turn off $title.margin.left so the index
looks like a normal two-column index.
* qandaset.xsl: Fixed label-length calculation to match variablelist.
2003-08-28 Robert Stayton <bobstayton@users.sourceforge.net>
* callout.xsl, footnote.xsl, formal.xsl, index.xsl, pagesetup.xsl, param.ent, param.xweb, titlepage.templates.xml, titlepage.xsl, xref.xsl:
Changed body.font.family to body.fontset and
title.font.family to title.fontset in font-family property
attributes, in order to append symbol.font.family parameter value.
2003-08-27 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl, formal.xsl, htmltbl.xsl: Rudimentary support for HTML tables
* docbook.xsl, task.xsl: Support task
* formal.xsl: Make ugly warnings for HTML tables (not supported yet)
* inline.xsl: Support uri and orgname in para
* verbatim.xsl: Support startinglinenumber and continuation on verbatim environments
2003-08-19 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl: Move root.elements variable to the top level so that other stylesheets (e.g, slides) can override it
* lists.xsl: The parameter is variablelist.max.termlength not vlist.max.termwidth
* param.ent, param.xweb: Add qanda.defaultlabel, xref.label-title.separator, xref.label-page.separator, and xref.title-page.separator
2003-08-14 Robert Stayton <bobstayton@users.sourceforge.net>
* component.xsl: Changed span="all" to span="inherit" when pgwide=1 in
component.title because span attribute must be on direct
child of fo:flow. This eliminates the error message.
* docbook.xsl: Root template now makes sure the root element is
one of those that generates a page-sequence.
* lists.xsl: Improved computation of variablelist indents.
* pagesetup.xsl: Adjusted left margins in page masters to compensate
for $title.margin.left.
* param.ent, param.xweb: Added variablelist.max.termlength parameter to
control maximum list indent.
2003-08-07 Robert Stayton <bobstayton@users.sourceforge.net>
* callout.xsl: Fixed bug in callout numbering when <co> inside an inline.
* component.xsl: Added fotex:bookmark to the separate article/appendix template
which didn't generate Passivetex bookmarks.
2003-07-31 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Removed fop.extensions=0 condition for draft background image
now that FOP 0.20.5 supports background images.
* qandaset.xsl: Several fixes:
extraneous dot when defaultlabel=qanda.
titleabbrev supported.
fixed qandadiv.autolabel.
changed qanda.defaultlabel from variable to parameter.
fixed answer label
added dbfo label-width.
When label used, calculates term width as for variablelist.
2003-07-25 Robert Stayton <bobstayton@users.sourceforge.net>
* xref.xsl: Support insert.xref.page.number = 1 for backwards compatibility,
equivalent to a value of "yes".
* xref.xsl: Standard page citation now checks for xrefstyle attribute.
2003-07-13 Robert Stayton <bobstayton@users.sourceforge.net>
* callout.xsl: Fixed duplicate id bug in coref.
2003-07-10 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Handles titleabbrev on itemizedlist, orderedlist, variablelist.
* lists.xsl: Now variablelists properly handle preamble text that appears
before the first varlistenty.
2003-07-09 Robert Stayton <bobstayton@users.sourceforge.net>
* footnote.xsl: When fop.extensions is on, replace baseline-shift with vertical-align
attribute for footnote numbers.
* inline.xsl: Superscript and subscript now use vertical-align instead of
baseline-shift when fop.extensions is set.
2003-06-25 Robert Stayton <bobstayton@users.sourceforge.net>
* block.xsl: Process formalpara/title to variable so can test for last
char of any generated text.
2003-06-23 Robert Stayton <bobstayton@users.sourceforge.net>
* param.xweb: Added xml fragment for new qanda.title properties.
2003-06-22 Robert Stayton <bobstayton@users.sourceforge.net>
* graphics.xsl: Added BMP, GIF, and TIFF to supported graphics for FOP,
per the FOP documentation.
* param.ent, param.xweb, qandaset.xsl: Separate qanda set title properties from section heading
properties so they can be customized without conflict.
2003-06-21 Norman Walsh <nwalsh@users.sourceforge.net>
* block.xsl: Check for attribution before generating markup for it.
* index.xsl: Whitespace
* pagesetup.xsl: Pass pageclass, sequence, and gentext-key to head.sep.rule and foot.sep.rule.
* pagesetup.xsl, param.ent, param.xweb: Support column gap adjustments
2003-06-19 Robert Stayton <bobstayton@users.sourceforge.net>
* biblio.xsl: Removed duplicate templates for biblioid.
2003-06-10 Robert Stayton <bobstayton@users.sourceforge.net>
* lists.xsl: Added keep-with-next to procedure's step/title so title stays
on same page as step text.
2003-06-05 Robert Stayton <bobstayton@users.sourceforge.net>
* table.xsl: Now colwidth="*" generates proportional-column-width(1.00)
instead of empty argument.
2003-06-03 Norman Walsh <nwalsh@users.sourceforge.net>
* fop.xsl: Bug #719142: make FOP generate ToCs more generously
2003-05-30 Robert Stayton <bobstayton@users.sourceforge.net>
* glossary.xsl: Fixed vertical spacing between glossterm and glossdef when
glossary.as.blocks is set.
2003-05-28 Robert Stayton <bobstayton@users.sourceforge.net>
* sections.xsl: Fixed bridgehead renderas levels to match section level.
This was missed when $level parameter was changed to
match the section level.
2003-05-20 Jirka Kosek <kosek@users.sourceforge.net>
* axf.xsl: New file.
2003-05-15 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx.xsl, autotoc.xsl, component.xsl, division.xsl, docbook.xsl, index.xsl, param.ent, param.xweb, refentry.xsl, sections.xsl:
Added support for AntennaHouse XSL Formatter. You can use axf.extensions=1 setting to generate bookmarks, document info and to merge duplicate page numbers in index.
2003-05-14 Jirka Kosek <kosek@users.sourceforge.net>
* autoidx.xsl, index.xsl, param.ent, param.xweb: Added support for XEP index extensions. If you set xep.extensions to 1 duplicate page numbers in index will be merged using XEP extension to XSL-FO
2003-05-08 Norman Walsh <nwalsh@users.sourceforge.net>
* param.xweb: Added fragref for admon.textlabel
2003-05-07 Robert Stayton <bobstayton@users.sourceforge.net>
* admon.xsl: Now accepts admon.textlabel parameter to turn off Note, Warning,
etc. label.
* param.ent, param.xweb: Added admon.textlabel parameter to enable turning
off Note, Warning, etc.
2003-04-14 Jirka Kosek <kosek@users.sourceforge.net>
* docbook.xsl: Initial support for timestamp PI. From now you can use <?timestamp format="Y-m-d H:M:S"?> to get current datetime in your document. More features like localization and exctracting date from CVS tag will follow.
2003-04-13 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: A few bug fixes for the colsep/rowsep code
* xep.xsl: FeatReq #684561: support more XEP metadata
2003-04-12 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Added hyphenation support
* callout.xsl: Added support for coref
* component.xsl, division.xsl, glossary.xsl, index.xsl, refentry.xsl, sections.xsl, toc.xsl:
Added support for hyphenation-character, hyphenation-push-character-count, and hyphenation-remain-character-count
* docbook.xsl: Use root.properties
* ebnf.xsl: Support ebnf.assignment and ebnf.statement.terminator
* inline.xsl: Support beginpage (does nothing; see TDG)
* param.ent, param.xweb: Added root.properties, ebnf.assignment, and ebnf.statement.terminator
* table.xsl: Support bgcolor PI in table cells; make sure rowsep and colsep don't have any effect on the last row or column
* titlepage.xsl: Handle othercredit on titlepage a little better
* xref.xsl: Make page citations into active links
2003-04-07 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: 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.
2003-04-01 Jirka Kosek <kosek@users.sourceforge.net>
* glossary.xsl: Added definition of missing variable $collection
2003-03-26 Michael Smith <xmldoc@users.sourceforge.net>
* Makefile: wdocbook.xsl obsoleted by w2docbook.xsl, updated globally
2003-03-25 Michael Smith <xmldoc@users.sourceforge.net>
* Makefile: reverting wdocbook.xsl -> w2docbook.xsl changes
2003-03-24 Michael Smith <xmldoc@users.sourceforge.net>
* Makefile: wrong filename '../../litprog/wdocbook.xsl' broke build, fixed
2003-03-12 Norman Walsh <nwalsh@users.sourceforge.net>
* footnote.xsl: Make footnote formatting 'normal' even when it occurs in a context that has special formatting
2003-03-02 Jirka Kosek <kosek@users.sourceforge.net>
* math.xsl: Fixed several errors related to TeX math processing
2003-02-28 Robert Stayton <bobstayton@users.sourceforge.net>
* glossary.xsl: Added warning when $glossary.collection is not blank, but
it cannot open the specified file.
2003-02-24 <dcramer@users.sourceforge.net>
* formal.xsl: Pick up the frame attribute on table and informaltable.
2003-02-19 <dcramer@users.sourceforge.net>
* index.xsl: indexdiv/title in non-autogenerated indexes are now picked up.
2003-02-17 Norman Walsh <nwalsh@users.sourceforge.net>
* param.ent, param.xweb, param.xweb: Removed component.title.properties
2003-02-10 <dcramer@users.sourceforge.net>
* glossary.xsl: Added keep-with-next and keep-together to block around glossterm(s) in glossary.as.block template to prevent glossterms being widowed from their glossentries.
2003-02-08 Robert Stayton <bobstayton@users.sourceforge.net>
* glossary.xsl: Fixed bug in glosssee and glossseealso using mode="xref" when
should be using mode="xref-to".
2003-01-31 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl, component.xsl, division.xsl, glossary.xsl, index.xsl, refentry.xsl, sections.xsl:
Move IDs from page-sequences down to titlepage blocks
* block.xsl, lists.xsl, titlepage.xsl: Use proportional-column-width(1) on more tables
2003-01-30 Robert Stayton <bobstayton@users.sourceforge.net>
* qandaset.xsl: Corrected several references to parameter $qanda.defaultlabel
that were missing the "$".
2003-01-28 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Check for glossterm.auto.link when linking firstterms; don't output gl. prefix on glossterm links
2003-01-23 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl: Fix bugs associated with toc-context parameter in division.toc
* division.xsl: Generate Part ToCs
* pagesetup.xsl: Use proportional-column-width() for header/footer tables; suppress relative-align when when using FOP
2003-01-22 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl: Handle alignment correctly when screenshot is used in figure
* xref.xsl: Format chapter and appendix titles consistently in xrefs
2003-01-21 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl: Attempt to support multiple tgroups (by making multiple tables and placing them right next to each other)
* lists.xsl: Bug #653344: Output fo:table-columns in simplelist tables
2003-01-20 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl, index.xsl: Use titlepage templates for indexdiv title formatting
* biblio.xsl: Bug #640762: Support new biblioentry elements
* component.xsl: Use titleabbrev in markers; use titlepage templates for subtitles; delete bogus component.separator template.
* footnote.xsl: Support {table.}footnote.number.{format,symbols}
* glossary.xsl: Use titlepage templates for glossdiv formatting; support glossentry.show.acronyms
* pagesetup.xsl: Suppress draft page-masters when draft.mode=no
* pagesetup.xsl: Bug #669765: Make blank pages verso not recto
* param.ent, param.xweb: Support xref.with.number.and.title
* param.ent, param.xweb: Added {table.}footnote.number.{format,symbols}, glossentry.show.acronym, and ulink.footnote.number.format
* param.xweb: Fix missing fragref
* qandaset.xsl: QandASet titles use section.title for convenience. Now they don't output fo:markers for those titles.
* sections.xsl: Support titleabbrev for running headers/footers; don't force a section ToC for refentrys
* titlepage.templates.xml: SIGNIFICANT changes to the titlepage template setup. See RELEASE-NOTES.
* titlepage.xsl: Add property sets for glossdiv, bibliodiv, and indexdiv. Improve formatting of authors.
* verbatim.xsl: Arrange to use only a single fo:block for shading to avoid a bug in earlier versions of XEP
* xref.xsl: Change formatting of URL footnotes
* xref.xsl: Improve formatting of ulink footnotes; provide template to override formatting; use ulink.footnote.number.format; support xref to glossentry
2003-01-17 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Output IDs for the first-paras in a listitem
* pagesetup.xsl: Fix bugs in page numbering when double.sided=1
* pagesetup.xsl: Remove region-name from region-body on blank pages
* xref.xsl: Remove duplicated IDs when endterm is used on xref
2003-01-13 Robert Stayton <bobstayton@users.sourceforge.net>
* math.xsl: Added @align value to fo:block containing mediaobject in equation.
2003-01-12 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Make sure that indexdivs are properly scoped. I've done this by adding a test to suppress the division if it contains no terms. It seems like there might be a better way, but I can't see it just at the moment
2003-01-08 Robert Stayton <bobstayton@users.sourceforge.net>
* xref.xsl: In olink, use document($target.database.document, /) so the
olink target database location is relative to the document
instead of the stylesheet.
2003-01-06 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl, index.xsl: Removed the unnecessary generate-index-from-terms template
in favor of generate-index, called with scope parameter.
2003-01-02 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl, index.xsl: Rework indexing to avoid XSLT limitation/Saxon bug with context dependencies; finish porting Bob's changes from FO to HTML
* index.xsl, titlepage.templates.xml, titlepage.xsl: Support setindex (there were all sorts of things wrong with it)
2003-01-01 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl, index.xsl: Make index elements always index the book that contains them (if there is one, otherwise the whole document); setindex always indexes the whole document
* autotoc.xsl, division.xsl, titlepage.templates.xml, titlepage.xsl:
Support List of Procedures
* formal.xsl: Support separate property sets for figures, examples, equations, tables, and procedures. This way, they can have different border and other formatting properties.
* graphics.xsl: Support ignore.image.scaling parameter
* param.ent, param.xweb: New parameters
* xref.xsl: Use titleabbrev instead of title in xrefs
2002-12-31 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Make lineannotations italic
* pagesetup.xsl: Added blank.page.content template to allow 'This Page Intentionally Left Blank' blank pages.
2002-12-30 <dcramer@users.sourceforge.net>
* lists.xsl: Fixed spacing problem where step numbers don't line up with the corresponding text.
2002-12-28 Norman Walsh <nwalsh@users.sourceforge.net>
* xref.xsl: Now that xrefstyle is official; make it take priority even when use.role.as.xrefstyle is non-zero.
* xref.xsl: Make endterm on xref higher priority than xreflabel on the target
2002-12-24 Robert Stayton <bobstayton@users.sourceforge.net>
* division.xsl: Fixes bug #655587 to restart page numbering
after a preface.
2002-12-18 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: Changed sort to fold uppercase and lowercase together to fix
odd indexdiv sort order.
* graphics.xsl: Add graphic/@align value to fo:block text-align property
since text-align on external-graphic doesn't seem to work.
2002-12-17 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl, graphics.xsl: Changed selection of mediaobject to be more consistent using
a separate select.mediaobject.index template. Also added
text-align to block containing external-graphic in fo output.
2002-12-17 Jirka Kosek <kosek@users.sourceforge.net>
* param.xweb: Build fixes.
2002-12-17 Robert Stayton <bobstayton@users.sourceforge.net>
* titlepage.templates.xml: Made list.of.tables specifications the same as other list.of.*.
2002-12-13 Robert Stayton <bobstayton@users.sourceforge.net>
* glossary.xsl: Handles missing otherterm target in glosssee and glosseealso.
* inline.xsl: Added the author et al special cases similar to
the HTML inline.xsl templates.
2002-12-12 Robert Stayton <bobstayton@users.sourceforge.net>
* autoidx.xsl: An index now contains only indexterms within its scope
(within its parent element).
* autotoc.xsl, index.xsl: Make sure $generate.index controls whether the index is processed.
* formal.xsl: Change formal.object template to pass $placement parameter
to formal.object.heading template.
* lists.xsl: Fixed bug in segmentedlist title when segmentedlist.as.table set.
2002-12-06 Robert Stayton <bobstayton@users.sourceforge.net>
* block.xsl: Fixed epigraph template so it processes all of its allowed
children, not just para.
* graphics.xsl, param.ent, param.xweb: Enabled support for selecting imageobject using the role attribute.
2002-12-04 Robert Stayton <bobstayton@users.sourceforge.net>
* autotoc.xsl, component.xsl, sections.xsl: Added empty component.toc.separator and section.toc.separator templates
to provide customization opportunity between toc and first content.
2002-11-29 Norman Walsh <nwalsh@users.sourceforge.net>
* pagesetup.xsl: Don't output a footnote-separator for FOP
2002-11-16 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Support abstract in bibliomixed
* biblio.xsl, xref.xsl: Support bibliosource; improve numbered bibliography entries and cross-references to them
* pagesetup.xsl: Added template to create footnote separator rule (if supported by your favorite FO processor)
* sections.xsl: Use value-of instead of copy-of for fo:marker because I haven't thought of a better way to avoid footnotes in markers which are illegal
2002-11-15 Robert Stayton <bobstayton@users.sourceforge.net>
* admon.xsl: Changed graphical.admonition template from an fo:table
to an fo:list-block, so it works in both FOP and XEP.
* lists.xsl: Fixed two bugs in longest.term template that prevented proper
calculation of longest term width in variablelist.
2002-11-15 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Add support for xsltproc adjustColumnWidths extension
2002-11-14 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Use xreflabel (if it's present) on bibliography entries
* component.xsl: Don't restart page numbers on the first preface
* table.xsl: Support entrytbl
2002-11-08 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Corrected left and right page margins for even page masters:
inner and outer were reversed from what they should have been.
2002-10-31 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Support spanning index terms (endofrange/startref)
* lists.xsl: Put para spacing around tabular simplelists
2002-10-21 Norman Walsh <nwalsh@users.sourceforge.net>
* glossary.xsl: Bug #577798: glossentry with multiple glossdefs creates broken FO
* pagesetup.xsl: Updated header/footer properties to avoid missmatched margins caused by title.margin.left
2002-10-20 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Bug #619474: support errortext element
2002-10-19 Norman Walsh <nwalsh@users.sourceforge.net>
* pagesetup.xsl, param.ent, param.xweb: Added property sets to control page header and footer content formatting
2002-10-18 Robert Stayton <bobstayton@users.sourceforge.net>
* param.xweb: Corrected the wording describing the placement of
the header and footer in the region-before and
region-after to match the diagram and stylesheet changes.
2002-10-17 Norman Walsh <nwalsh@users.sourceforge.net>
* refentry.xsl: Fix bug where refentrys in parts were not in a page sequence
2002-10-11 Robert Stayton <bobstayton@users.sourceforge.net>
* inline.xsl: glossterm and firstterm in text now use italicseq
to match the html formatting.
2002-10-09 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Removed debug code.
2002-10-04 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl, sections.xsl: Support optional title on section ToCs. Optional titles for components, books, and sets will be trickier.
* formal.xsl, param.ent, param.xweb, table.xsl: Made separate parameters for table frame and table cell border properties
2002-10-02 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Support continuation of orderedlists and inherited numeration in FO
2002-10-01 Robert Stayton <bobstayton@users.sourceforge.net>
* qandaset.xsl, refentry.xsl, sections.xsl: Changed section.level template to return number that matches
the section level (sect1 = 1, etc.), and adjusted templates
that use section.level accordingly to produce same output
as before.
2002-09-27 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Bug #496294: don't index endofrangeentries. They're no longer indexed, but they aren't handled quite right yet either, they don't generate ranges
* autotoc.xsl, sections.xsl: Support section ToCs
* block.xsl, titlepage.xsl: Bug #582192: support revdescription
* formal.xsl: Bug #497603: fixed and added default.float.class
* param.ent, param.xweb: Use new parameters
* synop.xsl: Fix sbr
2002-09-20 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl: Add context to error message about a missing template
* synop.xsl: Bug #605150: process arg correctly even when it's in a group
2002-09-19 Robert Stayton <bobstayton@users.sourceforge.net>
* formal.xsl: 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.
2002-09-19 Norman Walsh <nwalsh@users.sourceforge.net>
* xref.xsl: Use fo-external-image (badly named) to wrap url() around external-destinations
2002-09-15 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Support a PI to rotate table cells
2002-09-08 <dcramer@users.sourceforge.net>
* lists.xsl: Bug #445750: Adding a keep-together and keep-with-next to the block that wraps terms in a varlistentry to keep terms from being orphaned/widowed when variablelists are formatted as blocks.
2002-09-06 <dcramer@users.sourceforge.net>
* component.xsl: Changing the mode in the apply-templates from title.markup to object.title.markup so that appendixes in articles can be formatted as specified in the appropriate lang.xml file.
2002-09-05 Norman Walsh <nwalsh@users.sourceforge.net>
* division.xsl: Restart all books on page 1
2002-09-04 Norman Walsh <nwalsh@users.sourceforge.net>
* param.ent, param.xweb: Reference the l10n.* parameters
2002-09-03 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl: Support textdata in textobject
* table.xsl: Make sure row-level colsep and rowsep values are 'inherited' onto missing cells
2002-09-01 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl: Put the url()/no-url() test for external graphics into a named template
* pagesetup.xsl: Add SVG to the list of XEP graphics formats; use the url()/no-url() named template for draft.watermark.image
2002-08-28 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Make inherited attributes work for 'missing' table cells
2002-08-26 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Handle endofrange indexterms properly
* graphics.xsl: Make graphics formats FO-processor aware; support SVG when FOP is being used
* pdf2index: Support page ranges (generated by startofrang/endofrange index entries)
2002-08-22 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Fix serious indexing bug that caused many index terms to be missing from the automatically generated index
2002-08-21 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Support make.index.markup parameter
* index.xsl: Support make.index.markup parameter and hand-crafted indexes
* lists.xsl: Attempt to workaround bug in FOP handling of step content
* param.ent, param.xweb: Remove unused table.entry.padding parameter; add new make.index.markup parameter
* pdf2index: New file.
2002-08-20 <dcramer@users.sourceforge.net>
* block.xsl: Adding missing template for simplemsgentry
2002-08-11 Robert Stayton <bobstayton@users.sourceforge.net>
* pagesetup.xsl: Changed running header/footer rule line dimension from 1px to
0.5pt so passivetex doesn't gack.
2002-08-08 Robert Stayton <bobstayton@users.sourceforge.net>
* autotoc.xsl: Fixed toc.line for FOP to align numbers
by adding leader-pattern-width property
as suggested by Nicolas Nieswandt. Was able to remove
the fop.extensions choose/when structure because
it works for all processors. The numbers in fop
align left rather than right, but at least they
line up.
2002-07-26 Norman Walsh <nwalsh@users.sourceforge.net>
* pagesetup.xsl: Bob's reworked page header/footer ideas. I think there are still some rough edges.
* pagesetup.xsl: A little more tweaking to make things equivalent to the old scheme
2002-07-24 Robert Stayton <bobstayton@users.sourceforge.net>
* sections.xsl: Moved <fo:marker> for section heading to be first child
of its parent block, per bug #586005 (and the XSL-FO spec).
2002-07-19 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl, param.ent, param.xweb: Support bibliography.numbered
* inline.xsl, param.ent, param.xweb: Use monospace.properties for inline monospaced items
* inline.xsl, param.ent, param.xweb: Support menuchoice.menu.separator and menuchoice.separator
* param.ent, param.xweb, sections.xsl: Support section.title.levelN.properties to remove hard coding of font sizes in section headings
2002-07-17 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Add keep to bibliodiv titles--they still need more work
* pagesetup.xsl: Add a touch of padding between the page-footer rule and the footer text
* table.xsl: Make header entries bold by default
2002-07-16 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl, component.xsl, division.xsl, glossary.xsl, index.xsl, refentry.xsl, sections.xsl, toc.xsl:
Use basic initial-page-number property instead of extended force-page-count property to get components to start on odd pages in double.sided mode; call format.page.number to set the page number format for all page sequences
* division.xsl: Don't include equations w/o titles in the LOT for equations
* pagesetup.xsl: Added foot.empty and page.number.format named templates
2002-07-15 Norman Walsh <nwalsh@users.sourceforge.net>
* pagesetup.xsl: Use named-templates for headers/footers to make customization easier
2002-07-09 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Don't output square brackets if there's no biblioentry label
* synop.xsl: Bug #573726: fix cmdsynopsisref formatting
2002-07-08 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Bug #574840: fix bug where some symbol index terms got lost
* autoidx.xsl: Bug #574841: trim leading and trailing whitespace from primary/secondary/tertiary index terms
* block.xsl, param.ent, param.xweb: Add sidebar.properties to control presentation of Sidebar elements
* graphics.xsl: Work-around bug in xsltproc: explicitly cast scale to a number() before comparing it to 1.0
2002-07-07 Norman Walsh <nwalsh@users.sourceforge.net>
* footnote.xsl, formal.xsl: Fix footnotes in table titles
* lists.xsl: Fix ugly bug: make sure premables to orderedlist and itemizedlist elements are actually formatted
2002-07-06 Norman Walsh <nwalsh@users.sourceforge.net>
* xref.xsl: Added missing parameter to olink.hottext; added missing olink.outline template
2002-07-06 Robert Stayton <bobstayton@users.sourceforge.net>
* xref.xsl: Commented out call to olink.outline for old
style olinks, in case Norm wants to add
support for them.
* xref.xsl: Bug fix: move xsl:param in olink template to be first child.
2002-07-05 Robert Stayton <bobstayton@users.sourceforge.net>
* param.ent, param.xweb: Added four parameters to support new stylesheet olink system:
target.database.document.xml
use.local.olink.style.xml
current.docid.xml
olink.doctitle.xml
* xref.xsl: Modified for the new stylesheet olink system.
Modfified olink template to support the new
targetdoc and targetptr attributes.
Loads target database into keys for fast lookup.
2002-07-04 Norman Walsh <nwalsh@users.sourceforge.net>
* block.xsl, xref.xsl: Feature req #525507: support xref to para by using the nearest containing section as the generated text
* fop.xsl: Patch #530026: suppress whitespace in FOP bookmarks
* glossary.xsl: Fix page number citation code
2002-07-03 Norman Walsh <nwalsh@users.sourceforge.net>
* division.xsl, index.xsl, pagesetup.xsl, param.ent, param.xweb:
More hacking on page headers and footers: added toggles for rules and headers on blank pages
* docbook.xsl: Feature Req #502932: added root.messages template for user defined messages
* pagesetup.xsl: Remove silly debugging message
* xref.xsl: Support insert.xref.page.number parameter
2002-07-02 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl, division.xsl, index.xsl, pagesetup.xsl, param.ent, param.xweb, sections.xsl:
Completely rewrote pagesetup.xsl: more page models, more logical page margin setup
2002-06-29 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl, lists.xsl: Make list/procedure titles use gentext and have consisten formatting
* table.xsl: Patch #514664: keep-together for table-cell if xep
2002-06-27 Norman Walsh <nwalsh@users.sourceforge.net>
* glossary.xsl, param.ent, param.xweb: Make glossary parameters properly documented parameters; support glossary.as.blocks
2002-06-26 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Make sure we don't attempt to set the table width more than once if a table has multiple tgroups
2002-06-11 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl, fo-patch-for-fop.xsl, fo-rtf.xsl, pagesetup.xsl, titlepage.templates.xml:
Add CVS Ids
* biblio.xsl: Add spacing before bibliodivs
* pagesetup.xsl: Put a titlepage at the beginning of the oneside sequence
* param.ent, param.xweb: Added refentry.title.properties, section.title.properties, and use.role.as.xrefstyle
* refentry.xsl: Use titlepage system for refentry (refsynopsisdiv, refsect*) titles
* sections.xsl: Use section.title.properties
* titlepage.templates.xml: Added refentry titlepage elements; tweaked font sizes and some spacing
* titlepage.xsl: Fix copyright year formatting; add *.style attribute sets for refentry elements
* xref.xsl: Experimental support for xrefstyle
2002-06-09 Norman Walsh <nwalsh@users.sourceforge.net>
* index.xsl: Fix bug #496453: make sure comments don't contain illegal chars
2002-06-09 Jirka Kosek <kosek@users.sourceforge.net>
* lists.xsl: Fixed bug #547163. Paragraph after formal paragraph in listitem gets correct spacing.
* refentry.xsl: Fixed bug #554159. Added empty template for refentryinfo
2002-06-03 Jirka Kosek <kosek@users.sourceforge.net>
* Makefile: Added dependencies for profiling stylesheets
2002-06-02 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Support title on step in procedure
2002-06-01 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Bug #560808 make systemitem formatting consistent
2002-05-23 Norman Walsh <nwalsh@users.sourceforge.net>
* param.ent, param.xweb: Support for SVG in HTML
2002-05-21 Norman Walsh <nwalsh@users.sourceforge.net>
* qandaset.xsl: Output '. ' in some contexts (this is a hack)
2002-05-14 Norman Walsh <nwalsh@users.sourceforge.net>
* footnote.xsl: Format footnotes with format.footnote.mark named template for easy customization
2002-05-13 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl, param.ent, param.xweb: Support spacing=compact on itemizedlist and orderedlist (Bug #501063)
2002-05-12 Norman Walsh <nwalsh@users.sourceforge.net>
* block.xsl: Make sure IDs get generated for blockquote and epigraph
* formal.xsl, table.xsl: Make border-collapse='collapse' explicitly (that's the only model that works for CALS tables)
* graphics.xsl: Reworked support for graphic attributes; now support DocBook 4.2CR1 attributes
* lists.xsl: Bug #511965: add formal.title.properties to calloutlist titles
* math.xsl: Support MathML by passing it silently through to the FO result
* sections.xsl: Allow anchors in section titles; improve efforts to prevent page/column breaks immediately after section titles
* xref.xsl: Support xref to refnamediv and all elements with titles (at least when they have titles)
2002-05-06 Norman Walsh <nwalsh@users.sourceforge.net>
* admon.xsl: Fix url() in admonition graphics
* callout.xsl: Fix url() in callout graphics
2002-04-30 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Use title.font.family in bibliodiv
2002-04-20 Norman Walsh <nwalsh@users.sourceforge.net>
* param.ent, param.xweb, verbatim.xsl: Support shade.verbatim in FO; stop using vendor test to decide what extension function to call for line numbering
2002-03-28 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl: Attempt to fix duplicate-id problem in ToC generation
* xep.xsl: Make XEP point to ToC pages for books, parts, etc. from PDF bookmarks
2002-03-26 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Set maxlength of termlength to 12
* param.xweb: Documentation fix
2002-03-25 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl: Handle prefaceinfo
* formal.xsl: Handle textobject in tables
* graphics.xsl: Add template for mediaobjectco
* inline.xsl: Support personname
* math.xsl: Handle alt
* xref.xsl: Support xrefs to editor, othercredit, and personname
2002-03-22 Norman Walsh <nwalsh@users.sourceforge.net>
* titlepage.xsl: Output blocks instead of wrappers around authors
2002-03-21 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl, titlepage.xsl: Support biblioid
2002-03-20 Norman Walsh <nwalsh@users.sourceforge.net>
* xep.xsl: Don't output a link to the book title if the book has no title
2002-03-19 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl: Make sure ToC elements have IDs for links from the PDF ToC
2002-03-18 Norman Walsh <nwalsh@users.sourceforge.net>
* Makefile, component.xsl, division.xsl, fop.xsl, param.ent, param.xweb, xep.xsl:
Replace generate.*.toc and generate.*.lot with single generate.toc parameter.
* block.xsl: Support RevHistory in content; support AckNo in article
* fop.xsl, xep.xsl: Don't generate ToC links if there's nothing to go in the ToC
2002-03-15 Norman Walsh <nwalsh@users.sourceforge.net>
* synop.xsl, verbatim.xsl: Support classsynopsis and friends
2002-03-14 Norman Walsh <nwalsh@users.sourceforge.net>
* .cvsignore: Ignore profiling stylesheets
* admon.xsl, autoidx.xsl, autotoc.xsl, biblio.xsl, block.xsl, callout.xsl, component.xsl, division.xsl, docbook.xsl, ebnf.xsl, fo-patch-for-fop.xsl, fo-rtf.xsl, fo.xsl, footnote.xsl, fop.xsl, formal.xsl, glossary.xsl, graphics.xsl, index.xsl, info.xsl, inline.xsl, keywords.xsl, lists.xsl, math.xsl, pagesetup.xsl, param.ent, param.xweb, passivetex.xsl, pi.xsl, qandaset.xsl, refentry.xsl, sections.xsl, synop.xsl, table.xsl, titlepage.templates.xml, titlepage.xsl, toc.xsl, verbatim.xsl, xep.xsl, xref.xsl:
Whitespace only: change CR/LF back to LF. Norm was a total moron.
* admon.xsl, autoidx.xsl, autotoc.xsl, biblio.xsl, block.xsl, callout.xsl, component.xsl, division.xsl, docbook.xsl, ebnf.xsl, fo-patch-for-fop.xsl, fo-rtf.xsl, fo.xsl, footnote.xsl, fop.xsl, formal.xsl, glossary.xsl, graphics.xsl, index.xsl, info.xsl, inline.xsl, keywords.xsl, lists.xsl, math.xsl, pagesetup.xsl, param.ent, param.xweb, passivetex.xsl, pi.xsl, qandaset.xsl, refentry.xsl, sections.xsl, synop.xsl, table.xsl, titlepage.templates.xml, titlepage.xsl, toc.xsl, verbatim.xsl, xep.xsl, xref.xsl:
Whitespace changes only: use PC-style CR/LF because Unix clients choke on this far less often than PC clients choke on the reverse. Grrr.
* docbook.xsl, fo-rtf.xsl, footnote.xsl, formal.xsl: Improve formatting of table footnotes and fix numeration of table/non-table footnotes
* formal.xsl, lists.xsl, param.ent, param.xweb: Support formal.title.placement
2002-03-13 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl: Fix FO markup for rotated tables
* inline.xsl: Support other roles on emphasis; support nested emphasis
* sections.xsl: Give wrapped section titles a hanging indent
* titlepage.templates.xml: Don't shift the margin on article titles; they're supposed to be centered
* verbatim.xsl: Don't force verbatim environments to be start aligned; they should inherit the current text alignment
2002-03-11 Jirka Kosek <kosek@users.sourceforge.net>
* inline.xsl: Fixed bug #522900. Content of <emphasis> is not outputted twice.
2002-03-03 Jirka Kosek <kosek@users.sourceforge.net>
* param.ent, param.xweb: Added new stylesheet parameters for profiling.
2002-03-01 Jirka Kosek <kosek@users.sourceforge.net>
* Makefile: First portion of new profiling code. New stylesheet parameters will come later.
2002-03-01 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl: Use alternate TOC format for FOP
* docbook.xsl: Move stylesheet.result.type out of param and put it explicitly in each stylesheet because it has to be different
* footnote.xsl: Make footnote numbers smaller and superscripted
* formal.xsl, table.xsl: Improve table border handling
* graphics.xsl: Support TIFF images
* graphics.xsl: Handle the case where graphics in inlineequations are inline
* pagesetup.xsl: Don't put watermarks on FOP; FOP doesn't understand them
* param.ent, param.xweb: Renamed table.border.padding and removed stylesheet.result.type
2002-02-21 Jirka Kosek <kosek@users.sourceforge.net>
* math.xsl, param.ent, param.xweb: Better control over delimiters for TeX equations. Added parameter tex.math.delims, when is set to 0, no delimiters (like $ and $$) are output. Same can be done for single equation by <?dbtex delims="no"?>.
2002-02-20 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl: Bug #429331: center figure title if image is centered
* lists.xsl: Commented out a debugging message
2002-02-11 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl, index.xsl, pagesetup.xsl, param.ent, param.xweb, titlepage.templates.xml:
Patch #510996: add support for two-colum indexes
* inline.xsl: Patch #514007: prevent hyphenation of email addresses
2002-02-07 Norman Walsh <nwalsh@users.sourceforge.net>
* autotoc.xsl: Make title a link
* docbook.xsl: Reworked FOP outline mode
* fop.xsl: Reworked outline mode
* formal.xsl, param.ent, param.xweb: Added informal.object.properties
2002-01-29 Norman Walsh <nwalsh@users.sourceforge.net>
* pagesetup.xsl, param.ent, param.xweb: Support 'draft' watermark
2002-01-28 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Allow bibliography to be a root element
* formal.xsl: Make landscape tables actually landscape---if your FO processor supports changes to the reference-orientation
* param.ent, param.xweb, xref.xsl: Provide option to allow URLs to be conditionally hyphenated
2002-01-25 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Fix bug that caused rowsep and colsep to be ignored on empty cells
2002-01-10 Norman Walsh <nwalsh@users.sourceforge.net>
* fo-patch-for-fop.xsl: Allow the fox: prefix; this isn't the right fix, but it's easy and this file is only a workaround for FOP
* inline.xsl: Support emphasis role=bold in FO
* pagesetup.xsl: Set display-alignment on region-before and -after; output warning if the master-references is unrecognized when calculating the page header
* param.ent, param.xweb: Added documentation about page layout and ulink.footnotes and ulink.show
* xref.xsl: Use the ulink.show parameter when rendering ulinks
2002-01-09 Norman Walsh <nwalsh@users.sourceforge.net>
* glossary.xsl: Bug fix: don't generate duplicate IDs on glossentrys
2002-01-04 Norman Walsh <nwalsh@users.sourceforge.net>
* glossary.xsl: Make glossary.collection (usually) work when chunking is used; allow the use of glossdivs to be toggled in the document
* glossary.xsl, inline.xsl, param.ent, param.xweb: First cut at supporting a glossary.collection file
2002-01-03 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Rework variablelist formatting; support lists vs. blocks with new parameters and calculate term-width reasonably
* param.ent, param.xweb: Replace format.variablelist.as.list with variablelist.as.blocks
2002-01-01 Norman Walsh <nwalsh@users.sourceforge.net>
* .cvsignore: Added Makefile.param
* Makefile.param: Autogenerated
* block.xsl: Use blockquote.properties
* lists.xsl: Attempt to support alternate symbols on itemizedlists
* param.ent, param.xweb: Use new parameters: refentry.generate.title and blockquote.properties
* refentry.xsl: Improve formatting of reference pages
* titlepage.xsl: Simplify match pattern; add space in editor formatting
2001-12-15 Jirka Kosek <kosek@users.sourceforge.net>
* math.xsl: Improved support for TeX math inside equations.
2001-12-06 Jirka Kosek <kosek@users.sourceforge.net>
* Makefile.param, math.xsl, param.ent, param.xweb: Added support for TeX math in alt element. When using PassiveTeX, TeX equations can be directly passed to TeX. When using HTML, TeX file with code necessary to produce image equivalents of equations is generated.
2001-12-04 Norman Walsh <nwalsh@users.sourceforge.net>
* Makefile: Fix chunking parameter errors
* Makefile, Makefile.param, param.ent, param.xweb: New parameters; reorganized xweb file; and some checking for consistent param files
* admon.xsl: Feature #454323: customizable font in admonitions
* autotoc.xsl: Feature #445713 TOC customization
* division.xsl: Added set TOC and moved book TOC after dedication
* docbook.xsl: Features #457872 and #479011 language and line-height
* glossary.xsl, inline.xsl: Support glossterm.auto.link
* refentry.xsl, xref.xsl: Feature #481793: support xref to refentry
* xep.xsl: Add bookmark for TOC
2001-12-02 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl: Allow inlines and anchors in titles
2001-12-01 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Patch #468462: hot page numbers in the index
* division.xsl: Patch #470480: make part title formatting obey localization rules
* docbook.xsl, xep.xsl: Make sure bookmarks are never empty
* formal.xsl, table.xsl: Bug #487576: table/indexterm problems
* synop.xsl: Patch #462556: Improve func synopsis
* titlepage.templates.xml: Don't offset margin when using 'center' alignment
* xep.xsl: Fix bug in TOC title formatting
2001-11-30 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl, division.xsl: Bug #451265: page number of first part is wrong
2001-11-29 Norman Walsh <nwalsh@users.sourceforge.net>
* fo-patch-for-fop.xsl: New file.
* lists.xsl: Patch #478068: procedures with one step
* lists.xsl: Patch #482482: margin-start should be margin-left
* xep.xsl: Patch #479140: bookmarks w/xep missing
* xep.xsl: Patch #479145: top-level bookmarks in xep
* xep.xsl: Fix it the right way: always test for top-level elements
2001-11-28 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl, param.ent, param.xweb: Support formatting segmented lists as tables
* pagesetup.xsl: Bug #483364: wrong inner/outer margins
* param.ent, param.xweb: Added punct.honorific parameter
* pi.xsl: Use common pi-attribute template
2001-11-21 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl, component.xsl, division.xsl, glossary.xsl, index.xsl, pagesetup.xsl, refentry.xsl, sections.xsl, toc.xsl:
Updated master-name/master-reference per the XSL 1.0 Recommendation
2001-11-15 Jirka Kosek <kosek@users.sourceforge.net>
* docbook.xsl, passivetex.xsl: When passivetex.extensions=1 character ​ is inserted between all occurences of --. This stops TeX ligature mechanism which converted all -- to endash and --- to emdash (this is ill especially in source code listings containing XML comments or decrementation operator). Performance cost of evaluating condition for each text node is under 5 %. This shouldn't annoy anyone.
2001-11-12 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl, ebnf.xsl, footnote.xsl, lists.xsl, synop.xsl, xref.xsl:
Support well-formed documents, use key() instead of id()
2001-11-10 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl: Moved table frame code to a common named template; handle frame=none
* pagesetup.xsl: Added message if the master-name is unrecognized
2001-11-09 Norman Walsh <nwalsh@users.sourceforge.net>
* param.xweb: Move the obvious ID value from the src:fragment to the refentry in parameter reference pages
2001-11-03 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl, inline.xsl: Support pubwork=article on citetitle
* formal.xsl, table.xsl: Table updates
* synop.xsl: Added block wrapper around paramdef in kr mode
* xref.xsl: Remove anchor name on anchor; it erroneously duplicates the html anchor template
2001-10-16 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Table support improvements
2001-10-15 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Fix formatting of keycombo
* param.ent, param.xweb, table.xsl: Fix calculation of rowsep and colsep; added experimental support for table.borders.with.css in HTML; calculation of alignments needs to be added along the same lines
2001-10-14 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Fixed a number of significant outstanding table problems; I think HTML and FO now format all combinations of spans and missing cells correctly. But the border drawing isn't perfect on FO tables yet.
2001-10-12 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Tweaked bibliography formatting to include the labels
* block.xsl: Improve formatting of block quotes
* param.xweb: Fixed bogus attribute name
2001-10-11 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl, docbook.xsl, index.xsl: Always use automatic indexing
2001-10-09 Norman Walsh <nwalsh@users.sourceforge.net>
* Makefile: Fix typo
* titlepage.templates.xml, titlepage.xsl: Make sure authorgroup doesn't output IDs on both recto and verso pages
2001-10-08 Norman Walsh <nwalsh@users.sourceforge.net>
* .cvsignore, Makefile, param.ent, param.xsl, param.xweb:
Removed param.xsl; it's now generated from param.xweb
* fo.xsl: Added an anchor named template
* table.xsl: Moved several params to param.xsl; also changed hyphens to periods for consistency
* titlepage.templates.xml: Made margin-left a parameter so it's easier to tweak along with page.margin.outer
* titlepage.xsl: Keep section titles together with their sections
* xref.xsl: Added names to the link templates
2001-09-25 Norman Walsh <nwalsh@users.sourceforge.net>
* param.xsl, titlepage.xsl: Support automatic collation of year ranges in copyright
2001-09-24 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Whitespace changes
2001-09-23 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Patch #460123, fix for <step>s 2 ff. in <procedure>
2001-09-22 Norman Walsh <nwalsh@users.sourceforge.net>
* xref.xsl: Bug #463033: allow xref to list items (in orderedlists) and varlistentrys
* xref.xsl: Bug #462830: allow %p in templates
2001-09-09 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl: Added keep-together.within-column
2001-08-29 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Fix orderedlist numerations
2001-08-09 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl, titlepage.templates.xml, titlepage.xsl:
Support colophon
* graphics.xsl: Forgot curly braces in AVT for height/width
* inline.xsl: Remark|comment must be formatted as a block in case it appears at the paragraph-level in a component
2001-08-05 Norman Walsh <nwalsh@users.sourceforge.net>
* callout.xsl, param.xsl: Removed the FormatDingbatCallout classes, they were the same as the FormatUnicodeCallout classes but with a font wrapper. Added a callout.unicode.font parameter to wrap Unicode callouts
2001-08-02 Robert Stayton <bobstayton@users.sourceforge.net>
* xref.xsl: Changed <xref> with endterm to process the children nodes
and not just the text by calling a new mode="endterm" template.
Also changed <link> to process its endterm if the element content
is empty.
Also changed the first use of name() to local-name() to
match the others in the file and in html/xref.xsl.
2001-08-01 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl: Use mediaobject.filename to calculate graphic reference
* inline.xsl: Changed vertical-align to baseline-shift; vertical-align is a shortcut
* sections.xsl: Added templates to suppress titleabbrev
* table.xsl: Support table widths
* titlepage.templates.xml, titlepage.xsl: Present othercredit on titlepages
2001-07-31 Norman Walsh <nwalsh@users.sourceforge.net>
* fop.xsl, xep.xsl: Fixes for PDF bookmarks by Pavel Zampach
2001-07-21 Norman Walsh <nwalsh@users.sourceforge.net>
* block.xsl, param.xsl: Fix title-end punctuation problems on formalparas
2001-07-16 Norman Walsh <nwalsh@users.sourceforge.net>
* table.xsl: Add template for tfoot
* table.xsl: Process thead/tbody/tfoot in the right order (thead/tfoot/tbody)
2001-07-15 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl: Fixed graphic height/width calculations
* table.xsl: Output column number when namest is used
* titlepage.xsl: Fix duplicate template bug
2001-07-08 Norman Walsh <nwalsh@users.sourceforge.net>
* qandaset.xsl: Improve QandA formatting; make question bold if defaultlabel=none (FR #419315)
* sections.xsl, xref.xsl: Support xref to bridgehead
2001-07-05 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl, param.xsl: Added format.variablelist.as.list parameter
2001-07-04 <uid48421@users.sourceforge.net>
* biblio.xsl, param.xsl, xref.xsl: Support an external bibliography collection
* docbook.xsl: Turn of indentation
* fo.xsl, param.xsl: Added dingbat.font.family
* qandaset.xsl: Bug #426166, fix duplicate id on qandaentry formatting
* qandaset.xsl, xref.xsl: Bug #429011, fix xref to qandset elements
* sections.xsl: Removed debugging messages; added prio for section title template
* titlepage.templates.xml, titlepage.xsl: Remove internal references to *.titlepage.recto.mode and *.titlepage.verso.mode
2001-06-22 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl, ebnf.xsl: Support EBNF
* docbook.xsl, xep.xsl: Fix XEP support for pdf bookmarks
* inline.xsl: Support linkend to glossentry on glossterm
* param.xsl, xep.xsl: Initial cut at bookmark and info support for RenderX's XEP--doesn't work yet
* synop.xsl: Support SBR
* xref.xsl: Support anchor
2001-06-21 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl, param.xsl, xref.xsl: Use common code to calculate step numbers; support xref to procedures and steps; added formal.procedures parameter
2001-06-20 Norman Walsh <nwalsh@users.sourceforge.net>
* refentry.xsl: Bug 434102: fix refentry inside of chapter and fix refsynopsisdiv formatting in both FO and HTML
* titlepage.xsl, xref.xsl: Use person.name.list to generate author lists; put IDs on authors and author groups if appropriate; support xref to authorgroup
2001-06-19 Norman Walsh <nwalsh@users.sourceforge.net>
* formal.xsl, param.xsl: Fix formatting of formal object titles.
2001-06-15 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl: Remove file:; why was I doing this?
2001-06-14 Norman Walsh <nwalsh@users.sourceforge.net>
* sections.xsl: Bug fix: section autolabelling wasn't working in division bodies
* titlepage.templates.xml: Changed text-alignment on centered titles to be 'center' rather than 'justify'
* xref.xsl: Added anchor template
2001-06-13 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl, param.xsl: Support Arbortext extensions--at the moment, just to turn off the url() stuff in external graphic references
* titlepage.xsl: Bug fix: make a single author in an authorgroup work correctly
2001-06-08 Norman Walsh <nwalsh@users.sourceforge.net>
* callout.xsl, inline.xsl, synop.xsl: Fixed some unparameterized references to specific font families
2001-06-04 Norman Walsh <nwalsh@users.sourceforge.net>
* block.xsl: Made blockquote indent more reasonable
* graphics.xsl: Omit the url() wrapper around external-graphic srcs for FOP and PT
2001-05-23 Norman Walsh <nwalsh@users.sourceforge.net>
* graphics.xsl: Fix dup. template bug with is.graphic.*
* titlepage.xsl: Add template for publisher
2001-05-21 Norman Walsh <nwalsh@users.sourceforge.net>
* callout.xsl, verbatim.xsl: Move calculation of linenumber.* parameters into the number.rtf.lines template
* titlepage.templates.xml: Reworked titlepage template processing to support use of more interesting
predicates.
Note: in previous versions, at most one title, subtitle, or titleabbrev
element would be processed for each title page. In the new design, if you
have multiple title, subtitle, or titleabbrev elements inside an info
wrapper (you shouldn't!), they will all be processed.
2001-05-18 Norman Walsh <nwalsh@users.sourceforge.net>
* sections.xsl: Fix subtitle bug
2001-05-12 Norman Walsh <nwalsh@users.sourceforge.net>
* sections.xsl: Calculate the heading level for bridgeheads
2001-05-04 Norman Walsh <nwalsh@users.sourceforge.net>
* docbook.xsl: Replace hardcoded values on fo:root with parameters
2001-05-03 Norman Walsh <nwalsh@users.sourceforge.net>
* biblio.xsl: Render author names correctly in bibliomixed mode
* graphics.xsl: Tweak available graphics formats
2001-05-03 Jirka Kosek <kosek@users.sourceforge.net>
* inline.xsl: Added support for class="xmlpi" and "emptytag".
Rendering of attributes is in sync with HTML stylesheet (monospace instead of normal).
2001-05-03 Norman Walsh <nwalsh@users.sourceforge.net>
* param.xsl, verbatim.xsl: Created verbatim and monospace.verbatim property sets
* table.xsl: Process head/body/foot in the right order
2001-04-26 Norman Walsh <nwalsh@users.sourceforge.net>
* lists.xsl: Improve procedure step/substep enumeration
2001-04-21 Norman Walsh <nwalsh@users.sourceforge.net>
* qandaset.xsl: My first crude attempts at support for qandaset
2001-04-20 Norman Walsh <nwalsh@users.sourceforge.net>
* autoidx.xsl: Remove variable references from key functions; use entities instead.
2001-04-19 Norman Walsh <nwalsh@users.sourceforge.net>
* inline.xsl: Add template for constant
2001-04-17 Norman Walsh <nwalsh@users.sourceforge.net>
* component.xsl, division.xsl: Add templates for partinfo, chapterinfo, and appendixinfo
* component.xsl, pagesetup.xsl: Use the new gentext scheme for component titles and running headers
* docbook.xsl: Print warning message when an unhandled tag is encountered
* docbook.xsl, param.xsl: Move label.from.part parameter into param.xsl; default it to 0 so that chapters and appendixes are numbered monotonically throughout a book by default. Moved param.xsl up in the include list, just for good measure
2001-04-16 Norman Walsh <nwalsh@users.sourceforge.net>
* glossary.xsl: Improve formatting of glossseealso
* table.xsl: Fix typo: used xsl:param where xsl:variable was required
2001-04-15 Norman Walsh <nwalsh@users.sourceforge.net>
* division.xsl: Use new toc/lot parameters
* docbook.xsl: Removed unused variable declaration
* formal.xsl: Fixed typo
* param.xsl: Added some new parameters
* toc.xsl: Support DocBook toc markup
2001-04-03 Norman Walsh <nwalsh@users.sourceforge.net>
* callout.xsl: Fix bug 412487, make XSL-generated callout marks honor callout mark parameters
* param.xsl: Documentation fixes
2001-04-02 Norman Walsh <nwalsh@users.sourceforge.net>
* .cvsignore, Makefile, admon.xsl, autoidx.xsl, autotoc.xsl, biblio.xsl, block.xsl, callout.xsl, component.xsl, division.xsl, docbook.xsl, fo.xsl, footnote.xsl, fop.xsl, formal.xsl, glossary.xsl, graphics.xsl, index.xsl, info.xsl, inline.xsl, keywords.xsl, lists.xsl, math.xsl, pagesetup.xsl, param.xsl, pi.xsl, qandaset.xsl, refentry.xsl, sections.xsl, synop.xsl, table.xsl, titlepage.templates.xml, titlepage.xsl, toc.xsl, verbatim.xsl, xref.xsl:
New file.
* Makefile: Use the cvstools version of saxon
|