| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
 1000
 1001
 1002
 1003
 1004
 1005
 1006
 1007
 1008
 1009
 1010
 1011
 1012
 1013
 1014
 1015
 1016
 1017
 1018
 1019
 1020
 1021
 1022
 1023
 1024
 1025
 1026
 1027
 1028
 1029
 1030
 1031
 1032
 1033
 1034
 1035
 1036
 1037
 1038
 1039
 1040
 1041
 1042
 1043
 1044
 1045
 1046
 1047
 1048
 1049
 1050
 1051
 1052
 1053
 1054
 1055
 1056
 1057
 1058
 1059
 1060
 1061
 1062
 1063
 1064
 1065
 1066
 1067
 1068
 1069
 1070
 1071
 1072
 1073
 1074
 1075
 1076
 1077
 1078
 1079
 1080
 1081
 1082
 1083
 1084
 1085
 1086
 1087
 1088
 1089
 1090
 1091
 1092
 1093
 1094
 1095
 1096
 1097
 1098
 1099
 1100
 1101
 1102
 1103
 1104
 1105
 1106
 1107
 1108
 1109
 1110
 1111
 1112
 1113
 1114
 1115
 1116
 1117
 1118
 1119
 1120
 1121
 1122
 1123
 1124
 1125
 1126
 1127
 1128
 1129
 1130
 1131
 1132
 1133
 1134
 1135
 1136
 1137
 1138
 1139
 1140
 1141
 1142
 1143
 1144
 1145
 1146
 1147
 1148
 1149
 1150
 1151
 1152
 1153
 1154
 1155
 1156
 1157
 1158
 1159
 1160
 1161
 1162
 1163
 1164
 1165
 1166
 1167
 1168
 1169
 1170
 1171
 1172
 1173
 1174
 1175
 1176
 1177
 1178
 1179
 1180
 1181
 1182
 1183
 1184
 1185
 1186
 1187
 1188
 1189
 1190
 1191
 1192
 1193
 1194
 1195
 1196
 1197
 1198
 1199
 1200
 1201
 1202
 1203
 1204
 1205
 1206
 1207
 1208
 1209
 1210
 1211
 1212
 1213
 1214
 1215
 1216
 1217
 1218
 1219
 1220
 1221
 1222
 1223
 1224
 1225
 1226
 1227
 1228
 1229
 1230
 1231
 1232
 1233
 1234
 1235
 1236
 1237
 1238
 1239
 1240
 1241
 1242
 1243
 1244
 1245
 1246
 1247
 1248
 1249
 1250
 1251
 1252
 1253
 1254
 1255
 1256
 1257
 1258
 1259
 1260
 1261
 1262
 1263
 1264
 1265
 1266
 1267
 1268
 1269
 1270
 1271
 1272
 1273
 1274
 1275
 1276
 1277
 1278
 1279
 1280
 1281
 1282
 1283
 1284
 1285
 1286
 1287
 1288
 1289
 1290
 1291
 1292
 1293
 1294
 1295
 1296
 1297
 1298
 1299
 1300
 1301
 1302
 1303
 1304
 1305
 1306
 1307
 1308
 1309
 1310
 1311
 1312
 1313
 1314
 1315
 1316
 1317
 1318
 1319
 1320
 1321
 1322
 1323
 1324
 1325
 1326
 1327
 1328
 1329
 1330
 1331
 1332
 1333
 1334
 1335
 1336
 1337
 1338
 1339
 1340
 1341
 1342
 1343
 1344
 1345
 1346
 1347
 1348
 1349
 1350
 1351
 1352
 1353
 1354
 1355
 1356
 1357
 1358
 1359
 1360
 1361
 1362
 1363
 1364
 1365
 1366
 1367
 1368
 1369
 1370
 1371
 1372
 1373
 1374
 1375
 1376
 1377
 1378
 1379
 1380
 1381
 1382
 1383
 1384
 1385
 1386
 1387
 1388
 1389
 1390
 1391
 1392
 1393
 1394
 1395
 1396
 1397
 1398
 1399
 1400
 1401
 1402
 1403
 1404
 1405
 1406
 1407
 1408
 1409
 1410
 1411
 1412
 1413
 1414
 1415
 1416
 1417
 1418
 1419
 1420
 1421
 1422
 1423
 1424
 1425
 1426
 1427
 1428
 1429
 1430
 1431
 1432
 1433
 1434
 1435
 1436
 1437
 1438
 1439
 1440
 1441
 1442
 1443
 1444
 1445
 1446
 1447
 1448
 1449
 1450
 1451
 1452
 1453
 1454
 1455
 1456
 1457
 1458
 1459
 1460
 1461
 1462
 1463
 1464
 1465
 1466
 1467
 1468
 1469
 1470
 1471
 1472
 1473
 1474
 1475
 1476
 1477
 1478
 1479
 1480
 1481
 1482
 1483
 1484
 1485
 1486
 1487
 1488
 1489
 1490
 1491
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 1639
 1640
 1641
 1642
 1643
 1644
 1645
 1646
 1647
 1648
 1649
 1650
 1651
 1652
 1653
 1654
 1655
 1656
 1657
 1658
 1659
 1660
 1661
 1662
 1663
 1664
 1665
 1666
 1667
 1668
 1669
 1670
 1671
 1672
 1673
 1674
 1675
 1676
 1677
 1678
 1679
 1680
 1681
 1682
 1683
 1684
 1685
 1686
 1687
 1688
 1689
 1690
 1691
 1692
 1693
 1694
 1695
 1696
 1697
 1698
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
 1960
 1961
 1962
 1963
 1964
 1965
 1966
 1967
 1968
 1969
 1970
 1971
 1972
 1973
 1974
 1975
 1976
 1977
 1978
 1979
 1980
 1981
 1982
 1983
 1984
 1985
 1986
 1987
 1988
 1989
 1990
 1991
 1992
 1993
 1994
 1995
 1996
 1997
 1998
 1999
 2000
 2001
 2002
 2003
 2004
 2005
 2006
 2007
 2008
 2009
 2010
 2011
 2012
 2013
 2014
 2015
 2016
 2017
 2018
 2019
 2020
 2021
 2022
 2023
 2024
 2025
 2026
 2027
 2028
 2029
 2030
 2031
 2032
 2033
 2034
 2035
 2036
 2037
 2038
 2039
 2040
 2041
 2042
 2043
 2044
 2045
 2046
 2047
 2048
 2049
 2050
 2051
 2052
 2053
 2054
 2055
 2056
 2057
 2058
 2059
 2060
 2061
 2062
 2063
 2064
 2065
 2066
 2067
 2068
 2069
 2070
 2071
 2072
 2073
 2074
 2075
 2076
 2077
 2078
 2079
 2080
 2081
 2082
 2083
 2084
 2085
 2086
 2087
 2088
 2089
 2090
 2091
 2092
 2093
 2094
 2095
 2096
 2097
 2098
 2099
 2100
 2101
 2102
 2103
 2104
 2105
 2106
 2107
 2108
 2109
 2110
 2111
 2112
 2113
 2114
 2115
 2116
 2117
 2118
 2119
 2120
 2121
 2122
 2123
 2124
 2125
 2126
 2127
 2128
 2129
 2130
 2131
 2132
 2133
 2134
 2135
 2136
 2137
 2138
 2139
 2140
 2141
 2142
 2143
 2144
 2145
 2146
 2147
 2148
 2149
 2150
 2151
 2152
 2153
 2154
 2155
 2156
 2157
 2158
 2159
 2160
 2161
 2162
 2163
 2164
 2165
 2166
 2167
 2168
 2169
 2170
 2171
 2172
 2173
 2174
 2175
 2176
 2177
 2178
 2179
 2180
 2181
 2182
 2183
 2184
 2185
 2186
 2187
 2188
 2189
 2190
 2191
 2192
 2193
 2194
 2195
 2196
 2197
 2198
 2199
 2200
 2201
 2202
 2203
 2204
 2205
 2206
 2207
 2208
 2209
 2210
 2211
 2212
 2213
 2214
 2215
 2216
 2217
 2218
 2219
 2220
 2221
 2222
 2223
 2224
 2225
 2226
 2227
 2228
 2229
 2230
 2231
 2232
 2233
 2234
 2235
 2236
 2237
 2238
 2239
 2240
 2241
 2242
 2243
 2244
 2245
 2246
 2247
 2248
 2249
 2250
 2251
 2252
 2253
 2254
 2255
 2256
 2257
 2258
 2259
 2260
 2261
 2262
 2263
 2264
 2265
 2266
 2267
 2268
 2269
 2270
 2271
 2272
 2273
 2274
 2275
 2276
 2277
 2278
 2279
 2280
 2281
 2282
 2283
 2284
 2285
 2286
 2287
 2288
 2289
 2290
 2291
 2292
 2293
 2294
 2295
 2296
 2297
 2298
 2299
 2300
 2301
 2302
 2303
 2304
 2305
 2306
 2307
 2308
 2309
 2310
 2311
 2312
 2313
 2314
 2315
 2316
 2317
 2318
 2319
 2320
 2321
 2322
 2323
 2324
 2325
 2326
 2327
 2328
 2329
 2330
 2331
 2332
 2333
 2334
 2335
 2336
 2337
 2338
 2339
 2340
 2341
 2342
 2343
 2344
 2345
 2346
 2347
 2348
 2349
 2350
 2351
 2352
 2353
 2354
 2355
 2356
 2357
 2358
 2359
 2360
 2361
 2362
 2363
 2364
 2365
 2366
 2367
 2368
 2369
 2370
 2371
 2372
 2373
 2374
 2375
 2376
 2377
 2378
 2379
 2380
 2381
 2382
 2383
 2384
 2385
 2386
 2387
 2388
 2389
 2390
 2391
 2392
 2393
 2394
 2395
 2396
 2397
 2398
 2399
 2400
 2401
 2402
 2403
 2404
 2405
 2406
 2407
 2408
 2409
 2410
 2411
 2412
 2413
 2414
 2415
 2416
 2417
 2418
 2419
 2420
 2421
 2422
 2423
 2424
 2425
 2426
 2427
 2428
 2429
 2430
 2431
 2432
 2433
 2434
 2435
 2436
 2437
 2438
 2439
 2440
 2441
 2442
 2443
 2444
 2445
 2446
 2447
 2448
 2449
 2450
 2451
 2452
 2453
 2454
 2455
 2456
 2457
 2458
 2459
 2460
 2461
 2462
 2463
 2464
 2465
 2466
 2467
 2468
 2469
 2470
 2471
 2472
 2473
 2474
 2475
 2476
 2477
 2478
 2479
 2480
 2481
 2482
 2483
 2484
 2485
 2486
 2487
 2488
 2489
 2490
 2491
 2492
 2493
 2494
 2495
 2496
 2497
 2498
 2499
 2500
 2501
 2502
 2503
 2504
 2505
 2506
 2507
 2508
 2509
 2510
 2511
 2512
 2513
 2514
 2515
 2516
 2517
 2518
 2519
 2520
 2521
 2522
 2523
 2524
 2525
 2526
 2527
 2528
 2529
 2530
 2531
 2532
 2533
 2534
 2535
 2536
 2537
 2538
 2539
 2540
 2541
 2542
 2543
 2544
 2545
 2546
 2547
 2548
 2549
 2550
 2551
 2552
 2553
 2554
 2555
 2556
 2557
 2558
 2559
 2560
 2561
 2562
 2563
 2564
 2565
 2566
 2567
 2568
 2569
 2570
 2571
 2572
 2573
 2574
 2575
 2576
 2577
 2578
 2579
 2580
 2581
 2582
 2583
 2584
 2585
 2586
 2587
 2588
 2589
 2590
 2591
 2592
 2593
 2594
 2595
 2596
 2597
 2598
 2599
 2600
 2601
 2602
 2603
 2604
 2605
 2606
 2607
 2608
 2609
 2610
 2611
 2612
 2613
 2614
 2615
 2616
 2617
 2618
 2619
 2620
 2621
 2622
 2623
 2624
 2625
 2626
 2627
 2628
 2629
 2630
 2631
 2632
 2633
 2634
 2635
 2636
 2637
 2638
 2639
 2640
 2641
 2642
 2643
 2644
 2645
 2646
 2647
 2648
 2649
 2650
 2651
 2652
 2653
 2654
 2655
 2656
 2657
 2658
 2659
 2660
 2661
 2662
 2663
 2664
 2665
 2666
 2667
 2668
 2669
 2670
 2671
 2672
 2673
 2674
 2675
 2676
 2677
 2678
 2679
 2680
 2681
 2682
 2683
 2684
 2685
 2686
 2687
 2688
 2689
 2690
 2691
 2692
 2693
 2694
 2695
 2696
 2697
 2698
 2699
 2700
 2701
 2702
 2703
 2704
 2705
 2706
 2707
 2708
 2709
 2710
 2711
 2712
 2713
 2714
 2715
 2716
 2717
 2718
 2719
 2720
 2721
 2722
 2723
 2724
 2725
 2726
 2727
 2728
 2729
 2730
 2731
 2732
 2733
 2734
 2735
 2736
 2737
 2738
 2739
 2740
 2741
 2742
 2743
 2744
 2745
 2746
 2747
 2748
 2749
 2750
 2751
 2752
 2753
 2754
 2755
 2756
 2757
 2758
 2759
 2760
 2761
 2762
 2763
 2764
 2765
 2766
 2767
 2768
 2769
 2770
 2771
 2772
 2773
 2774
 2775
 2776
 2777
 2778
 2779
 2780
 2781
 2782
 2783
 2784
 2785
 2786
 2787
 2788
 2789
 2790
 2791
 2792
 2793
 2794
 2795
 2796
 2797
 2798
 2799
 2800
 2801
 2802
 2803
 2804
 2805
 2806
 2807
 2808
 2809
 2810
 2811
 2812
 2813
 2814
 2815
 2816
 2817
 2818
 2819
 2820
 2821
 2822
 2823
 2824
 2825
 2826
 2827
 2828
 2829
 2830
 2831
 2832
 2833
 2834
 2835
 2836
 2837
 2838
 2839
 2840
 2841
 2842
 2843
 2844
 2845
 2846
 2847
 2848
 2849
 2850
 2851
 2852
 2853
 2854
 2855
 2856
 2857
 2858
 2859
 2860
 2861
 2862
 2863
 2864
 2865
 2866
 2867
 2868
 2869
 2870
 2871
 2872
 2873
 2874
 2875
 2876
 2877
 2878
 2879
 2880
 2881
 2882
 2883
 2884
 2885
 2886
 2887
 2888
 2889
 2890
 2891
 2892
 2893
 2894
 2895
 2896
 2897
 2898
 2899
 2900
 2901
 2902
 2903
 2904
 2905
 2906
 2907
 2908
 2909
 2910
 2911
 2912
 2913
 2914
 2915
 2916
 2917
 2918
 2919
 2920
 2921
 2922
 2923
 2924
 2925
 2926
 2927
 2928
 2929
 2930
 2931
 2932
 2933
 2934
 2935
 2936
 2937
 2938
 2939
 2940
 2941
 2942
 2943
 2944
 2945
 2946
 2947
 2948
 2949
 2950
 2951
 2952
 2953
 2954
 2955
 2956
 2957
 2958
 2959
 2960
 2961
 2962
 2963
 2964
 2965
 2966
 2967
 2968
 2969
 2970
 2971
 2972
 2973
 2974
 2975
 2976
 2977
 2978
 2979
 2980
 2981
 2982
 2983
 2984
 2985
 2986
 2987
 2988
 2989
 2990
 2991
 2992
 2993
 2994
 2995
 2996
 2997
 2998
 2999
 3000
 3001
 3002
 3003
 3004
 3005
 3006
 3007
 3008
 3009
 3010
 3011
 3012
 3013
 3014
 3015
 3016
 3017
 3018
 3019
 3020
 3021
 3022
 3023
 3024
 3025
 3026
 3027
 3028
 3029
 3030
 3031
 3032
 3033
 3034
 3035
 3036
 3037
 3038
 3039
 3040
 3041
 3042
 3043
 3044
 3045
 3046
 3047
 3048
 3049
 3050
 3051
 3052
 3053
 3054
 3055
 3056
 3057
 3058
 3059
 3060
 3061
 3062
 3063
 3064
 3065
 3066
 3067
 3068
 3069
 3070
 3071
 3072
 3073
 3074
 3075
 3076
 3077
 3078
 3079
 3080
 3081
 3082
 3083
 3084
 3085
 3086
 3087
 3088
 3089
 3090
 3091
 3092
 3093
 3094
 3095
 3096
 3097
 3098
 3099
 3100
 3101
 3102
 3103
 3104
 3105
 3106
 3107
 3108
 3109
 3110
 3111
 3112
 3113
 3114
 3115
 3116
 3117
 3118
 3119
 3120
 3121
 3122
 3123
 3124
 3125
 3126
 3127
 3128
 3129
 3130
 3131
 3132
 3133
 3134
 3135
 3136
 3137
 3138
 3139
 3140
 3141
 3142
 3143
 3144
 3145
 3146
 3147
 3148
 3149
 3150
 3151
 3152
 3153
 3154
 3155
 3156
 3157
 3158
 3159
 3160
 3161
 3162
 3163
 3164
 3165
 3166
 3167
 3168
 3169
 3170
 3171
 3172
 3173
 3174
 3175
 3176
 3177
 3178
 3179
 3180
 3181
 3182
 3183
 3184
 3185
 3186
 3187
 3188
 3189
 3190
 3191
 3192
 3193
 3194
 3195
 3196
 3197
 3198
 3199
 3200
 3201
 3202
 3203
 3204
 3205
 3206
 3207
 3208
 3209
 3210
 3211
 3212
 3213
 3214
 3215
 3216
 3217
 3218
 3219
 3220
 3221
 3222
 3223
 3224
 3225
 3226
 3227
 3228
 3229
 3230
 3231
 3232
 3233
 3234
 3235
 3236
 3237
 3238
 3239
 3240
 3241
 3242
 3243
 3244
 3245
 3246
 3247
 3248
 3249
 3250
 3251
 3252
 3253
 3254
 3255
 3256
 3257
 3258
 3259
 3260
 3261
 3262
 3263
 3264
 3265
 3266
 3267
 3268
 3269
 3270
 3271
 3272
 3273
 3274
 3275
 3276
 3277
 3278
 3279
 3280
 3281
 3282
 3283
 3284
 3285
 3286
 3287
 3288
 3289
 3290
 3291
 3292
 3293
 3294
 3295
 3296
 3297
 3298
 3299
 3300
 3301
 3302
 3303
 3304
 3305
 3306
 3307
 3308
 3309
 3310
 3311
 3312
 3313
 3314
 3315
 3316
 3317
 3318
 3319
 3320
 3321
 3322
 3323
 3324
 3325
 3326
 3327
 3328
 3329
 3330
 3331
 3332
 3333
 3334
 3335
 3336
 3337
 3338
 3339
 3340
 3341
 3342
 3343
 3344
 3345
 3346
 3347
 3348
 3349
 3350
 3351
 3352
 3353
 3354
 3355
 3356
 3357
 3358
 3359
 3360
 3361
 3362
 3363
 3364
 3365
 3366
 3367
 3368
 3369
 3370
 3371
 3372
 3373
 3374
 3375
 3376
 3377
 3378
 3379
 3380
 3381
 3382
 3383
 3384
 3385
 3386
 3387
 3388
 3389
 3390
 3391
 3392
 3393
 3394
 3395
 3396
 3397
 3398
 3399
 3400
 3401
 3402
 3403
 3404
 3405
 3406
 3407
 3408
 3409
 3410
 3411
 3412
 3413
 3414
 3415
 3416
 3417
 3418
 3419
 3420
 3421
 3422
 3423
 3424
 3425
 3426
 3427
 3428
 3429
 3430
 3431
 3432
 3433
 3434
 3435
 3436
 3437
 3438
 3439
 3440
 3441
 3442
 3443
 3444
 3445
 3446
 3447
 3448
 3449
 3450
 3451
 3452
 3453
 3454
 3455
 3456
 3457
 3458
 3459
 3460
 3461
 3462
 3463
 3464
 3465
 3466
 3467
 3468
 3469
 3470
 3471
 3472
 3473
 3474
 3475
 3476
 3477
 3478
 3479
 3480
 3481
 3482
 3483
 3484
 3485
 3486
 3487
 3488
 3489
 3490
 3491
 3492
 3493
 3494
 3495
 3496
 3497
 3498
 3499
 3500
 3501
 3502
 3503
 3504
 3505
 3506
 3507
 3508
 3509
 3510
 3511
 3512
 3513
 3514
 3515
 3516
 3517
 3518
 3519
 3520
 3521
 3522
 3523
 3524
 3525
 3526
 3527
 3528
 3529
 3530
 3531
 3532
 3533
 3534
 3535
 3536
 3537
 3538
 3539
 3540
 3541
 3542
 3543
 3544
 3545
 3546
 3547
 3548
 3549
 3550
 3551
 3552
 3553
 3554
 3555
 3556
 3557
 3558
 3559
 3560
 3561
 3562
 3563
 3564
 3565
 3566
 3567
 3568
 3569
 3570
 3571
 3572
 3573
 3574
 3575
 
 | 1997-10-27  Jens-Ulrik Holger Petersen  <petersen@kurims.kyoto-u.ac.jp>
* url.el (url-retrieve-internally): Ensure that coding system for
  the url buffer is set to no-conversion.
1997-10-23  William M. Perry  <wmperry@aventail.com>
* aclocal.m4: Fixed detection of how to rebuild custom-loads.el and
  auto-autoloads.el
1997-10-23  Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr>
* lisp/w3-display.el lisp/w3-widget.el: Lots of fixes for images.
  image hyperlinks are active, even when inside tables (thanks to a
  w3-hyperimage-info text-property, a content for w3-resurrect-images
  and the fact that :href and :target info are now passed on down to
  the children widgets),
  a face can be specified in the stylesheet, which will be used for
  the `alt' tags, e.g.:
  img:link    { color: goldenrod  }
  img:active  { color: goldenrod  }
  img:visited { color: firebrick  }
	
  the `alt' tag of image maps is displayed, to ease visual
  recognition,
  when the `alt' tag is "" and w3-auto-image-alt is non nil,
  an `alt' tag is made from the image src file basename. (WMP change)
1997-10-20  Ching-Mo Chang  <chang@wsu.edu>
* lisp/url-file.el (url-host-is-local-p): recognize XXX:/ as local file
  under NT/Win95/OS2.
* lisp/url-cache.el (url-cache-extract): replace 'os2' with 'emx' when
  comparing system-type.
* lisp/w3-e19.el (w3-store-in-clipboard): Deal gracefully with
  interprogram-cut-function being bound, but nil - we should fall back to 
  the device-specific stuff, not just do nothing.
1997-10-20  William M. Perry  <wmperry@aventail.com>
* texi/w3-faq.txi (Runtime FAQ): New FAQ about Mule 20.x and \201 in front 
  of everything.
1997-10-17  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 4.0pre6 released
* lisp/images.el (image-register-netpbm-utilities): Don't automatically
  dither PNM/PPM files to 256 colors when converting to XPM - its not
  necessary.
1997-10-17  Colin Rafferty <craffert@ml.com>
* lisp/url-auth.el (url-auth-user-prompt): New function to create a pretty 
  prompt that shows the realm or URL that the user should be
  authenticating to.
1997-10-17  William M. Perry  <wmperry@aventail.com>
* contrib/w3-imenu.el: New version of w3-imenu for the contrib directory.
* Emacs/W3 4.0pre5 released.
* lisp/w3.el (w3-find-default-stylesheets): Should now find the stylesheet
  much more often given the new directory layout under Emacs 19.x & 20.x
* lisp/Makefile.in (custom-load.el): Automatically rebuild auto-autoloads
  and custom-load.el if any of the source files have changed.  configure
  now auto-detects how to rebuild them.
Fri Oct 17 06:27:07 1997  William M. Perry  <wmperry@aventail.com>
* lisp/url-cookie.el: autoload url-cookie-parse-file
1997-10-16  William M. Perry  <wmperry@aventail.com>
* lisp/w3-display.el (w3-insert-terminal-char): better handling of HR
  within borderless tables 
* lisp/w3-parse.el (w3-p-s-entity): Don't cons up a string just to insert
  a single character.
* lisp/w3-display.el (w3-display-line-break): 2.3 Mule's char-before requires
  the 'pos' argument, so always send in (point).
* lisp/w3-display.el (w3-dingbats): don't crap out in mule 2.3
* lisp/w3.el (w3-find-default-stylesheets): Make finding no stylesheets a
  fatal error.
1997-10-15  William M. Perry  <wmperry@aventail.com>
* configure.in: Deal with EMACS="t", so you can now configure Emacs/W3
  from within an emacs shell buffer.
1997-10-13  William M. Perry  <wmperry@aventail.com>
* lisp/w3-toolbar.el (w3-toolbar-make-buttons): Default to using text only 
  buttons if w3-toolbar-icon-directory doesn't exist (or is nil if
  locate-data-directory fails)
1997-10-04  SL Baur  <steve@altair.xemacs.org>
* lisp/w3.el (w3-find-default-stylesheets): Use `locate-data-directory' if 
  it exists.
* lisp/w3-toolbar.el (w3-toolbar-make-buttons): Use `locate-data-directory'
  if it exists.
1997-10-03  William M. Perry  <wmperry@aventail.com>
* texi/Makefile.in (install): Ignore errors from the installinfo stage.
1997-10-02  William M. Perry  <wmperry@aventail.com>
* lisp/w3.el: Added autoload for w3-version
* texi/Makefile.in (install): Don't global when doing install-info
1997-09-30  William M. Perry  <wmperry@aventail.com>
* lisp/w3.el (w3-map-links): Use the exposed widget-map-buttons function,
  since XEmacs no longer uses overlays for its internal representation of
  widgets.
1997-09-29  William M. Perry  <wmperry@aventail.com>
* lisp/url-news.el (url-news-version-too-old): Deal with quassia gnus
1997-09-25  William M. Perry  <wmperry@aventail.com>
* lisp/url-news.el (url-format-news): Use 'gnus-article-display-hook
  instead of manually calling gnus-article-hide-headers
  (url-format-news): Also bind gnus-article-current, because some hooks
  might need to use it.
1997-09-22  William M. Perry  <wmperry@aventail.com>
* lisp/url-ns.el (url-ns-prefs): Can now parse a netscape preferences.js
  file and query items out of it.
1997-09-19  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.105 released
* Removed the custom and widget libraries from the distribution.
* configure.in, aclocal.m4: Lots of changes and additional macros for
  detecting features in Emacs Lisp.  New way of detecting acceptable
  widget/custom combinations, and warnings about where to go to get the
  newest version.
1997-09-16  William M. Perry  <wmperry@aventail.com>
* Updated to Widget/Custom 1.9958
1997-09-16  Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr>
* lisp/w3-display.el, lisp/w3.el: Better frame navigation -- 'q','l', etc
  should now back up by framesets, not just by single buffers.
Sat Sep 13 16:26:47 1997  Istvan Marko <istvan@cmdmail.amd.com>
* lisp/w3-mouse.el (w3-follow-inlined-image): Fixed
  w3-follow-inlined-image
Thu Sep 11 15:17:27 1997  William M. Perry  <wmperry@aventail.com>
* lisp/w3-display.el: Go back to creating the 'nil' face all the time,
  even in Emacs - otherwise ps-print chokes.
1997-09-10  William M. Perry  <wmperry@aventail.com>
* lisp/w3-parse.el (w3-parse-buffer): Latest Emacs 20.x has renamed the
  sera-to-fidel-marker function to ethio-sera-to-fidel-marker, so we were
  losing on ethiopic texts.
1997-09-05  William M. Perry  <wmperry@aventail.com>
* Makefile.in: Now includes the 'contrib' directory in distributions.
* aclocal.m4: Fixed custom detection - would sometimes set CUSTOM to the
  directory, sometimes to the filename... ick.
* Makefile.in (dotemacs): Tweaked the install of autoloads into .emacs file
* lisp/font.el (font-normalize-color): Ditto
* lisp/url.el (url-setup-privacy-info): Ditto
* lisp/devices.el: Everything now recognizes 'w32' as an alias for the
  'win32' device type.  This is for Emacs 20.x compatibility, which will
  have this change.
1997-09-04  William M. Perry  <wmperry@aventail.com>
* Updated to Widget/Custom 1.9956
1997-08-25  William M. Perry  <wmperry@aventail.com>
* lisp/w3.el (w3-document-information): Fixed bug with empty 'meta' links.
1997-08-20  William M. Perry  <wmperry@aventail.com>
* lisp/w3-menu.el ((fboundp 'id-menubar-set)): Avoid fset'ing
  id-menubar-set - it was confusing oobr
1997-08-19  William M. Perry  <wmperry@aventail.com>
* New file w3-imenu.el from T.V. Raman <raman@adobe.com>
1997-08-15  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.102 released
* lisp/Makefile.in: Fix for some buggy makes that didn't like my very long
  substitutions on the SOURCES macro.
1997-08-14  Roland McGrath <roland@ai.mit.edu>
* lisp/md5.el (md5): protect kill-buffer from getting already dead buffers
  by using 'buffer-name'
1997-08-12  William M. Perry  <wmperry@aventail.com>
* lisp/w3-display.el (w3-display-nil-face): Don't make the 'nil' face
  under Emacs 19.
* lisp/wid-edit.el (widget-before-change): Allow inhbit-read-only to
  override the before-change checks for if we are at a widget or not.
* lisp/cus-face.el: Path to make cus-face.el play nice with
  emacs 19 without X support.
* lisp/w3-e19.el (w3-mode-version-specifics): Dont' do read-only 
1997-08-10  Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr>
* lisp/w3-display.el: Patch for frames on TTY devices.
1997-08-08  William M. Perry  <wmperry@aventail.com>
* lisp/w3-display.el (w3-table-ascii-border-chars): Back to more
  rectangular ascii art for table borders.
* lisp/socks.el (socks-find-route): Allow negation of regexps by
  prepending a ! to them for a 'proxy if they match' type rule.  The whole 
  configuration of this module needs to change.
1997-08-08  Istvan Marko <istvan@cmdmail.amd.com>
* lisp/url-misc.el (url-proxy): Fix for all proxy access.
1997-08-08  William M. Perry  <wmperry@aventail.com>
* lisp/w3-display.el: Fixed compilation problems under Emacs 20.x that had
  to do with char tables and such.
* lisp/w3-e20.el (w3-e20): Added provide statement for this file - duh.
1997-08-07  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.98 released
* Synch'd up to custom 1.9954
Thu Aug  7 08:16:Denys Duchier <Denys.Duchier@ps.uni-sb.de>
* lisp/w3-display.el (w3-widget-echo): Use
  buffer-substring-no-properties for w3-widget-echo to avoid spurious
  'attempt to change text outside editable field' errors.  Is this needed
  with the new custom?  Doubtful, but its still a good idea. (wmp)
Fri Aug  1 06:00:02 1997  Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr>
* w3-display.el: take into account hierarchical framesets in a same page
  and discards useless "*" values for cols or rows.
Sun Jul 27 18:43:41 1997  William M. Perry  <wmperry@aventail.com>
* configure.in: Added --with-lispdir configure option.
* lisp/url-misc.el (url-proxy): Strip out "#foo" anchors in proxy requests
* configure.in: Fixed guessing of .emacs location to work in shells where
  ~/ is not expanded.
1997-07-26  SL Baur  <steve@altair.xemacs.org>
* mm.el (mm-extension-to-mime): Use `eq' for character comparison.
Sun Jun 29 22:26:43 1997  William M. Perry  <wmperry@aventail.com>
* lisp/w3-emulate.el: Make sure we call widget-button-press not w3-follow-link
* configure.in: New --enable-site-install option to control whether init
  code goes in user's .emacs file or default.el
* Makefile.in (dotemacs): New target for modifying the user's .emacs file
  or the sitewide default init.
  (html): New target for building html versions of the manuals.
Fri Jun 27 21:08:24 1997  William M. Perry  <wmperry@aventail.com>
* texi/Makefile.in (%.html): Added targets for making HTML versions of the
  info files.
1997-06-27  William M. Perry  <wmperry@aventail.com>
* lisp/w3.el: In non-XEmacs, the version-specific stuff is loaded from
  (format "w3-e%d" emacs-major-version), in case we need to do anything
  special for Emacs 20.x with Mule support.
* Only use one conditionalization variable - w3-running-xemacs
1997-06-26  William M. Perry  <wmperry@aventail.com>
* Makefile.in: Make sure we recursively make usin $(MAKE), not
  vanilla 'make'.
* lisp/w3.el (w3-insert-formatted-url): Works again, forgot to update it
  to use the new widget properties.
  (w3-maybe-follow-link): Ditto.
  (w3-view-this-url): Ditto.
  (w3-follow-link): Ditto.
  (w3-complete-link): Ditto.
Wed Jun 25 07:29:46 1997  William M. Perry  <wmperry@aventail.com>
* lisp/w3.el (w3-find-default-stylesheets): Added more directories to the
  stylesheet search path.
* Emacs/W3 3.0.92 released
* Moved lisp stuff into its own subdirectory, integrated into configure,
  make, and install procedures.
* Makefile.in (Makefile): Ditto
* texi/Makefile.in: Automatically rebuilds out-of-date Makefiles
* configure.in: Make sure we create texi/Makefile
* w3-display.el (w3-table-ascii-border-chars): Slightly nicer rounded
  edges for ascii borders on tables.
Tue Jun 24 14:35:05 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.91 Released
* Moved texinfo stuff into its own subdirectory, integrated into
  configure, make, and install procedures.
* url-file.el: Visiting directories with an index file works in asynch
  mode now.
* docomp.el (cl): Load cl during builds
* w3.el (w3-find-default-stylesheets): Added more directories to the
  stylesheet search path.
  (w3-do-setup): Make sure we don't infinitely recurse if we are using
  html bookmarks.  w3-parse-hotlist could call w3-parse-buffer, which will
  call w3-do-setup if we don't set our global flag as 't'.
* Makefile.in (SOURCES): Some reordering to make the stupid thing at least
  compile with Emacs 19.
Tue Jun 24 11:44:59 1997  Per Abrahamsen  <abraham@dina.kvl.dk>
* w3.el (w3-mode): Avoid calling the global bindings for RET and mouse-2. 
1997-06-24  William M. Perry  <wmperry@aventail.com>
* Synch'd up to custom/widget 1.9936
	
* Emacs/W3 3.0.90 released
* Moved the documentation into its own subdirectory
* w3-menu.el: Slightly less complete version of id-menubar-set when not in 
  InfoDock - was causing lots of errors in XEmacs when trying to run a
  non-existent hook.  Bleah.
* configure.in: Fixed AC_CHECK_PROG for emacs/xemacs - duh.
* aclocal.m4: Don't check custom sanity if it was specified on the
  configure line
1997-06-23  William M. Perry  <wmperry@aventail.com>
* url-file.el (url-file): Make sure we set the content-type when loading
  files.  Was screwed when we were asynch.
* Upped planned release # to 4.0
* Emacs/W3 3.0.89 released.
* configure.in: Fixed --with-x*emacs switches.
* Emacs/W3 3.0.88 aborted.
* w3-display.el (w3-display-node): deal with empty selections
* Now uses autoconf to deal with all configuration issues, including
  sanity checking the installation of the custom and widget libraries.
Mon Jun 23 17:08:55 1997  Per Abrahamsen  <abraham@dina.kvl.dk>
* w3.el (w3-mode): Don't call `widget-minor-mode'.
* w3-vars.el (w3-mode-map): Use `make-sparse-keymap'.
  Use `widget-keymap' as parent.
  (wid-edit): require.
Mon Jun 23 07:09:51 1997  William M. Perry  <wmperry@aventail.com>
* w3-parse.el (w3-parse-buffer): Make sure we always have a newline at the
  end of the buffer before starting the parse.
Fri Jun 20 11:23:28 1997  William M. Perry  <wmperry@aventail.com>
* Synch'd up to Widget 1.9929
* w3-mouse.el: Deal with InfoDock button bindings - we don't need to bind
  _anything_ since hyperbole knows all about hyperlinks and stuff.
* w3-menu.el (w3-menu-install-menubar): Deal with InfoDock way of
  specifying mode menubars.
* w3-toolbar.el (w3-add-toolbar-to-buffer): Don't install the toolbar
  under InfoDock - it uses different toolbars than straight XEmacs.
* w3-mouse.el: Don't bind shift-button2 - this is reserved for hyperbole.
  This is now on meta.
1997-06-19  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-map-links): Deal with new keywords.
* w3-menu.el (w3-menu-links-constructor): Deal with new keywords on
  links/images.
  (w3-popup-menu): Ditto.
* w3-display.el (w3-widget-echo): Deal with new keywords we use on widgets.
  (w3-follow-hyperlink): Ditto.
  (w3-balloon-help-callback): Ditto.
  (w3-maybe-start-image-download): Ditto.
  (w3-handle-image): Use new keywords.
  (w3-display-convert-arglist): New function to convert an assoc list into 
  a property list with real CL-style keywords.
  (w3-display-node): Use it when building a hyperlink.
  (w3-resurrect-hyperlinks): Now uses widget-convert-text instead of nasty 
  knowledge of internals of the widget library.
Tue Jun 17 21:45:06 1997  William M. Perry  <wmperry@aventail.com>
* custom-check: Was misusing 'tr'
Sun Jun 15 22:17:01 1997  William M. Perry  <wmperry@aventail.com>
* Synch'd up to custom 1.9920
Sat Jun 14 15:37:09 1997  William M. Perry  <wmperry@aventail.com>
* Synch'd up to custom 1.9918 - now distribute all of custom, just to be
  anal.
* w3-display.el (w3-display-line-break): Ebola vaccination
  (w3-maybe-start-background-image-download): Don't try to load background
  images in Emacs 19 or on a TTY.
  (w3-display-node): Keep track of the active face of a hyperlink.  Need
  to make the widget library smarter about this.
Fri Jun 13 22:16:59 1997  William M. Perry  <wmperry@aventail.com>
* w3-parse.el:  Some stupid sites put meta tags in the middle of their
  documents.  Sigh. Allow it, but bitch and moan.
* Added custom library to the distribution.
1997-06-11  William M. Perry  <wmperry@aventail.com>
* w3-parse.el : Allow <meta> tags in %body.content for stupid cnn.com
  site.
* Emacs/W3 3.0.87 released.
* Synched up to Widget 1.9907 - you must be running this version for most
  things to work.  Make sure you are not picking up a widget library from
  gnus or something like that before the one in the w3 directory.
* w3-display.el (w3-maybe-start-background-image-download): New function
  that takes a URL and a face and does its best to set the background
  pixmap of that face to the image pointed to by the URL.
  (w3-display-node): Implemented 'background' property on 'body' or 'html' 
  tags.
  (w3-finalize-image-download): Changed a fair bit - shared between normal 
  image downloads and background image downloads.
  (w3-display-node): w3-user-colors-take-precedence now controls whether
  background faces are retrieved or not.
  (w3-face-for-element): Stylesheets use of background-image should almost 
  work now.
  (w3-display-node): Stylesheets use of background-image should work
  completely now.
Tue Jun 10 07:24:09 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-only-links): This will now use w3-map-links
  (w3-mode): Dont' set inhibit-read-only, ever.
  (w3-mode): back to using widget-minor-mode, since inheriting the keymap
  doesn't seem to do much good.
* w3-vars.el: Don't bind anything to widget-button-press, let
  widget-minor-mode do that.
* w3.el (w3-map-links): Revamped this to work with the new way widget is
  using overlays instead of text properties.
  (w3-mode): Use widget-minor-mode instead of binding a lot of
  navigational commands ourselves.
* w3-display.el: Make sure we don't try to redefine the w3-dingbats
  character set when loading this file more than once.
  (w3-display-node): Rearranged some of the insert-before handling so that 
  any text inserted does _not_ have the properties of the tag on it
  (colors on hyperlinks won't bleed anymore)
  (w3-resurrect-hyperlinks): New semi-working way of resurrecting
  hyperlinks
Mon Jun  9 22:53:14 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-node): Protect against stylesheet specified
  widths on horizontal rules.
Mon Jun  9 22:42:26 1997  Istvan Marko <istvan@cmdmail.amd.com>
* w3-hot.el (w3-hotlist-apropos): Let this work when reuse-buffers != no
Mon Jun  9 22:35:04 1997  Dieter Maurer <dieter@hit.handshake.de>
* mm.el (mm-decode-quoted-printable): Fix for some multipart attachments
  showing up empty due to badness in mm-decode-quoted-printable and
  'ignore' not moving to the end of the region just decoded.
Mon Jun  9 22:35:04 1997  William M. Perry  <wmperry@aventail.com>
* w3-parse.el (w3-parse-buffer): Call w3-do-setup to make sure our
  hashtables and things are set up correctly or gnus can choke big time.
Mon Jun  9 22:26:29 1997  Michael Ernst <mernst@cs.washington.edu>
* url.el (url-get-url-filename-chars): Fixed problem with bad use of a
  hyphen in the regexp.  Would cause problems when invoking
  url-get-url-at-point when point was in front of a hyphen.
1997-05-28  William M. Perry  <wmperry@aventail.com>
* w3-cus.el: Use a :prefix on most of the groups to make the options look
  nicer.
Thu May 15 05:06:30 1997  William M. Perry  <wmperry@aventail.com>
* w3-sysdp.el: removed bogus definition of buffer-substring-no-properties
  - will now use the more correct one that was already there.
* w3-display.el (w3-pause): Now has its own mini-event loop to pass off
  scrolling commands, etc.  Keeps buffer position constant while doing
  incremental display.
Mon May 12 08:13:27 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-view-this-url): Check the parent widget for an href if you
  don't find one right away.  This means that all commands that act on the
  URL at point will now work on image widgets, etc. that are hyperlinks.
Sat May 10 14:37:25 1997  William M. Perry  <wmperry@aventail.com>
* css.el (css-parse): Deal better with newline-challenged stylesheets
  (css-parse): Don't be so aggressive in finding block data for @xyzzy
  directives.
* mm.el (mm-viewer-passes-test): Always run the tests in the users home
  directory.
* w3-mouse.el: Use down-mouse-N in Emacs 19, to be more consistent with
  how the XEmacs keybindings work.
Fri May  9 11:32:46 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-document-information): some formatting changes
Thu May  8 14:06:40 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.86 released
* mule-sysdp.el (mule-code-convert-region): Try to deal gracefully with
  the recent XEmacs 20.0 -> 20.2 renaming of the autodetect coding system
  to automatic-conversion
* w3-sysdp.el (event-point): New stub.
* url-cookie.el (url-cookie-handle-set-cookie): Don't use the 'warn'
  facility for bad cookie 'set' commands, was too annoying.
* w3.el (w3-save-as): Make sure to require ps-print before trying to
  save/mail a document as postscript.  The local binding of
  ps-spool-buffer-name was causing the defvar not to happen, and you would 
  get errors when trying to kill emacs later.  Ugh.
  (w3-document-information): Make sure to escape entities for meta and
  other info we throw in.
* url-file.el (url-file): ftp/file retrieval can now be asynchronous
  through the magic of [ange-ftp|efs]-copy-file-internal
* url.el (url-sentinel): Allow a buffer as the first argument to
  the sentinel function.
  (url-retrieve-internally): Allow asynch ftp transfers
* url-file.el (url-file): Asynchronous ftp downloads work now.
* w3.el (w3-download-url): Made this function interactive.
Mon Apr 28 13:31:36 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-download-url-at-point): new function to download document
  under point.
  (w3-download-this-url): new function to download current document.
* w3-vars.el (w3-mode-map): Added 'D' and 'd' bindings for starting
  document downloads.
Thu Apr 24 08:29:34 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.85 released
* w3-display.el (w3-display-table-dimensions): Deal with
  colgroup/thead/tfoot/col better.  Before was ignoring the rest of the
  table.  ack.
  (w3-display-table): ditto
* w3-prefs.el (w3-preferences-restore-variables): Slap things into
  custom-land where they belong.
* A few customization tweaks.
Wed Apr 23 21:44:59 1997  <chang@wsu.edu>
* w3-e19.el (w3-store-in-clipboard): Make this work under OS/2
Tue Apr 22 07:23:51 1997  William M. Perry  <wmperry@aventail.com>
* devices.el: Removed defsubsts so that we should be able to share .elc
  files again between emacs and XEmacs.
* font.el: Added in code to make a face blink.  Causes lots of screen
  flicker under Emacs 19 though, so it is turned off by default.  Turn it
  on with ESC-: (font-blink-initialize) - should be able to optimize when
  the callback actually does anything based on what fonts are visible in
  the visible buffers.
  (font-face-visible-in-window-p): New function to tell if a face is
  visible in a buffer window.
  (font-map-windows): New function to map a function over all visible
  windows.
  (font-blink-callback): Use them to optimize so that invert-face is not
  called unless absolutely necessary.
Mon Apr 21 08:58:02 1997  William M. Perry  <wmperry@aventail.com>
* w3-e19.el: Added in compile-time require of w3-props so that pages with
  backgrounds don't puke and die.
* w3.el (w3-find-default-stylesheets): Don't load a user's personal
  stylesheet if we started up in '-q' mode.
* Emacs/W3 3.0.84 released
* w3-display.el: When using XEmacs 20.x w/mule support, we now define our
  own special character set.  This means that the table border chars work
  again in XEmacs/mule
* devices.el: Added magic to not optimize this file under XEmacs - its not 
  actually used, so no damage.  It wouldn't compile under XEmacs because
  it has subrs for all these, and our declaring them as defsubsts
  thoroughly confuses the byte-compiler.
Sun Apr 20 12:19:56 1997  William M. Perry  <wmperry@aventail.com>
* w3-sysdp.el: Moved device stuf out into its own devices.el file so that
  it can be correctly byte-compiled.
  Ditto for the text properties stuff (into w3-props.el)
Fri Apr 18 13:09:31 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.83 released
* Synch'd up to Widget 1.89
Thu Apr 17 06:20:56 1997  "T. V. Raman" <raman@Adobe.COM>
* default.css (pre/xmp/plaintext/key/code/tt): Changes to default
  stylesheet for spoken output of normally `monospaced' text.
Tue Apr 15 16:28:11 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-find-specific-link): Don't signal an error in a target anchor
  (#foo) is not found.
Tue Apr 15 08:22:37 1997  John Palmieri <palmieri@math.mit.edu>
* w3.el (w3-complete-link): protect against errors when hitting return
  when point isn't on a link
Mon Apr 14 16:18:43 1997  William M. Perry  <wmperry@aventail.com>
* mm.el (mm-parse-mailcaps): Moved ~/.mailcap to the front of the list so
  that it gets parsed last, and has the highest priority.
Sun Apr 13 20:28:30 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-complete-link): now correctly defaults to following the link
  at point.
Sat Apr 12 19:35:26 1997  William M. Perry  <wmperry@aventail.com>
* w3-speak.el: use widget-at instead of emacspeak-widget-at
Fri Apr 11 07:39:26 1997  William M. Perry  <wmperry@aventail.com>
* w3-menu.el (w3-menu-edit-menu): Addded a preferences submenu with all
  the W3 & URL customization items underneat it.
* css.el (css-split-font-shorthand): Handle bad lists better
* Emacs/W3 3.0.82 released
* Synch'd up with Widget 1.78
* w3-display.el (w3-get-face-info): Don't look for face attributes on tags
  unless w3-user-colors-take-precedence is nil
  (w3-display-node): Don't honor face attributes on <body> tag unless
  w3-user-colors-take-precedence is nil
* url-vars.el: Modified a few customizations to make them prettier
* url-cache.el (url-cache-creation-function): Modified customization
Fri Apr 11 07:03:20 1997  Hrvoje Niksic <hniksic@srce.hr>
* url-cache.el, url-gw.el, url-cookie.el, url-irc.el, url-vars.el, url.el:
  All URL related variables are now customizable.
Wed Apr  9 16:46:52 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.81 released
* w3-xemac.el (w3-text-pixel-width): And a XEmacs specific version of it.
* w3-e19.el (w3-text-pixel-width): New function to return the pixel width
  of a piece of text.
* url.el (url-handle-no-scheme): Use it.
* url-vars.el (url-handle-no-scheme-hook): New hook that should expand a
  partial url like 'gnu' to a full URL, like 'http://www.gnu.org/'.
* w3-sysdp.el (run-hook-with-args-until-success): Added a stub for
  run-hook-with-args-until-success
Tue Apr  8 12:20:39 1997  William M. Perry  <wmperry@aventail.com>
* w3-auto.el: Added autoloads for all the functions in url-ns for proxy
  functions, and url-mail
* url-ns.el (isPlainHostName): Fixed isPlainHostName
* w3-parse.el (w3-parse-buffer): now throws up a bad style warning for
  images without ALT attributes.
* mm.el (mm-parse-mailcaps): Reverse the ':|;' separated path for MAILCAPS
  so that earlier items take precedence, like standard unix PATH-like
  variables do.
  (mm-parse-mimetypes): Ditto for MIMETYPES
Mon Apr  7 06:23:11 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.80 released
* w3-parse.el: Some more transitions - don't imply <p> after some form
  tags.
* url-misc.el (url-finger): Ditto
* url-http.el (url-http): Ditto
* url-gopher.el (url-gopher-retrieve): Put in a process-sentinel of
  'ignore so that stupid 'process xxx exited with code nnn' messages are
  not shown.
* url.el (url-sentinel): Ditto
* w3.el (w3-sentinel): remove call to url-clean-text - no longer needed
Mon Apr  7 02:57:19 1997  Greg Stark  <gsstark@mit.edu>
* url.el (url-sentinel): once and for all eliminate the "first character
  goes to wrong buffer" bug through brute force by setting the current
  buffer to the buffer of the selected window at the end of a sentinel.
* w3.el (w3-viewer-sentinel): ditto
* w3-widget.el (widget-image-value-create): set tab-order to -1 on the
  choice-items of client-side imagemaps to avoid having tab stop on them
  three times, (it still stops on them twice) 
* Makefile: add "make fast" rule to not run a bazillion emacsen
* FAQ: typos
* docomp.el: try setting byte-compile-dynamic to t to reduce memory usage
Fri Apr  4 06:23:31 1997  William M. Perry  <wmperry@aventail.com>
* url-file.el (url-format-directory): Use insert-file-contents instead of
  -literally, so that ftp index files will work.
* w3-emulate.el: lots of new commands to spoof the user-agent string.  See
  turn-[on|off]-[lynx|netscape|ie|arena]-masquerade-mode functions.
Thu Apr  3 07:22:27 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.79 released
* w3-parse.el: Put in <p> as part of the content-model of <ul/ol> so that
  <p> at the front of a list doesn't cause a bogus list item to be shown.
* url-http.el (url-parse-mime-headers): Make proxy authentication sort of
  work again.
* w3-display.el (w3-setup-terminal-chars): Check to see whether face is
  actually different before trying to set its font to a terminal one.
* url.el (url-buffer-visiting): Better matching of URLs - it was taking
  the target into account - bad bad bad.
Wed Apr  2 18:05:11 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-add-element): New way to do hidden form
  fields that retains the order information - damned idiots out there rely
  on ordering.  !#%!@
* w3.el (w3-fetch): Put some of the logic about _blank/_top frame targets
  into w3-fetch
* w3-display.el (w3-get-all-face-info): Added in support for the 'face'
  attribute to specify font-family
Wed Apr  2 13:08:36 1997  Frederic Lepied <Frederic.Lepied@sugix.frmug.org>
* w3-print.el (w3-print-this-url): Need to run LaTeX to get the indices
  right.
Tue Apr  1 11:20:54 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.78 released
* css.el (css-color-light-p): New function
  (css-active-device-types): Use it to add a 'dark' or 'light' property to
  the active device types as necessary
Mon Mar 31 09:07:13 1997  William M. Perry  <wmperry@aventail.com>
* w3-parse.el: More error transitions for tables (push tr before td/th
  just after a table)
* w3-display.el (w3-display-node): Use it for body/html attribute handling
  (w3-fix-color): New function to make sure we don't pass hex values without
  "#" in front of them.
Sun Mar 30 15:00:59 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-node): Now honors alink/vlink/link attributes
  on the body tag.
  (w3-fixup-eol-faces): Fixed nuking of faces at end of line to deal with
  bad underlining behaviour of Emacs 19.
Sun Mar 30 14:28:32 1997  Greg Stark <gsstark@mit.edu>
* w3-e19.el (w3-mode-version-specifics): Fixed buffer read-only errors
  when trying to set a background face.
Fri Mar 28 10:41:43 1997  William M. Perry  <wmperry@aventail.com>
* Emacs/W3 3.0.77 released
* w3-display.el (w3-display-table): Face properties specified on the
  'table' element now propogate to table cells correctly.
Fri Mar 28 07:53:48 1997  Greg Stark <gsstark@mit.edu>
* w3-forms.el: Make sure we set the button-face on all widgets
Fri Mar 28 07:53:48 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-frames): Use make-frame, not make-frame-command, so it
  will work on XEmacs.
* w3-e19.el (w3-mode-version-specifics): Now honors background/foreground
  color requests in Emacs19 by coloring in the whole buffer.  Oh how I
  wish Emacs 19 had buffer-local faces.
* w3-display.el (w3-display-table): Tables now look better under Emacs 19
Thu Mar 27 08:05:34 1997  William M. Perry  <wmperry@aventail.com>
* font.el (font-x-registry-and-encoding-regexp): got rid of compile
  warning under Emacs 19
* w3-display.el (w3-display-handle-list-type): manually remove faces on
  bullet/list items
  (w3-display-node): We were being a bit rude to inhibit-read-only -
  sometimes would leave it 't', which is bad bad bad, some might even say
  pure evil.
* Emacs-W3 3.0.76 released
* Synch'd up to Widget 1.68
* w3-display.el (w3-display-node): Handles 'text' attribute correctly now
  to set the default foreground when requested.
* mm.el (mm-play-sound-file): Fixed it for new mule stuff
* url-gw.el (url-gateway-nslookup-host): Added autoload for
  gateway-nslookup-host
* w3-display.el (w3-display-table): Expand each line of a table cell out
  to the border, so that we get nicely colors backgrounds for table cells
  now.
* font.el (font-x-registry-and-encoding-regexp): New variable to match the
  registry and encoding of a font name under X
  (x-font-create-object): Use it to set the default registry and encoding
  for font objects we create from font names.
  (x-font-create-name): Grab the registry and encoding from the default
  object for this device before defaulting back to '*'
* w3-display.el (w3-setup-terminal-chars): Explicitly specify wildcard
  registry and encoding for the table-hack-x-face, to deal with changes in
  the font library.
Wed Mar 26 06:23:51 1997  William M. Perry  <wmperry@aventail.com>
* custom-check: Should work better now, and spit out better instructions
  for rebuilding correctly.
* Emacs-W3 3.0.75 released
* url.el (url-clean-text): Better matching of bogus process exited
  messages.
* font.el (font-rgb-color-p): No longer match "^#xxyyzz" as an rgb-color,
  this screwed up bigtime in font-color-rgb-components.
  (font-set-face-foreground): Do the test here instead.
  (font-set-face-background): and here.
* w3-widget.el (widget-image-value-create): For client side imagemaps,
  make sure case-fold-search or :ignore-case is specified.
* url-gw.el (url-gateway-nslookup-program): Default to using 'nslookup' as
  url-gateway-nslookup-program
Tue Mar 25 16:06:28 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.74 released
Tue Mar 25 15:31:56 1997  Greg Stark <gsstark@mit.edu>
* url-cookie.el (url-cookie-handle-set-cookie): don't deal with #!%@ed
  microsoft web site cookies - they break good, clean, wholesome sites
  like yahoo's stock pages.
* ssl.el (ssl-program-arguments): Make sure everything gets turned into a
  string, not an integer.
  (open-ssl-stream): use a pipe instead of a pty if possible (why?)
* w3-display.el (w3-display-node): Added back in <keygen> support
* w3.el (w3-notify-when-ready): protect against bad buffer switching
  (minibuffer as active window lossage, etc)
* w3-toolbar.el (w3-toolbar-make-buttons): Don't warn about toolbar
  directory on Emacsen that can't do toolbars!
Tue Mar 25 15:31:56 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.73 released
* w3-display.el (w3-get-face-info): Allow passing in a second argument
  that means 'check this attribute of the html tag if you don't find
  something in the stylesheet'.  This automatically enables <font color>
  and <table|td|tr bgcolor>.
Tue Mar 25 06:45:02 1997  T. V. Raman <raman@Adobe.COM>
* w3-forms.el (w3-form-keymap): patch to avoid lossage with emacspeak &
  using terminal.el
Tue Mar 25 06:45:02 1997  William M. Perry  <wmperry@aventail.com>
* ssl.el (ssl-program-arguments): Removed -quiet switch, since it requires
  patches to s_client
Mon Mar 24 10:56:11 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.72 released
* w3-display.el (w3-display-node): Better handling of body and html style
  attributes in XEmacs
* w3.el (w3-mode): Removed call to kill-all-local-variables, as it
  nukes buffer-local faces as well.
* css.el (css-expand-length): Don't choke and use the wrong damn thing to
  base percentages off of on percentage heights (ie: font-size: 80%)
Mon Mar 24 07:12:52 1997  Gerry S Hayes <sumner@CMU.EDU>
* url-gw.el (url-open-telnet): Fixed stupid typo into-to-string ->
  int-to-string
  (url-open-rlogin): Ditto.
Sun Mar 23 09:43:24 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-table-ascii-border-chars): Use a '+' in the ascii art
  version of table borders.
Sat Mar 22 00:45:34 1997  William M. Perry  <wmperry@aventail.com>
* w3-menu.el (w3-use-menus): Customized this variable
* w3-display.el (w3-display-node): Don't run multiline text area's default
  value through w3-normalize-spaces
Thu Mar 20 23:44:50 1997  Greg Stark  <gsstark@mit.edu>
* w3-cus.el (w3-use-terminal-characters): New variable
  (w3-use-terminal-characters-on-tty): New variable
  (w3-use-terminal-glyphs): New variable
  (w3-horizontal-rule-char): Make setting it to nil allow use of graphic
  characters (also means people can avoid using graphic charactes for
  horizontal rules if they wish)
* w3-display.el (w3-handle-image): clean up whitespace in alt tags
  (w3-table-glyph-border-chars): New variable
  (w3-table-graphic-border-chars): New variable
  (w3-terminal-properties): New variable
  (w3-insert-terminal-char): New inline function
  (w3-horizontal-rule-char): New inline function 
  (w3-setup-terminal-chars): Set up all of these and make using graphic
  characters work on XEmacs using text properties (and optionally use text
  properties on FSF Emacs too). 
  (w3-table-hack-borders): Remove, obsoleted by w3-setup-terminal-chars
  (w3-table-unhack-borders): don't have to fiddle with
  w3-horizontal-rule-char any more.
  (w3-display-table): Use w3-insert-terminal-char
  (w3-size-of-tree):  Use w3-horizontal-rule-char
  (w3-display-node):  Use w3-horizontal-rule-char, w3-insert-terminal-char,
  uhm, i'm not sure if it was correct to remove the handle-content
* w3-forms.el (w3-fixup-eol-faces): try to remove mouse-face from end-of-lines as
  well, uhm, this doesn't seem to work though. 
  (w3-form-determine-size): add keygen 
  (w3-form-encode-helper): add keygen support for the day when the ssl code
  itself is released. 
* w3-widget.el (widget-image-value-create): use 'item widgets instead of
  'push-button widgets and specify the format ourselves so we don't get
  widget.el's arbitrary formatting.
* w3.el (w3-do-setup): call w3-setup-terminal-chars to make nice tables and
  horizontal rules the default at least under X.
* mm.el added x-x509-ca-cert and x-x509-user-cert viewers but the tests
  will fail so no one should should see this change until i release the
  functions.
	
Fri Mar 21 18:52:31 1997  William M. Perry  <wmperry@aventail.com>
* css.el (css-expand-length): Better support for percentage values in
  lengths
Thu Mar 20 06:22:29 1997  Istvan Marko <istvan@cmdmail.amd.com>
* Added slot for no_proxy settings under the preferences panel
Thu Mar 20 06:22:29 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.71 released
* w3-parse.el:Added more transitions for error handling of raw 'td' or
  'th' outside of a 'tr' in tablebody.
* url.el (url-default-callback): asynch downloads should now be cached
* w3-script.el (w3-do-scripting): Customized, turned off by default
Wed Mar 19 20:53:23 1997  Steven L Baur  <steve@altair.xemacs.org>
* Makefile (xemacs-w3): Special target for XEmacs Build.
Wed Mar 19 05:56:56 1997  William M. Perry  <wmperry@aventail.com>
* font.el (x-font-families-for-device): Just in case
  font-default-family-for-device fails under Emacs/NT, return "monospace"
  at the front of the list.
* url-vars.el (url-privacy-level): Now defaults to not sending your email
  address in HTTP requests.
Tue Mar 18 13:09:13 1997  William M. Perry  <wmperry@aventail.com>
* url-cookie.el (url-cookie-handle-set-cookie): Fixed variable typos -
  doh.  Today just hasn't been my day.
* Emacs-W3 3.0.70 released
* We now pass all tests on the forms tester page
  http://www.research.digital.com/nsl/formtest/home.html
* w3-display.el (w3-display-node): Better handling of <select multiple>
  and <select> in general.
* w3-forms.el (w3-form-encode-xwfu): Encode : and / in xwfu, since the
  form tester expects it.
* url-cookie.el (url-cookie-trusted-urls): New variable - list of regexps
  of URLs that you will accept cookies from without question.
  (url-cookie-untrusted-urls): New variable - list of regexps of URLs that
  you will _never_ accept cookies from.
  (url-cookie-handle-set-cookie): Use them
  (url-cookie-handle-set-cookie): When asking whether to allow a site to
  set a cookie, show the cookies they are wanting to set.
Tue Mar 18 06:47:46 1997  Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr>
* w3-display.el: Latest round of patches for <frames> support.
* w3-cus.el (w3-display-frames): can now have 4 values.
	nil		no frame display whatsoever (currently the default)
	'as-links	display frame hyperlinks, but do not fetch them
	'ask		display frame hyperlinks and ask whether to fetch them
	t		display frame hyperlinks and fetch them
Tue Mar 18 06:47:46 1997  William M. Perry  <wmperry@aventail.com>
* w3-parse.el (w3-parse-buffer): Duh, don't do `=' comparison on results
  of char-after, since it is nil at the end of the buffer.
Mon Mar 17 08:44:46 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.69 released
* w3-sysdp.el (buffer-substring-no-properties): Added stub
* url-gopher.el (url-gopher-retrieve): Ditto.
* url.el: Ditto
* w3-parse.el: Removed all sorts of fun (following-char) commands that can
  cause ebola warnings under XEmacs 20.x
* w3.el (w3-popup-info): Default to the URL under point instead of the
  documents URL
* w3-auto.el: updated autoloads - made sure everything was interactive if
  appropriate.
* w3-menu.el (w3-popup-menu): If w3-popup-menu-on-mouse-3 is nil, call
  whatever button3 is bound to in global-map
* w3-display.el: Added XEmacs version of frame-char-height and
  frame-char-width
  (w3-frames): If w3-display-frames is non-nil, then do a refresh with it
  bound locally, so everything should just work.
* url.el (url-do-setup): Global history file now defaults to ~/.w3/history
  (url-do-setup): Cookie storage now defaults to ~/.w3/cookies
Mon Mar 17 06:51:07 1997  Paul Stodghill <stodghil@CS.Cornell.EDU>
* mm.el (mm-temporary-directory): Initialize variable from TMPDIR
  environment variable
Fri Mar 14 13:35:56 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-create-custom): Fixed the 'custom' input type for
  new filenames in the widget/custom package.
* ssl.el (ssl-certificate-verification-depth): New variable to control how
  far up a cert chain to look.
  (ssl-view-certificate-program-name): New variable.
  (ssl-view-certificate-program-arguments): New variable.
  (ssl-certificate-directory-style): New variable.
  (ssl-rehash-program-name): New variable.
  (ssl-certificate-directory): New variable.
  (ssl-program-arguments): Use some of them.
  (ssl-accept-ca-certificate): Use the rest.
* css.el (css-parse-args): Removed old code that could cause infinite loop
  in stylesheet parsing on bad things like "foo=bar" instead of "foo:bar"
* w3-cus.el: Added better groupings for the customization stuff.
Thu Mar 13 19:54:50 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.68 released
* w3-cus.el: Added customization support for Emacs-W3
* w3.el (w3-mail-current-document): Use url-mail-command instead of
  w3-mail-command
Thu Mar 13 11:41:42 1997  Greg Stark  <gsstark@mit.edu>
* w3-prefs.el: Implemented privacy panel
Wed Mar 12 10:25:38 1997  William M. Perry  <wmperry@aventail.com>
* w3-e19.el (w3-mode-version-specifics): Use the nasty crufty
  buffer-access-fontify-functions to make sure that we never yank
  read-only text out of the Emacs-W3 buffer.
* Synch'd up to Widget 1.62
Wed Mar 12 06:36:41 1997  Paul Stodghill <stodghil@CS.Cornell.EDU>
* base64.el (base64-decode-region): Fixed typo in calling
  command-on-region.
Tue Mar 11 07:03:48 1997  William M. Perry  <wmperry@aventail.com>
* w3-auto.el (w3-use-hotlist): Made autoload interactive
* w3-widget.el (widget-image-value-create): Was a little too aggressive
  about when to apply the -1 :tab-order property.  Now only images that
  are not hyperlinks or imagemaps will not be tabbed to.
* w3-prefs.el (w3-preferences-init-proxy-panel): Updated preferences panel
  for new format of url-proxy-services
* w3-vars.el (w3-hyperlink-menu): Fixed problem with calling wrong
  bookmark function - would create a bookmark to the current document, not
  the document under the mouse.
  (w3-popup-menu): Added a few menu itmes (reload, show images, add bookmark)
* w3-hot.el (w3-hotlist-add-document-at-point): Extract the title
  correctly for the new widget implementation of hyperlinks.
Mon Mar 10 06:31:48 1997  William M. Perry  <wmperry@aventail.com>
* w3-menu.el (w3-menu-options-menu): Fixed problem with XEmacs when
  building without toolbars - would insert nil in the menu in a very wrong
  place.
* font.el (font-normalize-color): Under win32, make sure we define the
  color before we try to use it, since Emacs doesn't support raw #RRGGBB
  color specifications yet.
  (font-rgb-color-p): make all #RRGGBB color specs go through
  font-normalize-color
* Emacs-W3 3.0.67 released
Mon Mar 10 1997  Dave Love  <d.love@dl.ac.uk>
* w3.el (w3-do-setup): Make configuration file loading contingent
  on init-file-user (i.e. suppressed with -q).
Sun Mar  9 13:09:38 1997  William M. Perry  <wmperry@aventail.com>
* w3-widget.el (widget-image-value-create): Set :tab-order to -1 so the
  latest widget library won't tab to image widgets.
* w3.el (w3-mode): Make sure w3-mode-hook is run last, so that people can
  turn off truncate-lines if they want.
* ssl.el (open-ssl-stream): ssl-program-arguments is now dynamically
  evaluated, similar to ps-lpr-switches.  The special symbols 'host' and
  'port' are available, and bound to the hostname and port#/service we are
  about to connect to.
* w3-display.el (w3-finish-drawing): Remove all read-only properties on
  text.
* url-cache.el (url-cache-expired): fixed standalone mode
Sat Mar  8 09:13:59 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.66 released.
* url-cache.el (url-cache-prepare): Threw a condition-case around the
  make-directory call, just in case we can't create the file for some
  reason.  Also fixed bug where the file wouldn't be cached until the
  second time you visited it.
* url.el (url-retrieve-internally): Deal with https asynch
* w3-xemac.el (w3-mode-version-specifics): Don't try to add the toolbar if
  device-type == 'stream.
* w3-vars.el (w3-temporary-directory): Ditto.
* url-vars.el (url-temporary-directory): Initialize from TMPDIR
  environment variable.
* w3.el (w3-start-viewer): Ditto.
* md5.el (md5): Ditto.
* mm.el (mm-compose-type): Don't use hardcoded /bin/sh and -c - use
  shell-file-name and shell-command-switch
  (mm-viewer-passes-test): ditto.
* w3-sysdp.el: Better device-* functions for Emacs-19 under win32 and OS/2
* w3-display.el (w3-display-node): Better handling for <noframes> support.
Fri Mar  7 06:13:20 1997  William M. Perry  <wmperry@aventail.com>
* w3-script.el (w3-script-evaluate-form): protect against bad input during
  the read-from-string when parsing emacs-lisp scripts.
* w3-auto.el (w3-preferences-edit): Make the autoload for this be
  interactive so that the user can actually find it!
* Emacs-W3 3.0.65 released.
* w3.el (w3-document-information): Better handling of last-modified
  findings.
* w3-forms.el (w3-form-create-image): Try to use the value of an
  image-input area as the label for the widget we create.
* w3-elisp.el (w3-elisp-safe-eval): Throw a condition-case() around the
  eval to catch bad forms, etc.
* w3-script.el (w3-script-evaluate-form): Don't signal an error on unknown
  scripting languages, just show a warning.
Thu Mar  6 08:24:49 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-complete-link): Protect against malformed widgets (null :from
  or :to).  Is this from delayed image widgets?
* w3-vars.el (w3-mode-map): Changed binding of M-s to w3-save-as instead
  of w3-search - does anybody use that instead of the forms interface?
* w3.el (w3-document-information): Show document size
* css.el (css-parse): Removed warning about old-style stuff for
  device-dependent styles - was too annoying.  Need to just remove this
  support totally for the 3.0 release.
* w3.el (w3-internal-handle-preview): When previewing a buffer, remove all
  text properties from the document source before doing anything.
  (w3-mail-current-document): Bind case-fold-search when looking for where
  to insert the <base> tag.
  (w3-loaded-stylesheets): New variable to keep track of what stylesheets
  were loaded at startup.
* url-cache.el (url-cache-create-filename-human-readable): New function to
  create cached filenames using the old method, that was slightly more
  human readable.
Wed Mar  5 15:38:00 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.64 released
* w3-parse.el: OH god, finally got raw text inside a <tr> to push a <td>
  onto the parse tree.  got raw text inside a <table> to push a <tr>
  onto the parse tee.
* w3-widget.el: Support 'target' in img widgets
Tue Mar  4 07:55:56 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-node): Support 'seqnum' attribute
* w3.el (w3-mail-document-author): Fixed for new 'link' representation
  (w3-document-information): If a document has a 'Last modified: blah' line,
  use it as the last modified information as a last resort.
* Synch'ed up with widget 1.50
* w3-forms.el: Try to play nice with old and new versions of
  widget-edit/wid-edit.el
Tue Mar  4 06:23:41 1997  Michael Ernst <mernst@cs.washington.edu>
* url.el (url-get-url-at-point): If a possible URL starts with www., slap
  on 'http://', as someone probably just forgot it.
Tue Mar  4 06:23:41 1997  William M. Perry  <wmperry@aventail.com>
* w3-prefs.el (w3-preferences-hooks-variables): Removed some old variables.
  (w3-preferences-edit): The preferences panel actually works again.  No
  longer tries to use an imagemap - a dropdown is good enough dammit.
* w3-vars.el: Removed some old variables
* w3-display.el (w3-display-node): For <a> tags, do not embed a widget in
  the buffer unless it actually has an 'href' attribute.  This helps a
  _lot_ with <a name="blah">...</a> constructs.
Tue Mar  4 06:18:06 1997  Toby Speight <tms@ansa.co.uk>
* w3.el (w3-mail-current-document): Allow TM (if it's in use) to choose
  the appropriate Transfer-Encoding of a mailed document.
  (w3-mail-current-document): Try real hard to put <base> where it belongs
  (in the <head>, if that is not found, then just after <html>, otherwise
  just at the beginning of the document)
Mon Mar  3 07:10:11 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.63 released
* w3-forms.el (w3-form-field-label): Labels are now reimplemented for form
  fields
* w3-display.el (w3-parse-link): Now honors the old variable
  w3-honor-stylesheets, which hadn't made it back onto the reimplemented
  features list yet.
* font.el: Added quite a few autoloads.  Package no longer overwrites the
  set-face-* functions, as this was deemed evil in the extreme.
* w3-display.el (w3-face-for-element): Use the font-set-face-* functions
  instead of the raw set-face-* functions.
* w3-widget.el (widget-image-inaudible-p): New variable that controls
  whether image widgets are rendered inaudible by emacspeak or not.
  (widget-image-value-set): Use it.
* url-cache.el (url-cache-directory): New variable that controls where you
  cache files will be stored.  Defaults to "~/.w3/cache"
  (url-cache-creation-function): New variable that controls what function
  will be used to create cached filenames.
  (url-cache-create-filename-using-md5): This is now the default (and
  only) cache-file-creation function.  Suitably fast under Emacs 19 (lisp
  implementation), _very_ fast under XEmacs, where it is written in C.
Thu Feb 27 07:27:43 1997  William M. Perry  <wmperry@aventail.com>
* w3-sysdp.el: Added alias of make-symbolic-link to copy-file for NTEmacs
* w3-elisp.el: Removed face functions from the safe list.
Wed Feb 26 16:08:08 1997  Per Abrahamsen  <abraham@dina.kvl.dk>
* font.el (font-create-object): Added autoload.
Wed Feb 26 08:17:37 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-region): Fixed typo when binding
  w3-display-same-buffer - no wonder it wasn't working right.
* images.el (image-normalize): Bind file-coding-system to the appropriate
  no-conversion so that running subprocesses doesn't munge the data when
  running under MULE.
  (image-normalize): Now uses call-process-region instead of
  shell-command-on-region, and removed the explicit mention of '/bin/sh'
  and friends.  Uses the ability of call-process-region to specify a
  separate file to use for stderr - yipeee.
* url.el (url-setup-privacy-info): Slight change as to how url-system-type
  and url-os-type are set up.  No longer uses nested parens, as this seems
  to confuse some sites that try to use the User-Agent header as a
  state-tracker.
Mon Feb 24 10:15:45 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-widget-echo): Make sure that nothing that will be
  echoed is the empty string.
Sun Feb 23 08:34:18 1997  William M. Perry  <wmperry@aventail.com>
* url-cache.el (url-store-in-cache): fixed stupid bug in caching logic
Sat Feb 22 07:21:29 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.62 released
Thu Feb 20 13:40:22 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-summarize-password): By default, don't summarize
  password entry boxes.
Thu Feb 20 07:33:59 1997  Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr>
* w3-display.el (w3-frames): Better support for Frames
Thu Feb 20 07:33:59 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-complete-link): Fixed bug in using try-completion to make sure
  we have a match before passing a URL off to w3-fetch.
* Synch'd up to widget 1.44
* url.el (url-default-callback): Caching works in asynch mode now.
Wed Feb 19 05:48:40 1997  William M. Perry  <wmperry@aventail.com>
* css.el (css-split-font-shorthand): Make sure that the subelements of the
  'font' shorthand property get run through the property value-expansion
  routines before getting returned.  This royally screwed up font-family,
  font-weight, and friends.
  (css-expand-color):  Now recognizes 'transparent' and 'none' as special
  color names.
  (css-expand-value): When dealing with color-shorthand, make sure
  everything gets run through the value-expansion routines as well.  Ack.
* w3-elisp.el (w3-elisp-safe-function): You can now supply a validation
  function for the arguments of a script-enabled function, its no longer a
  binary operation on just the function name.  You can also give it a
  variable name, and the value of that variable at the time of execution
  is what controls whether it is safe or not.
* w3.el (w3-download-url): Finally fixed bug where w3-download-url would
  not save in the correct directory if you just accepted the default
  pathname it offered.
* url-cache.el (url-cache-ignored-protocols): New variable controlling
  what protocols we should never cache to disk.
  (url-cache-cachable-p): use it.
* w3.txi: Updated all nodes and menus, a few stylistic changes
* w3-elisp.el: Added read-access to devices, frames, windows, buffers, and
  property-lists.  Also added function, lambda, point, and list accessors
  (member, memq, assoc)
* w3-display.el (w3-display-node): Bind widget-push-button-gui to nil in
  w3-display-node so that images don't run into the
  visible-portion-of-buffer-is-not-modifiable-bug.  Ick.
* w3-elisp.el: Don't allow access to 'set'-type text-property functions
  from scripts.
Tue Feb 18 15:11:08 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.61 released
* w3.txi (Supported URLs): added sections on each protocol supported -
  needs lots of fleshing out.
* url-misc.el (url-info): Info URL loader now unhex's the target, so that
  you can have something like info:w3.info#Getting%20Started
* url.el (url-do-setup): Removed secure-http (SHTTP) handler - who the
  hell cares anymore, it lost.
* w3-display.el (w3-display-node): Correctly calculates right margin as
  documented (from window-width and right-margin)
* w3.el: Removed w3-batch-fetch
* url-vars.el: Removed lots of old variables
* url-misc.el: Removed x-exec URL handler - no interest anymore.
* w3-script.el (w3-script-evaluate-form): Use it.
(w3-do-scripting): New variable to control whether to do _any_ scripting
or not.
* The URL package now stores the current parsed URL object instead of 5 or
  6 separate variables.
* dist.Makefile: Removed old pgp and wais support, it was gross and
  apparently nobody was using it.
Tue Feb 18 06:13:03 1997  "T. V. Raman" <raman@adobe.com>
* w3-forms.el (w3-form-summarize-radio-button): Better radio button
  summarizer.
Tue Feb 18 06:13:03 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-finish-drawing): Moved #blah target finding in here,
  where it belongs.
* w3-vars.el (w3-mode-map): Added binding for raw '\t' instead of relying
  on [tab].  Apparently this keysym isn't aliased under Emacs 19 on a
  TTY.
Mon Feb 17 15:10:38 1997  William M. Perry  <wmperry@aventail.com>
* w3-elisp.el: Interface to Emacs-Lisp for safe scripting.
* w3-script.el: Basic client-side scripting has been implemented.
* w3-xemac.el (w3-mouse-handler): Ditto
* w3-e19.el (w3-mouse-handler): Plugged in handling of the onMouseOver event
* w3-display.el (w3-handle-string-content): Now adds a text property that
  contains w3-display-open-element-stack, so that from anywhere in the
  buffer you can find out where you are in the parse tree.
* default.css (input): ome default stylesheet updates for input fields on
  TTYs
Sun Feb 16 09:01:18 1997  Shuji Narazaki <narazaki@InetQ.or.jp>
* mule-sysdp.el: Updated for mule 3.0
Sat Feb 15 15:35:15 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.60 released
* w3-display.el (w3-display-node): use it.
* w3-vars.el (w3-display-frames): New variable for whether to show 'frame'
  documents as a list of the subelements.
* w3.txi (Speech Properties): finished this chapter.
(Media Selection): ditto
(Time Units): ditto
(Angle Units): ditto
(Properties): Explanatory text at beginnign of section
Fri Feb 14 09:34:35 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.59 released
* w3.txi: Lots of documentation about stylesheets, chapter layout
  changes.
Thu Feb 13 07:01:59 1997  William M. Perry  <wmperry@aventail.com>
* Synch'd up to widget 1.38
* w3-forms.el (w3-form-resurrect-widgets): For now, don't use the nice new
  GUI pushbuttons - they appear to suffer badly on long lines.
* w3-mouse.el (w3-running-FSF19): Use new w3-popup-menu-on-mouse-3 variable
* w3-vars.el: Removed _lots_ of obsolete variables
(w3-popup-menu-on-mouse-3): New variable to control whether W3 should
  override mouse-3 or not.
* Emacs-W3 3.0.58 released
* w3.txi: Added stubs for stylesheet chapters and supported URLs
* images.el (image-register-netpbm-utilities): This is now safe to call
  multiple times again.
Wed Feb 12 06:26:55 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-keymap): When binding widget-end-of-line, make sure
  that we do not overwrite Emacspeak's prefix-key.  Now does a
  where-is-internal to find the correct binding in global-map to
  override.
* w3-display.el (w3-display-node): bind :emacspeak-help to 'w3-widget-echo
  in all the hypertext links.
* w3-vars.el (w3-mode-map): New binding for \M-\t - this _should_ have
  been taken care of by the [(meta tab)] definition, but evidently it
  doesn't.  *sigh*
Tue Feb 11 07:33:50 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-create-option-list): Specify :menu-tag-get so that
  keyboard-based-completion doesn't get confused by the fact that some
  items will have spaces slapped in at the end.
* ssl.el (ssl-program-arguments): New variable - a list of command line
  switches to send to the SSL program in a subprocess, before the hostname
  and port number.
  (open-ssl-stream): Use it.
Mon Feb 10 07:45:31 1997  William M. Perry  <wmperry@aventail.com>
* url-file.el (url-file): Removed refs to variable url-use-hypertext-dired
* url-vars.el: Removed obsolete variable url-use-hypertext-dired
* url-file.el (url-dired-find-file-mouse): fixed bad typo of 
  (interactive...) spec, added documentation to a few functions.
  (url-file): Removed refs to obsolete variable url-use-hypertext-dired
* w3-xemac.el (w3-setup-version-specifics): Workaround for users of XEmacs
  19.14 or 20.0 with the bad bad bad lossage with text properties that
  have null values.  This  bug is fixed in XEmacs 19.15, and will be in
  20.1 as well.  This bug would cause you to get errors like:
	internal error: no text-prop <#extent ....> start-open
* w3.el (w3-widget-button-click): Deal with new image capabilities of the
  widget checkbox/radio-button stuff.
* Synch'ed up to widget 1.31
Sun Feb  9 15:39:19 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.57 released
* url-file.el (url-dired-minor-mode): New minor mode that overrides a few
  of direds keybindings to use Emacs-W3 instead of straight find-file.
  (url-format-directory): Now just uses dired to display directory
  listings, much more powerful than the old way.  Can copy files, act on
  multiple files, you all know the drill.
* w3.txi: Added more chapters, reorg of others.
* w3-display.el (w3-maybe-start-image-download): Fixed handling of bad
  images in the cache again.  Duh.
  No longer log to the warnings buffer if we fail to load an image.  Just
  use message - much less intrusive.  We just usually don't care that much
  about failed image loads.
* url-gw.el (url-open-stream): fixed typo - was calling old
  url-nslookup-host instead of url-gateway-nslookup-host
* w3.el (w3-insert-formatted-url): Now inserts markup in lowercase.
Sat Feb  8 13:54:43 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.56 released.  Getting closer!
* w3-forms.el (w3-form-summarize-radio-button): Finally, a decent
  summarization of radio buttons
  Fixed typo in specifying summarizer for hidden form fields.
  (w3-form-keymap): Bind C-a and C-e by default.
* w3-widget.el (widget-image-value-create): When using emacspeak, show
  client side imagemaps as a table.  Need a more general solution for
  this, but this makes us nicer than IE again. :)
* Updated to widget 1.30
Fri Feb  7 16:49:55 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-handle-string-content): Make sure faces text
  properties are closed, so that things don't bleed over.
  (w3-fixup-eol-faces): New function for Emacs 19 that removes face
  information at newlines, so that underlining will not extend from the
  end of a line to the window edges - very ugly.
* w3-menu.el (w3-menu-initialize-w3-mode-menu-map): Don't support 'emacs
  in w3-use-menus under Emacs in Windows 95/NT.
* w3-display.el (w3-finalize-image-download): Deal with bad images better.
  (w3-finish-drawing): Better protection of putting images in.
* url-gw.el (url-open-stream): Don't auto-retry connections.  Don't throw
  an error if you fail to connect to a site.  This is for image loadings
  that fail for some reason or another.
* css.el (css-expand-length): better handling of float values and 'ex'
  unit type.
* font.el (x-font-create-object): Unconditionally make case-fold-search
  non-nil so that we don't lose big-time.  This was the cause of the very
  weird font-spatial-to-canonical lossage under XEmacs with font sizes of
  something like '+12pt'
* w3.el (w3-view-this-url): Use widget-echo-help if we didn't find a URL
  under point.
Fri Feb  7 15:22:25 1997  Charles Levert <charles@comm.polymtl.ca>
* w3-widget.el (widget-image-notify): Bad data being fed to w3-fetch if a
  client-side imagemap had an alt attribute (but only if the <map> came
  _after_ the use.
Fri Feb  7 15:22:25 1997  William M. Perry  <wmperry@aventail.com>
* font.el (font-spatial-to-canonical): protect against bad input to this
  function.
Fri Feb  7 15:19:36 1997  Toby Speight <tms@ansa.co.uk>
* w3-parse.el (w3-parse-buffer): Parser didn't allow for the fact that
  TAGC is optional on end-tags as well as on start-tags (i.e. "<b<i>
  bold-italic</i</b>" is legal).
Fri Feb  7 06:28:37 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-keymap): Now inherits from widget-keymap, with a
  few exceptions.
* url.el (url-uncompress): This function now no longer looks at the file
  extension to determine a compression/encoding method.  This is so that
  doing searches on `foo.tar.gz' will not bogusly cause the decompression
  steps to run.  Ick!
* url-file.el (url-insert-possibly-compressed-file): This function no
  longer atempts to decompress the file after loading it in.  Instead, it
  sets an appropriate content-transfer-encoding header based on the
  filename, so that this will allow url-uncompress to work correctly on the
  buffer.
Thu Feb  6 06:24:26 1997  William M. Perry  <wmperry@aventail.com>
* w3-print.el (w3-postscript-print-function): New variable to control what
  function is used to generate postscript output.
  (w3-print-this-url): Use it.
* w3-display.el (w3-handle-string-content): Make all inserted text
  read-only
* w3-forms.el (w3-form-use-old-style): New variable to control whether to
  use the old-style interaction with form fields instead of the 'type
  directly into the buffer' method
  (w3-form-determine-size): Use it.
  (w3-form-create-integer): Use it.
  (w3-form-create-float): Use it.
  (w3-form-create-text): Use it.
  (w3-form-create-password): Use it.
  (w3-revert-form): Fixed error with 'reset' buttons on forms that had
  hidden form fields.
* w3-vars.el (w3-mode-map): Define [backtab] by default
* w3-display.el (w3-size-of-tree): Removed some warnings
(w3-display-table-dimensions): ditto
* Updated to widget 1.26
* default.css: Some default formatting changes for input fields.
  Everything is underlined by default except submit/reset/image/button
  fields, so that they are a little easier to spot.
* w3-parse.el (w3-parse-buffer): Now slaps pseudo-elements into input
  fields so that stylesheets can access them.
Wed Feb  5 14:42:12 1997  William M. Perry  <wmperry@aventail.com>
* Updated to widget 1.24
* Happy birthday Jenny P.
Tue Feb  4 08:21:03 1997  William M. Perry  <wmperry@aventail.com>
* font.el (x-font-create-name): Better checking/optimizing of when to just
  return the default font.
* w3-forms.el: Make use of the new information, and pass it down to the
  widget library appropriately.
* w3-display.el (w3-display-node): Now passes in the entire list of active
  faces to form creation functions.
Mon Feb  3 07:26:18 1997  William M. Perry  <wmperry@aventail.com>
* w3-emulate.el (w3-lynx-emulation-minor-mode-map): Lots of new
  keybindings for lynx emulation minor mode.
* Emacs-W3 3.0.55 released
* w3-forms.el (w3-form-determine-size): Fixed _STUPID_ problem where
  option lists would lose everything but the first option in them.  I'm a
  dumbass.  Sort modifies its list parameter! ICK ICK ICK.
* url.el (url-after-change-function): Show prettier status messages.
  Sizes are converted to bytes, k, or M, depending on how big the file
  is.
* w3.txi: Lots of documentation changes - volunteers welcome.
* Removed personal annotation support, since it wasn't shown with the new
  display engine, it needs to be rethought, and nobody had complained in
  the entire beta cycle.
* w3.el (w3-history-find-url-internal): Redid the history mechanism.
  Toolbar and menu entries are now grayed out appropriately.
* url-http.el (url-create-mime-request): Fixed cookie support if not going
  through a proxy gateway.
Sun Feb  2 22:05:41 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-table): Fix for negative colwidth
Fri Jan 31 14:28:54 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-fetch): Fixed targetted links (http://blah/#foo)
Fri Jan 31 11:20:47 1997  Alf-Ivar Holm <alfh@ifi.uio.no>
* w3.el (w3-mail-current-document): Fixed problem with calling
  w3-parse-buffer with too many arguments when mailing LaTeX-ified
  files.
Fri Jan 31 11:19:37 1997  Cord Kielhorn <kielhorn@thphy.uni-duesseldorf.de>
* css.el (css-expand-length): Fixed bad regexps for percentage and
  character based lengths
Thu Jan 30 20:27:06 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.52 released
* w3-display.el (w3-handle-image): When doing table auto layout, don't
  start loading the images.
Wed Jan 29 06:15:37 1997  William M. Perry  <wmperry@aventail.com>
* font.el (x-font-create-name): Yet another fix for not screwing up the
  line-height in Emacs 19.
* w3-display.el (w3-face-for-element): Uhh, oblique seems to work.
* font.el (set-font-style-by-keywords): now deals with arguments that
  aren't lists, for the font-style and font-variant CSS stuff
* w3-display.el (w3-display-node): Reimplemented <cookie> tag.
(w3-display-node): Reimplemented <flame> tag.
* url.el (url-insert-file-contents): url-insert-file-contents now
  decodes/uncompresses the data before returning.
* w3-display.el (w3-display-node): Reimplemented <pinhead> tag
Tue Jan 28 06:22:08 1997  William M. Perry  <wmperry@aventail.com>
* font.el (x-font-create-name): Never take font size into account under
  Emacs - too much chance of totally screwing up the users leading by
  choosing a bigger font than their default.  This sucks.  But I can't
  find a better solution.
* w3.el: w3-mode now turns on truncate-lines by default.
* w3-forms.el (w3-form-create-image): Better image input type support.
Mon Jan 27 08:21:58 1997  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-create-password): Now uses real password entry
  widgets provided by 'widget' - you _MUST_USE_ the widget library that
  comes with Emacs-W3 for this, otherwise the info won't be hidden
  correctly.
  (w3-form-add-element): Deal with hidden text areas better when they are
  in forms
* Synch'd up to widget 1.22
Sun Jan 26 16:50:09 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.51 released
* w3-forms.el (w3-form-create-text): Now uses the real text entry widgets
  provided by 'widget' - still can't do this for password fields yet
  though.
* Synch'd up to Widget 1.20
Sat Jan 25 13:38:12 1997  William M. Perry  <wmperry@aventail.com>
* url.el (url-expand-file-name): Now strips out spaces as well as
  newlines/carriage returns. More fixes for that bastardized microsoft
  home page.
* url-http.el (url-create-mime-request): Make sure that we retrieve the
  cookies for the real URL we are retrieving when going through a proxy.
  Now the psychotic crap that is the microsoft home page should be
  successfully retrieved if going through an HTTP proxy.
* url-cookie.el (url-cookie-handle-set-cookie): Attempt to deal with
  idiotic microsoft home page that sends out set-cookie headers that look
  like MC1=ID=abc, and expects two cookies MC1='' and ID='abc'  *sigh*
* w3-forms.el, w3-display.el: Form elements now keep all their attributes
  with them.  Will be useful when we start allowing scripting.
  (w3-form-create-custom): Rudimentary patches to allow embedding 'custom'
  widgets into the buffer.  Interesting.
* w3-forms.el (w3-form-determine-size): New function to calculate how big
  a form field will be - option lists should look much better now.
Thu Jan 23 08:48:59 1997  William M. Perry  <wmperry@aventail.com>
* Synch'ed up to custom 1.19
* url-parse.el: document extra slots of url-generic-parse-url
Thu Jan 23 08:34:34 1997 Joe Wells <jbw@cs.bu.edu>
* url-file.el (url-file): Patch to tell ange-ftp and/or efs the password
  in a file/ftp URL so that you won't be prompted for the password, even
  if one was specified in the URL 
* url-parse.el (url-generic-parse-url): Fixed bug where specifying a
  username and password in the URL would downcase the username and
  password as well as the hostname.
Wed Jan 22 08:28:13 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.50 released
* base64.el (base64-encode-region): Pulled in code from VM for quicker
  encoding/decoding
* mm.el (mm-content-transfer-encodings): Better base64 decoding
Wed Jan 22 07:31:03 1997  Alf-Ivar Holm <alfh@ifi.uio.no>
* w3-emulate.el (w3-lynx-emulation-minor-mode-map): Lynx [up] and [down]
  bound to non-existing functions.
* w3.el (w3-do-setup): Fixed installation of lynx emulation modes keymap.
Tue Jan 21 07:56:51 1997  William M. Perry  <wmperry@aventail.com>
* url-misc.el (url-data): Make sure to url-decode the data before
  inserting it into the buffer.
* w3-menu.el (w3-toggle-minibuffer): better version
* w3-forms.el (w3-form-create-integer): New form entry type
  (w3-form-create-float): new form entry type
  (w3-form-encode-helper): deal with the new integer/float types
* w3-display.el (w3-display-node): Reimplemented <select multiple> as a
  list of checkboxes
Mon Jan 20 06:29:07 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-node): Keep track of the last form's action,
  for theoretically 'naked' input fields that we want to try and handle as
  best we can anyway.
* w3-parse.el: Much more lenient about where form elements can be found.
* w3-forms.el: summarizer functions now take the widget as an extra
  parameter.
* w3.el (w3-find-etc-directory): New function - not used yet.
* w3.txi: Warning!  You now need a very new version of texinfo to compile
  the .info or .dvi file yourself.
* url-mail.el (url-mail): Now tries to use message-mail if it is bound
  instead of just plain old 'mail'.
* w3-forms.el (w3-form-add-element): Duh, fix hidden form fields.
* font.el (font-normalize-color): Hopefully fixed color lossage under OS/2
  and Windows
* w3-forms.el (w3-form-summarize-field): Actually 'message' the string as
  a workaround for emacspeak 5.0
Sun Jan 19 09:32:15 1997  William M. Perry  <wmperry@aventail.com>
* w3-xemac.el (w3-mouse-handler): Ditto
* w3-e19.el (w3-mouse-handler): Protect against 'bad format string' errors
  when showing a hexified URL
* w3-forms.el (w3-form-mark-widget): Be super paranoid and mark all
  children and their children's children, and the parents of a widget.
  (w3-form-create-radio-button): Make sure radio button children always
  get updated via w3-form-mark-widget.
  (w3-form-summarize-radio-button): Slightly better summarization of radio
  buttons.
* Emacs-W3 3.0.49 released
* Synch'ed up with widget 1.18
Fri Jan 17 06:25:36 1997  Dave Love <d.love@dl.ac.uk>
* w3-display.el: w3-echo-link now prefers the URL to the text of a link
Fri Jan 17 06:25:36 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el: Fixed handling of inlined styles
* w3-mouse.el: Some fixes for XEmacs when built with no X support
* default.css: Now uses the new @media directives instead of the old
  :blah: stuff
* css.el (css-handle-media-directive): New function to handle @media
  directives.
  (css-parse): Deprecate the old :mediatype: way of specifying media
  dependent styles.
* w3-style.el (w3-handle-style): Now gets passed a plist instead of an
  assoc list.
  (w3-handle-style): Pay attention to the new 'media' attribute on
  stylesheet links, and don't load the stylesheet if we aren't currently
  running on that type of media.
* css.el (css-properties): Added proposed printing properties from a W3C
  draft.
Thu Jan 16 06:06:45 1997  William M. Perry  <wmperry@aventail.com>
* css.el (css-handle-media-directive): Implemented the @media processing
  instruction.
* w3-forms.el (w3-form-summarize-option-list): Changed the summarize
  function for option lists.  Much saner now.
* w3.el (w3-read-url-with-default): Use the URL at point before falling
  back to http://www.
  (w3-source-document): When sourcing a document, let set-auto-mode do the
  right thing.  .html comes up in html-mode, or whatever now.
* url-cookie.el: Fixed some compile warnings under Emacs
* w3-forms.el (w3-form-summarize-option-list): Make each choice-item have
  emacspeak-help set.
* w3-speak.el (w3-widget-backward): New advice
(w3-widget-forward): New advice
* w3-forms.el (w3-form-create-option-list): Renamed function
* Emacs-W3 3.0.48 released
* w3-display.el (w3-face-for-element): Use background-color instead of
  just background for css property.
* w3-forms.el (w3-form-encode-helper): Fixed radio buttons, duh.
* url-misc.el (url-do-terminal-emulator): Fixed bad var reference left
  from old code.
* url-gw.el: Moved all the gateway variables into their own namespace to
  make it easier to turn this into a standalone package.
* dist.Makefile (SOURCES): Added url-gw and w3 to the build targets.
Wed Jan 15 08:00:37 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.47 released
* url.el (url-expand-file-name): Make sure to remove \r from the URL as
  well as \n
* url-gw.el (url-open-stream): Added in 'telnet' and 'rlogin' methods for
  url-gateway-method.  Code stolen from GNUS.  Thanks lars! :)  It would
  be nice to make this file its own package and be able to override
  open-network-stream so that all apps could get this for free.
* url-misc.el (url-generic-emulator-loader): Consolidated the tn3270,
  telnet, and rlogin URL loaders into one smarter function
* url.el: Made cookie and auth modules autoloaded, removed some old autoloads
(url-open-stream) Moved to url-gw.el
Mon Jan 13 22:11:00 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-widget-echo): w3-echo-link can now be a list, so the
  user can explicitly control fallback behaviour.
* w3.txi: Added some pointers to CSS documentation
* mule-sysdp.el (mule-code-convert-region): ditto
* w3.el (w3-convert-code-for-mule): Fixed bug in XEmacs 20.0 mule
Mon Jan 13 11:14:29 1997  T. V. Raman <raman@Adobe.COM>
* w3.el (w3-widget-forward): Call widget-forward interactively so that
  emacspeak will hook it correctly.
Mon Jan 13 11:14:29 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-refresh-buffer): Finally reimplemented
  w3-refresh-buffer.
Sun Jan 12 10:32:50 1997  Karl Eichwalder  <ke@ke.Central.DE>
* w3.txi: Add @dircategory and @direntry... @end.  `install-info'
  from texinfo-3.9 know about those.
Sun Jan 12 21:49:44 1997  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-save-as): Can now save a page as postscript again
* w3-display.el (w3-display-node): inline styles work again
* url-misc.el (url-data): Updated data: URL to the spec.
  ftp://ietf.org/internet-drafts/draft-masinter-url-data-02.txt
Sat Jan 11 20:47:24 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-w3 3.0.45 released
* url-misc.el (url-data): Now supports the 'data' URL type, which just
  'fetches' everything after the data: chunk of the URL
Fri Jan 10 11:49:43 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-node): Multicolumn works, but puts things
  across instead of down
* w3-parse.el: Basic support for parsing <multicol>
* w3-display.el (w3-display-node): Make our semi-widgety hyperlinks
  start/end open under XEmacs.
* w3.el (w3-complete-link): Make sure we take case into account when doing
  link completion.  The user can use 'test' to complete to link titled
  'Test'.  Uses try-completion for this, which seems to work since we
  require a match.  Is this the best way to do this?  Other than not being
  case-insensitive at this point?
* w3-forms.el (w3-form-default-widget-creator): Better way of handling
  updates to text entry fields.
  (w3-revert-form): Everything should be reverted correctly, both in
  internal storage and in the buffer
  (w3-form-create-radio-button): Get a more unique identifier to store
  radio elements by - old way could theoretically get collisions.
* w3-display.el (w3-display-handle-list-type): Updated use of 'list-style'
  to use new property 'list-style-type'
  (w3-prepare-buffer): Now kills the source buffer before it starts
  drawing the tree, to avoid *URL-n* buffers when not really necessary.
* css.el (css-properties): Updated all the properties to the W3C's latest
  'recommendation' level CSS specification.
  (css-handle-import): much better handling of @import
  (css-parse): Better handling of '@' directives in general
  (css-expand-value): General cleanup, reference the CSS and ACSS specs
  for how/why we are parsing something the way we are.
Thu Jan  9 06:17:08 1997  William M. Perry  <wmperry@aventail.com>
* Updated all copyright notices.  Happy belated new year!
* w3-display.el (w3-region): Fixed a few bugs with nuking too much of a
  buffer when using w3-region
* w3.el (w3-read-url-with-default): Use new variable.
* w3-vars.el (w3-fetch-with-default): New variable to control whether or
  not w3-fetch will figure out a good default value for the URL or not.
* w3-forms.el (w3-form-mark-widget): New function to mark a widget and all
  its children with an appropriate :emacspeak-help and 'w3-form-data
  Now defines a few keywords to look more widget-y
Wed Jan  8 09:27:47 1997  William M. Perry  <wmperry@aventail.com>
* css.el (css-expand-value): Added elevation, angle, and time units.
* w3-display.el (w3-display-node): Turn on voice-lock-mode by default in
  all w3 buffers.
* css.el (css-properties): Added in new speech properties from the ACSS
  note from the W3C.  Please see
  http://www.w3.org/pub/WWW/Style/CSS/Speech/NOTE-ACSS for more
  information.
* w3-forms.el: Moved all the form entry summarization functions from
  w3-speak.el into w3-forms.  Easier to keep in synch this way.
* w3-display.el (w3-display-node): Reimplimented the 'keygen' form entry
  type for netscape compatibility.
Tue Jan  7 07:20:08 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-region): New function that parses the HTML in a region
  'in-place', so that things like MIME mailers/gnus readers can show HTML
  inline a lot easier.
* w3-forms.el (w3-form-resurrect-widgets): Fixed case where a widget goes
  all the way to point-max and next-single-property-change will return
  nil.  Would pass bad args to delete-region.
  (w3-form-summarize-field): Moved some of the smarts about summarizing W3
  widgets from w3-speak into the core forms code.
* font.el (define-font-keywords): New function for defining keywords that
  will actually work across Emacs and XEmacs
* w3-display.el (w3-display-node): Reimplemented 'note' functionality, by
  converting it into a two-cell table.
  (w3-display-node): Implemented <dir> as multi-column, as-per the RFC and
  HTML 3.x specifications
* default.css: Added default display type for dir and menu
Mon Jan  6 21:49:52 1997  William M. Perry  <wmperry@aventail.com>
* url-http.el (url-create-mime-request): Fixed yet another stupid problem
  in Host: header handling.  Was never sending the right information if
  you were not going through a proxy this time.  *sigh*
* w3-forms.el (w3-form-add-element): Fixed hidden form fields
Sun Jan  5 22:38:54 1997  William M. Perry  <wmperry@aventail.com>
* url-vars.el (url-proxy-services): updated documentation string
* w3-widget.el (widget-image-notify): Fixed client side handling of
imagemaps on a TTY or a delayed/broken image. Duhhh
Fri Jan  3  Dave Love  <d.love@dl.ac.uk>
* w3-e19.el (w3-mouse-handler): Fix link echoing.
Fri Jan  3 08:43:56 1997  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.43 released
* font.el (make-font): Treat args as a plist, just for sanity's sake.
Thu Jan  2 12:19:31 1997  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-table-hack-borders): Fix stupid use of 'otheriwse'
  instead of 'otherwise' in a case statement.
* w3-forms.el (w3-form-add-element): Fix stupid use of 'otheriwse'
  instead of 'otherwise' in a case statement.
  (w3-form-resurrect-widgets): Fixed XEmacs handling of widget recreation,
  and also fixed problem where some widgets would be skipped.
Tue Dec 31 07:37:17 1996  William M. Perry  <wmperry@aventail.com>
* w3-e19.el: All the menus in Emacs-19 now use the same constructors that
  the :filter entries under XEmacs do.  This will make things much easier
  in the future in not duplicating crufty menu-construction code once for
  XEmacs menu-structs and once for Emacs keymaps.
* w3-menu.el (w3-menu-html-links-constructor): Now works with the Emacs 19
  implementation of property lists.
Mon Dec 30 06:25:28 1996  William M. Perry  <wmperry@aventail.com>
* w3-menu.el (w3-popup-menu): context-sensitive menus over delayed images
  work again 
* w3-display.el (w3-parse-link): New way to store <link> information from
  an HTML document.
* w3.el (w3-search): Deal with new <link> storage
* w3-menu.el (w3-menu-html-links-constructor): Deal with new way <link>
  items are stored - now uses the 'title' attribute if present.
* w3-auto.el (w3-form-resurrect-widgets): Added autoload
* url-file.el (url-format-directory): Removed url-forms-based-ftp option -
  didn't really work anyway.
Sun Dec 29 15:54:21 1996  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-resurrect-widgets): fixed stupid problem in munging
  of the size of form elements.
* Emacs-W3 3.0.42 released
* w3-display.el (w3-table-hack-borders): Deal gracefully with not finding
  a 'terminal' font to display hacked border chars in
* w3-hot.el (w3-hotlist-add-document): don't hexify a url before sticking
  it in the hotlist buffer
* w3-display.el (w3-display-node): hyperlinks with images at the start
  will now have a button associated with the entire link, not just the
  image part.
* w3-sysdp.el (fillin-text-property): made it work under Emacs19
Sun Dec 29 00:07:39 1996  Takahiro Hayata <hayata@sc511t.s.kobe-u.ac.jp>
* mule-sysdp.el (mule-write-region-no-coding-system): Patch for Mule 2.3 
Sun Dec 29 00:07:39 1996  William M. Perry  <wmperry@aventail.com>
* w3-forms.el (w3-form-add-element): Only insert stubs of the right length
  for a for element, and do munging of that text into the actual widgets
  later.  This saves us a lot of grief and heartache when handling things
  like radio buttons that span table elements because the markers have
  become completely insane by the time the next widget is ready to be
  created.
Sat Dec 28 17:24:08 1996  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-display-table): Don't crap out on invalid tables where
  table-dimensions tells us we have a 0 column or 0 row table.
* w3-widget.el (widget-image-value-create): Use :action instead of :notify
  for widget-image-callback - hyperlinked images under Emacs 19 should
  work again.
Thu Dec 26 18:26:25 1996  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-widget-forward): Use this instead of widget-forward.
(w3-widget-backward): Ditto.  Need to make both of these smart for w3.
* w3-display.el (w3-display-node): Implemented the display class 'none'
  for turning off the rendering of an element and its subcontent.
Thu Dec 26 07:21:58 1996  William Perry  <wmperry@aventail.com>
* w3-parse.el (w3-parse-buffer): *sigh* Allow _ in attribute names.
* Emacs-W3 3.0.41 released
* url-parse.el (url-generic-parse-url): bind inhibit-read-only to 't' in
  url parsing buffers, to avoid 'attempt to modify read-only text'
  problems when the string passed to url-generic-parse-url has the
  read-only text property set.
* w3-e19.el (w3-setup-version-specifics): popup menus should work in
  Emacs19 again.
* css.el (css-expand-value): For margin and padding, make sure we _always_
  convert into a valid length spec.  Setting a 'margin' or 'padding'
  property group instead of individual margin-* or padding-* values would
  cause the display engine to crap out.
  (css-get): Fixed generic class-only lookups (.foo, etc)
* w3-display.el (w3-display-handle-list-type): Tweaks to list indentation
* w3-menu.el (w3-menu-html-links-constructor): Fixed stupid problem with
  the new navigate menu under XEmacs.
Tue Dec 24 22:46:11 1996  William M. Perry  <wmperry@aventail.com>
* css.el (css-expand-color): Better handling of X-style color specs -
  convert them to internal RGB format.
Tue Dec 24 02:50:08 1996  Christian Limpach  <chris@nice.ch>
* font.el (ns-font-families-for-device): added test for unbound
  device-fonts-cache variable.
  (ns-font-create-name): handle font-styles which are numbers.
* w3-sysdp.el (try-font-name): added support for Nextstep.
Tue Dec 24 06:16:33 1996  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-open-local): Send filename through expand-file-name in
  w3-open-local to avoid having illegal URLs like file:/~/test.html
* w3-widget.el (widget-image-value-create): fixed new problem with client
  side imagemaps.  Should really work this time.
* w3.el (w3-map-links): w3-map-links and hence w3-complete-link will now
  find images that are also hyperlinks.
Mon Dec 23 22:28:58 1996  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.40 released
* w3-menu.el (w3-menu-go-menu): Added 'navigate' submenu to hold the
  predefined <link> types.
* w3-widget.el (widget-image-summarize): Image widgets should now be much
  better at identifying themselves when being tab'ed to or waggled at with
  the mouse.
* w3-prefs.el: Fixed a few references to w3-glyphp (now widget-glyphp)
* w3.el (w3-url-completion-function): Fixed completion of URLs
Sat Dec 21 Dave Love  <d.love@dl.ac.uk>
* w3-display.el, w3-vars.el, w3.el: Define and use
  w3-defined-link-types to canonicalize link descriptions' case for
  ease of use.
* w3-e19.el (w3-build-FSF19-menu): Add any recognised <link> items
  to the menu in the absence of a toolbar.
Thu Dec 19 13:52:35 1996  William Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.39 released
	
* w3-forms.el (w3-form-encode-xwfu): Ditto.
* url.el (url-hexify-string): Updated to use url-unreserved-chars when
  escaping, ala
  http://www.ics.uci.edu/pub/ietf/uri/draft-fielding-url-syntax-02.txt
Wed Dec 18 22:09:41 1996  William M. Perry  <wmperry@aventail.com>
* w3.el (w3-mode): Removed bogus setting of widget-motion-hook from way
  back
* w3-parse.el (w3-parse-buffer): Better handling of <base> tag.
* w3-display.el (w3-widget-echo): Better falling-back when the preferred
  echo method yields nil.
* url.el, w3-display.el, w3.el: Remove last vestiges of url-hash.el and
  removed it from the distribution.
Wed Dec 18 08:07:32 1996  William Perry  <wmperry@aventail.com>
* dsssl.el: Moved the DSSSL parser and friends into its own namespace.
Removed dependencies on url-hash.
* custom.el: Synch'd up to custom 1.13
Tue Dec 17 16:36:05 1996  William M. Perry  <wmperry@aventail.com>
* url.el (url-expand-file-name): If we weren't given a base object to work
  from, and url-current-object is null, set it to the object returned by
  parsing url-view-url.
* url-http.el (url-create-mime-request): Send the right information in the
  'Host' header field when going through a proxy.
  (url-setup-reload-timer): Emacs 19 doesn't deal well with 0-length
  timeouts, so protect against trying to create one when dealing with the
  refresh header.
* w3-parse.el: Removed lots of crap for the old display engine - shouldn't
  cons up as much garbage as before.  Now it will just cons up garbage
  that we actually need.
Tue Dec 17 07:10:47 1996  William Perry  <wmperry@aventail.com>
* css.el (css-properties): New property type 'string-list' for font-family
* w3.el (w3-find-default-stylesheets): Make sure to look in
  data-directory/../../w3 for stylesheets
Tue Dec 17 06:07:08 1996  William M. Perry  <wmperry@aventail.com>
* w3-toolbar.el: wrapped a condition-case around the require for
  xpm-button and xbm-button so that it will compile under Emacs
Mon Dec 16 08:19:40 1996  William Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.38 released.
* dist.Makefile (OBJECTS): Removed xpm-button and xbm-button from the
  distribution.  Any version of XEmacs that can run the latest 3.0 stuff
  has them already.
* default.css: Make nested ol/ul items display class 'line' so they look
  prettier.
* w3-display.el (w3-display-node): EVIL hack to make the first item in a
  nested list get indented correctly.
* w3-about.el (w3-about): Fixed the about:style stylesheet to be
  up-to-date with new CSS spec.
* default.css: Turned down indentation on list items by default.
* w3-display.el (w3-display-node): Mouse tracking should work under XEmacs
  again.
* dist.Makefile (all): Removed 'emacs' from dependency list.
Mon Dec 16 06:03:14 1996  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-table-hack-borders): This should work on TTY's again.
Sun Dec 15 14:19:53 1996  William M. Perry  <wmperry@aventail.com>
* Emacs-W3 3.0.37 released
* w3-display.el: Better handling of paragraphs (well, any block-level
  element within a list-item display group.
* default.css (address): Changed <address> display tpye to line so that
  right-justification will take effect.
Sat Dec 14 10:24:13 1996  William M. Perry  <wmperry@aventail.com>
* w3-sysdp.el: Removed stubs for add-submenu - it was confusing 'custom'
* dist.Makefile: More GNU-ish project makefile
* url.el (url-default-find-proxy-for-url): Fixed no_proxy handling
(url-default-find-proxy-for-url): Don't pass 'www://' links to a proxy
Fri Dec 13 22:50:45 1996  William M. Perry  <wmperry@aventail.com>
* dist.Makefile (URLSOURCES): Added socks.el to the distribution.  Not
  used just yet.
* css.el (css-copy-stylesheet): Fixed problem with sharing the list
  structure between the hash tables - document stylesheets would infect
  the main w3-user-stylesheet and cause weirdness.
Fri Dec 13 09:47:40 1996  William Perry  <wmperry@aventail.com>
* w3-style.el (w3-display-stylesheet): Fixed problem where
  w3-display-stylesheet would override the buffer css-display was showing
  the stylesheet in.  Duhh.
* mule-sysdp.el (mule-encode-string): Fixed stupid problem on non-XEmacs
  mule
  (mule-sysdep-version): Ditto.
Fri Dec 13 06:25:45 1996  William M. Perry  <wmperry@aventail.com>
* css.el (css-get): Removed bogus recursive call to css-get, and moved the
  guts of css-get out into its own fuction, which is in turn inlined into
  css-get.  Might even make things faster.  At the least, I expect it to
  get rid of the 'takes two makes to make w3-display.elc' problem some
  people have been seeing.
* w3-display.el (w3-display-handle-list-type): Fixed stupid problem with
  margin handling where list-item display items were always flush-left
Fri Dec 13 02:51:24 1996  Greg Stark  <gsstark@mit.edu>
* w3-display.el (w3-display-line-break): correct right justification code
  (w3-min-size-of-string): removed unused function that didn't work.
  (w3-size-of-tree): maintain consistent w3-display-open-element-stack
  don't hard code assumption that hr's are drawn with '-'
  (w3-display-table-dimensions): major bug if the last column rowspans
  (w3-table-lookup-char): new function
  (w3-table-hack-borders): new function makes table borders use pretty
  graphic characters instead of ascii characters. 
  (w3-table-unhack-borders): new function restore lame ascii borders.
  (w3-display-table): Major changes to support drawing better borders
  also fix various bugs and tweak various things.
* w3-parse.el: remove = from set of characters that terminate an attribute
               when guessing about an syntactically invalid attribute. 
	       (didn't this get changed once already?)
* w3.el (w3-sentinel): hack around bug that bit w3-preview-this-buffer 
                       but I don't know what the right thing for Mule.
Thu Dec 12 08:36:01 1996  William Perry  <wmperry@aventail.com>
* Synch'd up to widget 1.13
* w3-display.el (w3-get-pad-string): Ack - watch for negative values in
  w3-get-pad-string
* Released 3.0.36
* w3-style.el (w3-display-stylesheet): Use new css-display function
* css.el (css-get): Better class checking
  (css-display): New function to pretty-print a stylesheet that is in
  memory.
* w3-parse.el (w3-parse-buffer): *sigh* Parser now keeps track of 'base'
  of this document.  Also normalizes 'align' attribute, as well as
  auto-expanding any SRC or HREF attributes.
* w3-display.el (w3-display-handle-list-type): Now handles text-indent
  style property.
  (w3-display-table): Can now specify properties on 'tr', for
  vertical-alignment, etc.
  (w3-display-node): Lots of changes to deal with new method of munging
  class/align/etc in the parser.
Wed Dec 11 17:37:14 1996  William M. Perry  <wmperry@aventail.com>
* w3-parse.el (w3-parse-buffer): Do munging of align/src/href/class
  attributes to save time in w3-display-node and friends.
* w3-prefs.el (w3-preferences-compatibility-variables): Fixed problems
  with renaming of w3-style-ie-compatibility to css-ie-compatibility
* w3-display.el (w3-display-node): fix for hyperlinks / form info in
  tables. Duhh.
Wed Dec 11 07:36:08 1996  William Perry  <wmperry@aventail.com>
* css.el (css-copy-stylesheet): New function
* w3-display.el (w3-display-node): use it
* mule-sysdp.el (mule-encode-string): Fixes for XEmacs w/mule
(mule-decode-string): Fixes for XEmacs w/mule
* w3-display.el (w3-display-node): Fixed problem in isindex handling.
  Using forms for isindex handling should work again.
* css.el (css-specificity): new function css-specificity to find how
  specific a certain rule is. Need to use this to sort rules in css-get.
Tue Dec 10 22:37:59 1996  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-get-style-info): Changes to deal with new css.el -
  should be much much faster now.
* css.el (css-get): Radically changed the internal representation of
  stylesheets, and how they are looked up.
Mon Dec  9 22:31:11 1996  William M. Perry  <wmperry@aventail.com>
* w3-display.el (w3-face-for-element): Fixed bug in w3-face-for-element
  where weight of the element wasn't being taken into account.
* css.el: Changed font-variant style type from string to symbol-list
Mon Dec  9 12:29:59 1996  William Perry  <wmperry@aventail.com>
* default.css: Changed default header sizes - should look better on most
  machines
Sun Dec  8 19:21:07 1996  William M. Perry  <wmperry@aventail.com>
* Emacs-w3 3.0.34 Released
* w3-display.el: New macro w3-get-attribute to replace
  (cdr (assq 'blah args)), just in case I ever decide to replace the 
  assoc list currently used.
* New file mule-sysdp.el, to make supporting Mule 2.3, Mule 2.4, and
  XEmacs 20.0 easier.
* url-file.el (url-insert-possibly-compressed-file): handle mule 2.4
Fri Dec  6 06:54:03 1996  William Perry  <wmperry@aventail.com>
* w3-parse.el: Emit warnings when people try to slap attribute/value pairs
  on end tags.  Evil bastards.
  Added SPAN, BDO, OBJECT, BASEFONT
Fri Dec  6 04:42:24 1996  Greg Stark  <gsstark@mit.edu>
* default.css: add th td and caption text-align information
* docomp.el: increase max-specpdl-size so it can compile w3-display
* url.el (url-sentinel): avoid save-excursion around switch-buffer 
* w3-display (w3-display-line-break): if we're in nowrap mode but the
  region doesn't end on a newline insert an extra newline, otherwise <br>
  gets ignored inside a <pre> or nowrap environment. 
  Also protect against fill-column less than the length of fill-prefix. 
  Also avoid infloop in right justification, and
  fix bug that caused right justification to never be executed.
* w3-display (table-cut table-dimensions w3-display-table): 
  lots of new code to handle rowspan and autolayout.
* (w3-display-fix-widgets): be more agressive adjust even markers that have
  buffers and adjust parent markers.
* w3-display (w3-display-node): These changes are important for tables
  Don't insert insert-before on <a> tags before the class is adjusted
  Don't insert more than one class into an <a> tag when we adjust it. 
  Protect against a negative fill-column when drawing <hr>s
  Set adaptive-fill-mode (what's filladapt-mode?)
* w3-parse.el: remove font from %block. WARNING, i have little idea what
  consequences this has but it seems to have the desired effect of
  handling table cells whose first tag is a <font> without discarding the
  implied <p> tag.
* w3-parse.el: skip-chars-forward "^>" when parsing end tags 
  (some people seem to think you can put attributes in end tags)
Fri Dec  6 14:08:30 1996  William M. Perry  <wmperry@cs.indiana.edu>
* css.el: Better handling of text-decoration, to go along with the new version
  of set-font-style-by-keywords
	
* font.el: Faster version of set-font-style-by-keywords.
  Fixed RGB spec. problem if you used non-floats.
* w3-display.el: (w3-face-for-element) Obey some font function renaming.
  (w3-face-for-element) Changed format specification on w3-style-face-xxx
  creation.
  (w3-display-node) Alignment specified via attributes overrides
  stylesheet, not vice versa.
  (w3-display-node) Fixed stupid mistake in 'link' handling where
  stylesheets were ignored.
Thu Dec  5 17:51:37 1996  William M. Perry  <wmperry@cs.indiana.edu>
* url.el: (url-retrieve-internally) Can now specify an alternative
  function to determine whether a URL should be proxied or not.  modelled
  off the netscape auto-proxy-configuration crap, so hopefully someday we
  can just suck down one of their files and be 'happy' with it.
* w3-display.el, css.el:
  Modified some of the css properties to not be inherited - let
  w3-display figure it out on its own - quicker this way.  Saves a few
  thousand lookups over the life of a parse.
Mon Dec  2 20:22:12 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: use better face names... avoids problems in xemacs
  resource name checking.
* w3-vars.el: Created version 3.0.33
* w3-parse.el: Fixed problem parsing attribute values like <img alt=''> -
  the regexp didn't like empty attribute values specified with single
  quotes.
* w3.el: -Patches from Dave Love
* font.el: Renamed the font-set-*-p to set-font-*-p, to be more in line with
set-face-underline-p and friends.  Fixed stupid problem in
set-font-*-p where it would always just toggle the property, not
actually set it.  Blah.  Added code in x-font-create-name to try
oblique and italic versions of a font if italic is set.
* default.css: Prettied up the :speech: section
* w3-display.el:
Conditionalized get-style-info calls in w3-voice-for-element on
feature 'emacspeak
* w3.el: Added code to try loading dtk-css-speech and w3-speak if the feature
'emacspeak' is available.
* css.el: Fixed a few stupid problems.
* font.el:
made tty-font-create-object return a 12pt font object, just for reference.
* w3.txi: More updates to the documentation
* w3.el, w3-style.el: Moved to using the new 'css' package
* w3-parse.el:
Removed some old functions.  Save some string creation by downcasing
tag and atribute names in the buffer instead of using 'downcase'.
* w3-display.el: Moved to using the new 'css' package
* w3-auto.el: Removed some outdated autoloads
* font.el: Added function font-set-style-by-keywords
* css.el: Better handling of various entities - beter way of specifying new
properties and how they should be handled.
* default.css: *** empty log message ***
* dist.Makefile: Added 'css.el' to targets
* css.el: Initial revision
* w3-vars.el: Renamed w3-right-border to w3-right-margin
Sat Nov 30 17:42:38 1996  William M. Perry  <wmperry@cs.indiana.edu>
* custom-edit.el, custom.el, widget-edit.el, widget.el:
-Synch'd up to Custom/Widget 1.09
Fri Nov 29 23:12:42 1996  William M. Perry  <wmperry@cs.indiana.edu>
* font.el: Actually try to use the 'oblique' property under X
* w3-display.el:
Fix for sometimes getting an invalid glyph error in image retrieval.
Fixed problem where table display would pop something off the open element stack.
* custom-edit.el, custom.el, widget-edit.el, widget.el:
-Synch'd up to Custom/Widget 1.08
* w3-display.el: List filling seems to line up correctly now.
Fixed bug in ordered list handling (wrong arg passed to a format).
Changed the way spacing is handled.
* w3-menu.el: Added new 'search' menu with common web indexes
* dist.Makefile:
Don't specify widget*.el twice in SOURCES _AND_ CUSTOMSOURCES or
install under FreeBSD chokes.
* w3-display.el: Protect against list-item display property outside of a list.
* w3-sysdp.el: Fixed free var reference in make-device
Thu Nov 28 23:01:11 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el:
Protect against bad values of w3-last-fill-pos in w3-display-line-break
* w3-e19.el, w3-menu.el:
-Patches from Dave Love <d.love@dl.ac.uk> for using title of link in menus
Wed Nov 27 22:59:56 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.32
* w3.txi: Started revamping some of the documentation
* url-custom.el: Initial revision
* w3-display.el: Handle 'menu' list type correctly
* url.el: Patch from Thierry.Emery@aar.alcatel-alsthom.fr;
- insert information about processes in buffer "URL Status Display"
  instead of *URL-<i>* : added a local variable `url-status-buf' and a
  call to `set-buffer'
- changed `url-get-working-buffer' to `url-get-working-buffer-name',
  because `url-working-buffer' is expected to be a name, not a buffer
  (my mistake)
* w3-xemac.el, w3-vars.el:
Removed some old variables that aren't used anywhere now.
* w3-e19.el:
Patch from Dave Love <d.love@dl.ac.uk> for 'title' version of w3-echo-link.
* w3-display.el:
Patch from Dave Love <d.love@dl.ac.uk> for 'title' version of w3-echo-link.
Form info is now stuck on a stack instead of in a let-bound variable.
Only call w3-display-fix-widgets once!  recursive calls to
w3-display-node when rendering tables caused it to happen more than it
should.
* w3-forms.el:
Patch from Dave Love <d.love@dl.ac.uk> to protect against bad value
for 'next' in w3-next-widget.
* dist.Makefile: Don't use `install -d', use mkdir -p if necessary
Tue Nov 26 16:21:32 1996  William M. Perry  <wmperry@cs.indiana.edu>
* custom-edit.el, custom.el: synch'd up to custom 1.05
* widget.el, widget-edit.el: *** empty log message ***
* widget-edit.el, widget.el: synch'd up to widget 1.05
* w3-display.el: Handles the 'dir' list type correctly now.
* url.el:
Quick patch to check for url-working-buffer being a buffer, not a string.
* w3-display.el:
Backed out _BAD BAD BAD_ change to protect against invalid values for
w3-last-fill-pos that basically fucked everything in regards to
vertical whitespace.
Mon Nov 25 21:12:17 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: *** empty log message ***
* w3-display.el:
Now only does incrememental display around block level elements.
Does better munging of pre-formatted text CR -> LF CRLF->LF, etc.
* w3.el: Protect against errors in w3-sentinel on bad buffers.
* w3-vars.el: Created version 3.0.31
* widget-edit.el: Fixed compile problems under emacs
* w3-vars.el: *** empty log message ***
* widget.el: Made widget.el compile in emacsen w/o native backquote support
* w3-display.el: *** empty log message ***
* w3-parse.el:
Patch from greg stark for dealing with '=' in misquoted attribute value pairs
Sun Nov 24 23:25:25 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: Reimplemented targetted anchors (#foo)
* url.el: *** empty log message ***
* url-vars.el:
Changed default of url-mime-language-string to '*' to make some sites happy.
* w3-display.el: Protect against w3-last-fill-pos getting an invalid position
* w3.el, w3-display.el, w3-vars.el:
Patch from Dave Love <d.love@dl.ac.uk> to add new possibility 'title'
to w3-echo-link to show the 'title' attribute of a link if its there.
* w3-speak.el: Patch from raman.
* font.el:
Patch from nagae@mickey.ai.kyutech.ac.jp to handle fontsets correctly in mule
* w3-display.el: Implemented a few more CSS properties.
list-style - control how list items are displayed.  Ordered lists are
             now different from unordered only in their list-style.
             Need to implement contextual selectors to get ordered
             lists to work out of the box though.
white-space - control whether whitespace is collapsed or not, and
              whether text is wrapped.  <pre> <xmp> and <plaintext>
              are now all specified to use this in the default
              stylesheet.
text-align - this replaces the old 'align' attribute
Reimplemented inlined styles.
* default.css: Varius updates to take advantage of the new CSS properties
white-space, list-style, etc.
* w3-style.el: Handle url() and rgb() notation in color specifications
* w3-vars.el: Removed a few outdated variables
Sat Nov 23 02:10:37 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: *** empty log message ***
* dsssl.el: Got rid of yet more compilation warnings.
* custom.el, custom-edit.el: Synch'd up to custom 1.0.1
* w3-display.el:
Better handling of <hr> and <center>, and line spacing in general
* default.css: Updates to default stylesheet to deal with <center> and <div>
* w3.el, url.el, url-vars.el, url-http.el:
Patches from Thierry Emery to allow multiple asynch fetches.
Fri Nov 22 22:26:35 1996  William M. Perry  <wmperry@cs.indiana.edu>
* widget-edit.el, widget.el: -Synch'd up to widget 1.01
* w3-style.el: Fixed a few fRemoved a few free variable sets/refs
* w3.el:
When saving a document as html source, try to get into the 'head' before inserting the base.
* w3-display.el, w3-style.el:
Stylesheets now store all there information as property lists instead
of assoc lists.  Just easier.
* font.el: Fix for font-normalize-color under nextstep
Thu Nov 21 04:01:22 1996  William M. Perry  <wmperry@cs.indiana.edu>
* widget-edit.el, widget.el: synch'd to 1.00 of widget/custom
Mon Nov 18 16:26:06 1996  William M. Perry  <wmperry@cs.indiana.edu>
* install.sh: Initial revision
* html32.dsl: Updated to latest from jon bosak
* w3-vars.el: Created version 3.0.30
Thu Nov 14 22:39:36 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3.el: Changed this so you can actually just do a (require 'w3-sysdp) and
each function will check to see if it should overwrite, instead of
conditionalizing that on the whole file.
* url.el: *** empty log message ***
* images.el, font.el, docomp.el, w3-sysdp.el:
Changed this so you can actually just do a (require 'w3-sysdp) and
each function will check to see if it should overwrite, instead of
conditionalizing that on the whole file.
* w3-display.el: Moved some macros around.
* widget.el, widget-edit.el, w3-forms.el: Sync'd up to Widget 0.999
* w3-auto.el, w3-menu.el: *** empty log message ***
Sun Nov 10 18:08:24 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.29
* dsssl.el: Various changes, starting on the actual flow object stuff
Tue Nov  5 05:26:07 1996  William M. Perry  <wmperry@cs.indiana.edu>
* url-news.el: Updated version checking of news to deal with 'red' gnus
Mon Nov  4 14:47:47 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: Don't show the content of 'script' - typo
Fri Nov  1 15:08:45 1996  William M. Perry  <wmperry@cs.indiana.edu>
* default.css: Changes from raman
Thu Oct 31 18:51:52 1996  William M. Perry  <wmperry@cs.indiana.edu>
* widget-edit.el: -
Tue Oct 29 19:53:38 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: *** empty log message ***
Thu Oct 24 02:25:03 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-widget.el: Updated the image widget to the new widget stuff.
Wed Oct 23 13:26:09 1996  William M. Perry  <wmperry@cs.indiana.edu>
* docomp.el: *** empty log message ***
* url.el: Fixed bug in url-remove-relative-links that would choke on something
like: /foo/bar/./../baz/ - they /../ was removed first, removing its
parent directory, the /./ - ack.
* w3-display.el: Image loading is back!
Client-side imagemaps are back!
Forms that span tables are working now.
Mon Oct 21 21:32:33 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.28
* url-mail.el: Make mail handling a little more generic.
* w3-display.el:
Fix for w3-display-fix-widgets so that links right up against each
other don't cause it to skip every-other-one.
Sun Oct 20 16:47:05 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-style.el: don't map a pitch of 9 to 0.
* w3-speak.el:
Added back in the advice for url-lazy-message that provided auditory
feedback during URL retrieval.  Also added back in the
w3-speak-browse-page command.
* w3-speak.el:
Some patches from TV Raman to fix multiline text entry area speaking
and a bogus call to widget-get in text entry area speaking.
Fri Oct 18 12:27:04 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el:
Patches from Thierry Emery <Thierry.Emery@aar.alcatel-alsthom.fr> to
implement 'colspan' on tables.  Patch to support align=xxx on
arbitrary tags.
Thu Oct 17 22:27:44 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.27
* w3-display.el:
fixed voicification of hyperlinks.  Fixed problem in w3-normalize-spaces
and multi-line strings.
Wed Oct 16 20:56:40 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-speak.el: Fix stupid problem.  function renaming lossage.  Fun
* w3-display.el:
Fixed <select> form items that had no <option value=xxx selected>
entry in them.  Wheee.
* w3-display.el:
Fixed <select> form items that had an <option value=xxx selected>
entry in them.  Wheee.
* w3.el: document info is now shown as a table.
* w3.el: Document information is now shown as a table.
* w3-display.el, w3-vars.el: Now keeps better track of the <meta> tag info
* w3-vars.el: Created version 3.0.26
* w3-display.el: *** empty log message ***
Tue Oct 15 13:21:54 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: Added back in <meta> and <link> handling.
Fixed insert-before and insert-after for 'a' tag and pseudo-classes
* w3-display.el:
Fixed some potential runaway style inheritance - need to think about a
better way to pop style info off the various stacks than
(w3-handle-content node) on an empty element.
* w3-display.el: Fixed <textarea> elements in forms
* w3-display.el, w3-forms.el: Fixed <select> elements in forms
Sun Oct 13 23:50:03 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.25
* dsssl.el: Bug fixes
* url-hash.el:
Fixed bug in url-gethash where it wasn't honoring the 'default' parameter
Sat Oct 12 20:32:49 1996  William M. Perry  <wmperry@cs.indiana.edu>
* widget.el, widget-edit.el: Synched up to widget 0.99.4
Fri Oct 11 18:55:02 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: fix for xemacs w/ temp faces
* w3-display.el: Fixed a bug with the insert-after handling. Duhh.
* default.css, w3-display.el: Implemented insert-before and insert-after
Wed Oct  9 19:00:59 1996  William M. Perry  <wmperry@cs.indiana.edu>
* ssl.el, url-cookie.el, url-file.el, url-gopher.el, url-hash.el, url-http.el, url-irc.el, url-mail.el, url-misc.el, url-news.el, url-nfs.el, url-parse.el, url-pgp.el, url-vars.el, url-wais.el, url.el, urlauth.el, w3-about.el, w3-annotat.el, w3-display.el, w3-e19.el, w3-emulate.el, w3-forms.el, w3-hot.el, w3-imap.el, w3-keyword.el, w3-latex.el, w3-menu.el, w3-mouse.el, w3-mule.el, w3-parse.el, w3-prefs.el, w3-print.el, w3-speak.el, w3-style.el, w3-toolbar.el, w3-vars.el, w3-widget.el, w3-xem20.el, w3-xemac.el, w3.el, xbm-button.el, xpm-button.el, base64.el, dsssl.el, font.el, images.el, md5.el, mm.el:
-Updated copyrights/addresses
Tue Oct  8 14:56:22 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: Tables now default to having no border
* w3-forms.el: Require w3-vars so Gnus will work
* w3-vars.el: Created version 3.0.24
* w3-speak.el:
Added a few patches from raman and the latest version of emacspeak -
everything appears to work out of the box now.
* w3-style.el:
Added in a few autoloads for getting emacspeak to work right out of the box.
* w3-display.el: Added back in the :help-echo stuff on widgets
Mon Oct  7 18:09:17 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el:
<isindex> works again.  Automatically turns off filladapt-mode now,
since we apparently don't play well together.
* default.css: Added some margins
* w3-display.el: Fix for emacs 19
Fri Oct  4 17:08:51 1996  William M. Perry  <wmperry@cs.indiana.edu>
* dsssl.el:
Fixed a few errors in calling w3-dsssl-check-args.  Now _EVERYTHING_
compiles cleanly.
* docomp.el: Added a few more variables to the 'expected-to-be-free' list.
Everything but dsssl.el compiles cleanly now.
* url-news.el: Fixed a few typos that resulted in free variable references.
* w3-display.el: New function w3-make-face to 'do the right thing' in
Emacs/XEmacs/Emacs-with-no-X-support.
Implemented margin-left and margin-right.
Fixed a few problems with runaway or insufficient application of styles.
Mon Sep 30 19:43:35 1996  William M. Perry  <wmperry@cs.indiana.edu>
* url-hash.el:
Nasty hack to fix the   !! error (("file \"cl-extra\" didn't define \"gethash\"")) stuff people are seeing under Emacs-19
* w3-vars.el: Created version 3.0.23
* w3-prefs.el: Updates for new widget package
* w3-display.el:
No more recursion!  Lots more shit broke though.  Lists are totally broken.
* w3.el: Updates for new widget package
* w3-keyword.el: *** empty log message ***
Sun Sep 29 21:26:47 1996  William M. Perry  <wmperry@cs.indiana.edu>
* widget.el, widget-edit.el: Updated to version 0.99 of the library
* widget-edit.el: Allow the :help-echo widget stuff to be a symbol
* w3.el: More updates for the latest widget package
* w3-sysdp.el: New functions prepend-text-property, append-text-property,
fillin-text-property
* default.css, url.el: *** empty log message ***
Wed Sep 25 10:53:08 1996  William M. Perry  <wmperry@cs.indiana.edu>
* dist.Makefile: Removed custom.el and custom-edit.el from the distribution.
Tue Sep 24 05:04:47 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.22
* widget.el, widget-edit.el: Updated to latest widget stuff from Per.
* w3-parse.el:
Added <script> to %body.content so that stupid IE 3.0 demo pages would work.
* w3-keyword.el:
Added some new keyword defs to get rid of compile-time warnings
* w3-forms.el, w3-display.el: Now works with newest widget stuff
* url.el: New function url-parse-query-string, to return an assoc list of name
value pairs from a URL-style query. url-unhex-string now takes an
optional second argument for whether to allow decoding of newlines or
not.
* url-mail.el:
Now understands netscape-style 'extensions' to the mailto: specifier.
ie: mailto:wmperry?subject=thesubject&bcc=root
* font.el:
Now always converts to points instead of pixels, seems to give better
results this way.
Mon Sep 23 04:53:56 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.20
* dsssl.el: Made dsssl depend on url-hash
Sun Sep 22 05:16:06 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el, w3-parse.el: *** empty log message ***
* w3-display.el: Some spacing changes, fix for nested lists
* custom.el, widget-edit.el, widget.el: -
* custom-edit.el: *** empty log message ***
Fri Sep 20 05:07:12 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.19
* w3-display.el: *** empty log message ***
* w3-sysdp.el: Added in stub for set-keymap-parents
* w3-speak.el: Patches from raman
* w3-prefs.el, w3-imap.el: *** empty log message ***
* w3-hot.el: Fixed w3-read-html-bookmarks to work with some parser changes.
* w3-forms.el: Made forms work again.
* w3-display.el: Changed how the borders on tables are drawn.
Added back in the voice support.
Thu Sep 19 05:12:49 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.18
* dist.Makefile:
Moved the URL and W3 packages back into one big distrubtion again
* w3-vars.el: Created version 3.0.18
* w3-vars.el: Created version 3.0.19
* w3-display.el: Don't crap out on tables with 0 columns
* docomp.el, url.el: *** empty log message ***
Wed Sep 18 12:50:03 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.18
* docomp.el: *** empty log message ***
* w3-display.el: Space filling fixes
* w3-auto.el: Added autoload for w3-style-post-process-stylesheet
Tue Sep 17 12:50:47 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.16
* w3-display.el, w3-e19.el: *** empty log message ***
Mon Sep 16 04:46:18 1996  William M. Perry  <wmperry@cs.indiana.edu>
* custom-edit.el, custom.el, widget-edit.el, widget-example.el, widget.el:
Initial revision
Sun Sep 15 22:47:53 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.15
* w3-display.el: Alignment stuff works (right, left, full, center).
Tables can now be borderless, and if it has borders, they are all there.
<pre>/<xmp> work.
* url-vars.el: Created version 1.0.42
* url-http.el: *** empty log message ***
* w3-vars.el: Created version 3.0.14
* html32.dsl: Initial revision
* w3.el: Use the new display code.
* w3-forms.el: A few changes for the latest display code
* w3-vars.el: Created version 3.0.14
* w3-display.el: Actually mostly works
* w3-parse.el: Removed hooks into the old display engine
* url.el: *** empty log message ***
* w3-speak.el: Update from raman
* url.el: *** empty log message ***
Sat Sep 14 16:48:24 1996  William M. Perry  <wmperry@cs.indiana.edu>
* url-gopher.el, url.el:
Added '...' to the downloading messages so that they do not show up in
the message log buffer under Emacs 19.xx
* w3-parse.el: Changed content-model of <script> to fix problems on some sites
(notably netscape's) that use an unescaped </ in the script.  BAD SGML
DAMMIT.
Fri Sep 13 05:24:53 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.13
* w3-forms.el: Use the new :ignore-case stuff for choice items
Thu Sep 12 05:57:47 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el: Holy shit tables work.
Tue Sep 10 03:11:55 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-speak.el: Bug-fixes from raman.
Mon Sep  9 05:18:37 1996  William M. Perry  <wmperry@cs.indiana.edu>
* dsssl.el:
Removed a few compiler warnings and fixed a few bugs (equal, error, time
* dsssl.el:
DSSSL (define ...)'d functions are now called correctly.  Wow.  Added
in most of the rest of the DSSSL(o) application profile functions.
* dsssl.el: Initial revision
* w3-parse.el: *** empty log message ***
* w3-about.el, w3-annotat.el, w3-draw.el, w3-e19.el, w3-emulate.el, w3-forms.el, w3-hot.el, w3-imap.el, w3-keyword.el, w3-menu.el, w3-mouse.el, w3-mule.el, w3-prefs.el, w3-print.el, w3-speak.el, w3-style.el, w3-toolbar.el, w3-vars.el, w3-widget.el, w3.el, w3-xemac.el, images.el:
Changed copyright assignment
* font.el: changed copyright assignment
Sun Sep  8 00:31:52 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-draw.el:
Added in a stub handler for the 'frame' tag, so that you can still get
to frame pages written by idiots who don't use a decent 'noframe'
subdocument.
* url.el: Removed nntp-after-change-function, since it screwed up GNUS
Sat Sep  7 01:45:17 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-latex.el: updated email address for stephen peters
Wed Sep  4 02:09:08 1996  William M. Perry  <wmperry@cs.indiana.edu>
* socks.el: Initial revision
Sun Sep  1 16:22:50 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-draw.el: Don't load images on a TTY device in XEmacs.  General speedup
Thu Aug 29 04:09:40 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.12
Sun Aug 25 17:12:32 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-draw.el: Added some stubs for tables
Mon Aug 19 03:30:47 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3.el: fixed bug in w3-insert-formatted-url
Mon Aug 12 03:10:30 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-style.el: Don't make a null voice of paul-5555 if no stuff is specified.
* default.css: Added speech elements to the default stylesheet.
Sun Aug 11 16:41:58 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.11
* font.el:
Fix for font-default-font-for-device under XEmacs when you use a font
like '10x20' instead of the fully specified version
Sat Aug 10 16:14:08 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-forms.el:
Do not encode the '.' in application/x-www-form-urlencoded.  Fucking
netscape compatbility.  What _SPEC_?!  There aren't any specs on the
web, right?!
* w3-forms.el:
Fixed problem with submissions of a form with the exact same arguments
causes elements from both form to be submitted.  ack.
Tue Aug  6 14:03:52 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-parse.el:
fixed stupid mistake in DTD I made when changing to 3.2 DTD - left
'style' out of head's content-model so no in-document stylesheet stuff
was getting parsed.  gack.
* w3-forms.el: No longer put a 'choose' in front of option menus
* w3-speak.el: fixed bugs
Mon Aug  5 14:03:09 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.10
* default.css: A few mild changes, and docs.
Sun Aug  4 23:51:26 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-speak.el: new version of w3-speak from raman
* w3-draw.el: Style search alg. now looks for tag/id|name first.  Now supports
inlined 'style' keyword on any tag.  Gack *sigh*
* w3-style.el:
Can now have periods in class names.  Fixed bug where the class would
be normalized to lowercase as well as the tag name.  BAD BAD BAD.
* w3-speak.el: some changes from raman
* w3-style.el: Think I finally fixed some stylesheet weirdness
* w3.el: Don't override user prefs w/w3-user-colors-take-precedence -duh
* w3-parse.el: fixed graphical entities
Sat Aug  3 20:09:50 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el:
Added textual representation of the 'artist formerly known as prince'
graphical icons
* md5.el: removed /bin/sh dependency in md5
Fri Aug  2 14:08:38 1996  William M. Perry  <wmperry@cs.indiana.edu>
* url-vars.el: Created version 1.0.41
* url.el:
no longer special case file:// urls when checking for no_proxy - thats
just stupid.
Thu Aug  1 13:32:54 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-vars.el: Created version 3.0.9
* url.el: made url-insert-file-contents  interactive
* w3-sysdp.el:
added data-directory to sysdep version of x-library-search-path for
emacs under windows 95/nt
* w3-vars.el:
Implemented &prince; and &princesymbol; graphical entities.  Thanks
for the note Jamie Z!
* w3-forms.el: fix for gopher searches
* w3-draw.el: Added support for balloon-help
Fri Jul 26 05:57:21 1996  William M. Perry  <wmperry@cs.indiana.edu>
* w3-display.el, w3-texinfo.el: Initial revision
 |