1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500
|
Thu Sep 22 07:48:19 CDT 2005 John Goerzen <jgoerzen@complete.org>
* ChangeLog is now generated from Darcs.
M ./Makefile -1 +1
Thu Sep 22 07:48:09 CDT 2005 John Goerzen <jgoerzen@complete.org>
* Updated metadata for 2.0.14
M ./debian/changelog +7
M ./pygopherd/version.py -1 +1
Thu Sep 22 07:47:16 CDT 2005 John Goerzen <jgoerzen@complete.org>
* Updated ChangeLog
(it hadn't been updated since 2003, eep.)
M ./ChangeLog -2068 +1928
Thu Sep 22 07:37:24 CDT 2005 John Goerzen <jgoerzen@complete.org>
* Fixed a bug where no subject line would crash the handler
M ./pygopherd/handlers/mbox.py -2 +2
Sat Apr 16 11:48:36 CDT 2005 John Goerzen <jgoerzen@complete.org>
tagged Last Arch revision
Sat Apr 16 11:48:09 CDT 2005 John Goerzen <jgoerzen@complete.org>
tagged Last Subversion revision
Sat Feb 19 12:09:20 CST 2005 John Goerzen <jgoerzen@complete.org>
* Minor touchups for 2.0.13
Keywords:
(jgoerzen@complete.org--projects/pygopherd--head--1.0--patch-6)
M ./README -2 +2
M ./TODO -1
M ./pygopherd/version.py -3 +3
Sat Feb 19 12:06:49 CST 2005 John Goerzen <jgoerzen@complete.org>
* Minor updates
Keywords:
(jgoerzen@complete.org--projects/pygopherd--head--1.0--patch-5)
M ./debian/changelog +7
M ./debian/rules -1 +1
M ./doc/pygopherd.sgml -16 +16
Sat Jan 15 15:31:52 CST 2005 John Goerzen <jgoerzen@complete.org>
* Another silly fix
Keywords:
(jgoerzen@complete.org--projects/pygopherd--head--1.0--patch-4)
M ./pygopherd/initialization.py -1 +1
Sat Jan 15 15:29:35 CST 2005 John Goerzen <jgoerzen@complete.org>
* Syntax error fix
Keywords:
(jgoerzen@complete.org--projects/pygopherd--head--1.0--patch-3)
M ./pygopherd/initialization.py -1 +1
Sat Jan 15 15:24:15 CST 2005 John Goerzen <jgoerzen@complete.org>
* Cleaner handling of connection reset by peer
Keywords:
(jgoerzen@complete.org--projects/pygopherd--head--1.0--patch-2)
M ./debian/changelog +6
M ./pygopherd/initialization.py -2 +6
Fri Jan 14 09:35:53 CST 2005 John Goerzen <jgoerzen@complete.org>
* Add small bugfix
Keywords:
(jgoerzen@complete.org--projects/pygopherd--head--1.0--patch-1)
M ./debian/changelog +6
M ./pygopherd/protocols/rfc1436.py -1 +1
Sat Apr 16 11:42:56 CDT 2005 John Goerzen <jgoerzen@complete.org>
* Noted removal of pygopherd.py from r204
R ./pygopherd.py
Sat Apr 16 10:42:11 CDT 2005 John Goerzen <jgoerzen@complete.org>
tagged REL1.99.5
Sat Apr 16 10:41:32 CDT 2005 John Goerzen <jgoerzen@complete.org>
tagged SVN tag BEFORE-ZIPFILE-REWRITE
Sat Apr 16 10:40:59 CDT 2005 John Goerzen <jgoerzen@complete.org>
tagged REL1.0.0
Mon Aug 30 14:51:47 CDT 2004 jgoerzen
* /pygopherd/head: changeset 309
A ./README.windows
Mon Aug 30 14:50:17 CDT 2004 jgoerzen
* /pygopherd/head: changeset 308
Make more Windows-friendly
M ./debian/changelog +7
M ./pygopherd/handlers/tal.py -4 +9
M ./pygopherd/initialization.py -6 +10
M ./pygopherd/sighandlers.py -3 +4
Fri Aug 27 10:43:12 CDT 2004 jgoerzen
* /pygopherd/head: changeset 307
Removed extra reference to ZIP.py
M ./pygopherd/handlers/ZIP.py -1 +1
Wed Dec 17 11:29:06 CST 2003 jgoerzen
* /pygopherd/head: changeset 306
Fixed indentation
M ./pygopherd/handlers/tal.py -1 +1
Wed Dec 17 11:26:43 CST 2003 jgoerzen
* /pygopherd/head: changeset 305
Don't crash if tal is unavailable.
M ./debian/changelog +6
M ./pygopherd/handlers/tal.py -4 +4
Wed Dec 17 09:20:42 CST 2003 jgoerzen
* /pygopherd/head: changeset 304
Updated the ChangeLog
M ./ChangeLog -231 +588
Wed Dec 17 09:20:32 CST 2003 jgoerzen
* /pygopherd/head: changeset 303
Fixed the earlier fix...
M ./pygopherd/handlers/UMN.py -18 +6
Wed Dec 17 08:44:11 CST 2003 jgoerzen
* /pygopherd/head: changeset 302
Fixed a logic error in the Numb handling fix.
M ./debian/changelog +6
M ./pygopherd/handlers/UMN.py -2 +2
Wed Dec 17 08:27:33 CST 2003 jgoerzen
* /pygopherd/head: changeset 301
Fixed UMN.py to properly handle Numb=.
M ./debian/changelog +6
M ./pygopherd/handlers/UMN.py +14
Wed Dec 17 08:20:30 CST 2003 jgoerzen
* /pygopherd/head: changeset 300
Generic TAL support
M ./pygopherd/handlers/tal.py -7 +3
Thu Oct 9 16:48:13 CDT 2003 jgoerzen
* /pygopherd/head: changeset 299
Updated debian/docs
M ./debian/changelog +6
M ./debian/docs -4 +5
Thu Oct 9 11:11:33 CDT 2003 jgoerzen
* /pygopherd/head: changeset 298
Added build-dep on python2.3-dev
M ./debian/changelog +6
Mon Aug 25 22:29:52 CDT 2003 jgoerzen
* /pygopherd/head: changeset 297
Added missing docs Misc. tal stuff
A ./doc/book.sgml
A ./doc/manpage.sgml
A ./doc/quickstart.sgml
M ./pygopherd/handlers/tal.py +15
Mon Aug 25 20:42:14 CDT 2003 jgoerzen
* /pygopherd/head: changeset 296
Added dir, macro capability to tal.py Some work on the manual --
splitting up into sections
M ./Makefile -2 +3
M ./doc/pygopherd.ps -1590 +7465
M ./doc/pygopherd.sgml -1281 +990
M ./local.dsl -6 +4
M ./pygopherd/handlers/tal.py -2 +55
Mon Aug 25 18:56:15 CDT 2003 jgoerzen
* /pygopherd/head: changeset 295
Make is a little more aggressive about cleaning... ... added
stylesheets.
M ./Makefile -1 +2
A ./local.dsl
A ./printlocal.dsl
Mon Aug 25 17:01:38 CDT 2003 jgoerzen
* /pygopherd/head: changeset 294
Doc updates
M ./Makefile -4 +16
M ./doc/pygopherd.8 +9
M ./doc/pygopherd.html -169 +566
M ./doc/pygopherd.pdf
M ./doc/pygopherd.ps -160 +171
Mon Aug 25 16:17:38 CDT 2003 jgoerzen
* /pygopherd/head: changeset 293
Finalizing the document renaming
./doc/manual.ps -> ./doc/pygopherd.ps
Mon Aug 25 16:17:23 CDT 2003 jgoerzen
* /pygopherd/head: changeset 292
More document renaming
./doc/manual.html -> ./doc/pygopherd.html
./doc/manual.pdf -> ./doc/pygopherd.pdf
./doc/manual.txt -> ./doc/pygopherd.txt
Mon Aug 25 16:14:52 CDT 2003 jgoerzen
* /pygopherd/head: changeset 291
./manual.html -> ./doc/manual.html
./manual.pdf -> ./doc/manual.pdf
./manual.ps -> ./doc/manual.ps
./manual.txt -> ./doc/manual.txt
./pygopherd.8 -> ./doc/pygopherd.8
./pygopherd.sgml -> ./doc/pygopherd.sgml
M ./Makefile -8 +18
M ./doc/pygopherd.sgml -1 +1
Mon Aug 25 16:10:38 CDT 2003 jgoerzen
* /pygopherd/head: changeset 290
Fixed up Python2.3 support -- and added dep on simpletal
M ./debian/control -2 +2
Mon Aug 25 15:17:36 CDT 2003 jgoerzen
* /pygopherd/head: changeset 289
Added a TAL example
A ./examples/talsample.html.tal
Mon Aug 25 15:15:58 CDT 2003 jgoerzen
* /pygopherd/head: changeset 288
Added beginnings of TAL support. More to come.
M ./bin/pygopherd -1 +1
M ./conf/pygopherd.conf -2 +5
M ./pygopherd/handlers/__init__.py -2 +3
A ./pygopherd/handlers/tal.py
M ./setup.py -1 +1
Mon Aug 25 13:47:40 CDT 2003 jgoerzen
* /pygopherd/head: changeset 287
Documented the ZIP handler
M ./manual.html -879 +1041
M ./manual.pdf
M ./manual.ps -819 +885
M ./manual.txt -363 +453
M ./pygopherd.8 -412 +578
M ./pygopherd.sgml -836 +837
M ./pygopherd/handlers/ZIP.py -2 +5
Mon Aug 25 10:31:58 CDT 2003 jgoerzen
* /pygopherd/head: changeset 286
Work on documenting the handlers
M ./pygopherd.sgml -3 +311
Sun Aug 24 20:38:33 CDT 2003 jgoerzen
* /pygopherd/head: changeset 285
Some work on the docs
M ./manual.html -844 +576
M ./manual.pdf
M ./manual.ps -1181 +909
M ./manual.txt -313 +206
M ./pygopherd.8 -406 +313
M ./pygopherd.sgml -455 +202
Sun Aug 24 18:17:20 CDT 2003 jgoerzen
* /pygopherd/head: changeset 284
Updated
M ./manual.html -1936 +2198
M ./manual.pdf
M ./manual.ps -809 +1557
M ./manual.txt -660 +647
M ./pygopherd.8 -816 +868
M ./pygopherd.sgml -65 +207
Sun Aug 24 17:34:16 CDT 2003 jgoerzen
* /pygopherd/head: changeset 283
Added SGML docs.
M ./Makefile -2 +6
A ./pygopherd.sgml
Sun Aug 24 17:30:10 CDT 2003 jgoerzen
* /pygopherd/head: changeset 282
M ./debian/changelog +13
M ./pygopherd/initialization.py -1 +1
M ./pygopherd/protocols/wap.py -1 +1
Sat Aug 23 17:39:47 CDT 2003 jgoerzen
* /pygopherd/head: changeset 281
Updated WAP error handling
M ./pygopherd/protocols/wap.py -2 +2
Sat Aug 23 17:34:40 CDT 2003 jgoerzen
* /pygopherd/head: changeset 280
Fixed File Not Found code.
M ./debian/changelog +6
M ./pygopherd/protocols/http.py -2 +2
M ./pygopherd/protocols/wap.py +10
Sat Aug 23 17:25:56 CDT 2003 jgoerzen
* /pygopherd/head: changeset 279
Store slurp data elsewhere
M ./pygopherd/protocols/http.py -3 +3
Sat Aug 23 17:23:38 CDT 2003 jgoerzen
* /pygopherd/head: changeset 278
Fixed another bug in headerslurp
M ./pygopherd/protocols/http.py -1 +1
Sat Aug 23 17:22:15 CDT 2003 jgoerzen
* /pygopherd/head: changeset 277
Replaced a missing return
M ./pygopherd/protocols/http.py -1 +1
Sat Aug 23 17:20:16 CDT 2003 jgoerzen
* /pygopherd/head: changeset 276
Experimental new header slurping mechanism
M ./pygopherd/protocols/http.py -6 +13
M ./pygopherd/protocols/wap.py +2
Sat Aug 23 17:13:19 CDT 2003 jgoerzen
* /pygopherd/head: changeset 275
Added wap auto-detection.
M ./conf/pygopherd.conf +7
M ./debian/changelog +6
M ./pygopherd/protocols/http.py -3 +11
M ./pygopherd/protocols/wap.py -1 +16
Sat Aug 23 14:56:50 CDT 2003 jgoerzen
* /pygopherd/head: changeset 274
Fixed a tyop
M ./pygopherd/protocols/wap.py -1 +1
Sat Aug 23 14:53:18 CDT 2003 jgoerzen
* /pygopherd/head: changeset 273
Added text file conversion to WAP
M ./pygopherd/protocols/http.py -1 +4
M ./pygopherd/protocols/wap.py -7 +34
Sat Aug 23 14:43:12 CDT 2003 jgoerzen
* /pygopherd/head: changeset 272
Virtual: now use | for selector sep (keep ? for legacy) for WAP
compatibility.
M ./debian/changelog +2
M ./pygopherd/handlers/virtual.py -3 +7
Sat Aug 23 14:41:13 CDT 2003 jgoerzen
* /pygopherd/head: changeset 271
Some updates
M ./pygopherd/protocols/http.py +1
M ./pygopherd/protocols/wap.py -7 +12
Sat Aug 23 13:54:31 CDT 2003 jgoerzen
* /pygopherd/head: changeset 270
Add the waptop in front of generated URLs
M ./pygopherd/protocols/wap.py +3
Sat Aug 23 13:51:18 CDT 2003 jgoerzen
* /pygopherd/head: changeset 269
Minor WAP bugfixes
M ./pygopherd/protocols/wap.py -2 +2
Sat Aug 23 13:49:29 CDT 2003 jgoerzen
* /pygopherd/head: changeset 268
Updated for Python 2.3 -- and added some more WAP code (for searches)
M ./debian/changelog -1 +2
M ./debian/control -5 +7
M ./debian/rules -1 +1
M ./pygopherd/protocols/wap.py -2 +12
Sat Aug 23 13:26:50 CDT 2003 jgoerzen
* /pygopherd/head: changeset 267
Braino
M ./pygopherd/protocols/wap.py -2 +2
Sat Aug 23 13:26:10 CDT 2003 jgoerzen
* /pygopherd/head: changeset 266
More updates
M ./pygopherd/protocols/wap.py -3 +6
Sat Aug 23 13:19:02 CDT 2003 jgoerzen
* /pygopherd/head: changeset 265
Another braino
M ./pygopherd/protocols/wap.py -1 +1
Sat Aug 23 13:18:23 CDT 2003 jgoerzen
* /pygopherd/head: changeset 264
Oops, little braino here
M ./pygopherd/protocols/wap.py -1 +1
Sat Aug 23 13:17:37 CDT 2003 jgoerzen
* /pygopherd/head: changeset 263
Removed debugging code and added accesskey support
M ./pygopherd/protocols/wap.py -4 +11
Sat Aug 23 13:13:22 CDT 2003 jgoerzen
* /pygopherd/head: changeset 262
Wap now works!
M ./debian/changelog +1
M ./pygopherd/protocols/http.py -6 +6
M ./pygopherd/protocols/wap.py -6 +10
Sat Aug 23 12:01:49 CDT 2003 jgoerzen
* /pygopherd/head: changeset 261
First attempt at new feature: WAP support!
M ./conf/pygopherd.conf -1 +9
M ./debian/changelog +6
M ./pygopherd/protocols/__init__.py -1 +1
M ./pygopherd/protocols/http.py -4 +11
A ./pygopherd/protocols/wap.py
Thu Mar 13 09:53:11 CST 2003 jgoerzen
* /pygopherd/head: changeset 259
Updated for 1.99.5
M ./ChangeLog +113
Thu Mar 13 09:52:47 CST 2003 jgoerzen
* /pygopherd/head: changeset 258
Introduced new "inode-like" caching system for ZIP files. Now, the
first time a ZIP file is accessed, it will be scanned. Links will be
resolved immediately. A dictionary tree is built up; values being
either file offsets in the ZIP file or dictionaries (for
subdirectories). This dictionary is then cached on-disk using a binary
database and marshal algorithm derived from Python's shelve module. We
do not need to use pickle for this task since we are saving only
simple structures. The performance gain for large ZIP files using this
method is tremendous. The only time a ZIP file's central directory
structure must be scanned now is the very first time it is ever
accessed.
M ./debian/changelog +16
Thu Mar 13 09:48:56 CST 2003 jgoerzen
* /pygopherd/head: changeset 257
Removed the needschain tests Optimized the gophermap isrequestforme
handler
M ./pygopherd/handlers/ZIP.py -36 +25
M ./pygopherd/handlers/gophermap.py -3 +4
Thu Mar 13 08:58:54 CST 2003 jgoerzen
* /pygopherd/head: changeset 256
Converted to using marshal for a performance gain
M ./pygopherd/handlers/ZIP.py -5 +21
Wed Mar 12 19:20:33 CST 2003 jgoerzen
* /pygopherd/head: changeset 255
Removed debug code
M ./pygopherd/handlers/ZIP.py -11
Wed Mar 12 19:20:01 CST 2003 jgoerzen
* /pygopherd/head: changeset 254
Passes all ZIP tests.
M ./pygopherd/handlers/ZIP.py -15 +26
M ./pygopherd/zipfile.py -15 +19
Wed Mar 12 19:02:49 CST 2003 jgoerzen
* /pygopherd/head: changeset 253
Removed debug code
M ./pygopherd/handlers/ZIP.py -17 +2
Wed Mar 12 18:56:26 CST 2003 jgoerzen
* /pygopherd/head: changeset 252
Think I've nailed the caching problem
M ./pygopherd/handlers/ZIP.py -22 +37
Wed Mar 12 18:32:48 CST 2003 jgoerzen
* /pygopherd/head: changeset 251
All tests are passing, but caching doesn't seem to be working.
M ./pygopherd/handlers/ZIP.py -2 +2
M ./pygopherd/zipfile.py -6 +9
Wed Mar 12 18:28:35 CST 2003 jgoerzen
* /pygopherd/head: changeset 250
Strating to fix errors as part of testing
M ./pygopherd/handlers/ZIP.py -59 +25
M ./pygopherd/zipfile.py -3 +3
Wed Mar 12 16:55:49 CST 2003 jgoerzen
* /pygopherd/head: changeset 249
Making more progress -- we now have this to the point of being ready
for testing, I believe.
M ./ChangeLog -562 +1013
M ./debian/changelog +8
M ./pygopherd/handlers/ZIP.py -38 +21
Wed Mar 12 16:20:19 CST 2003 jgoerzen
* /pygopherd/head: changeset 248
Checkpointing my progress -- initial efforts to rewrite the caching to
use an inode system complete.
M ./pygopherd/handlers/ZIP.py -28 +42
M ./pygopherd/zipfile.py -7 +6
Wed Mar 12 15:37:27 CST 2003 jgoerzen
* /pygopherd/head: changeset 247
Merged back in bugfix to islinkattr from ZIP.py prior to this rev.
M ./pygopherd/handlers/ZIP.py -4 +4
Wed Mar 12 15:33:07 CST 2003 jgoerzen
* /pygopherd/head: changeset 246
Reverted to ZIP.py from revision 229 when pickling was present. Will
try to re-do this more efficiently with the new zipfile and anydbm.
M ./pygopherd/handlers/ZIP.py -166 +247
Fri Mar 7 16:01:39 CST 2003 jgoerzen
* /pygopherd/head: changeset 245
Added additional optimizations, tested working.
M ./pygopherd/handlers/ZIP.py -13 +28
M ./pygopherd/handlers/dir.py -2
Thu Mar 6 23:53:39 CST 2003 jgoerzen
* /pygopherd/head: changeset 244
Fixed an excessive stating problem.
M ./pygopherd/handlers/HandlerMultiplexer.py -5 +5
M ./pygopherd/handlers/ZIP.py +9
M ./pygopherd/handlers/dir.py +2
M ./pygopherd/zipfile.py -2 +4
Thu Mar 6 23:12:40 CST 2003 jgoerzen
* /pygopherd/head: changeset 243
Significant optimizations noted in output from zip stuff.
M ./pygopherd/handlers/ZIP.py -9 +9
Thu Mar 6 23:05:11 CST 2003 jgoerzen
* /pygopherd/head: changeset 242
Tests now pass. Time to see how this optimization fares.
M ./pygopherd/handlers/ZIP.py -3 +9
M ./pygopherd/zipfile.py -3 +4
Thu Mar 6 22:57:59 CST 2003 jgoerzen
* /pygopherd/head: changeset 241
In the middle of some optimizing.
M ./pygopherd/handlers/ZIP.py -5 +10
M ./pygopherd/zipfile.py -19 +2
Thu Mar 6 22:44:36 CST 2003 jgoerzen
* /pygopherd/head: changeset 240
Some feeble optimization attempts.
M ./pygopherd/handlers/ZIP.py -2 +2
M ./pygopherd/zipfile.py -4 +12
Thu Mar 6 22:13:36 CST 2003 jgoerzen
* /pygopherd/head: changeset 239
Tests are all passing!
M ./pygopherd/handlers/ZIP.py -1 +1
M ./pygopherd/zipfile.py -14 +24
Thu Mar 6 21:54:42 CST 2003 jgoerzen
* /pygopherd/head: changeset 238
Removed _resolvelink debug code
M ./pygopherd/handlers/ZIP.py -5
Thu Mar 6 21:54:13 CST 2003 jgoerzen
* /pygopherd/head: changeset 237
Fixed _resolvelink
M ./pygopherd/handlers/ZIP.py -55 +96
M ./pygopherd/zipfile.py -19 +18
Fri Mar 7 11:23:16 CST 2003 jgoerzen
* /pygopherd/head: changeset 236
Ready to test.
M ./pygopherd/handlers/ZIP.py -143 +60
M ./pygopherd/handlers/base.py +9
M ./pygopherd/handlers/file.py -10 +1
M ./pygopherd/zipfile.py -38 +98
Fri Mar 7 10:29:02 CST 2003 jgoerzen
* /pygopherd/head: changeset 235
Completed initial work on the new zipfile.py.
M ./pygopherd/handlers/ZIP.py -9 +9
M ./pygopherd/zipfile.py +241
M ./runtests.py +1
Thu Mar 6 21:25:11 CST 2003 jgoerzen
* /pygopherd/head: changeset 233
Added from upstream CVS
A ./pygopherd/zipfile.py
Thu Mar 6 19:49:15 CST 2003 jgoerzen
* /pygopherd/head: changeset 232
Made great strides here.
M ./pygopherd/handlers/ZIP.py -20 +24
Thu Mar 6 19:32:21 CST 2003 jgoerzen
* /pygopherd/head: changeset 231
Reworking the symlink stuff.
M ./pygopherd/handlers/ZIP.py -47 +39
Thu Mar 6 17:03:04 CST 2003 jgoerzen
* /pygopherd/head: changeset 230
M ./debian/changelog +12
M ./pygopherd/handlers/ZIP.py -82 +17
Thu Mar 6 15:09:59 CST 2003 jgoerzen
* /pygopherd/head: changeset 229
All tests now pass!
M ./pygopherd/handlers/ZIP.py -6 +4
Thu Mar 6 15:08:16 CST 2003 jgoerzen
* /pygopherd/head: changeset 228
Making progress on ironing out bugs.
M ./pygopherd/handlers/ZIP.py -39 +129
M ./pygopherd/handlers/base.py +3
M ./testdata/symlinktest.zip
Thu Mar 6 14:03:40 CST 2003 jgoerzen
* /pygopherd/head: changeset 227
Checkpointing
M ./debian/changelog +6
M ./pygopherd/handlers/ZIP.py -42 +156
M ./pygopherd/handlers/html.py -1 +1
M ./runtests.py -2 +2
Thu Mar 6 11:10:13 CST 2003 jgoerzen
* /pygopherd/head: changeset 226
Updated the changelog
M ./debian/changelog +4
Thu Mar 6 11:08:01 CST 2003 jgoerzen
* /pygopherd/head: changeset 225
Refined directory handling. Greatly expanded tests. Added a full
symlink test battery. listdir() now raises OSError when called on an
invalid directory. open() now raises IOError when called on a
directory.
M ./pygopherd/handlers/ZIP.py +117
Thu Mar 6 10:43:16 CST 2003 jgoerzen
* /pygopherd/head: changeset 224
Directory symlinking now seems to work.
M ./pygopherd/handlers/ZIP.py -8 +17
M ./testdata/symlinktest.zip
Thu Mar 6 10:04:14 CST 2003 jgoerzen
* /pygopherd/head: changeset 223
M ./testdata/symlinktest.zip
Wed Mar 5 23:58:43 CST 2003 jgoerzen
* /pygopherd/head: changeset 222
Fixed up tests to take note of new file symlinktest.zip
M ./pygopherd/protocols/rfc1436Test.py +2
A ./testdata/symlinktest.zip
Wed Mar 5 23:56:21 CST 2003 jgoerzen
* /pygopherd/head: changeset 221
Removed debug code
M ./pygopherd/handlers/ZIP.py -5
M ./pygopherd/handlers/dir.py -1
Wed Mar 5 23:55:48 CST 2003 jgoerzen
* /pygopherd/head: changeset 220
Added symlink capabilities to ZIP.py
M ./pygopherd/handlers/ZIP.py -7 +62
M ./pygopherd/handlers/dir.py +1
Wed Mar 5 22:34:14 CST 2003 jgoerzen
* /pygopherd/head: changeset 219
Added this.
A ./testdata/ziptorture.zip
Wed Mar 5 22:26:31 CST 2003 jgoerzen
* /pygopherd/head: changeset 218
Noted recent changes
M ./debian/changelog +10
Wed Mar 5 22:25:19 CST 2003 jgoerzen
* /pygopherd/head: changeset 217
All tests pass!
M ./pygopherd/gopherentry.py -2 +5
M ./pygopherd/gopherentryTest.py -7 +7
M ./pygopherd/handlers/gophermap.py -2 +1
M ./pygopherd/protocols/rfc1436Test.py -2 +5
Wed Mar 5 22:05:37 CST 2003 jgoerzen
* /pygopherd/head: changeset 216
Removed some debug code
M ./pygopherd/gopherentry.py -3
Wed Mar 5 22:02:14 CST 2003 jgoerzen
* /pygopherd/head: changeset 215
More progress -- basic ZIP file now working!
M ./conf/pygopherd.conf +11
M ./pygopherd/gopherentry.py -5 +15
M ./pygopherd/handlers/ZIP.py -10 +36
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/base.py -16 +19
M ./pygopherd/handlers/dir.py -2 +2
M ./pygopherd/handlers/file.py -1 +1
M ./pygopherd/handlers/gophermap.py -1 +1
M ./pygopherd/protocols/rfc1436Test.py -1 +16
M ./testdata/testdata.zip
Wed Mar 5 16:51:06 CST 2003 jgoerzen
* /pygopherd/head: changeset 214
- This is the beginning of work to add a VFS system to PyGopherd.
Changes:
- Added runtestsgui, updated runtests
- Modified all handlers to be VFS-aware
- Implemented VFS_Real in base.py
- Implemented VFS_ZIP in ZIP.py
- Added ZIPHandler in ZIP.py
- Updated HandlerMultiplexer to use VFS TODO:
- Make ZIPHandler re-run handlermultiplexer and call it with all
subsequent calls
- Genericize ZIPHandler
M ./pygopherd/handlers/HandlerMultiplexer.py -3 +9
M ./pygopherd/handlers/UMN.py -4 +4
A ./pygopherd/handlers/ZIP.py
M ./pygopherd/handlers/base.py -17 +51
M ./pygopherd/handlers/dir.py -8 +10
M ./pygopherd/handlers/file.py -1 +1
M ./pygopherd/handlers/gophermap.py -12 +9
M ./pygopherd/handlers/html.py -1 +1
M ./pygopherd/handlers/mbox.py -5 +8
M ./pygopherd/handlers/pyg.py -2 +4
M ./pygopherd/handlers/scriptexec.py -2 +4
M ./pygopherd/handlers/virtual.py -4 +4
M ./pygopherd/protocols/rfc1436Test.py +4
M ./runtests.py -1 +3
A ./runtestsgui.py
A ./testdata/testdata.zip
A ./testdata/testdata2.zip
Tue Mar 4 14:46:27 CST 2003 jgoerzen
* /pygopherd/head: changeset 213
Clarified license terms
M ./Makefile -2 +1
M ./bin/pygopherd -2 +1
M ./debian/copyright -2 +1
M ./pygopherd.8 -2 +1
M ./pygopherd/GopherExceptions.py -2 +1
M ./pygopherd/GopherExceptionsTest.py -2 +1
M ./pygopherd/__init__.py -2 +1
M ./pygopherd/fileext.py -2 +1
M ./pygopherd/fileextTest.py -2 +1
M ./pygopherd/gopherentry.py -2 +1
M ./pygopherd/gopherentryTest.py -2 +1
M ./pygopherd/handlers/HandlerMultiplexer.py -2 +1
M ./pygopherd/handlers/UMN.py -2 +1
M ./pygopherd/handlers/__init__.py -2 +1
M ./pygopherd/handlers/base.py -2 +1
M ./pygopherd/handlers/dir.py -2 +1
M ./pygopherd/handlers/file.py -2 +1
M ./pygopherd/handlers/gophermap.py -2 +1
M ./pygopherd/handlers/html.py -2 +1
M ./pygopherd/handlers/mbox.py -2 +1
M ./pygopherd/handlers/scriptexec.py -2 +1
M ./pygopherd/handlers/url.py -2 +1
M ./pygopherd/initialization.py -2 +1
M ./pygopherd/initializationTest.py -2 +1
M ./pygopherd/pipe.py -2 +1
M ./pygopherd/protocols/ProtocolMultiplexer.py -2 +1
M ./pygopherd/protocols/__init__.py -2 +1
M ./pygopherd/protocols/base.py -2 +1
M ./pygopherd/protocols/enhanced.py -2 +1
M ./pygopherd/protocols/gopherp.py -2 +1
M ./pygopherd/protocols/http.py -2 +1
M ./pygopherd/protocols/rfc1436.py -2 +1
M ./pygopherd/sighandlers.py -2 +1
M ./pygopherd/testutil.py -2 +1
M ./pygopherd/version.py -2 +1
M ./runtests.py -2 +1
M ./setup.py -2 +1
Fri Feb 21 17:05:52 CST 2003 jgoerzen
* /pygopherd/head: changeset 212
Fixed gopherentry object for .gophermap files
M ./pygopherd/handlers/gophermap.py -1 +6
Fri Feb 21 15:15:09 CST 2003 jgoerzen
* /pygopherd/head: changeset 211
Added
A ./TODO
Fri Feb 21 15:14:46 CST 2003 jgoerzen
* /pygopherd/head: changeset 210
Added ability to serve up files ending in .gophermap as Gophermap
files.
M ./debian/changelog +7
M ./pygopherd/handlers/gophermap.py -2 +8
Thu Aug 8 16:45:08 CDT 2002 jgoerzen
* /pygopherd/head: changeset 209
Preparing for 1.1.0
M ./debian/changelog -2 +4
M ./pygopherd/handlers/UMN.py -1 +1
M ./pygopherd/version.py -1 +1
Thu Aug 8 16:39:10 CDT 2002 jgoerzen
* /pygopherd/head: changeset 208
Committed initial draft of the manual.
A ./manual.html
A ./manual.pdf
A ./manual.ps
A ./manual.txt
M ./pygopherd.8 -2 +507
Thu Aug 8 14:32:57 CDT 2002 jgoerzen
* /pygopherd/head: changeset 207
Initial draft of manual.
M ./pygopherd.8 -593 +135
Thu Aug 8 13:32:05 CDT 2002 jgoerzen
* /pygopherd/head: changeset 206
Began new manual that already incorporates the entire content of the
old LyX one, so removed it.
R ./doc/manual.lyx
M ./pygopherd.8 -90 +145
Thu Aug 8 13:13:50 CDT 2002 jgoerzen
* /pygopherd/head: changeset 205
First stab at a manpage/manual -- initially imported from OfflineIMAP.
M ./Makefile +6
M ./debian/changelog +2
M ./debian/docs -1 +4
A ./pygopherd.8
Thu Aug 8 13:09:53 CDT 2002 jgoerzen
* /pygopherd/head: changeset 204
Moved pygopherd.py to bin and adjusted other files to reflect this
A ./bin/
A ./bin/pygopherd
M ./debian/rules -1 +1
M ./setup.py -1 +1
Thu Aug 8 12:57:54 CDT 2002 jgoerzen
* /pygopherd/head: changeset 203
Removed TODO file (now kept in bug-tracking system)
R ./TODO
M ./debian/changelog +1
Thu Aug 8 11:46:15 CDT 2002 jgoerzen
* /pygopherd/head: changeset 202
Clarified relationship between ignorepatt and UMNDirHandler
M ./conf/pygopherd.conf -1 +5
Wed Aug 7 23:24:25 CDT 2002 jgoerzen
* /pygopherd/head: changeset 201
Commiting old changes
M ./debian/changelog +6
Tue Jul 23 08:04:37 CDT 2002 jgoerzen
* /pygopherd/head: changeset 200
Paranoia: chdir to our root.
M ./pygopherd/initialization.py +1
Mon Jul 22 08:17:22 CDT 2002 jgoerzen
* /pygopherd/head: changeset 199
Added "advertisedport" feature.
M ./conf/pygopherd.conf +7
M ./pygopherd/initialization.py -1 +4
Thu Jul 18 11:26:09 CDT 2002 jgoerzen
* /pygopherd/head: changeset 197
Updated for 1.0.0 release.
M ./ChangeLog +47
Thu Jul 18 11:16:35 CDT 2002 jgoerzen
* /pygopherd/head: changeset 196
Removed old .ex files. Set rules to install examples/* into Debian
package.
R ./debian/cron.d.ex
R ./debian/emacsen-install.ex
R ./debian/emacsen-remove.ex
R ./debian/emacsen-startup.ex
R ./debian/manpage.1.ex
R ./debian/manpage.sgml.ex
R ./debian/menu.ex
R ./debian/preinst.ex
R ./debian/prerm.ex
M ./debian/rules -1 +1
R ./debian/watch.ex
Thu Jul 18 11:15:13 CDT 2002 jgoerzen
* /pygopherd/head: changeset 195
Fixed tests to work with Subversion, and made sure things that need to
be set executable, are.
M ./debian/changelog +3
M ./pygopherd/GopherExceptionsTest.py -2 +2
M ./pygopherd/protocols/baseTest.py -1 +1
M ./pygopherd/protocols/rfc1436Test.py -4 +2
Thu Jul 18 11:14:20 CDT 2002 jgoerzen
* /pygopherd/head: changeset 194
Fixed to keep dot directories out of the list.
M ./pygopherd/handlers/UMN.py -3 +6
Thu Jul 18 11:05:50 CDT 2002 jgoerzen
* /pygopherd/head: changeset 193
A few last-minute tweaks
M ./ChangeLog +43
M ./Makefile +1
M ./debian/changelog -1 +1
Wed Jul 17 20:05:05 CDT 2002 jgoerzen
* /pygopherd/head: changeset 192
Added URL type rewriter. Modified handler importing scheme to work
nicer. Preparing for 1.0.0 release.
M ./conf/pygopherd.conf -1 +2
M ./debian/changelog -1 +3
M ./pygopherd/gopherentry.py -1
M ./pygopherd/handlers/HandlerMultiplexer.py -5 +10
M ./pygopherd/handlers/UMN.py -2 +3
M ./pygopherd/handlers/__init__.py +2
M ./pygopherd/handlers/base.py -1 +6
M ./pygopherd/handlers/dir.py -1 +2
M ./pygopherd/handlers/file.py -2 +3
M ./pygopherd/handlers/gophermap.py -2 +3
M ./pygopherd/handlers/html.py -1 +1
M ./pygopherd/handlers/mbox.py -1 +1
M ./pygopherd/handlers/pyg.py -1 +1
M ./pygopherd/handlers/scriptexec.py -1 +1
M ./pygopherd/handlers/url.py -2 +22
M ./pygopherd/version.py -1 +1
Wed Jul 17 19:33:07 CDT 2002 jgoerzen
* /pygopherd/head: changeset 191
Fixed gophermap info-only lines that have no tabs
M ./debian/changelog +6
M ./pygopherd/handlers/gophermap.py -1 +1
Wed Jul 17 19:28:16 CDT 2002 jgoerzen
* /pygopherd/head: changeset 190
Initial move over to Subversion: mark appropriate files executable,
new way of generating the ChangeLog.
M ./ChangeLog -857 +1277
M ./Makefile -3 +18
Tue Jul 2 18:43:05 CDT 2002 jgoerzen
* /pygopherd/head: changeset 188
Version 0.9.14
M ./ChangeLog +14
M ./debian/changelog +8
M ./pygopherd/initialization.py -2 +8
M ./pygopherd/version.py -1 +1
Tue Jul 2 16:34:02 CDT 2002 jgoerzen
* /pygopherd/head: changeset 187
Fixed a bug with HTML processing
M ./debian/changelog +6
M ./debian/rules -1
M ./pygopherd/GopherExceptions.py -1 +1
M ./pygopherd/handlers/html.py -3 +3
M ./pygopherd/version.py -1 +1
Tue Jul 2 16:04:06 CDT 2002 jgoerzen
* /pygopherd/head: changeset 186
Added signal handler mechanisms to foster orderly shutdowns.
M ./ChangeLog +9
M ./pygopherd/initialization.py -1 +13
A ./pygopherd/sighandlers.py
Thu May 2 15:24:41 CDT 2002 jgoerzen
* /pygopherd/head: changeset 185
Amplified the exitfunc.
M ./ChangeLog +22
M ./pygopherd/initialization.py -11 +2
Thu May 2 15:13:45 CDT 2002 jgoerzen
* /pygopherd/head: changeset 184
Added support for detached operation and pidfile writing.
M ./README -1 +1
M ./conf/pygopherd.conf +14
M ./debian/changelog +7
M ./debian/init.d -2 +2
M ./pygopherd/initialization.py -1 +26
M ./pygopherd/version.py -1 +1
Wed May 1 16:45:47 CDT 2002 jgoerzen
* /pygopherd/head: changeset 183
Added a dep on a non-buggy python2.2
M ./ChangeLog +120
M ./debian/control -1 +1
Fri Apr 26 15:18:10 CDT 2002 jgoerzen
* /pygopherd/head: changeset 182
HTTP protocol wasn't normalizing incoming selectors. Fixed.
M ./pygopherd/protocols/base.py -2 +9
M ./pygopherd/protocols/http.py -1 +3
Thu Apr 18 23:39:29 CDT 2002 jgoerzen
* /pygopherd/head: changeset 181
Nicer display, sorted
M ./pygfarm/dict.pyg -3 +5
Thu Apr 18 18:01:31 CDT 2002 jgoerzen
* /pygopherd/head: changeset 180
*** empty log message ***
M ./debian/changelog +8
M ./debian/control -1 +1
M ./pygfarm/dict.pyg +5
M ./pygopherd/version.py -1 +1
Thu Apr 18 17:22:38 CDT 2002 jgoerzen
* /pygopherd/head: changeset 179
Added pygfarm package for Debian.
M ./Makefile +1
R ./debian/README.Debian
M ./debian/control +14
A ./debian/pygfarm.README.Debian
A ./debian/pygfarm.dirs
M ./debian/rules +3
R ./pygfarm/foo.py
Thu Apr 18 17:13:29 CDT 2002 jgoerzen
* /pygopherd/head: changeset 178
Added support to HTTP for search requests.
M ./conf/pygopherd.conf +1
M ./pygopherd/protocols/http.py -7 +18
Thu Apr 18 16:57:33 CDT 2002 jgoerzen
* /pygopherd/head: changeset 177
Fixed gopher-dir to gopher-menu
M ./pygfarm/dict.pyg -15 +15
M ./pygopherd/protocols/http.py -1 +3
Thu Apr 18 16:49:52 CDT 2002 jgoerzen
* /pygopherd/head: changeset 176
Updated.
M ./pygfarm/dict.pyg -2 +49
Thu Apr 18 16:12:30 CDT 2002 jgoerzen
* /pygopherd/head: changeset 175
All except DBINFO working now.
M ./pygfarm/dict.pyg -6 +22
Thu Apr 18 16:00:20 CDT 2002 jgoerzen
* /pygopherd/head: changeset 174
Updated -- more features and bugfixes
M ./pygfarm/dict.pyg +44
Thu Apr 18 15:51:02 CDT 2002 jgoerzen
* /pygopherd/head: changeset 173
All except Match is now working.
M ./pygfarm/dict.pyg -6 +42
Thu Apr 18 15:42:49 CDT 2002 jgoerzen
* /pygopherd/head: changeset 172
Some various bugfixes
M ./pygfarm/dict.pyg -3 +85
Thu Apr 18 02:31:21 CDT 2002 jgoerzen
* /pygopherd/head: changeset 171
*** empty log message ***
M ./pygfarm/dict.pyg -2 +12
Thu Apr 18 02:22:29 CDT 2002 jgoerzen
* /pygopherd/head: changeset 170
Updated, working better.
M ./pygfarm/dict.pyg -6 +93
Wed Apr 17 22:08:11 CDT 2002 jgoerzen
* /pygopherd/head: changeset 169
Updated.
M ./pygfarm/dict.pyg +2
A ./pygfarm/foo.py
Wed Apr 17 19:31:25 CDT 2002 jgoerzen
* /pygopherd/head: changeset 168
*** empty log message ***
M ./pygfarm/dict.pyg -2 +27
Wed Apr 17 19:20:35 CDT 2002 jgoerzen
* /pygopherd/head: changeset 167
*** empty log message ***
A ./pygfarm/
A ./pygfarm/dict.pyg
Wed Apr 17 14:26:57 CDT 2002 jgoerzen
* /pygopherd/head: changeset 166
Updated -- use normpath for relative links.
M ./pygopherd/handlers/UMN.py -1 +1
Tue Apr 16 18:37:43 CDT 2002 jgoerzen
* /pygopherd/head: changeset 165
Made sure noabstract stuff works.
M ./pygopherd/protocols/rfc1436Test.py -3 +23
Tue Apr 16 18:32:41 CDT 2002 jgoerzen
* /pygopherd/head: changeset 164
Enhanced.
M ./pygopherd/protocols/rfc1436Test.py -2 +4
Tue Apr 16 15:11:59 CDT 2002 jgoerzen
* /pygopherd/head: changeset 163
Fixed entries handling after new prepare.
M ./pygopherd/handlers/gophermap.py -2 +2
Tue Apr 16 15:06:42 CDT 2002 jgoerzen
* /pygopherd/head: changeset 162
A test fix.
M ./pygopherd/protocols/rfc1436Test.py -3 +22
Tue Apr 16 14:45:20 CDT 2002 jgoerzen
* /pygopherd/head: changeset 161
Fixed a bug in HTTP handler that was adding an extra <TR><TD>
(reported by Robert Hahn) Fixed a bug in mbox.py affecting both
mailbox handlers -- after the new directory architecture, the prepare
in the child classes was not properly updated.
M ./pygopherd/handlers/UMN.py -1
M ./pygopherd/handlers/mbox.py +2
M ./pygopherd/protocols/http.py -3 +2
Tue Apr 16 00:21:01 CDT 2002 jgoerzen
* /pygopherd/head: changeset 160
Updated.
M ./ChangeLog +73
M ./debian/changelog +7
A ./pygopherd/protocols/rfc1436Test.py
M ./pygopherd/version.py -1 +1
M ./runtests.py -1 +3
Mon Apr 15 21:08:35 CDT 2002 jgoerzen
* /pygopherd/head: changeset 159
Finished baseTest and passes all tests.
M ./pygopherd/GopherExceptionsTest.py +1
M ./pygopherd/protocols/base.py +1
M ./pygopherd/protocols/baseTest.py -3 +88
M ./pygopherd/testutil.py -3 +10
Mon Apr 15 20:37:08 CDT 2002 jgoerzen
* /pygopherd/head: changeset 158
Beginnings of baseTest.
M ./pygopherd/protocols/__init__.py +1
M ./pygopherd/protocols/base.py -1 +1
A ./pygopherd/protocols/baseTest.py
M ./runtests.py -1 +4
Mon Apr 15 20:20:57 CDT 2002 jgoerzen
* /pygopherd/head: changeset 157
Added ProtocolMultiplexerTest
M ./Makefile +1
M ./pygopherd/protocols/ProtocolMultiplexerTest.py -4 +14
M ./pygopherd/testutil.py -2 +19
Mon Apr 15 19:58:16 CDT 2002 jgoerzen
* /pygopherd/head: changeset 156
Added ProtocolMultiplexerTest
A ./pygopherd/protocols/ProtocolMultiplexerTest.py
M ./pygopherd/protocols/__init__.py -1
M ./runtests.py -1 +4
Mon Apr 15 19:44:53 CDT 2002 jgoerzen
* /pygopherd/head: changeset 155
Added pipeTest.
M ./pygopherd/__init__.py -1 +1
M ./pygopherd/gopherentryTest.py +5
M ./pygopherd/pipe.py -2 +2
A ./pygopherd/pipeTest.py
M ./runtests.py -1 +2
A ./testdata/pygopherd/
A ./testdata/pygopherd/pipetest.sh
A ./testdata/pygopherd/pipetestdata
Mon Apr 15 19:09:48 CDT 2002 jgoerzen
* /pygopherd/head: changeset 154
Updated for new abstract tests
A ./testdata/.abstract
A ./testdata/testfile.txt.gz.abstract
Mon Apr 15 19:03:01 CDT 2002 jgoerzen
* /pygopherd/head: changeset 153
Many updates to abstract support
M ./conf/pygopherd.conf -5 +31
M ./pygopherd/GopherExceptionsTest.py -9
M ./pygopherd/gopherentry.py -4 +12
M ./pygopherd/handlers/gophermap.py -6 +1
M ./pygopherd/protocols/base.py -5 +31
M ./pygopherd/protocols/gopherp.py -1 +4
M ./pygopherd/protocols/http.py -7 +2
Mon Apr 15 17:55:19 CDT 2002 jgoerzen
* /pygopherd/head: changeset 152
Added the ability to read block contents from the filesystem.
M ./conf/pygopherd.conf -1 +20
M ./pygopherd/gopherentry.py +21
Mon Apr 15 15:21:09 CDT 2002 jgoerzen
* /pygopherd/head: changeset 151
Added beginnings of support for Abstract and other info.
M ./pygopherd/handlers/UMN.py -3 +16
M ./pygopherd/protocols/gopherp.py -3 +18
Mon Apr 15 14:37:22 CDT 2002 jgoerzen
* /pygopherd/head: changeset 150
Redid the directory handling mechanism. Now, handlers define isdir()
and getdirlist(). Protocols ask for a list of all entries in the
directory, rather than having the handler do a callback for each
entry.
M ./pygopherd/gopherentry.py +13
M ./pygopherd/handlers/base.py -2 +20
M ./pygopherd/handlers/dir.py -11 +4
M ./pygopherd/handlers/gophermap.py -11 +11
M ./pygopherd/handlers/mbox.py -9 +8
M ./pygopherd/handlers/pyg.py -6 +6
M ./pygopherd/protocols/base.py -8 +31
M ./pygopherd/protocols/gopherp.py -1 +4
M ./pygopherd/protocols/http.py -2 +5
Mon Apr 15 03:59:13 CDT 2002 jgoerzen
* /pygopherd/head: changeset 149
Updated.
M ./ChangeLog +18
Mon Apr 15 03:34:53 CDT 2002 jgoerzen
* /pygopherd/head: changeset 148
Fixed a bug with handling empty Path= lines. Thanks to David Allen
<mda@idatar.com> for identifying this one.
M ./pygopherd/handlers/UMN.py -1 +1
Fri Apr 12 20:26:46 CDT 2002 jgoerzen
* /pygopherd/head: changeset 147
Miscellany comments and stuff
M ./pygopherd/handlers/base.py -3 +3
Fri Apr 12 16:46:54 CDT 2002 jgoerzen
* /pygopherd/head: changeset 146
Updated for 0.9.4
M ./debian/changelog +7
M ./pygopherd/version.py -1 +1
Fri Apr 12 16:39:56 CDT 2002 jgoerzen
* /pygopherd/head: changeset 145
Updated.
M ./ChangeLog +24
M ./pygopherd/handlers/HandlerMultiplexer.py -6 +6
M ./pygopherd/handlers/base.py -1 +28
M ./pygopherd/handlers/file.py +3
M ./pygopherd/handlers/pyg.py -1 +1
M ./pygopherd/handlers/url.py +9
M ./pygopherd/protocols/ProtocolMultiplexer.py -20 +1
M ./pygopherd/protocols/http.py +1
Fri Apr 12 03:13:33 CDT 2002 jgoerzen
* /pygopherd/head: changeset 144
Fixed bug with rendering URLs.
M ./pygopherd/protocols/http.py -9 +10
Fri Apr 12 03:07:52 CDT 2002 jgoerzen
* /pygopherd/head: changeset 143
Forgot to call renderdirstart and renderdirend.
M ./pygopherd/handlers/gophermap.py +6
Thu Apr 11 21:41:40 CDT 2002 jgoerzen
* /pygopherd/head: changeset 142
More bugfixes.
M ./ChangeLog +27
M ./debian/changelog +7
M ./pygopherd/protocols/http.py -1 +3
M ./pygopherd/version.py -3 +3
Thu Apr 11 21:24:21 CDT 2002 jgoerzen
* /pygopherd/head: changeset 141
Fixed an initialization problem in testutil that could prevent the
system from starting up properly. Fixed URL to gopher downloads in
pygopherd.conf.
M ./conf/pygopherd.conf -1 +1
M ./pygopherd/testutil.py -2 +5
Thu Apr 11 21:16:59 CDT 2002 jgoerzen
* /pygopherd/head: changeset 140
Added the ability to http to put a configurable spiel at the top of
each page. Added version.py for stuff to find info about the software.
M ./ChangeLog +114
M ./Makefile -1 +1
M ./conf/pygopherd.conf +16
M ./debian/changelog +6
M ./debian/control -1 +1
M ./pygopherd/__init__.py -2 +3
A ./pygopherd/loggerTest.py
M ./pygopherd/protocols/http.py -2 +14
A ./pygopherd/version.py
M ./runtests.py -1 +2
M ./setup.py -22 +9
Thu Apr 11 19:32:37 CDT 2002 jgoerzen
* /pygopherd/head: changeset 139
Geturl now handles URL: patterns
M ./pygopherd/gopherentry.py -1 +9
M ./pygopherd/gopherentryTest.py -2 +25
M ./pygopherd/handlers/url.py -1 +1
Thu Apr 11 19:22:59 CDT 2002 jgoerzen
* /pygopherd/head: changeset 138
Gopherentrytest almost finished. Fixed some bugs that test
illuminated. Updated testutil.
M ./pygopherd/gopherentry.py -24 +96
M ./pygopherd/gopherentryTest.py -2 +180
Thu Apr 11 18:25:24 CDT 2002 jgoerzen
* /pygopherd/head: changeset 137
Added an encoded file.
A ./testdata/README
A ./testdata/testarchive.tar
A ./testdata/testarchive.tar.gz
A ./testdata/testarchive.tgz
A ./testdata/testfile.txt.gz
Thu Apr 11 18:01:04 CDT 2002 jgoerzen
* /pygopherd/head: changeset 136
Initial add of the gopherentryTest
M ./pygopherd/__init__.py -1 +1
A ./pygopherd/gopherentryTest.py
M ./pygopherd/testutil.py +1
M ./runtests.py -1 +2
Thu Apr 11 17:42:36 CDT 2002 jgoerzen
* /pygopherd/head: changeset 135
Always set the root to testroot
M ./Makefile +1
M ./pygopherd/testutil.py -1 +3
A ./testdata/
A ./testdata/testfile.txt
Thu Apr 11 16:41:05 CDT 2002 jgoerzen
* /pygopherd/head: changeset 134
Added the fileext test.
M ./conf/pygopherd.conf -1 +2
M ./pygopherd/GopherExceptionsTest.py +22
M ./pygopherd/__init__.py -1 +1
A ./pygopherd/fileextTest.py
M ./pygopherd/initializationTest.py +22
M ./pygopherd/testutil.py +23
M ./runtests.py -1 +2
Thu Apr 11 16:33:45 CDT 2002 jgoerzen
* /pygopherd/head: changeset 133
Added more tests, test utilities, etc.
M ./pygopherd/GopherExceptionsTest.py -6 +29
M ./pygopherd/__init__.py -1 +1
M ./pygopherd/initialization.py -16 +16
M ./pygopherd/initializationTest.py -8 +9
A ./pygopherd/testutil.py
Thu Apr 11 15:47:14 CDT 2002 jgoerzen
* /pygopherd/head: changeset 132
Added more tests. Made logger capable of logging to non-stdout
sources.
M ./conf/pygopherd.conf -1 +2
M ./pygopherd/GopherExceptions.py -1 +3
A ./pygopherd/GopherExceptionsTest.py
M ./pygopherd/__init__.py -1 +2
M ./pygopherd/logger.py -4 +13
M ./runtests.py -1 +2
Thu Apr 11 14:58:06 CDT 2002 jgoerzen
* /pygopherd/head: changeset 131
Added a sanity check to HandlerMultiplexer. Handle a special interface
bind request in initialization.py and conf/pygopherd.conf.
M ./conf/pygopherd.conf +10
M ./pygopherd/handlers/HandlerMultiplexer.py +9
M ./pygopherd/initialization.py -1 +5
Thu Apr 11 14:49:56 CDT 2002 jgoerzen
* /pygopherd/head: changeset 130
Security: block ./ and ../
M ./pygopherd/protocols/ProtocolMultiplexer.py -1 +22
M ./pygopherd/protocols/base.py -7
Thu Apr 11 14:07:28 CDT 2002 jgoerzen
* /pygopherd/head: changeset 129
Added.
A ./pygopherd/initializationTest.py
Thu Apr 11 04:05:05 CDT 2002 jgoerzen
* /pygopherd/head: changeset 128
Added real tests.
M ./pygopherd/initialization.py -4 +2
Thu Apr 11 03:31:44 CDT 2002 jgoerzen
* /pygopherd/head: changeset 127
Added initial testing infrastructure.
M ./pygopherd.py -1
M ./pygopherd/__init__.py -1 +2
A ./runtests.py
Thu Apr 11 03:12:29 CDT 2002 jgoerzen
* /pygopherd/head: changeset 126
Redid initialization system -- makes it easier for tests.
M ./conf/pygopherd.conf -1 +1
M ./pygopherd.py -139 +2
M ./pygopherd/__init__.py -1 +1
A ./pygopherd/initialization.py
Thu Apr 11 02:23:24 CDT 2002 jgoerzen
* /pygopherd/head: changeset 125
Updated
M ./ChangeLog +16
M ./debian/changelog +6
Thu Apr 11 00:29:58 CDT 2002 jgoerzen
* /pygopherd/head: changeset 124
Added the ability to log backtraces in more situations. Fixed a bug in
mbox preventing folders from working.
M ./conf/pygopherd.conf +10
M ./pygopherd.py -2 +11
M ./pygopherd/GopherExceptions.py -1 +7
M ./pygopherd/handlers/mbox.py -2 +2
Thu Apr 11 00:23:39 CDT 2002 jgoerzen
* /pygopherd/head: changeset 123
Fixed a software bug.
M ./pygopherd/handlers/UMN.py -3 +12
Wed Apr 10 21:30:11 CDT 2002 jgoerzen
* /pygopherd/head: changeset 122
VERSION 0.9.0 RELEASED
M ./ChangeLog +60
Wed Apr 10 21:02:31 CDT 2002 jgoerzen
* /pygopherd/head: changeset 121
Fixed some more bugs: don't crash if we have no perms to create a
cache file, handle relative Path= lines correctly.
M ./pygopherd/handlers/UMN.py -2 +2
M ./pygopherd/handlers/dir.py -3 +7
Wed Apr 10 20:56:45 CDT 2002 jgoerzen
* /pygopherd/head: changeset 120
Fixed a bug with type=X
M ./pygopherd/handlers/UMN.py -2 +4
Wed Apr 10 20:39:53 CDT 2002 jgoerzen
* /pygopherd/head: changeset 119
Additional bugfixes and enhancements
M ./pygopherd.py -1 +1
M ./pygopherd/gopherentry.py -1 +1
M ./pygopherd/handlers/file.py -3 +4
Wed Apr 10 20:22:28 CDT 2002 jgoerzen
* /pygopherd/head: changeset 118
Added decompresspatt support.
M ./conf/pygopherd.conf -2 +12
M ./pygopherd/handlers/file.py -2 +7
Wed Apr 10 20:13:16 CDT 2002 jgoerzen
* /pygopherd/head: changeset 117
Additional fixes for extension and encoding support.
M ./conf/pygopherd.conf -4 +7
M ./pygopherd/gopherentry.py -8 +10
M ./pygopherd/handlers/file.py -3 +4
Wed Apr 10 20:05:13 CDT 2002 jgoerzen
* /pygopherd/head: changeset 116
More updates and features with extensions and stuff.
M ./conf/pygopherd.conf +25
M ./pygopherd/fileext.py -2 +1
M ./pygopherd/handlers/UMN.py -4 +15
M ./pygopherd/handlers/file.py -12 +15
M ./pygopherd/protocols/rfc1436.py +2
Wed Apr 10 19:43:09 CDT 2002 jgoerzen
* /pygopherd/head: changeset 115
Modified encoding handling: default is to now set application/octet-
stream of there is any encoding UNLESS the CompressedFileHandler is
used.
M ./pygopherd/gopherentry.py -16 +25
M ./pygopherd/handlers/file.py -2 +16
Wed Apr 10 19:26:50 CDT 2002 jgoerzen
* /pygopherd/head: changeset 114
Renamed changelog target
M ./Makefile -1 +1
Wed Apr 10 19:19:16 CDT 2002 jgoerzen
* /pygopherd/head: changeset 113
Added many features: The CompressedFileHandler Pipe support etc
M ./ChangeLog +50
M ./conf/pygopherd.conf -6 +32
M ./pygopherd/__init__.py -1 +1
M ./pygopherd/handlers/file.py +27
M ./pygopherd/handlers/scriptexec.py -5 +25
A ./pygopherd/pipe.py
Wed Apr 10 18:38:24 CDT 2002 jgoerzen
* /pygopherd/head: changeset 112
Added smart file extension stripping for UMN dir.
M ./conf/pygopherd.conf -5 +62
M ./pygopherd.py -1 +11
M ./pygopherd/__init__.py -1 +1
A ./pygopherd/fileext.py
M ./pygopherd/handlers/UMN.py -7 +7
M ./pygopherd/handlers/dir.py -5 +5
Wed Apr 10 17:15:22 CDT 2002 jgoerzen
* /pygopherd/head: changeset 111
Added code to strip off an extension in UMN Dirhandler. Other Debian
enhancements.
M ./debian/changelog -1 +1
A ./debian/examples
M ./debian/postinst -17 +1
A ./debian/postrm
R ./debian/postrm.ex
M ./pygopherd/handlers/UMN.py -1 +9
Wed Apr 10 17:03:36 CDT 2002 jgoerzen
* /pygopherd/head: changeset 110
Updated pygopher'd path.
A ./examples/
A ./examples/gophermap
Wed Apr 10 16:27:39 CDT 2002 jgoerzen
* /pygopherd/head: changeset 109
Miscellaneous other fixes.
M ./debian/control -1 +9
M ./debian/init.d -4 +3
M ./pygopherd.py -2 +5
M ./pygopherd/handlers/gophermap.py -1 +4
Wed Apr 10 16:07:15 CDT 2002 jgoerzen
* /pygopherd/head: changeset 108
Modified to do some more checking, to permit colon-separated MIME
types, etc.
M ./ChangeLog +62
M ./conf/pygopherd.conf -2 +4
M ./debian/init.d -1 +1
M ./debian/postinst -18 +20
M ./debian/rules -2 +1
M ./pygopherd.py -3 +49
Wed Apr 10 15:41:53 CDT 2002 jgoerzen
* /pygopherd/head: changeset 107
Made setup.py include handlers and protocols too. Updated debian code.
M ./ChangeLog -27 +96
M ./Makefile +2
M ./debian/copyright +3
M ./debian/docs +1
M ./debian/rules -4 +8
M ./setup.py -3 +3
Wed Apr 10 15:27:03 CDT 2002 jgoerzen
* /pygopherd/head: changeset 106
Updated.
M ./README +1
M ./debian/control -3 +4
M ./debian/rules -1 +1
M ./setup.py -1 +2
Wed Apr 10 15:20:43 CDT 2002 jgoerzen
* /pygopherd/head: changeset 105
Added ability to specify aliased server name.
M ./conf/pygopherd.conf -2 +15
M ./pygopherd.py -3 +8
Wed Apr 10 15:13:16 CDT 2002 jgoerzen
* /pygopherd/head: changeset 104
Many modifications to permit system-wide installations, Debian package
support, etc.
A ./ChangeLog
M ./Makefile +3
A ./README
M ./TODO -8 +1
M ./conf/pygopherd.conf -22 +35
M ./debian/changelog -1 +1
A ./debian/conffiles
R ./debian/conffiles.ex
M ./debian/control -4 +4
M ./debian/copyright -3 +17
A ./debian/init.d
R ./debian/init.d.ex
A ./debian/postinst
R ./debian/postinst.ex
M ./debian/rules -2 +8
M ./setup.py -1 +21
Wed Apr 10 14:10:58 CDT 2002 jgoerzen
* /pygopherd/head: changeset 103
Imported debian/ directory.
A ./debian/
A ./debian/README.Debian
A ./debian/changelog
A ./debian/conffiles.ex
A ./debian/control
A ./debian/copyright
A ./debian/cron.d.ex
A ./debian/dirs
A ./debian/docs
A ./debian/emacsen-install.ex
A ./debian/emacsen-remove.ex
A ./debian/emacsen-startup.ex
A ./debian/ex.package.doc-base
A ./debian/init.d.ex
A ./debian/manpage.1.ex
A ./debian/manpage.sgml.ex
A ./debian/menu.ex
A ./debian/postinst.ex
A ./debian/postrm.ex
A ./debian/preinst.ex
A ./debian/prerm.ex
A ./debian/rules
A ./debian/watch.ex
A ./setup.py
Wed Apr 10 13:57:14 CDT 2002 jgoerzen
* /pygopherd/head: changeset 102
Now cleans up jython .class files
M ./Makefile +2
Wed Apr 10 03:31:15 CDT 2002 jgoerzen
* /pygopherd/head: changeset 101
More security enhancements and stuff.
M ./conf/pygopherd.conf -2 +18
M ./pygopherd.py -3 +40
M ./pygopherd/handlers/scriptexec.py -1 +3
Wed Apr 10 02:44:34 CDT 2002 jgoerzen
* /pygopherd/head: changeset 100
Added logging support
M ./conf/pygopherd.conf +25
M ./pygopherd.py +3
M ./pygopherd/GopherExceptions.py -3 +25
M ./pygopherd/__init__.py -1 +2
M ./pygopherd/handlers/HandlerMultiplexer.py -3 +4
M ./pygopherd/handlers/mbox.py -2 +2
A ./pygopherd/logger.py
M ./pygopherd/protocols/base.py -1 +10
M ./pygopherd/protocols/gopherp.py +2
M ./pygopherd/protocols/http.py +2
Tue Apr 9 21:26:41 CDT 2002 jgoerzen
* /pygopherd/head: changeset 99
Fixed an error with searchrequest support.
M ./conf/pygopherd.conf -2 +2
M ./pygopherd/handlers/pyg.py -1 +2
Tue Apr 9 21:09:48 CDT 2002 jgoerzen
* /pygopherd/head: changeset 98
Removed outdated import of "signal"
M ./pygopherd.py -1 +1
Tue Apr 9 20:42:31 CDT 2002 jgoerzen
* /pygopherd/head: changeset 97
Added searchrequest capabilities.
M ./conf/pygopherd.conf +2
M ./pygopherd/handlers/HandlerMultiplexer.py -2 +3
M ./pygopherd/handlers/base.py -1 +3
M ./pygopherd/handlers/dir.py -1 +1
M ./pygopherd/handlers/scriptexec.py -1 +2
M ./pygopherd/handlers/virtual.py -2 +3
M ./pygopherd/protocols/base.py -2 +2
M ./pygopherd/protocols/gopherp.py -7 +16
M ./pygopherd/protocols/rfc1436.py +2
Tue Apr 9 20:18:55 CDT 2002 jgoerzen
* /pygopherd/head: changeset 96
More updates for vfolder rename. Added scriptexec capability.
M ./conf/pygopherd.conf -1 +2
M ./pygopherd.py -1 +1
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/mbox.py -2 +2
M ./pygopherd/handlers/pyg.py -2 +2
A ./pygopherd/handlers/scriptexec.py
M ./pygopherd/protocols/ProtocolMultiplexer.py -2 +2
M ./pygopherd/protocols/base.py -1 +2
Tue Apr 9 19:45:52 CDT 2002 jgoerzen
* /pygopherd/head: changeset 95
Renamed vfolder to virtual
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/mbox.py -1 +1
M ./pygopherd/handlers/pyg.py -1 +1
R ./pygopherd/handlers/vfolder.py
A ./pygopherd/handlers/virtual.py
Mon Apr 8 20:36:27 CDT 2002 jgoerzen
* /pygopherd/head: changeset 94
Updates.
M ./conf/pygopherd.conf -3 +5
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/mbox.py -24 +74
A ./pygopherd/handlers/pyg.py
M ./pygopherd/handlers/vfolder.py -7 +8
Mon Apr 8 19:22:12 CDT 2002 jgoerzen
* /pygopherd/head: changeset 93
Updates with the vfolder.
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/base.py -1 +3
M ./pygopherd/handlers/mbox.py -10 +17
A ./pygopherd/handlers/vfolder.py
Sat Apr 6 21:08:21 CST 2002 jgoerzen
* /pygopherd/head: changeset 92
Updated for module moving.
M ./pygopherd.py -2 +3
A ./pygopherd/__init__.py
M ./pygopherd/gopherentry.py -1 +2
M ./pygopherd/handlers/HandlerMultiplexer.py -2 +2
M ./pygopherd/handlers/UMN.py -4 +4
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/base.py -1 +2
M ./pygopherd/handlers/dir.py -2 +3
M ./pygopherd/handlers/file.py -2 +2
M ./pygopherd/handlers/gophermap.py -2 +2
M ./pygopherd/handlers/html.py -4 +5
M ./pygopherd/handlers/mbox.py -2 +2
M ./pygopherd/handlers/url.py -2 +2
M ./pygopherd/protocols/ProtocolMultiplexer.py -2 +2
M ./pygopherd/protocols/base.py -3 +4
M ./pygopherd/protocols/enhanced.py -2 +4
M ./pygopherd/protocols/gopherp.py -5 +6
M ./pygopherd/protocols/http.py -4 +5
M ./pygopherd/protocols/rfc1436.py -3 +4
Sat Apr 6 19:31:06 CST 2002 jgoerzen
* /pygopherd/head: changeset 91
Added.
A ./Makefile
Sat Apr 6 02:25:26 CST 2002 jgoerzen
* /pygopherd/head: changeset 90
*** empty log message ***
M ./doc/manual.lyx -7 +92
Fri Apr 5 22:55:50 CST 2002 jgoerzen
* /pygopherd/head: changeset 89
Added.
A ./doc/manual.lyx
Fri Apr 5 20:23:55 CST 2002 jgoerzen
* /pygopherd/head: changeset 88
Added directory caching ability.
M ./conf/pygopherd.conf +11
M ./pygopherd/gopherentry.py -2 +2
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/UMN.py -6 +5
M ./pygopherd/handlers/base.py -1
M ./pygopherd/handlers/dir.py -1 +43
Fri Apr 5 19:59:56 CST 2002 jgoerzen
* /pygopherd/head: changeset 87
Performance enhancements after profiling
M ./conf/pygopherd.conf -1 +1
M ./pygopherd/gopherentry.py -5 +15
M ./pygopherd/handlers/HandlerMultiplexer.py -3 +15
M ./pygopherd/handlers/UMN.py -20 +22
M ./pygopherd/handlers/base.py -2 +9
M ./pygopherd/handlers/dir.py -2 +3
M ./pygopherd/handlers/file.py -2 +3
M ./pygopherd/handlers/gophermap.py -1 +2
M ./pygopherd/handlers/html.py -1 +1
M ./pygopherd/handlers/mbox.py -1 +2
Fri Apr 5 19:09:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 86
Performance: made mapping a module instead of a class variable.
M ./pygopherd/gopherentry.py -2 +3
Fri Apr 5 18:51:30 CST 2002 jgoerzen
* /pygopherd/head: changeset 85
Typo fix
M ./pygopherd/handlers/base.py -1 +1
Fri Apr 5 18:39:06 CST 2002 jgoerzen
* /pygopherd/head: changeset 84
*** empty log message ***
M ./pygopherd/handlers/base.py -3 +2
M ./pygopherd/handlers/mbox.py -1 +5
Fri Apr 5 18:24:11 CST 2002 jgoerzen
* /pygopherd/head: changeset 83
More work on the mbox handler. Say that we don't support gopher+
because UMN hates size-less stuff. Bah. Reverted gopherp : behavior.
It was right before, UMN is fussy.
M ./conf/pygopherd.conf -2 +4
M ./pygopherd/gopherentry.py +2
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/html.py -4 +16
A ./pygopherd/handlers/mbox.py
M ./pygopherd/protocols/gopherp.py -1 +1
Fri Apr 5 18:13:52 CST 2002 jgoerzen
* /pygopherd/head: changeset 82
Only put colon on a VIEWS line if there is size information coming.
M ./pygopherd/protocols/gopherp.py -1 +1
Fri Apr 5 16:43:00 CST 2002 jgoerzen
* /pygopherd/head: changeset 81
Split HTML title handler out of UMN.py into html.py
M ./conf/pygopherd.conf -2 +2
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/UMN.py -60
M ./pygopherd/handlers/__init__.py -1 +1
A ./pygopherd/handlers/html.py
Fri Apr 5 15:58:30 CST 2002 jgoerzen
* /pygopherd/head: changeset 80
Added copyright notices to all files.
M ./pygopherd/GopherExceptions.py +19
M ./pygopherd/gopherentry.py +19
M ./pygopherd/handlers/HandlerMultiplexer.py +19
M ./pygopherd/handlers/UMN.py -1 +20
M ./pygopherd/handlers/__init__.py +19
M ./pygopherd/handlers/base.py +19
M ./pygopherd/handlers/dir.py +19
M ./pygopherd/handlers/file.py +19
M ./pygopherd/handlers/gophermap.py +19
M ./pygopherd/handlers/url.py +19
M ./pygopherd/protocols/ProtocolMultiplexer.py +19
M ./pygopherd/protocols/__init__.py +20
M ./pygopherd/protocols/base.py +19
M ./pygopherd/protocols/enhanced.py +19
M ./pygopherd/protocols/gopherp.py +19
M ./pygopherd/protocols/http.py +19
M ./pygopherd/protocols/rfc1436.py +19
Fri Apr 5 15:51:59 CST 2002 jgoerzen
* /pygopherd/head: changeset 79
Added HTML handler support.
M ./conf/pygopherd.conf -2 +2
M ./pygopherd/handlers/UMN.py -1 +66
Fri Apr 5 15:12:49 CST 2002 jgoerzen
* /pygopherd/head: changeset 78
Added some comments and moved miscellaneous functions into the
UMNDirHandler.
M ./pygopherd/handlers/UMN.py -48 +67
Fri Apr 5 14:32:39 CST 2002 jgoerzen
* /pygopherd/head: changeset 77
Removed \t+ adding to gopher0 dirstrings. This is done in the rfc
module already.
M ./pygopherd/protocols/gopherp.py -5 +2
Fri Apr 5 14:27:33 CST 2002 jgoerzen
* /pygopherd/head: changeset 76
Modified to use the getentry() from each handler in the dirhandler.
Modified to indicate in each entry whether gopher+ is supported by
that entry. Modified rfc1436 to only indicate + for those entries
where this is true.
M ./conf/pygopherd.conf -4 +23
M ./pygopherd/gopherentry.py +7
M ./pygopherd/handlers/dir.py -3 +7
M ./pygopherd/protocols/rfc1436.py -6 +10
Thu Apr 4 20:05:22 CST 2002 jgoerzen
* /pygopherd/head: changeset 75
Added code to strip off trailing slashes in links.
M ./pygopherd/handlers/UMN.py -2 +5
Thu Apr 4 19:55:57 CST 2002 jgoerzen
* /pygopherd/head: changeset 74
Added handling of UMN type X
M ./pygopherd/handlers/UMN.py -3 +11
M ./pygopherd/handlers/dir.py -4 +3
Thu Apr 4 19:49:51 CST 2002 jgoerzen
* /pygopherd/head: changeset 73
More HTTP updates.
M ./conf/pygopherd.conf -1 +2
M ./pygopherd/protocols/http.py -11 +19
Thu Apr 4 19:36:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 72
Added icon support to HTTP protocol.
M ./conf/pygopherd.conf +11
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/protocols/http.py -3 +24
Thu Apr 4 19:20:27 CST 2002 jgoerzen
* /pygopherd/head: changeset 71
Updated.
M ./conf/pygopherd.conf -1 +7
M ./pygopherd/handlers/__init__.py -1 +2
M ./pygopherd/protocols/http.py +19
Thu Apr 4 18:51:48 CST 2002 jgoerzen
* /pygopherd/head: changeset 70
Added .cap file handling.
M ./pygopherd/handlers/UMN.py -12 +27
M ./pygopherd/handlers/dir.py +7
Thu Apr 4 18:37:37 CST 2002 jgoerzen
* /pygopherd/head: changeset 69
UMN seems to be working now!
M ./pygopherd/handlers/UMN.py -14 +17
M ./pygopherd/handlers/dir.py -1 +6
Thu Apr 4 18:27:57 CST 2002 jgoerzen
* /pygopherd/head: changeset 68
Various runtime fixes!
M ./conf/pygopherd.conf -3 +4
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/UMN.py -13 +38
M ./pygopherd/handlers/base.py +3
M ./pygopherd/handlers/dir.py -13 +30
Thu Apr 4 17:39:02 CST 2002 jgoerzen
* /pygopherd/head: changeset 67
Updated.
M ./pygopherd/handlers/UMN.py +19
M ./pygopherd/handlers/dir.py -10 +9
Thu Apr 4 17:29:56 CST 2002 jgoerzen
* /pygopherd/head: changeset 66
More updates.
M ./pygopherd/handlers/UMN.py -71 +40
Thu Apr 4 17:12:39 CST 2002 jgoerzen
* /pygopherd/head: changeset 65
Updates -- safer populatefromfs(), etc.
M ./pygopherd/gopherentry.py -5 +28
Thu Apr 4 16:51:12 CST 2002 jgoerzen
* /pygopherd/head: changeset 64
Initial writing.
M ./pygopherd/handlers/UMN.py -1 +104
Thu Apr 4 14:41:03 CST 2002 jgoerzen
* /pygopherd/head: changeset 63
Added from dir.py
A ./pygopherd/handlers/UMN.py
Wed Mar 27 15:40:53 CST 2002 jgoerzen
* /pygopherd/head: changeset 62
Added experimental URLGopherPlus protocol.
M ./pygopherd/gopherentry.py -1 +6
M ./pygopherd/protocols/gopherp.py -5 +14
Wed Mar 27 15:24:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 61
Modified to make more extensible.
M ./pygopherd/protocols/base.py -1 +1
M ./pygopherd/protocols/gopherp.py -22 +49
Wed Mar 27 13:16:17 CST 2002 jgoerzen
* /pygopherd/head: changeset 60
Moved to and fixes in prepare()
M ./pygopherd/handlers/gophermap.py -8 +10
Wed Mar 27 12:19:00 CST 2002 jgoerzen
* /pygopherd/head: changeset 59
Added error handling
M ./pygopherd/protocols/http.py -5 +12
Tue Mar 26 23:41:47 CST 2002 jgoerzen
* /pygopherd/head: changeset 58
HTTP support now nominally working.
M ./conf/pygopherd.conf -2 +2
M ./pygopherd/handlers/dir.py +9
M ./pygopherd/protocols/base.py +9
M ./pygopherd/protocols/http.py -27 +54
Tue Mar 26 20:44:16 CST 2002 jgoerzen
* /pygopherd/head: changeset 57
More work on http
M ./pygopherd/protocols/http.py -9 +64
Tue Mar 26 20:17:14 CST 2002 jgoerzen
* /pygopherd/head: changeset 56
Added some bugfixes for time handling.
M ./pygopherd/protocols/gopherp.py -2 +3
Tue Mar 26 20:10:01 CST 2002 jgoerzen
* /pygopherd/head: changeset 55
Added error handling.
M ./conf/pygopherd.conf +5
A ./pygopherd/GopherExceptions.py
M ./pygopherd/handlers/HandlerMultiplexer.py +3
M ./pygopherd/handlers/base.py +12
M ./pygopherd/handlers/dir.py -4 +5
M ./pygopherd/handlers/file.py -2 +6
M ./pygopherd/handlers/gophermap.py -2 +7
M ./pygopherd/handlers/url.py +2
M ./pygopherd/protocols/__init__.py -1 +1
M ./pygopherd/protocols/base.py -5 +13
M ./pygopherd/protocols/gopherp.py -11 +33
A ./pygopherd/protocols/http.py
Tue Mar 26 19:27:27 CST 2002 jgoerzen
* /pygopherd/head: changeset 54
Added gophermap capabilities.
M ./conf/pygopherd.conf -1 +2
A ./doc/standards/Gopher+.txt
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/__init__.py -1 +1
M ./pygopherd/handlers/base.py -2 +5
M ./pygopherd/handlers/dir.py -1 +1
A ./pygopherd/handlers/gophermap.py
M ./pygopherd/handlers/url.py -1 +3
M ./pygopherd/protocols/base.py -4 +1
M ./pygopherd/protocols/gopherp.py -7 +9
Tue Mar 26 18:52:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 53
Added from gopher://gopher.floodgap.com:70/0/buck/dbrowse%3Ffaquse%201
A ./doc/standards/gophermap.txt
Tue Mar 26 18:30:14 CST 2002 jgoerzen
* /pygopherd/head: changeset 52
Added from http://www.complete.org/mailinglists/archives/gopher-
200202/msg00033.html
A ./doc/standards/url.txt
Tue Mar 26 18:17:27 CST 2002 jgoerzen
* /pygopherd/head: changeset 51
Added url.py -- a URL: handler.
M ./conf/pygopherd.conf -1 +1
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/__init__.py -1 +1
A ./pygopherd/handlers/url.py
Tue Mar 26 17:59:11 CST 2002 jgoerzen
* /pygopherd/head: changeset 50
Updated to use new multiplexers, more configurability, some renaming
M ./conf/pygopherd.conf -2 +64
M ./pygopherd.py -12 +7
M ./pygopherd/gopherentry.py -2 +2
M ./pygopherd/handlers/HandlerMultiplexer.py -2 +2
M ./pygopherd/handlers/base.py -1 +1
M ./pygopherd/handlers/dir.py +6
A ./pygopherd/protocols/ProtocolMultiplexer.py
M ./pygopherd/protocols/enhanced.py -1 +1
Tue Mar 26 16:45:42 CST 2002 jgoerzen
* /pygopherd/head: changeset 49
Updated.
M ./TODO +2
M ./conf/pygopherd.conf -1 +1
M ./pygopherd.py -1 +1
M ./pygopherd/gopherentry.py -1 +1
Tue Mar 26 16:24:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 48
More bugfixes
M ./pygopherd/protocols/gopherp.py -5 +5
M ./pygopherd/protocols/rfc1436.py -1 +2
Tue Mar 26 16:19:32 CST 2002 jgoerzen
* /pygopherd/head: changeset 47
renamed entry to gopherentry
R ./entry.py
A ./pygopherd/gopherentry.py
M ./pygopherd/handlers/base.py -2 +2
M ./pygopherd/handlers/dir.py -3 +3
M ./pygopherd/handlers/file.py -2 +2
M ./pygopherd/protocols/gopherp.py -3 +3
Tue Mar 26 16:12:31 CST 2002 jgoerzen
* /pygopherd/head: changeset 46
Basic execution fixes.
M ./entry.py +3
M ./pygopherd/handlers/dir.py -6 +6
M ./pygopherd/handlers/file.py -1 +1
M ./pygopherd/protocols/base.py -2 +2
Tue Mar 26 15:46:36 CST 2002 jgoerzen
* /pygopherd/head: changeset 45
Bugfixes
M ./pygopherd.py -1 +2
M ./pygopherd/handlers/HandlerMultiplexer.py -1 +1
M ./pygopherd/handlers/base.py -1 +1
M ./pygopherd/handlers/dir.py -2 +3
M ./pygopherd/handlers/file.py -1 +2
M ./pygopherd/protocols/base.py -1 +2
M ./pygopherd/protocols/gopherp.py -4 +5
M ./pygopherd/protocols/rfc1436.py -1 +2
Tue Mar 26 15:34:22 CST 2002 jgoerzen
* /pygopherd/head: changeset 44
*** empty log message ***
M ./pygopherd.py -7 +6
A ./pygopherd/handlers/HandlerMultiplexer.py
A ./pygopherd/handlers/__init__.py
M ./pygopherd/protocols/__init__.py -1 +1
Tue Mar 26 15:25:56 CST 2002 jgoerzen
* /pygopherd/head: changeset 43
*** empty log message ***
A ./conf/mime.types
A ./entry.py
M ./pygopherd/protocols/gopherp.py -2 +4
Tue Mar 26 15:17:56 CST 2002 jgoerzen
* /pygopherd/head: changeset 42
*** empty log message ***
R ./handlers.py
M ./pygopherd.py -1 +13
M ./pygopherd/handlers/base.py -1 +2
A ./pygopherd/handlers/dir.py
M ./pygopherd/protocols/base.py -1 +2
Tue Mar 26 15:09:05 CST 2002 jgoerzen
* /pygopherd/head: changeset 41
Updated
M ./conf/pygopherd.conf -1 +3
M ./handlers.py -68
M ./pygopherd/handlers/base.py -2 +5
M ./pygopherd/handlers/file.py +19
M ./pygopherd/protocols/base.py -1 +1
Tue Mar 26 14:34:50 CST 2002 jgoerzen
* /pygopherd/head: changeset 40
Updated.
A ./TODO
A ./pygopherd/handlers/
A ./pygopherd/handlers/base.py
A ./pygopherd/handlers/file.py
M ./pygopherd/protocols/base.py -7 +27
Tue Mar 26 14:29:20 CST 2002 jgoerzen
* /pygopherd/head: changeset 39
Removed some code moved to the base protocol.
M ./handlers.py -17 +1
Tue Mar 26 14:09:39 CST 2002 jgoerzen
* /pygopherd/head: changeset 38
First stab at protocols.py -> protocols/* conversion.
R ./protocols.py
A ./pygopherd/
A ./pygopherd/protocols/
A ./pygopherd/protocols/__init__.py
A ./pygopherd/protocols/base.py
A ./pygopherd/protocols/enhanced.py
A ./pygopherd/protocols/gopherp.py
A ./pygopherd/protocols/rfc1436.py
Tue Mar 26 13:24:15 CST 2002 jgoerzen
* /pygopherd/head: changeset 37
Added.
A ./doc/
A ./doc/standards/
A ./doc/standards/rfc1436.txt
Mon Mar 25 23:32:02 CST 2002 jgoerzen
* /pygopherd/head: changeset 36
Updates for pre-http redir support.
M ./handlers.py -1 +1
M ./protocols.py -11 +11
Mon Mar 25 23:01:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 35
Rearranged code -- split rhandler.py into handlers.py and protocols.py
A ./handlers.py
A ./protocols.py
M ./pygopherd.py -1 +1
R ./rhandler.py
Mon Mar 25 20:47:07 CST 2002 jgoerzen
* /pygopherd/head: changeset 34
bug fixes
M ./rhandler.py -43 +36
Mon Mar 25 20:27:26 CST 2002 jgoerzen
* /pygopherd/head: changeset 33
Rewrite in progress.
M ./conf/pygopherd.conf +1
M ./rhandler.py -43 +129
Mon Mar 25 17:27:41 CST 2002 jgoerzen
* /pygopherd/head: changeset 32
More updates.
M ./rhandler.py -12 +11
Mon Mar 25 17:21:09 CST 2002 jgoerzen
* /pygopherd/head: changeset 31
Basic functionality is working.
M ./conf/pygopherd.conf +11
M ./pygopherd.py +5
M ./rhandler.py -9 +105
Mon Mar 25 16:17:58 CST 2002 jgoerzen
* /pygopherd/head: changeset 30
Updated.
A ./conf/
A ./conf/pygopherd.conf
M ./pygopherd.py -6 +12
A ./rhandler.py
Mon Mar 25 15:29:53 CST 2002 jgoerzen
* /pygopherd/head: changeset 29
Updated.
M ./pygopherd.py -40 +9
Mon Mar 25 15:08:11 CST 2002 jgoerzen
* /pygopherd/head: changeset 28
This version.
M ./pygopherd.py -1 +11
Mon Mar 25 14:55:11 CST 2002 jgoerzen
* /pygopherd/head: changeset 27
Working prototype.
M ./pygopherd.py -1 +34
Mon Mar 25 14:29:14 CST 2002 jgoerzen
* /pygopherd/head: changeset 26
Skeletal work
A ./pygopherd.py
Sat Apr 16 05:33:54 CDT 2005 tailor@katherina.lan.complete.org
* Tailorization of /pygopherd/head
Import of the upstream sources from the repository
file:///tmp/darcsconv/t/gopher-py
as of revision 25
A ./COPYING
|