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
|
2001-02-19 01:08 adicarlo
* msggen.pl.in (opensp_1_5_branch): use @PERL@ setting here, thanks
to Michael Wiedmann
2001-02-19 01:04 adicarlo
* debian/changelog (opensp_1_5_branch): prepare 1.5pre5-1
2001-02-19 01:03 adicarlo
* debian/rules (opensp_1_5_branch): do make clean, then make
maintainer clean
2001-02-10 03:28 adicarlo
* debian/changelog (opensp_1_5_branch): prepare 1.5pre5-1
2001-02-10 03:20 adicarlo
* configure.in (opensp_1_5_branch): version bumped to 1.5pre5
2001-02-09 18:22 adicarlo
* lib/Mutex.h (opensp_1_5_branch): #include <pthread.h> now put
outside of SP_NAMESPACE; patch from Robert Braddock
2001-02-09 18:18 adicarlo
* debian/rules (opensp_1_5_branch): make some rules depends on
'Makefile', and use that
2001-02-09 18:17 adicarlo
* debian/control (opensp_1_5_branch): libosp2 goes in libs
(override disparity); libosp-dev goes in devel (request change from
text, mail sent to override-change@debian.org)
2001-02-09 18:15 adicarlo
* NEWS, doc/nsgmls.htm, doc/sgmlsout.htm,
nsgmls/SgmlsEventHandler.cxx, nsgmls/SgmlsEventHandler.h,
nsgmls/nsgmls.cxx (opensp_1_5_branch): New -output options:
comment, omitted, tagomit and attromit; this shows comments and
implied elements and/or attributes. Patch from Robert Braddock.
2001-02-08 00:44 adicarlo
* include/SubstTable.h (opensp_1_5_branch): fix a c++ warning,
warning: nsigned int SubstTable::operator [](unsigned int) const'
was used before it was declared inline
2001-02-07 22:19 adicarlo
* configure.in (opensp_1_5_branch): mere cosmetic
2001-02-02 21:42 adicarlo
* debian/changelog (opensp_1_5_branch): clarify
2001-02-02 21:41 adicarlo
* debian/changelog (opensp_1_5_branch): re-burn this
2001-01-31 04:41 adicarlo
* NEWS (opensp_1_5_branch): document autoconf fix
2001-01-31 04:40 adicarlo
* debian/changelog (opensp_1_5_branch): prepare 1.5pre4-5
2001-01-31 04:39 adicarlo
* debian/rules (opensp_1_5_branch): handle DEB_BUILD_OPTIONS
2001-01-31 04:39 adicarlo
* debian/control (opensp_1_5_branch): update standards to 3.5.0
2001-01-31 04:36 adicarlo
* configure.in (opensp_1_5_branch): fix bug triggered on gcc 2.7.x
at least, fixing 'checking whether to declare set_new_handler
extern C'
2000-10-15 19:00 adicarlo
* NEWS (opensp_1_5_branch): oops, it would be 1.5pre5
2000-10-15 18:42 adicarlo
* NEWS (opensp_1_5_branch): reconstruct changes for a projected
1.5pre5 based on CVS logs
2000-10-15 18:10 adicarlo
* intl/explodename.c: file explodename.c was initially added on
branch opensp_1_5_branch.
2000-10-15 18:10 adicarlo
* intl/: ChangeLog, Makefile.in, bindtextdom.c, cat-compat.c,
dcgettext.c, dgettext.c, explodename.c, finddomain.c, gettext.c,
gettext.h, gettextP.h, hash-string.h, l10nflist.c, libgettext.h,
loadinfo.h, loadmsgcat.c, localealias.c, textdomain.c
(opensp_1_5_branch): rerun gettextize, gettting newer versions of
intl stuff; all of this is straight out of the gettext package w/o
modification
2000-10-15 18:10 adicarlo
* intl/l10nflist.c: file l10nflist.c was initially added on branch
opensp_1_5_branch.
2000-10-15 18:10 adicarlo
* intl/ChangeLog: file ChangeLog was initially added on branch
opensp_1_5_branch.
2000-10-15 18:10 adicarlo
* intl/loadinfo.h: file loadinfo.h was initially added on branch
opensp_1_5_branch.
2000-10-15 02:50 adicarlo
* debian/rules (opensp_1_5_branch): put doc/*.htm in opensp doc dir
(closes: Bug#68002)
2000-10-15 02:49 adicarlo
* debian/changelog (opensp_1_5_branch): 1.5pre4-4
2000-10-15 02:43 adicarlo
* configure.in (opensp_1_5_branch): be more careful about
po/Makefile.in, although we still seem to get some circular
situations
2000-10-15 02:41 adicarlo
* lib/parseDecl.cxx (opensp_1_5_branch): patch from Christopher C.
Chimelis to enable compilation on 64-bit platforms, Alpha in
particular
2000-06-26 05:00 murray
* BUILDING: This file documents the build process as decribed in
the jade-devel mailing list by Adam Di Carlo.
2000-05-20 04:40 adicarlo
* debian/: changelog, control (opensp_1_5_branch): we gotta
conflict with libosp1
2000-05-20 01:52 adicarlo
* debian/libosp2.README.Debian.in: file libosp2.README.Debian.in
was initially added on branch opensp_1_5_branch.
2000-05-20 01:52 adicarlo
* debian/libosp2.postinst: file libosp2.postinst was initially
added on branch opensp_1_5_branch.
2000-05-20 01:52 adicarlo
* debian/: changelog, control, libosp-dev.README,
libosp1.README.Debian.in, libosp1.postinst,
libosp2.README.Debian.in, libosp2.postinst, rules
(opensp_1_5_branch): major number on the shared library changed;
libosp1 is libosp2
2000-05-16 03:19 clasen
* msggen.pl.in, sp-generate.mak, doc/build.htm (opensp_1_5_branch):
Support localized builds on Win32.
2000-05-15 08:53 clasen
* lib/ParserApp.cxx (opensp_1_5_branch): Reinstate the -widref
option which was accidentally removed.
2000-05-08 23:18 adicarlo
* debian/: changelog, rules (opensp_1_5_branch): fix
aclocal/autoheader ordering bug
2000-05-08 22:27 adicarlo
* debian/changelog (opensp_1_5_branch): first cut for 1.5pre4-2
2000-05-08 03:37 adicarlo
* acconfig.h (opensp_1_5_branch): undo bad change I made before
2000-05-06 15:40 adicarlo
* debian/: changelog, control (opensp_1_5_branch): add
build-depends for next version
2000-05-06 00:20 adicarlo
* debian/: changelog, rules (opensp_1_5_branch): lintian and lib
dep change
2000-05-05 19:25 adicarlo
* debian/changelog (opensp_1_5_branch): document Makefile.am
changes
2000-05-05 19:10 adicarlo
* Makefile.am, doc/Makefile.am, generic/Makefile.am,
include/Makefile.am, lib/Makefile.am, nsgmls/Makefile.am,
pubtext/Makefile.am, sgmlnorm/Makefile.am, spam/Makefile.am,
spcat/Makefile.am, spent/Makefile.am, sx/Makefile.am,
unicode/Makefile.am (opensp_1_5_branch): 'maintainer-clean' is now
closer to CVS-level pristineness
2000-05-05 17:26 adicarlo
* spent/Makefile.am (opensp_1_5_branch): SpentMessages.msg should
not be in BUILT_SOURCES
2000-05-05 17:25 adicarlo
* debian/libosp1.postinst (opensp_1_5_branch): add newline at end
of file
2000-05-05 14:02 adicarlo
* debian/changelog (opensp_1_5_branch): more updates
2000-05-05 14:01 adicarlo
* debian/libosp-dev.README (opensp_1_5_branch): new file
2000-05-05 14:01 adicarlo
* debian/libosp-dev.README: file libosp-dev.README was initially
added on branch opensp_1_5_branch.
2000-05-05 12:47 adicarlo
* debian/changelog (opensp_1_5_branch): uh, change the numbering a
bit
2000-05-05 11:54 adicarlo
* debian/changelog (opensp_1_5_branch): recent updates documented
2000-05-05 11:53 adicarlo
* debian/copyright.Debian (opensp_1_5_branch): update download/cvs
locations
2000-05-05 11:52 adicarlo
* README (opensp_1_5_branch): point to project home page, and bug
reporting URL
2000-05-05 11:42 adicarlo
* debian/: changelog, rules (opensp_1_5_branch): finalize for
1.5-0.pre4-1, we hope
2000-05-05 10:27 adicarlo
* acconfig.h (opensp_1_5_branch): add HAVE_BOOL
2000-05-04 11:50 adicarlo
* debian/changelog (opensp_1_5_branch): new version started
2000-04-28 03:15 clasen
* lib/PosixStorage.cxx (opensp_1_5_branch): Fix a typo which caused
problems with filenames on Win32.
2000-03-30 01:57 pnil
* include/config.h.old.in: (SP_PACKAGE, SP_VERSION): Port changes
from 1.5 branch.
2000-03-30 01:55 pnil
* include/config.h.old.in (opensp_1_5_branch): (SP_PACKAGE,
SP_VERSION): Use @PACKAGE@ and @VERSION@ instead of the SP_
prefixed ones.
2000-03-29 13:49 clasen
* spec.in (opensp_1_5_branch): Remove braces since rpm apparently
doesn't support brace expansion.
2000-03-29 12:00 clasen
* Makefile.am, NEWS, configure.in, include/SubstTable.h,
lib/CmdLineApp.cxx, lib/SubstTable.cxx, lib/Win32CodingSystem.cxx,
lib/WinApp.cxx, lib/lib.dsp, po/de.po (opensp_1_5_branch): More
Win32 fixes.
2000-03-28 12:21 clasen
* spec.in (opensp_1_5_branch): Include message catalogs.
2000-03-27 12:33 clasen
* lib/xentmgr_inst.m4, po/Makefile.in.in (opensp_1_5_branch): More
Win32 fixes.
2000-03-25 17:15 clasen
* lib/CmdLineApp.cxx (opensp_1_5_branch): One more Win32 fix.
2000-03-25 16:31 clasen
* lib/: ArcEngine.cxx, Win32CodingSystem.cxx, entmgr_inst.m4,
xentmgr_inst.m4 (opensp_1_5_branch): More Win32 fixes and a fix for
a segfault caused by the recent architecture engine changes.
2000-03-23 17:37 clasen
* lib/ArcEngine.cxx (opensp_1_5_branch): Fix a segfault.
2000-03-22 09:36 clasen
* lib/: lib.dsp, splibpch.h, xentmgr_inst.m4 (opensp_1_5_branch):
More Win32 fixes.
2000-03-21 05:04 pnil
* msggen.pl.in (opensp_1_5_branch): Added Peter Nilsson as
copyright holder.
2000-03-21 04:25 pnil
* msggen.pl.in (opensp_1_5_branch): (read_po_translations,
po_flush): New functions.
2000-03-18 16:08 clasen
* Makefile.am, NEWS, configure.in, spec.in, include/MessageArg.h,
include/SubstTable.h, lib/ArcEngine.cxx, lib/entmgr_inst.m4,
lib/lib.dsp (opensp_1_5_branch): More Win32 build fixes.
2000-03-16 15:47 clasen
* NEWS, configure.in, lib/Group.cxx, lib/Group.h,
lib/ParserMessages.msg, lib/lib.dsp, lib/parseParam.cxx, po/de.po,
po/sv.po (opensp_1_5_branch): Annex K: Parse #ALL/#IMPLICIT content
tokens and issue a proper error message.
2000-03-16 11:49 clasen
* spec.in, lib/CmdLineApp.cxx, lib/PosixStorage.cxx,
lib/Win32CodingSystem.cxx, lib/WinApp.cxx, lib/lib.dsp,
nsgmls/nsgmls.dsp, sgmlnorm/sgmlnorm.dsp, spam/spam.dsp,
spcat/spcat.dsp, spent/spent.dsp, sx/sx.dsp (opensp_1_5_branch):
Incorporate spec changes proposed by Karl Eichwalder; change
SP_NAMESPACE to "OpenSP" on Win32; remove silent assumption
sizeof(Char) == sizeof(wchar_t) in Win32-only files.
2000-03-15 11:24 clasen
* po/de.po (opensp_1_5_branch): More german translations.
2000-03-14 18:17 clasen
* include/Syntax.h, lib/Parser.h, lib/ParserMessages.msg,
lib/Syntax.cxx, lib/parseDecl.cxx, lib/parseSd.cxx
(opensp_1_5_branch): Check that added function names are valid in
the concrete syntax; warn about notation attributes which are
CONREF; use the proper syntax for delimiters in bracketed text
entities.
2000-03-14 07:26 clasen
* lib/parseParam.cxx (opensp_1_5_branch): Fix a typo.
2000-03-14 07:22 clasen
* lib/Parser.h, lib/ParserMessages.msg, lib/ParserState.cxx,
lib/ParserState.h, lib/parseInstance.cxx, lib/parseParam.cxx,
po/de.po, po/sv.po (opensp_1_5_branch): Correctly recognize
parameter entities with an active document type name; disallow name
group in parameter entity references in document type
specifications in tags.
2000-03-13 10:59 clasen
* lib/parseDecl.cxx (opensp_1_5_branch): A fix for the (nonworking)
#IMPLIED doctypes.
2000-03-09 13:30 clasen
* NEWS, doc/xml.htm, include/Attribute.h, lib/Attribute.cxx,
lib/ParserMessages.msg, lib/ParserState.cxx,
lib/parseAttribute.cxx, lib/parseDecl.cxx (opensp_1_5_branch):
Annex K support improvements: common data attributes can now be
specified in entity declarations.
2000-03-08 13:25 clasen
* spec.in (opensp_1_5_branch): Split the rpm into OpenSP, OpenSP
and OpenSP-devel packages.
2000-03-08 11:28 clasen
* spec.in: file spec.in was initially added on branch
opensp_1_5_branch.
2000-03-08 11:28 clasen
* .cvsignore, Makefile.am, configure.in, spec.in, po/de.po,
po/sv.po (opensp_1_5_branch): First cut at RPM packaging support.
It should be able to generate a .rpm package simply by applying rpm
-tb to the tarball.
2000-03-07 07:25 clasen
* NEWS, configure.in, doc/Makefile.am, generic/Makefile.am,
include/Makefile.am, intl/Makefile.in, lib/Makefile.am,
lib/lib.dsp, lib/memcmp.c, lib/memmove.c, lib/strerror.c,
nsgmls/Makefile.am, po/Makefile.in.in, pubtext/Makefile.am,
sgmlnorm/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
spent/Makefile.am, sx/Makefile.am (opensp_1_5_branch): Minor
improvements.
2000-03-07 07:23 clasen
* autoinit.sh: file autoinit.sh was initially added on branch
opensp_1_5_branch.
2000-03-07 07:23 clasen
* autoinit.sh (opensp_1_5_branch): A little shell script to ease
working from CVS.
2000-03-07 07:03 clasen
* Makefile.am, all/Makefile.am, unicode/.cvsignore,
unicode/Makefile.am (opensp_1_5_branch): Add all and unicode
directories to dist; install unicode stuff in pkgdatadir.
2000-03-07 07:03 clasen
* unicode/.cvsignore: file .cvsignore was initially added on branch
opensp_1_5_branch.
2000-03-07 07:03 clasen
* unicode/Makefile.am: file Makefile.am was initially added on
branch opensp_1_5_branch.
2000-03-07 05:21 clasen
* NEWS: Add a forgotten headline.
2000-03-07 05:15 clasen
* lib/parseDecl.cxx: Merge the post-1.4 fix.
2000-03-07 05:13 clasen
* lib/lib.dsp: Change dll name to be in sync with $VERSION.
2000-03-07 05:12 clasen
* lib/Makefile.am: Bump so version, since the SubstTable and Char
changes are interface changes.
2000-03-07 05:10 clasen
* NEWS, doc/archform.htm, lib/ArcEngine.cxx,
lib/ArcEngineMessages.msg, lib/ArcProcessor.h: Implement #MAPTOKEN,
fix architectural content handling and remove some cruft.
2000-03-06 11:24 clasen
* lib/: ArcEngine.cxx, ArcEngineMessages.msg, ArcProcessor.h:
Stricter error-catching in the architecture engine; parse
#maptoken.
2000-03-03 05:44 clasen
* lib/ParserMessages.msg, msggen.pl.in: Add standard identification
to relevant clauses.
2000-03-01 14:57 clasen
* lib/SubstTable.cxx: Fix a coredump.
2000-03-01 13:59 clasen
* lib/XMLCodingSystem.cxx: Fix some byte order bugs.
2000-03-01 09:19 clasen
* lib/: Fixed4CodingSystem.cxx, XMLCodingSystem.cxx: Fix
compilation failures.
2000-02-29 13:08 clasen
* include/CodingSystem.h, include/Fixed2CodingSystem.h,
include/Fixed4CodingSystem.h, lib/Fixed2CodingSystem.cxx,
lib/Fixed4CodingSystem.cxx, lib/UTF16CodingSystem.cxx,
lib/XMLCodingSystem.cxx: Support autodetection of 4-byte coding
systems in XML. This needs testing.
2000-02-28 12:36 clasen
* pubtext/xml.dcl: Use the full UTF-16 char range in the XML
declaration.
2000-02-28 12:21 clasen
* doc/: features.htm, xml.htm: Updates for 32bit chars.
2000-02-28 11:25 clasen
* NEWS, doc/charset.htm, include/CodingSystem.h,
include/UTF16CodingSystem.h, include/UnicodeCodingSystem.h,
lib/CodingSystemKit.cxx, lib/Fixed2CodingSystem.cxx,
lib/UTF16CodingSystem.cxx, lib/UnicodeCodingSystem.cxx,
lib/XMLCodingSystem.cxx: Adapt the coding systems to the new
character range. fixed-2 now handles unencodable chars, unicode and
xml use a utf-16 subdecoder/subencoder to handle utf-16.
2000-02-28 04:53 pnil
* include/XcharMap.cxx: (XcharMap::setRange): Tighten loop. Also
fixes a bug where == should be >=.
2000-02-27 17:20 pnil
* po/sv.po: More translations.
2000-02-27 17:12 pnil
* include/: CharMap.cxx, CharMap.h: Cleanups.
2000-02-26 16:52 clasen
* generic/SGMLApplication.h, include/constant.h, include/types.h:
Switch to 32bit Chars. charMax stays at 0x10ffff.
2000-02-25 11:55 clasen
* include/CharsetInfo.h, include/RangeMap.cxx, lib/CharsetInfo.cxx,
lib/SOEntityCatalog.cxx, lib/Syntax.cxx, lib/UnivCharsetDesc.cxx:
Replace uses of {Wide,Syntax,Univ,}Char(-1) by the appropriate
constants.
2000-02-25 10:27 clasen
* include/: XcharMap.cxx, XcharMap.h: Fix the size of the flat
array to 2^8/2^16 independent of charMax. For SP_MULTI_BYTE, add a
CharMap to XcharMap to store the values for higher planes.
2000-02-25 10:25 clasen
* include/: CharMap.cxx, CharMap.h: Change levels to 5,8,4,4.
Rename block to plane.
2000-02-25 08:19 clasen
* include/Syntax.h, lib/Syntax.cxx: Delay instantiation of
Syntax::markupScanTable_ to save 64k with most SGML declarations.
2000-02-24 14:00 clasen
* include/: CharMap.cxx, CharMap.h: Add another level of
indirection to CharMap in order to accomodate 20bits. This needs
severe testing.
2000-02-24 13:07 clasen
* include/Fixed4CodingSystem.h, include/Makefile.am,
include/UTF16CodingSystem.h, lib/CodingSystemKit.cxx,
lib/Fixed4CodingSystem.cxx, lib/Makefile.am,
lib/UTF16CodingSystem.cxx: First cut at utf16 and fixed4 encodings.
Known to compile, but untested.
2000-02-24 12:45 clasen
* lib/SubstTable.cxx: Add forgotten file.
2000-02-23 19:34 clasen
* lib/Partition.cxx: Remove forgotten debugging printf.
2000-02-23 17:42 clasen
* include/SubstTable.h, lib/Partition.cxx: Change SubstTable
implementation to a sparse array with binary search. This should
work with 32bit Chars.
2000-02-21 15:12 clasen
* include/Makefile.am: Remove SubstTable.cxx.
2000-02-21 15:10 clasen
* lib/: ParserState.cxx, SOEntityCatalog.cxx, parseDecl.cxx,
parseSd.cxx: Replace loops over strings by calls of
SubstTable::subst(StringC &).
2000-02-21 14:46 clasen
* include/ArcEngine.h, include/EntityCatalog.h,
include/SubstTable.cxx, include/SubstTable.h, include/Syntax.h,
include/Text.h, lib/ArcEngine.cxx, lib/Makefile.am,
lib/ParserState.cxx, lib/ParserState.h, lib/Partition.cxx,
lib/Partition.h, lib/SOEntityCatalog.cxx, lib/SubstTable.cxx,
lib/Syntax.cxx, lib/Text.cxx, lib/entmgr_inst.m4,
lib/parseDecl.cxx, lib/parseSd.cxx, spam/CopyEventHandler.h,
sx/XmlOutputEventHandler.h: Detemplatize SubstTable. We never used
anything but SubstTable<Char>.
2000-02-08 18:22 debian
* debian/rules (opensp_1_4_branch): force HAVE_BOOL, working around
some wierd autoconf problem
2000-02-08 12:02 clasen
* NEWS, configure.in (opensp_1_4_branch): Do the forgotten commit
for version number 1.4.
2000-02-08 11:59 clasen
* .cvsignore, Makefile.am, NEWS, SP.dsw, acconfig.h, acinclude.m4,
build-win32.bat, configure.in, msggen.pl.in, sp-generate.mak,
debian/README.Debian.in, debian/changelog, debian/control,
debian/copyright.Debian, debian/libosp1.README.Debian.in,
debian/libosp1.postinst, debian/opensp.doc-base, debian/rules,
doc/.cvsignore, doc/autoconf.htm, doc/build.htm, doc/charset.htm,
doc/ideas.htm, doc/index.htm, doc/new.htm, generic/.cvsignore,
include/.cvsignore, include/CharsetRegistry.h, include/Dtd.h,
include/ExternalId.h, include/MessageArg.h, include/SubstTable.cxx,
include/SubstTable.h, include/config.h.old,
include/config.h.old.in, intl/.cvsignore, lib/.cvsignore,
lib/Attribute.cxx, lib/CharsetRegistry.cxx, lib/CmdLineApp.cxx,
lib/CodingSystemKit.cxx, lib/Makefile.am, lib/MessageArg.cxx,
lib/MessageTable.cxx, lib/ParserState.cxx, lib/ParserState.h,
lib/StringVectorMessageArg.cxx, lib/StringVectorMessageArg.h,
lib/koi8-r.h, lib/lib.dsp, lib/parseInstance.cxx, lib/splibpch.h,
nsgmls/.cvsignore, nsgmls/Makefile.am, nsgmls/nsgmls.dsp,
po/.cvsignore, po/Makefile.in.in, po/de.po, pubtext/.cvsignore,
pubtext/Makefile.am, pubtext/opensp-implied.dcl,
sgmlnorm/.cvsignore, sgmlnorm/Makefile.am, sgmlnorm/sgmlnorm.dsp,
spam/.cvsignore, spam/Makefile.am, spam/spam.dsp, spcat/.cvsignore,
spcat/Makefile.am, spcat/spcat.dsp, spcat/spcat_inst.m4,
spent/.cvsignore, spent/Makefile.am, spent/spent.dsp,
sx/.cvsignore, sx/Makefile.am, sx/sx.dsp: Merge the
opensp_1_4_branch up to tag opensp_1_4_merge.
2000-02-07 12:58 debian
* msggen.pl.in (opensp_1_4_branch): inhibit the annoying 'Name
"main::package" used only once' warnings
2000-02-07 12:58 debian
* debian/rules (opensp_1_4_branch): fix the ChangeLog thing again
2000-02-06 13:55 debian
* debian/: changelog, rules (opensp_1_4_branch): get changelog from
upstream src if it's not there
2000-02-06 12:17 debian
* debian/: changelog, rules (opensp_1_4_branch): minor mod for
1.4-1 unstable release
2000-01-31 10:36 clasen
* Makefile.am (opensp_1_4_branch): Make dist-zip depend on distdir,
not on dist-dir.
2000-01-29 17:23 clasen
* lib/lib.dsp (opensp_1_4_branch): Add koi8-r.h to lib.dsp.
2000-01-23 16:31 pn
* NEWS, doc/autoconf.htm (opensp_1_4_branch): Minor fixes.
2000-01-21 17:02 clasen
* doc/autoconf.htm: file autoconf.htm was initially added on branch
opensp_1_4_branch.
2000-01-21 17:02 clasen
* doc/: autoconf.htm, build.htm, index.htm (opensp_1_4_branch):
Update documenation for 1.4.
2000-01-21 06:16 pn
* intl/.cvsignore (opensp_1_4_branch): Added po2tbl.sed.
2000-01-20 18:39 pn
* .cvsignore, doc/.cvsignore, generic/.cvsignore,
include/.cvsignore, intl/.cvsignore, lib/.cvsignore,
nsgmls/.cvsignore, po/.cvsignore, pubtext/.cvsignore,
sgmlnorm/.cvsignore, spam/.cvsignore, spcat/.cvsignore,
spent/.cvsignore, sx/.cvsignore: file .cvsignore was initially
added on branch opensp_1_4_branch.
2000-01-20 18:39 pn
* .cvsignore, doc/.cvsignore, generic/.cvsignore,
include/.cvsignore, intl/.cvsignore, lib/.cvsignore,
nsgmls/.cvsignore, po/.cvsignore, pubtext/.cvsignore,
sgmlnorm/.cvsignore, spam/.cvsignore, spcat/.cvsignore,
spent/.cvsignore, sx/.cvsignore (opensp_1_4_branch): New file.
2000-01-20 16:19 clasen
* doc/charset.htm (opensp_1_4_branch): Mention koi8-r encoding.
2000-01-20 16:16 clasen
* NEWS (opensp_1_4_branch): Document koi8-r support.
2000-01-20 16:15 clasen
* lib/koi8-r.h: file koi8-r.h was initially added on branch
opensp_1_4_branch.
2000-01-20 16:15 clasen
* include/CharsetRegistry.h, lib/CharsetRegistry.cxx,
lib/CodingSystemKit.cxx, lib/Makefile.am, lib/koi8-r.h
(opensp_1_4_branch): Apply patch for koi8 support from
Growler@tula.net (Alexey V. Naidyonov).
2000-01-20 13:18 clasen
* Makefile.am (opensp_1_4_branch): Don't rely on the
automake-generated dist-zip rule, provide our own which adds the -l
option to store text files with crlf line ends.
2000-01-15 05:10 pn
* configure.in (opensp_1_4_branch): Define all conditional
preprocessor symbols to 1.
2000-01-14 16:36 pn
* include/config.h.old.in (opensp_1_4_branch): SCHEME_BUILTINS:
Remove since unused in OpenSP.
2000-01-14 13:38 clasen
* include/config.h.old.in (opensp_1_4_branch): Fix PATH_SEPARATORS
2000-01-13 14:56 clasen
* configure.in (opensp_1_4_branch): More LANG_CPLUSPLUS fixes.
2000-01-13 14:10 clasen
* configure.in (opensp_1_4_branch): Use AC_LANG_CPLUSPLUS
throughout, don't switch back and forth; don't check for const and
inline; add comments to all AC_DEFINEs
2000-01-08 09:01 clasen
* lib/Makefile.am, nsgmls/Makefile.am, sgmlnorm/Makefile.am,
spam/Makefile.am, spcat/Makefile.am, spent/Makefile.am,
sx/Makefile.am: Fix building with builddir!=srcdir.
2000-01-07 08:13 pn
* configure.in (opensp_1_4_branch): AM_GNU_GETTEXT: Reenable.
2000-01-06 19:58 clasen
* include/ExternalId.h (opensp_1_4_branch): Add PublicId::Type
PublicId::type(), needed for the fpiabs module of the SGML property
set.
2000-01-06 18:37 clasen
* include/Dtd.h (opensp_1_4_branch): Added a way to iterate over
the rankstems, needed for implementing the rankabs module of the
SGML property set.
2000-01-05 04:57 clasen
* Makefile.am (opensp_1_4_branch): make dist updates the ChangeLog
now.
2000-01-03 21:55 debian
* debian/rules (opensp_1_4_branch): fix problems with cvs-build
target
2000-01-03 19:07 debian
* lib/Makefile.am, nsgmls/Makefile.am, sgmlnorm/Makefile.am,
spam/Makefile.am, spcat/Makefile.am, spent/Makefile.am,
sx/Makefile.am (opensp_1_4_branch): fix to check whether msggen.pl
exists, fixes the maintainer-clean rule
2000-01-03 19:06 debian
* doc/ideas.htm (opensp_1_4_branch): DTDDECL not a todo item
anymore
2000-01-02 17:04 clasen
* configure.in (opensp_1_4_branch): Fix tests of C++ features to
use AC_LANG_CPLUSPLUS.
1999-12-30 16:54 debian
* debian/: opensp.postinst, opensp.prerm, rules
(opensp_1_4_branch): remove opensp postinst and prerm, not needed
1999-12-30 14:22 debian
* debian/rules (opensp_1_4_branch): correct dh_undocumented
invokation
1999-12-30 12:26 clasen
* Makefile.am, doc/index.htm, doc/new.htm (opensp_1_4_branch):
Install some top-level doc files and link NEWS from index.htm.
1999-12-30 08:49 clasen
* lib/Makefile.am (opensp_1_4_branch): Use -version-info instead of
--version-info.
1999-12-29 23:43 debian
* debian/opensp.doc-base (opensp_1_4_branch): fix doc-base file
1999-12-29 21:19 debian
* debian/: changelog, rules (opensp_1_4_branch): man pages link to
undocumented
1999-12-29 21:18 debian
* debian/README.Debian (opensp_1_4_branch): replaced with
README.Debian.in
1999-12-29 19:37 debian
* debian/README.Debian.in: file README.Debian.in was initially
added on branch opensp_1_4_branch.
1999-12-29 19:37 debian
* debian/libosp1.README.Debian.in: file libosp1.README.Debian.in
was initially added on branch opensp_1_4_branch.
1999-12-29 19:37 debian
* debian/libosp1.postinst: file libosp1.postinst was initially
added on branch opensp_1_4_branch.
1999-12-29 19:37 debian
* debian/: README.Debian.in, changelog, control,
libosp1.README.Debian.in, libosp1.postinst, opensp.postinst,
opensp.prerm, rules (opensp_1_4_branch): get everything ship-shape
for Debian builds; tested
1999-12-27 10:33 clasen
* lib/lib.dsp (opensp_1_4_branch): Remove
StringVectorMessageArg.{h,cxx}.
1999-12-27 10:22 clasen
* include/MessageArg.h, lib/Attribute.cxx, lib/Makefile.am,
lib/MessageArg.cxx, lib/StringVectorMessageArg.cxx,
lib/StringVectorMessageArg.h, lib/parseInstance.cxx, lib/splibpch.h
(opensp_1_4_branch): Integrate StringVectorMessageArg in
Message.h/Message.cxx.
1999-12-27 09:19 clasen
* pubtext/Makefile.am (opensp_1_4_branch): Add opensp-implied.dcl
to the distribution.
1999-12-27 09:12 clasen
* configure.in (opensp_1_4_branch): Check for ranlib.
1999-12-24 15:48 clasen
* spcat/spcat_inst.m4 (opensp_1_4_branch): Fix an include.
1999-12-23 15:41 clasen
* NEWS, configure.in (opensp_1_4_branch): Bump version number to
1.4-pre3.
1999-12-23 01:30 debian
* debian/copyright.Debian (opensp_1_4_branch): new file
1999-12-23 01:30 debian
* debian/copyright.Debian: file copyright.Debian was initially
added on branch opensp_1_4_branch.
1999-12-22 15:09 clasen
* msggen.pl.in (opensp_1_4_branch): replace "config.h" by "splib.h"
in generated .cxx file.
1999-12-22 15:01 clasen
* SP.dsw, include/config.h.old.in, lib/CmdLineApp.cxx, po/de.po,
spcat/spcat.dsp (opensp_1_4_branch): More Win32 build fixes.
1999-12-22 14:47 clasen
* acinclude.m4, configure.in (opensp_1_4_branch): Add test for
typename.
1999-12-22 14:42 clasen
* acconfig.h (opensp_1_4_branch): Move definition of
SP_HAVE_TYPENAME before first use.
1999-12-22 13:44 debian
* pubtext/opensp-implied.dcl: file opensp-implied.dcl was initially
added on branch opensp_1_4_branch.
1999-12-22 13:44 debian
* pubtext/opensp-implied.dcl (opensp_1_4_branch): new file
1999-12-22 03:26 debian
* debian/README.Debian: file README.Debian was initially added on
branch opensp_1_4_branch.
1999-12-22 03:26 debian
* debian/control: file control was initially added on branch
opensp_1_4_branch.
1999-12-22 03:26 debian
* debian/opensp.doc-base: file opensp.doc-base was initially added
on branch opensp_1_4_branch.
1999-12-22 03:26 debian
* debian/: README.Debian, changelog, control, opensp.doc-base,
opensp.postinst, opensp.prerm, rules (opensp_1_4_branch): add
debian files
1999-12-22 03:26 debian
* debian/opensp.postinst: file opensp.postinst was initially added
on branch opensp_1_4_branch.
1999-12-22 03:26 debian
* debian/changelog: file changelog was initially added on branch
opensp_1_4_branch.
1999-12-22 03:26 debian
* debian/opensp.prerm: file opensp.prerm was initially added on
branch opensp_1_4_branch.
1999-12-22 03:26 debian
* debian/rules: file rules was initially added on branch
opensp_1_4_branch.
1999-12-22 02:56 debian
* configure.in (opensp_1_4_branch): check for locale.h header,
needed in intl/
1999-12-21 17:32 pn
* include/config.h.old.in: file config.h.old.in was initially added
on branch opensp_1_4_branch.
1999-12-21 17:32 pn
* include/: config.h.old, config.h.old.in (opensp_1_4_branch):
Renamed config.h.old -> config.h.old.in.
1999-12-21 17:30 pn
* configure.in, include/config.h.old (opensp_1_4_branch): Generate
include/config.h.old by autoconf.
1999-12-21 15:53 clasen
* configure.in, lib/CmdLineApp.cxx, po/Makefile.in.in
(opensp_1_4_branch): Introduce new config variable
SP_MESSAGE_DOMAIN and use it instead of SP_VERSION for the message
domain in CmdLineApp and po/.
1999-12-21 14:33 clasen
* acconfig.h, acinclude.m4, configure.in, include/SubstTable.cxx,
include/SubstTable.h, include/config.h.old, lib/CmdLineApp.cxx,
lib/MessageTable.cxx, lib/ParserState.cxx, lib/ParserState.h
(opensp_1_4_branch): Change the message domain back to a hardcoded
"sp", add autoconf checks for mutable and use it in cases where
James left a FIXME recommending it.
1999-12-21 13:29 clasen
* NEWS (opensp_1_4_branch): Update version number in NEWS (to
make make distcheck happy).
1999-12-21 12:32 clasen
* include/config.h.old (opensp_1_4_branch): Change version number
to be in sync with configure.in.
1999-12-21 12:26 clasen
* lib/lib.dsp (opensp_1_4_branch): Add forgotten entry for
EntityAppMessages.rc.
1999-12-21 12:21 clasen
* SP.dsw, msggen.pl.in, sp-generate.mak, lib/lib.dsp,
sgmlnorm/sgmlnorm.dsp, spcat/spcat.dsp, spent/spent.dsp
(opensp_1_4_branch): Incorporate more win32 build fixes proposed by
Kendall Clark.
1999-12-16 18:11 pn
* Makefile.am, msggen.pl.in: Merge with 1.4 branch.
1999-12-16 18:08 pn
* msggen.pl.in (opensp_1_4_branch): Correct generated .po file
header.
1999-12-16 18:07 pn
* Makefile.am (opensp_1_4_branch): EXTRA_DIST: Added msggen.pl.
1999-12-16 17:11 pn
* lib/lib.dsp, lib/lib.rc, spcat/spcat.dsp, SP.dsw,
include/Attribute.h, include/Message.h, include/Options.cxx,
lib/app_inst.m4, lib/assert.cxx: MSVC (and other) small fixes.
1999-12-16 17:05 pn
* SP.dsw, include/Attribute.h, include/Message.h,
include/Options.cxx, lib/app_inst.m4, lib/assert.cxx, lib/lib.dsp,
lib/lib.rc, spcat/spcat.dsp (opensp_1_4_branch): MSVC (and some
other) small fixes.
1999-12-15 02:23 clasen
* lib/lib.dsp (opensp_1_4_branch): Remove references to VERSION and
version.h.
1999-12-15 01:48 clasen
* sp-generate.mak (opensp_1_4_branch): Create msggen.pl from
msggen.pl.in.
1999-12-15 01:45 clasen
* lib/lib.dsp, nsgmls/nsgmls.dsp, sgmlnorm/sgmlnorm.dsp,
spam/spam.dsp, spcat/spcat.dsp, spent/spent.dsp, sx/sx.dsp
(opensp_1_4_branch): Correct msggen calls, try to include all new
.msg files.
1999-12-15 01:32 clasen
* nsgmls/nsgmls.dsp, spam/spam.dsp, sx/sx.dsp (opensp_1_4_branch):
Correct more references to instmac.pl.
1999-12-14 16:21 clasen
* lib/: app_inst.m4, lib.dsp (opensp_1_4_branch): Win fixes.
1999-12-14 15:15 clasen
* include/config.h.old, lib/CmdLineApp.cxx (opensp_1_4_branch):
Improve fix for SP_T problem.
1999-12-14 14:09 clasen
* lib/app_inst.m4 (opensp_1_4_branch): Add some instantiations.
1999-12-14 13:57 clasen
* include/config.h.old, lib/CmdLineApp.cxx (opensp_1_4_branch):
Remove SP_T on SP_VERSION and SP_PACKAGE, since it works only on
literal strings. This means that the autoconf build won't work on
wide systems, but that is no problem, since wide systems are win
only.
1999-12-14 11:19 clasen
* NEWS, sp-generate.mak, include/config.h.old, lib/CmdLineApp.cxx
(opensp_1_4_branch): Fixes for win build.
1999-12-13 17:41 clasen
* build-win32.bat (opensp_1_4_branch): Remove references to jade.
Untested.
1999-12-13 02:54 pn
* po/sv.po: Merge from 1.4 branch.
1999-12-13 02:51 pn
* po/sv.po (opensp_1_4_branch): More translations.
1999-12-12 04:18 clasen
* configure.in (opensp_1_4_branch): Update version number to
1.4-pre2
1999-12-12 04:14 clasen
* lib/Makefile.am (opensp_1_4_branch): Change library version to
1.0.0.
1999-12-12 03:43 clasen
* configure.in: Change version to 1.5-devel
1999-12-11 16:34 clasen
* configure.in, lib/Group.cxx, lib/Param.cxx,
lib/ParserMessages.msg, lib/TokenMessageArg.cxx, lib/parseSd.cxx,
po/de.po: Remove delimEnd message, change version number to
1.4-pre1.
1999-12-10 19:41 pn
* po/sv.po: Many new translations.
1999-12-10 10:38 pn
* lib/CmdLineApp.cxx: (cmdLineApp::usage): Create output stream
with default coding system.
1999-12-09 18:32 clasen
* doc/: archform.htm, build.htm, catalog.htm, charset.htm,
features.htm, generic.htm, ideas.htm, index.htm, new.htm,
nsgmls.htm, sgmldecl.htm, sgmlnorm.htm, sgmlsout.htm, spam.htm,
spcat.htm, spent.htm, sx.htm, sysdecl.htm, sysid.htm, xml.htm:
Updated docs for long options, removed james' mail address
throughout.
1999-12-09 13:45 clasen
* NEWS: Mention --help.
1999-12-09 13:39 clasen
* include/CmdLineApp.h, lib/CmdLineApp.cxx,
lib/CmdLineAppMessages.msg, nsgmls/NsgmlsMessages.msg,
nsgmls/nsgmls.cxx, po/de.po, sgmlnorm/SgmlnormMessages.msg,
sgmlnorm/sgmlnorm.cxx, spam/SpamMessages.msg, spam/spam.cxx,
spcat/SpcatMessages.msg, spcat/spcat.cxx, spent/SpentMessages.msg,
spent/spent.cxx, sx/SxMessages.msg, sx/sx.cxx: Add info lines to
the usage messages, extracted from the html docs. Change the
CmdLineApp interface once more: info lines now have one argument,
the program name.
1999-12-09 10:58 clasen
* intl/: Makefile.in, VERSION: Add the VERSION file, so we know
which version of GNU gettext we use.
1999-12-09 06:25 pn
* lib/CmdLineAppMessages.msg: (bHelp, eHelp): Clarified
documentation.
1999-12-09 03:54 pn
* NEWS: Update.
1999-12-08 16:25 pn
* po/Makefile.in.in: DISTFILES: Remove non-existent ChangeLog file.
1999-12-08 16:24 pn
* lib/Makefile.am: Typo fix.
1999-12-08 16:23 pn
* intl/Makefile.in: Deps on non-existent files removed.
check-install target added.
1999-12-08 02:45 clasen
* lib/Makefile.am, nsgmls/Makefile.am, sx/Makefile.am: Remove
unnecessary dependencies.
1999-12-07 19:56 pn
* lib/CmdLineApp.cxx: CmdLineApp::usage(): Clean up. Avoid using
messages in some places.
1999-12-07 19:55 pn
* configure.in: AC_OUTPUT: Generate msggen.pl.
1999-12-07 19:54 pn
* Makefile.am: BUILT_SOURCES: Add msggen.pl (remove from
EXTRA_DIST)
1999-12-07 19:53 pn
* msggen.pl, msggen.pl.in: Generate msggen.pl from msggen.pl.in.
Add header to generated .po file.
1999-12-07 08:19 pn
* include/CmdLineApp.h, lib/CmdLineApp.cxx,
lib/CmdLineAppMessages.msg: CmdLineApp::registerOption(): Added
back the old form registering an undocumented option.
1999-12-07 03:56 pn
* po/sv.po: New translations added.
1999-12-07 03:53 pn
* lib/CmdLineAppMessages.msg: tryHelpOptionFor INfo added.
1999-12-07 03:50 pn
* include/CmdLineApp.h, lib/CmdLineApp.cxx: Help message lokks more
like GNU tools. --help prints help message on stdout and exits
successfully. Help message lokks more like GNU tools. --help
prints help message on stdout and exits successfully.
1999-12-07 03:35 clasen
* lib/CmdLineApp.cxx: Make sure arg names in usage() get
translated.
1999-12-06 11:09 clasen
* po/de.po: More german translations.
1999-12-06 10:54 clasen
* include/CmdLineApp.h, lib/CmdLineApp.cxx,
lib/CmdLineAppMessages.msg, lib/EntityApp.cxx,
lib/EntityAppMessages.msg, lib/ParserApp.cxx,
lib/ParserAppMessages.msg, sgmlnorm/sgmlnorm.cxx, sx/sx.cxx: Add a
way to add information before the options list in usage() output,
some options got shorter names, resolved option name conficts, some
doc rewording.
1999-12-06 09:28 clasen
* acinclude.m4, configure.in, include/CmdLineApp.h,
lib/CmdLineApp.cxx, lib/EntityApp.cxx, spam/spam.cxx: Fix bug in
redefining cmdline options.
1999-12-05 17:51 clasen
* lib/EntityAppMessages.msg, sgmlnorm/SgmlnormMessages.msg,
spcat/SpcatMessages.msg, spent/SpentMessages.msg: add new messages
for translatable usage messages.
1999-12-05 17:49 clasen
* include/CmdLineApp.h, include/MessageFormatter.h,
include/Options.cxx, include/Options.h, include/sptchar.h,
lib/CmdLineApp.cxx, lib/CmdLineAppMessages.msg, lib/EntityApp.cxx,
lib/Makefile.am, lib/MessageFormatter.cxx, lib/ParserApp.cxx,
lib/ParserAppMessages.msg, nsgmls/NsgmlsMessages.msg,
nsgmls/nsgmls.cxx, po/POTFILES.in, sgmlnorm/Makefile.am,
sgmlnorm/sgmlnorm.cxx, spam/SpamMessages.msg, spam/spam.cxx,
spcat/Makefile.am, spcat/spcat.cxx, spent/Makefile.am,
spent/spent.cxx, sx/SxMessages.msg, sx/sx.cxx: Revamp long options
and usage message.
1999-12-04 08:07 pn
* po/sv.po: Updated after Matthias msggen.pl changes.
1999-12-03 18:31 pn
* po/sv.po: First Swedish messages. Most missing, and many
translated need review.
1999-12-03 18:30 pn
* configure.in: ALL_LINGUAS: Added Swedish translation.
1999-12-03 13:48 clasen
* lib/Makefile.am: Typo fix.
1999-12-03 12:14 clasen
* msggen.pl, lib/Makefile.am, lib/ParserMessages.msg,
nsgmls/Makefile.am, po/Makefile.in.in, po/POTFILES.in, po/de.po,
spam/Makefile.am, sx/Makefile.am: Improve the build process for
I18N: no more intermediate .po files, msggen.pl now directly
produces OpenSP.pot from the .msg files when called with -p
OpenSP.pot.
1999-12-02 17:06 clasen
* po/de.po: Latest and greatest translations.
1999-12-01 17:01 clasen
* NEWS, lib/ParserMessages.msg, po/de.po: More German translations,
fix some glitches in the English messages.
1999-12-01 14:48 clasen
* sx/sx.cxx: Typo fix.
1999-12-01 14:46 clasen
* spent/spent.cxx, sgmlnorm/sgmlnorm.cxx, sx/sx.cxx: Add a needed
include.
1999-12-01 14:43 clasen
* lib/ParserApp.cxx: Typo fix.
1999-12-01 14:41 clasen
* nsgmls/nsgmls.cxx, sgmlnorm/sgmlnorm.cxx, spam/spam.cxx,
spcat/spcat.cxx, spent/spent.cxx, sx/sx.cxx: Add long variants for
all options. This was done in a hurry and the names may be
improvable.
1999-12-01 14:27 clasen
* lib/: EntityApp.cxx, ParserApp.cxx: More long options.
1999-12-01 14:08 clasen
* include/CmdLineApp.h, include/Options.cxx, include/Options.h,
lib/CmdLineApp.cxx, lib/CmdLineAppMessages.msg, po/de.po: Long
options. Currently only CmdLineApp has some.
1999-11-30 19:18 clasen
* po/de.po: More german translations.
1999-11-30 17:25 pn
* acconfig.h: Add HAVE_GETTEXT and #define SP_ANSI_LIB to 1 to
match OJ definition.
1999-11-30 14:16 clasen
* lib/ParserMessages.msg: Remove some unwanted trailing spaces in
messages.
1999-11-30 13:52 clasen
* lib/Makefile.am, nsgmls/Makefile.am, spam/Makefile.am,
sx/Makefile.am: Add rules for .rc and .po files.
1999-11-30 13:22 clasen
* acconfig.h, configure.in, intl/po2tbl.sed, lib/MessageTable.cxx:
Remove a generated file in intl/, cosmetic fixes.
1999-11-30 13:04 clasen
* nsgmls/RastEventHandlerMessages.msg: Fix a typo.
1999-11-30 12:46 clasen
* acconfig.h: Re-add HAVE_GETTEXT which was accidentally removed.
1999-11-29 12:37 clasen
* lib/MessageTable.cxx: Make it compile.
1999-11-29 12:32 clasen
* acconfig.h, acinclude.m4, configure.in, include/MessageTable.h,
lib/CmdLineApp.cxx, lib/MessageTable.cxx: support ./configure
--disable-nls, use bindtextdomain() to find translated messages
where they are installed.
1999-11-29 11:49 clasen
* po/de.po: Remove illegal linebreak
1999-11-29 11:33 clasen
* Makefile.am, configure.in, include/Makefile.am: Generate config.h
at top level, since GNU gettext depends on it.
1999-11-29 10:29 clasen
* ABOUT-NLS: Apparently automake wants this to exist.
1999-11-28 17:47 clasen
* configure.in, po/de.po: Add beginning of german translation for
OpenSP.
1999-11-28 17:46 clasen
* lib/: Entity.cxx, EntityManagerMessages.msg, ParserMessages.msg,
StdioStorageMessages.msg: Message uniformity improvements.
1999-11-26 20:00 clasen
* configure.in: Cosmetic fix.
1999-11-26 19:54 clasen
* acconfig.h: Add gettext defines.
1999-11-26 19:51 clasen
* Makefile.am, configure.in, msggen.pl, intl/Makefile.in,
intl/bindtextdom.c, intl/cat-compat.c, intl/dcgettext.c,
intl/dgettext.c, intl/finddomain.c, intl/gettext.c, intl/gettext.h,
intl/gettextP.h, intl/hash-string.h, intl/intl-compat.c,
intl/libgettext.h, intl/linux-msg.sed, intl/loadmsgcat.c,
intl/localealias.c, intl/po2tbl.sed, intl/po2tbl.sed.in,
intl/textdomain.c, intl/xopen-msg.sed, lib/Makefile.am,
nsgmls/Makefile.am, po/Makefile.in.in, po/POTFILES.in,
spam/Makefile.am, sx/Makefile.am: First cut at GNU gettext
integration.
1999-11-26 05:07 clasen
* doc/: catalog.htm, nsgmls.htm, xml.htm: Update links to WebSGML
adaptations.
1999-11-23 15:52 clasen
* acconfig.h, acinclude.m4, configure.in, include/config.h.old,
lib/EntityApp.cxx: Some define cleanups.
1999-11-22 17:40 clasen
* README, doc/nsgmls.htm, lib/CatalogMessages.msg: Cleanups.
1999-11-22 12:21 clasen
* FILES, NEWS, japan.sgmldecl, doc/nsgmls.htm, pubtext/Makefile.am,
pubtext/japan.dcl: Document -n and -x, move japan.sgmldecl to
pubtext/japan.dcl.
1999-11-22 11:37 clasen
* sp-generate.mak: Try to adapt win build. Here we go again: Win
users, test this !!!
1999-11-20 21:27 clasen
* msggen.pl, include/Message.h, include/MessageReporter.h,
include/MessageTable.h, lib/CmdLineApp.cxx, lib/Makefile.am,
lib/Message.cxx, lib/MessageReporter.cxx,
lib/MessageReporterMessages.msg, lib/MessageTable.cxx,
lib/ParserApp.cxx, nsgmls/Makefile.am, spam/Makefile.am,
spcat/Makefile.am, sx/Makefile.am: Changes to the message reporting
system: make the message domain for gettext settable and set it to
OpenSP for all messages, make the `relevant clauses' info and
message numbers available via -x and -n; related changes to
msggen.pl.
1999-11-20 17:23 clasen
* lib/ParserMessages.msg: Move a comment.
1999-11-15 16:19 pn
* configure.in, lib/CmdLineApp.cxx: Change Package to SP_PACKAGE
and VERSION to SP_VERSION to avoid conflicts, since
include/config.h gets included by users.
1999-11-14 09:03 clasen
* configure.in: Remove AC_CONFIG_AUX_DIR(config). All aux files are
toplevel now (automake prefers this).
1999-11-14 07:30 clasen
* Makefile.am: Remove all from SUBDIRS.
1999-11-14 07:22 clasen
* all/Makefile.am: Add a forgotten Makefile.
1999-11-13 19:40 clasen
* Makefile.am: Remove unneccessary EXTRA_DIST stuff (automake knows
to include the config stuff if it is toplevel).
1999-11-13 17:13 clasen
* Makefile.am, acconfig.h, acinclude.m4, configure.in,
doc/Makefile.am, generic/Makefile.am, include/Makefile.am,
lib/Makefile.am, nsgmls/Makefile.am, pubtext/Makefile.am,
sgmlnorm/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
spent/Makefile.am, sx/Makefile.am: More C++ autoconf tests, some
caching fixes in configure, add windows-only stuff to distribution,
add dist-zip target for windows distribution.
1999-11-12 16:52 clasen
* acinclude.m4: Fix a typo.
1999-11-12 16:50 clasen
* acinclude.m4, configure.in: remove unneeded test for RTTI.
1999-11-12 16:45 clasen
* acconfig.h, configure.in, include/Vector.cxx: Remove
SP_QUAL_TEMPLATE_DTOR_BROKEN, since the macro DTOR() whose
definition it influences is unused.
1999-11-12 16:09 clasen
* configure.in: Add test for `fancy' new_handler.
1999-11-12 13:48 clasen
* configure.in: Add forgotten type check.
1999-11-12 13:15 clasen
* lib/ExtendEntityManager.cxx: Fix a typo
1999-11-12 12:17 clasen
* acconfig.h, acinclude.m4, configure.in,
lib/DtdDeclEventHandler.cxx, lib/DtdDeclEventHandler.h: Remove
erroneous SP_API on internal headers, add test for placement
operator delete.
1999-11-11 16:45 clasen
* instmac.pl, lib/instmac.pl: Move instmac.pl to toplevel.
1999-11-11 14:09 clasen
* README: Remove pointers to removed files.
1999-11-11 12:54 clasen
* configure.in: Some reorganization.
1999-11-11 12:03 clasen
* lib/CmdLineApp.cxx: Remove forgotten include of version.h
1999-11-11 11:29 clasen
* Makefile.am, VERSION, configure.in, lib/CmdLineApp.cxx,
lib/CmdLineAppMessages.msg, lib/Makefile.am, lib/mkversion.pl,
nsgmls/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
sx/Makefile.am: Directly use the #defined VERSION instead of
producing two intermediate files.
1999-11-09 19:51 clasen
* acconfig.h, configure.in, lib/memcmp.c: Add better thread support
detection, add check for memcmp with replacement.
1999-11-09 16:15 pn
* Makefile.am: EXTRA_DIST: Distribute files in config/.
1999-11-09 06:07 clasen
* acconfig.h, configure.in: A few more checks for #defines found by
ifnames.
1999-11-09 05:16 pn
* nsgmls/Makefile.am, sgmlnorm/Makefile.am, spent/Makefile.am,
sx/Makefile.am: INCLUDES: Added "-I" before directory names.
1999-11-09 04:20 pn
* spam/Makefile.am, spcat/Makefile.am: INCLUDES: Add "-I" before
include path.
1999-11-08 11:29 clasen
* acconfig.h, doc/Makefile, nsgmls/Makefile.am,
sgmlnorm/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
spent/Makefile.am, sx/Makefile.am: More fixes, it should actually
compile and work now.
1999-11-08 09:53 clasen
* acconfig.h, acinclude.m4, configure.in: Added some cxx checks
found in the autoconf macro archive.
1999-11-07 18:04 clasen
* acconfig.h, configure.in, include/Makefile.am, include/config.h,
include/config.h.old, lib/Makefile.am, nsgmls/Makefile.am: Initial
attempt to let configure create config.h.
1999-11-07 15:52 clasen
* AUTHORS, Makefile.am, Makefile.comm.in, Makefile.in,
Makefile.lib.CC, Makefile.lib.in, Makefile.lib.sun,
Makefile.prog.in, Makefile.wat, NEWS, README, configure,
configure.in, doc/Makefile.am, generic/Makefile.am,
include/Makefile.am, lib/Makefile.am, lib/Makefile.sub,
nsgmls/Makefile.am, nsgmls/Makefile.sub, pubtext/Makefile.am,
sgmlnorm/Makefile.am, sgmlnorm/Makefile.sub, spam/Makefile.am,
spam/Makefile.sub, spcat/Makefile.am, spcat/Makefile.sub,
spent/Makefile.am, spent/Makefile.sub, sx/Makefile.am,
sx/Makefile.sub: First attempt to automakify OpenSP.
1999-11-07 15:15 clasen
* doc/xmlwarn.htm: Add forgotten file.
1999-11-06 08:10 clasen
* Makefile.in, configure, configure.in: Install headers in
$(includedir)/OpenSP, move configure.in to toplevel, remove
generated file aclocal.m4.
1999-11-04 17:35 clasen
* Makefile.comm.in: Define top_builddir in Makefile.comm.in (needed
by AM_PROG_LIBTOOL), protect AC_REVISION argument in configure.in
(otherwise the relevant information doesn't make it into
configure).
1999-11-04 16:48 clasen
* Makefile.comm.in: Initial fixes.
1999-11-04 03:35 clasen
* COPYING, FILES, Makefile.comm.in, Makefile.in, Makefile.lib.CC,
Makefile.lib.in, Makefile.lib.sun, Makefile.prog.in, Makefile.wat,
README, SP.dsw, SP.mak, VERSION, build-win32.bat, configure,
japan.sgmldecl, msggen.pl, sp-generate.mak, sunfix.sh, all/README,
all/all.dsp, doc/Makefile, doc/archform.htm, doc/build.htm,
doc/catalog, doc/catalog.htm, doc/charset.htm, doc/features.htm,
doc/generic.htm, doc/ideas.htm, doc/index.htm, doc/new.htm,
doc/nsgmls.htm, doc/sgmldecl.htm, doc/sgmlnorm.htm,
doc/sgmlsout.htm, doc/spam.htm, doc/spcat.htm, doc/spent.htm,
doc/sx.htm, doc/sysdecl.htm, doc/sysid.htm, doc/xml.htm,
generic/EventGenerator.h, generic/ParserEventGeneratorKit.h,
generic/SGMLApplication.h, include/Allocator.h,
include/ArcEngine.h, include/Attribute.h, include/Attributed.h,
include/Big5CodingSystem.h, include/Boolean.h, include/CharMap.cxx,
include/CharMap.h, include/CharsetDecl.h, include/CharsetInfo.h,
include/CharsetRegistry.h, include/CmdLineApp.h,
include/CodingSystem.h, include/CodingSystemKit.h,
include/ConsoleOutput.h, include/ContentState.h,
include/ContentToken.h, include/CopyOwner.cxx, include/CopyOwner.h,
include/DescriptorManager.h, include/Dtd.h,
include/EUCJPCodingSystem.h, include/ElementType.h,
include/Entity.h, include/EntityApp.h, include/EntityCatalog.h,
include/EntityDecl.h, include/EntityManager.h,
include/ErrnoMessageArg.h, include/ErrorCountEventHandler.h,
include/Event.h, include/EventsWanted.h,
include/ExtendEntityManager.h, include/ExternalId.h,
include/Fixed2CodingSystem.h, include/GenericEventHandler.h,
include/Hash.h, include/HashTable.cxx, include/HashTable.h,
include/HashTableItemBase.cxx, include/HashTableItemBase.h,
include/IList.h, include/IListBase.h, include/IListIter.h,
include/IListIterBase.h, include/IQueue.cxx, include/IQueue.h,
include/ISet.cxx, include/ISet.h, include/ISetIter.h,
include/IdentityCodingSystem.h, include/InputSource.h,
include/InternalInputSource.h, include/Link.h,
include/LinkProcess.h, include/List.cxx, include/List.h,
include/ListIter.h, include/LiteralStorage.h, include/Location.h,
include/Lpd.h, include/Markup.h, include/Message.h,
include/MessageArg.h, include/MessageBuilder.h,
include/MessageEventHandler.h, include/MessageFormatter.h,
include/MessageReporter.h, include/MessageTable.h, include/Mode.h,
include/NCVector.h, include/NCVector.sed, include/Named.h,
include/NamedResource.h, include/NamedResourceTable.h,
include/NamedTable.h, include/Notation.h,
include/NotationStorage.h, include/OpenElement.h,
include/Options.cxx, include/Options.h, include/OutputByteStream.h,
include/OutputCharStream.h, include/Owner.cxx, include/Owner.h,
include/OwnerTable.cxx, include/OwnerTable.h, include/ParserApp.h,
include/ParserOptions.h, include/PointerTable.cxx,
include/PointerTable.h, include/PosixStorage.h, include/Ptr.cxx,
include/Ptr.h, include/RangeMap.cxx, include/RangeMap.h,
include/Resource.h, include/RewindStorageObject.h,
include/SJISCodingSystem.h, include/SOEntityCatalog.h,
include/Sd.h, include/SdText.h, include/SearchResultMessageArg.h,
include/SgmlParser.h, include/ShortReferenceMap.h,
include/StdioStorage.h, include/StorageManager.h,
include/StringC.h, include/StringOf.cxx, include/StringOf.h,
include/StringResource.h, include/SubstTable.cxx,
include/SubstTable.h, include/Syntax.h, include/Text.h,
include/TranslateCodingSystem.h, include/TypeId.h,
include/URLStorage.h, include/UTF8CodingSystem.h,
include/UnicodeCodingSystem.h, include/UnivCharsetDesc.h,
include/Vector.cxx, include/Vector.h, include/Win32CodingSystem.h,
include/WinApp.h, include/WinInetStorage.h,
include/XMLCodingSystem.h, include/XcharMap.cxx,
include/XcharMap.h, include/config.h, include/constant.h,
include/macros.h, include/rtti.h, include/sptchar.h,
include/types.h, include/xnew.h, lib/Allocator.cxx,
lib/ArcEngine.cxx, lib/ArcEngineMessages.msg, lib/ArcProcessor.h,
lib/Attribute.cxx, lib/Big5CodingSystem.cxx, lib/CatalogEntry.h,
lib/CatalogMessages.msg, lib/CharsetDecl.cxx, lib/CharsetInfo.cxx,
lib/CharsetRegistry.cxx, lib/CmdLineApp.cxx,
lib/CmdLineAppMessages.msg, lib/CodingSystem.cxx,
lib/CodingSystemKit.cxx, lib/ConsoleOutput.cxx,
lib/ContentState.cxx, lib/ContentToken.cxx,
lib/DescriptorManager.cxx, lib/Dtd.cxx,
lib/DtdDeclEventHandler.cxx, lib/DtdDeclEventHandler.h,
lib/EUCJPCodingSystem.cxx, lib/ElementType.cxx, lib/Entity.cxx,
lib/EntityApp.cxx, lib/EntityCatalog.cxx, lib/EntityDecl.cxx,
lib/EntityManager.cxx, lib/EntityManagerMessages.msg,
lib/EquivClass.h, lib/ErrnoMessageArg.cxx,
lib/ErrorCountEventHandler.cxx, lib/Event.cxx,
lib/EventGenerator.cxx, lib/EventQueue.h,
lib/ExtendEntityManager.cxx, lib/ExternalId.cxx,
lib/Fixed2CodingSystem.cxx, lib/GenericEventHandler.cxx,
lib/Group.cxx, lib/Group.h, lib/Hash.cxx, lib/IListBase.cxx,
lib/Id.cxx, lib/Id.h, lib/IdentityCodingSystem.cxx,
lib/InputSource.cxx, lib/InternalInputSource.cxx, lib/Link.cxx,
lib/LinkProcess.cxx, lib/LiteralStorage.cxx, lib/Location.cxx,
lib/Lpd.cxx, lib/LpdEntityRef.h, lib/Makefile.sub, lib/Markup.cxx,
lib/MarkupScan.h, lib/Message.cxx, lib/MessageArg.cxx,
lib/MessageEventHandler.cxx, lib/MessageFormatter.cxx,
lib/MessageFormatterMessages.msg, lib/MessageReporter.cxx,
lib/MessageReporterMessages.msg, lib/MessageTable.cxx,
lib/ModeInfo.cxx, lib/ModeInfo.h, lib/Mutex.h, lib/NameToken.h,
lib/Notation.cxx, lib/NotationStorage.cxx,
lib/NumericCharRefOrigin.cxx, lib/NumericCharRefOrigin.h,
lib/OffsetOrderedList.cxx, lib/OffsetOrderedList.h,
lib/OpenElement.cxx, lib/OutputByteStream.cxx,
lib/OutputCharStream.cxx, lib/OutputState.cxx, lib/OutputState.h,
lib/Param.cxx, lib/Param.h, lib/Parser.cxx, lib/Parser.h,
lib/ParserApp.cxx, lib/ParserAppMessages.msg,
lib/ParserEventGeneratorKit.cxx, lib/ParserMessages.msg,
lib/ParserOptions.cxx, lib/ParserState.cxx, lib/ParserState.h,
lib/Partition.cxx, lib/Partition.h, lib/PosixStorage.cxx,
lib/PosixStorageMessages.msg, lib/Priority.h, lib/Recognizer.cxx,
lib/Recognizer.h, lib/RewindStorageObject.cxx,
lib/SGMLApplication.cxx, lib/SJISCodingSystem.cxx,
lib/SOEntityCatalog.cxx, lib/Sd.cxx, lib/SdFormalError.h,
lib/SdText.cxx, lib/SearchResultMessageArg.cxx, lib/SgmlParser.cxx,
lib/ShortReferenceMap.cxx, lib/SrInfo.h, lib/StdioStorage.cxx,
lib/StdioStorageMessages.msg, lib/StorageManager.cxx,
lib/StorageObjectPosition.h, lib/StringVectorMessageArg.cxx,
lib/StringVectorMessageArg.h, lib/Syntax.cxx, lib/Text.cxx,
lib/TokenMessageArg.cxx, lib/TokenMessageArg.h,
lib/TranslateCodingSystem.cxx, lib/Trie.h, lib/TrieBuilder.cxx,
lib/TrieBuilder.h, lib/TypeId.cxx, lib/URLStorage.cxx,
lib/URLStorageMessages.msg, lib/UTF8CodingSystem.cxx, lib/Undo.cxx,
lib/Undo.h, lib/UnicodeCodingSystem.cxx, lib/UnivCharsetDesc.cxx,
lib/Win32CodingSystem.cxx, lib/WinApp.cxx, lib/WinInetStorage.cxx,
lib/WinInetStorageMessages.msg, lib/XMLCodingSystem.cxx,
lib/app_inst.m4, lib/arc_inst.m4, lib/assert.cxx, lib/big5.h,
lib/entmgr_inst.m4, lib/events.h, lib/gb2312.h, lib/instmac.pl,
lib/iso646-jis.h, lib/iso8859-2.h, lib/iso8859-3.h,
lib/iso8859-4.h, lib/iso8859-5.h, lib/iso8859-6.h, lib/iso8859-7.h,
lib/iso8859-8.h, lib/iso8859-9.h, lib/jis0201.h, lib/jis0208.h,
lib/jis0212.h, lib/ksc5601.h, lib/lib.dsp, lib/lib.rc,
lib/memmove.c, lib/mkversion.pl, lib/parseAttribute.cxx,
lib/parseCommon.cxx, lib/parseDecl.cxx, lib/parseInstance.cxx,
lib/parseMode.cxx, lib/parseParam.cxx, lib/parseSd.cxx,
lib/parser_inst.m4, lib/splib.cxx, lib/splib.h, lib/splibpch.h,
lib/strerror.c, lib/token.h, lib/xentmgr_inst.m4,
nsgmls/Makefile.sub, nsgmls/NsgmlsMessages.msg,
nsgmls/RastEventHandler.cxx, nsgmls/RastEventHandler.h,
nsgmls/RastEventHandlerMessages.msg, nsgmls/SgmlsEventHandler.cxx,
nsgmls/SgmlsEventHandler.h, nsgmls/StringSet.cxx,
nsgmls/StringSet.h, nsgmls/nsgmls.cxx, nsgmls/nsgmls.dsp,
nsgmls/nsgmls.rc, nsgmls/nsgmls_inst.m4, pubtext/HTML32.dcl,
pubtext/HTML32.dtd, pubtext/HTML32.soc, pubtext/HTML4-f.dtd,
pubtext/HTML4-s.dtd, pubtext/HTML4.dcl, pubtext/HTML4.dtd,
pubtext/HTML4.soc, pubtext/HTMLlat1.ent, pubtext/HTMLspec.ent,
pubtext/HTMLsym.ent, pubtext/ISOlat1.ent, pubtext/ISOlat1.sgm,
pubtext/html-1.dtd, pubtext/html-1s.dtd, pubtext/html-s.dtd,
pubtext/html.dcl, pubtext/html.dtd, pubtext/html.soc,
pubtext/xml.dcl, pubtext/xml.soc, sgmlnorm/Makefile.sub,
sgmlnorm/SGMLGenerator.cxx, sgmlnorm/SGMLGenerator.h,
sgmlnorm/sgmlnorm.cxx, sgmlnorm/sgmlnorm.dsp,
spam/CopyEventHandler.cxx, spam/CopyEventHandler.h,
spam/Makefile.sub, spam/MarkupEventHandler.cxx,
spam/MarkupEventHandler.h, spam/SpamMessages.msg, spam/spam.cxx,
spam/spam.dsp, spam/spam.rc, spam/spam_inst.m4, spcat/Makefile.sub,
spcat/spcat.cxx, spcat/spcat.dsp, spcat/spcat_inst.m4,
spent/Makefile.sub, spent/spent.cxx, spent/spent.dsp,
sx/Makefile.sub, sx/SxMessages.msg, sx/XmlOutputEventHandler.cxx,
sx/XmlOutputEventHandler.h, sx/XmlOutputMessages.msg, sx/sx.cxx,
sx/sx.dsp, sx/sx.rc, sx/sx_inst.m4, unicode/catalog,
unicode/demo.sgm, unicode/gensyntax.pl, unicode/unicode.sd,
unicode/unicode.syn: Initial revision, taken from the current jade
repository at tag before_split.
|