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
|
2008-03-04 13:51 angdraug
* lib/samizdat/engine.rb: update 'all classes equal' hack for
Ruby/GetText 1.90
2008-03-04 13:04 angdraug
* lib/samizdat/engine.rb, test/tc_version.rb: update version to
0.6.1
2008-03-04 12:37 angdraug
* NEWS, README, doc/concepts.txt, doc/design-goals.txt,
doc/references.txt: documentation updated for Samizdat 0.6.1
release
2008-02-25 14:55 angdraug
* lib/samizdat/: storage.rb, components/resource.rb,
controllers/message_controller.rb,
controllers/query_controller.rb, engine/exceptions.rb: replace
remnants of 'skip' parameter with 'page', untie Storage from
Samizdat engine so that it can be used stand-alone
2008-02-24 10:39 angdraug
* data/samizdat/database/create-mysql.sql,
data/samizdat/database/create-pgsql.sql,
data/samizdat/database/create-sqlite3.sql,
lib/samizdat/storage.rb, lib/samizdat/helpers/message_helper.rb,
lib/samizdat/helpers/syndication_helper.rb,
lib/samizdat/models/message.rb: fixes: more resiliense against
malformed configs (from patch #5881), cripple links and images in
hidden messages (patch #6372); optimizations: index on Resource
(uriref), load core message parameters using single SQL query
2008-02-22 23:37 angdraug
* lib/samizdat/antispam.rb, lib/samizdat/components/resource.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/controllers/resource_controller.rb,
lib/samizdat/engine/dataset.rb, lib/samizdat/engine/request.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/models/moderation.rb, po/be.po, po/ru.po: multiple
resource rendering improvements: separate :full and :page modes,
use :full instead of :short where full non-translated message
should be displayed, use :short instead of :list_item for
messages on member page, include link to votes in statement page;
bugfixes: no moderation log when previewing a new message, better
fix for bug #21490; Belarusian and Russian translations updated
2008-02-22 23:33 angdraug
* TODO: defined todo items for release 0.6.2
2008-02-22 23:33 angdraug
* bin/samizdat-import-feeds: fail-safe feed parsing
2008-02-22 00:51 boud
* po/zh_CN.po: initial rough, partial version of zh_CN.po,
samizdat-0.6.0.070818-1 seems to require installing the .mo file
in zh/ and using zh in the config.yaml file instead of
zh_CN/ and zh_CN respectively
2008-02-14 19:56 angdraug
* lib/samizdat/helpers/application_helper.rb: don't << to a
localized string, GetText doesn't like that
2008-02-14 18:15 angdraug
* TODO, data/samizdat/database/grant-pgsql.sql,
doc/rdf-storage.txt, lib/samizdat/cache.rb,
lib/samizdat/engine.rb, lib/samizdat/sanitize.rb,
lib/samizdat/storage.rb, lib/samizdat/components/resource.rb,
lib/samizdat/controllers/foci_controller.rb,
lib/samizdat/controllers/frontpage_controller.rb,
lib/samizdat/controllers/history_controller.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/moderation_controller.rb,
lib/samizdat/controllers/query_controller.rb,
lib/samizdat/controllers/resource_controller.rb,
lib/samizdat/engine/dataset.rb, lib/samizdat/engine/helpers.rb,
lib/samizdat/helpers/application_helper.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/models/moderation.rb, po/be.po, po/ru.po,
test/tc_storage.rb: major update of RDF storage: OPTIONAL
sub-patterns (in SELECT only for now), per-statement FILTERs; new
DataSet based pagination system; show pending moderation requests
to everyone, force lowercase login names, use REXML::Formatters
in Sanitize when available, documentation updated
2008-01-20 16:02 angdraug
* README, TODO, doc/slides/barcampsheffield2007_samizdat.xml,
lib/samizdat/engine.rb, lib/samizdat/components/resource.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/controllers/moderation_controller.rb,
lib/samizdat/engine/exceptions.rb,
lib/samizdat/engine/request.rb,
lib/samizdat/helpers/application_helper.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/models/message.rb,
lib/samizdat/models/moderation.rb, po/be.po, po/ru.po,
test/tc_message_helper.rb: notify moderator functionality added;
Moderation model introduced; bugfixes: #20678 (redirect_when_done
cookie is used to always redirect back to where login process was
started from), always default to parent's title, don't append new
lines to the end of message body; API changes: Request#redirect
now requires '' to redirect to site base, Request#set_cookie
'expires' parameter defaults to non-persistent (session) cookie,
#forever value now must be passed explicitly; Belarusian and
Russian translations updated; documentation updated, Barcamp
Sheffield 2007 slides added
2007-11-12 00:12 angdraug
* TODO, bin/samizdat-drb-server, doc/install.txt,
doc/examples/apache.conf, lib/samizdat/cache.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/helpers/application_helper.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/models/content.rb, po/be.po, po/ru.po: show
non-inline message file size; rate-limit cache.flush; inform
guest users that they can't edit even open-for-all messages;
Belarusian and Russian translations updated; minor documentation
updates
2007-11-04 23:39 angdraug
* lib/samizdat/controllers/moderation_controller.rb: bugfix:
models/moderation never came to be
2007-11-04 21:00 angdraug
* test/: mock.rb, tc_application_helper.rb: unit tests updated
2007-11-04 20:45 angdraug
* data/samizdat/config.yaml, data/samizdat/defaults.yaml,
data/samizdat/database/create-mysql.sql,
data/samizdat/database/create-pgsql.sql,
data/samizdat/database/create-sqlite3.sql, doc/install.txt,
lib/samizdat/components/resource.rb,
lib/samizdat/controllers/frontpage_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/controllers/moderation_controller.rb,
lib/samizdat/controllers/resource_controller.rb,
lib/samizdat/engine/request.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/models/message.rb, po/be.po, po/ru.po: reverted back
to not swapping message with its preferred translation in full
mode; per-resource moderation logs; more DB indexes; RSS import
documented; Belarusian and Russian translations updated; store
Antispam object in persistent cache; fixes for bugs #21286,
#20932, #21490, #21242, setting focus during publishing of new
message, pagination when mixing replies and translations
2007-11-01 14:27 boud
* po/: es.po, fr.po: es+fr translation strings for a few patches
2007-09-09 10:14 boud
* lib/samizdat/antispam.rb, po/pl.po: pl.po: multipublish patch,
antispam.rb typo correction (/'delay'/,"'delay_limit'")
2007-08-25 21:03 boud
* po/ja.po: a few strings used in patches are added here
2007-08-25 04:45 boud
* po/ja.po: a few spaces
2007-08-24 02:39 boud
* po/pl.po: two strings for multipublish patch 0.4
2007-08-20 22:42 boud
* po/: es.po, fr.po, ja.po, pl.po: es/fr/ja/pl translations of
'Alternatively, upload a file ... '
2007-08-19 15:55 angdraug
* lib/samizdat/: components/resource.rb,
controllers/message_controller.rb: fixed setting focus during
publishing of new message
2007-08-18 17:18 angdraug
* doc/man/samizdat-import-feeds.1: man page for
samizdat-import-feeds
2007-08-18 16:51 angdraug
* TODO, bin/samizdat-import-feeds, data/samizdat/config.yaml,
data/samizdat/defaults.yaml, data/samizdat/css/default.css,
data/samizdat/css/indy.css, data/samizdat/css/savannah.css,
data/samizdat/css/sky.css, lib/samizdat/antispam.rb,
lib/samizdat/cache.rb, lib/samizdat/engine.rb,
lib/samizdat/controllers/frontpage_controller.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/engine/antispam.rb,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/helpers.rb, lib/samizdat/engine/request.rb,
lib/samizdat/helpers/application_helper.rb,
lib/samizdat/helpers/syndication_helper.rb,
lib/samizdat/models/content.rb, po/be.po, po/ru.po: import feeds
patch by Boud refactored and integrated; Cache expiry made more
flexible, persistent cross-site cache added; Antipam module
unbundled from engine into standalone library; bugs fixed: #19830
(upload file message), #20303 (basic interface fixed and
expanded), #20305 (don't display focus option without vote
acess), #20678 (don't redirect to referer on login/logout),
#20491 (fixed inconsistent handling of form action location by
CSRF protection); documentation updated; minor refactorings and
cleanups
2007-08-07 22:22 boud
* doc/install.txt: clarifications: apache.conf is a samizdat file;
importance of .yaml config files
2007-07-06 00:30 boud
* doc/install.txt: trivial: s/default.yaml/defaults.yaml/
2007-07-01 00:11 boud
* po/pl.po: minor pl language correction while waiting for fix to
bug #19830
2007-06-23 22:34 boud
* po/pl.po: minor: typo, antispam message
2007-06-20 00:46 boud
* po/: es.po, fr.po, pl.po: minor {es/fr/pl}.po: removed disabling
'fuzzy' comments
2007-06-18 21:59 boud
* po/pl.po: minor pl replace of replacement string for replace
action ;)
2007-06-18 19:51 angdraug
* lib/samizdat/: components/resource.rb, helpers/message_helper.rb,
models/focus.rb, models/message.rb: translations overhaul
inspired by separate translations patch by Boud: swap preferred
translation and original, don't show translations in the list of
replies, don't allow to post reply to a translation
2007-06-18 11:04 angdraug
* lib/samizdat/controllers/message_controller.rb: more faulty logic
in message editing
2007-06-17 17:55 angdraug
* data/samizdat/defaults.yaml, lib/samizdat/cache.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/engine/antispam.rb,
lib/samizdat/engine/controller.rb,
lib/samizdat/engine/exceptions.rb,
lib/samizdat/engine/helpers.rb: antispam module (by Boud with
some refactoring); log_exception helper extracted from
ErrorController; clarified that Cache#fetch_or_add is the
preferred method; fixed fix for #20134
2007-06-16 11:21 angdraug
* lib/samizdat/controllers/message_controller.rb: bug #20134: wrong
edit message permission check
2007-06-03 22:37 boud
* data/samizdat/config.yaml: ja: japanese header added for default
installation
2007-06-02 01:42 boud
* po/ja.po: experimental version of ja.po; deliberately not yet
added to config.yaml
2007-05-20 22:11 boud
* po/: es.po, fr.po, pl.po: es + fr + pl updates after major
20070501 revision; Plural-Forms definitions corrected
2007-05-20 13:32 angdraug
* lib/samizdat/controllers/message_controller.rb: set creator in
message/edit (can be different from original when open-for-all)
2007-05-19 12:54 angdraug
* lib/samizdat/components/resource.rb: don't cache
MessageComponent#info
2007-05-19 12:36 angdraug
* data/samizdat/config.yaml, doc/examples/apache.conf: merged in
config file comments clarifications by Boud
2007-05-19 12:25 angdraug
* lib/samizdat/components/resource.rb: fixed mutual recursion
between MessageComponent and Focus (bug #19903)
2007-05-19 12:25 angdraug
* lib/samizdat/cache.rb: monkey fixes for bugs in sync.rb
2007-05-12 20:28 boud
* doc/examples/apache.conf: less ambiguity in comments in suggested
apache.conf file
2007-05-09 20:50 angdraug
* AUTHORS: translators list updated
2007-05-09 20:21 angdraug
* lib/samizdat/: cache.rb, controllers/frontpage_controller.rb,
engine/deployment.rb, helpers/application_helper.rb: Cache
rewritten for better deadlock avoidance, FIFO replaced with
flexible replacement policy defaulting to LRU, debugging to
syslog added, has_key? removed
2007-05-06 11:55 angdraug
* lib/samizdat/: engine/request.rb, helpers/application_helper.rb:
use cache instead of database for CSRF protection; input
validation improvement in Request
2007-05-05 13:18 angdraug
* lib/samizdat/: controllers/diff_controller.rb,
controllers/frontpage_controller.rb,
controllers/member_controller.rb,
controllers/query_controller.rb,
controllers/resource_controller.rb,
helpers/application_helper.rb, models/message.rb: language list
restored (Boud); account creation fixed; several RSS fixes; input
validation improvements in DiffController and QueryController
2007-05-04 00:12 boud
* lib/samizdat/engine/controller.rb, po/be.po, po/ru.po: corrected
spelling error visible to users: s/priviledge/privilege/
2007-05-01 20:31 angdraug
* lib/samizdat/helpers/message_helper.rb, po/be.po, test/mock.rb,
test/tc_application_helper.rb, test/tc_message_helper.rb,
test/tc_template.rb, test/ts_samizdat.rb, test/util.rb:
Belarusian translation updated, unit tests updated for
application and message helpers
2007-04-25 21:04 angdraug
* TODO, doc/examples/lighttpd.conf,
lib/samizdat/controllers/frontpage_controller.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/controllers/moderation_controller.rb,
lib/samizdat/controllers/resource_controller.rb,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/helpers.rb,
lib/samizdat/engine/preferences.rb,
lib/samizdat/engine/request.rb, lib/samizdat/engine/session.rb,
lib/samizdat/helpers/application_helper.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/models/content.rb, po/ru.po, test/tc_robot.rb: CSRF
protection for message, resource, and member controllers;
translation of actions in moderation log; cache sites map
configuration, ignore trailing slashes in URI prefixes;
RequestSingleton reduced to ; upload location handling moved from
Content to Request
2007-04-22 14:05 angdraug
* data/samizdat/templates/page_layout.rhtml,
doc/examples/apache.conf, doc/examples/lighttpd.conf,
lib/samizdat/components/resource.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/controllers/moderation_controller.rb,
lib/samizdat/controllers/query_controller.rb,
lib/samizdat/controllers/resource_controller.rb,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/dispatcher.rb,
lib/samizdat/engine/helpers.rb, lib/samizdat/engine/request.rb,
lib/samizdat/models/content.rb, test/tc_robot.rb,
test/ts_samizdat.rb, test/util.rb: unit tests fixed (except
tc_template); lighttpd support added, route handling straightened
(Apache config also changed)
2007-04-18 19:55 angdraug
* po/: be.po, ru.po: Russian and Belarusian translations updated
2007-04-17 21:08 angdraug
* data/samizdat/css/default.css, data/samizdat/css/indy.css,
data/samizdat/css/savannah.css, data/samizdat/css/sky.css,
doc/translations.txt,
lib/samizdat/controllers/frontpage_controller.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/helpers/resource_helper.rb: link to foci moved to
top focuses as 'more'; stylesheets updated for action links; show
message preview for hide/unhide; translation instructions updated
for new code layout
2007-04-17 17:48 angdraug
* cgi-bin/dispatch.rb, cgi-bin/foci.rb, cgi-bin/history.rb,
cgi-bin/index.rb, cgi-bin/item.rb, cgi-bin/login.rb,
cgi-bin/logout.rb, cgi-bin/member.rb, cgi-bin/message.rb,
cgi-bin/moderation.rb, cgi-bin/query.rb, cgi-bin/resource.rb,
data/samizdat/config.yaml, data/samizdat/defaults.yaml,
data/samizdat/database/create-mysql.sql,
data/samizdat/database/create-pgsql.sql,
data/samizdat/database/create-sqlite3.sql,
data/samizdat/templates/page_layout.rhtml,
doc/examples/apache.conf, lib/samizdat/cache.rb,
lib/samizdat/engine.rb, lib/samizdat/storage.rb,
lib/samizdat/components/resource.rb,
lib/samizdat/controllers/diff_controller.rb,
lib/samizdat/controllers/foci_controller.rb,
lib/samizdat/controllers/frontpage_controller.rb,
lib/samizdat/controllers/history_controller.rb,
lib/samizdat/controllers/item_controller.rb,
lib/samizdat/controllers/member_controller.rb,
lib/samizdat/controllers/message_controller.rb,
lib/samizdat/controllers/moderation_controller.rb,
lib/samizdat/controllers/query_controller.rb,
lib/samizdat/controllers/resource_controller.rb,
lib/samizdat/engine/controller.rb,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/dispatcher.rb, lib/samizdat/engine/focus.rb,
lib/samizdat/engine/helpers.rb, lib/samizdat/engine/message.rb,
lib/samizdat/engine/preferences.rb,
lib/samizdat/engine/request.rb, lib/samizdat/engine/resource.rb,
lib/samizdat/engine/session.rb, lib/samizdat/engine/template.rb,
lib/samizdat/engine/view.rb,
lib/samizdat/helpers/application_helper.rb,
lib/samizdat/helpers/diff_helper.rb,
lib/samizdat/helpers/message_helper.rb,
lib/samizdat/helpers/resource_helper.rb,
lib/samizdat/models/content.rb, lib/samizdat/models/focus.rb,
lib/samizdat/models/member.rb, lib/samizdat/models/message.rb:
MVC refactoring (Apache config change required, todo: css, po,
test); passwd renamed to password (DB change required); digest()
updated for Ruby 1.8.5; diff now includes images and file links
2007-02-26 03:13 angdraug
* cgi-bin/history.rb, cgi-bin/index.rb, cgi-bin/member.rb,
cgi-bin/moderation.rb, cgi-bin/query.rb, cgi-bin/resource.rb,
doc/install.txt, lib/samizdat/cache.rb,
lib/samizdat/engine/focus.rb, lib/samizdat/engine/helpers.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/resource.rb,
lib/samizdat/engine/session.rb, lib/samizdat/engine/template.rb,
po/be.po, po/de.po, po/eo.po, po/es.po, po/fr.po, po/pl.po,
po/ru.po, po/ua.po, test/tc_robot.rb, test/ts_samizdat.rb:
Resource refactored: render*() replaced by polymorphic resource
controllers; smarter locking in Samizdat::Cache to make
fetch_or_add() re-enterable; option to show hidden messages
removed; set defaults for environment variables required by the
tests
2007-02-23 23:46 boud
* data/samizdat/config.yaml: (es) front page default header -
(headers in be/ru/eo/ua still missing)
2007-02-18 17:57 angdraug
* TODO, cgi-bin/history.rb, data/samizdat/xhtml.yaml,
doc/install.txt, lib/samizdat/engine/message.rb,
lib/samizdat/engine/template.rb, po/be.po, po/ru.po:
documentation update (new bug, recommended modules); inherit
hidden status from current message version, reflect hidden status
in a diff; fix absolute image paths starting with //;
ASCII-encode ellipsis (Boud); fix to let rgettext pick up Front
Page, Belarusian and Russian translations updated
2007-02-14 00:51 boud
* po/: es.po, fr.po, pl.po: pl.po - several small corrections;
pl+es+fr Front Page in template.rb
2007-02-12 20:21 boud
* po/pl.po: minor grammatical corrections in pl.po
2007-02-02 21:52 angdraug
* cgi-bin/resource.rb, lib/samizdat/engine/focus.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/resource.rb,
lib/samizdat/engine/template.rb: revert Focus#rating=
refactoring, it requires too many fixes
2007-02-02 20:33 angdraug
* TODO, cgi-bin/foci.rb, cgi-bin/history.rb, cgi-bin/index.rb,
cgi-bin/item.rb, cgi-bin/login.rb, cgi-bin/logout.rb,
cgi-bin/member.rb, cgi-bin/message.rb, cgi-bin/moderation.rb,
cgi-bin/query.rb, cgi-bin/resource.rb,
data/samizdat/css/common.css, doc/translations.txt,
lib/samizdat/storage.rb, lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/focus.rb, lib/samizdat/engine/message.rb,
lib/samizdat/engine/resource.rb, lib/samizdat/engine/session.rb,
lib/samizdat/engine/template.rb, po/be.po, po/ru.po: apply
line-through style to hidden messages; Focus#rating= refactored
to Focus#vote(); request() renamed to each_request();
documentation and copyrights updated
2007-02-01 23:49 boud
* data/samizdat/config.yaml: config.yaml header section in (de)
2007-01-31 22:23 boud
* data/samizdat/config.yaml, doc/translations.txt: example
site-specific header l10n: config.yaml: +fr, +pl, request in
translations.txt
2007-01-31 20:03 boud
* data/samizdat/defaults.yaml, po/de.po, po/es.po, po/fr.po,
po/pl.po: adding German translation; putting Project-Id-Version
to 0.6.0 in de/es/fr/pl
2007-01-28 00:23 boud
* po/es.po: fixed minor formatting errors in es.po - this time
msgfmt should work :)
2007-01-27 16:18 boud
* data/samizdat/defaults.yaml: add castellano (es) to language list
in defaults.yaml config file
2007-01-27 04:34 boud
* po/es.po: castellano (a.k.a. espanol or spanish) - thanks to a
local spanish-speaker :)
2007-01-27 04:26 boud
* po/: fr.po, pl.po: translations for "replace" instead of
"displace"; "full name" better translated
2007-01-20 12:30 angdraug
* TODO, data/samizdat/database/create-mysql.sql,
data/samizdat/database/create-sqlite3.sql,
data/samizdat/database/grant-mysql.sql,
data/samizdat/database/triggers-mysql.sql,
lib/samizdat/storage.rb, lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/session.rb,
lib/samizdat/engine/template.rb, po/be.po, po/eo.po, po/fr.po,
po/pl.po, po/ru.po, po/ua.po: added MySQL and improved SQLite3
support (documentation will follow), minor deployment fixes,
renamed 'displace' to 'replace' as suggested by Boud, posting
comment to a long thread now redirects to the right page, major
improvement to error reporting: full stack trace is written to
error log and referred by a hash supplied to the user
2006-12-07 21:40 angdraug
* doc/examples/apache.conf, lib/samizdat/engine/message.rb,
lib/samizdat/engine/resource.rb, lib/samizdat/engine/template.rb:
refactoring: new MessageContent class (still more refactoring
needed for things like RSS import); sort replies by id, to avoid
confusion when comments are edited; send Apache error.log to
/dev/null as a safe default for IP address logging prevention
2006-12-04 16:35 angdraug
* data/samizdat/xhtml.yaml: Sanitize: allow ':' in URI (RFC 2396)
if it's absolute and with legit scheme
2006-11-29 17:38 angdraug
* bin/samizdat-drb-server, cgi-bin/foci.rb, cgi-bin/history.rb,
cgi-bin/index.rb, cgi-bin/login.rb, cgi-bin/member.rb,
cgi-bin/message.rb, cgi-bin/query.rb, cgi-bin/resource.rb,
lib/samizdat/cache.rb, lib/samizdat/sanitize.rb,
lib/samizdat/storage.rb, lib/samizdat/engine/focus.rb,
lib/samizdat/engine/resource.rb, lib/samizdat/engine/session.rb,
lib/samizdat/engine/template.rb, test/tc_robot.rb,
test/tc_storage.rb, test/tc_template.rb, test/tc_version.rb,
test/util.rb: updated copyrights
2006-11-29 17:16 angdraug
* lib/samizdat/engine.rb, test/tc_version.rb: SAMIZDAT_VERSION =
'0.6.0'
2006-11-29 16:07 angdraug
* NEWS, TODO, doc/design-goals.txt,
lib/samizdat/engine/template.rb, po/fr.po: auto-url in default
message format; French translation update; documentation update
2006-11-28 17:35 angdraug
* README, TODO, doc/concepts.txt, doc/design-goals.txt,
doc/notes.txt: documentation update
2006-11-28 14:54 angdraug
* TODO, test/tc_robot.rb, test/tc_template.rb: unit tests updated,
functional test now works with focuses
2006-11-27 08:28 angdraug
* bin/samizdat-create-database, doc/man/samizdat-create-database.1,
doc/man/samizdat-drb-server.1, doc/man/update-indymedia-cities.1:
written minimal manpages for samizdat-drb-server,
samizdat-create-database, and update-indymedia-cities, print
usage updated for samizdat-create-database
2006-11-26 15:46 angdraug
* bin/cities.rb, bin/update-indymedia-cities, cgi-bin/query.rb,
data/samizdat/defaults.yaml, lib/samizdat/storage.rb, po/fr.po,
po/pl.po: login timeout increased to 4 hours; cities.rb renamed
to update-indymedia-cities; fixed query UI bug with unsubstituted
literals
2006-11-16 04:02 angdraug
* TODO, bin/cities.rb, cgi-bin/history.rb, cgi-bin/index.rb,
cgi-bin/query.rb, cgi-bin/resource.rb, doc/translations.txt,
lib/samizdat/engine/template.rb, po/be.po, po/ru.po: fixed
ampersand in URLs again, added cities.rb utility script,
instructions on translations added, Belarusian and Russian
translations updated
2006-11-14 23:49 angdraug
* TODO, doc/install.txt: documentation update
2006-10-29 10:58 angdraug
* cgi-bin/index.rb, data/samizdat/defaults.yaml,
data/samizdat/css/default.css, data/samizdat/css/indy.css,
data/samizdat/css/savannah.css, data/samizdat/css/sky.css,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/session.rb,
lib/samizdat/engine/template.rb: HTML diff, view source for
Textile and HTML; PublishMessage cleanup; CGIEnvironment renamed
to RequestSingleton and expanded to keep host and site name
globals; limit:cache option removed
2006-10-24 00:33 angdraug
* cgi-bin/index.rb: add uri_prefix to fragment cache key (atm
relevant only for index.rb)
2006-10-23 21:03 angdraug
* lib/samizdat/: sanitize.rb, engine/message.rb: fix for memory
leak in Tidy.path=(), introduced Message.regenerate_html(id) to
regenerate only one message
2006-10-08 14:31 angdraug
* AUTHORS, cgi-bin/message.rb, data/samizdat/sites.yaml,
lib/samizdat/engine.rb, lib/samizdat/engine/session.rb, po/fr.po:
GetText and sites.yaml fixes by Boud, requires cleanup
2006-09-24 13:34 angdraug
* AUTHORS, TODO, cgi-bin/index.rb, data/samizdat/config.yaml,
data/samizdat/defaults.yaml, data/samizdat/sites.yaml,
lib/samizdat/engine.rb, lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/session.rb,
lib/samizdat/engine/template.rb, po/fr.po: deployment fixes
(upload should now work everywhere), upload_enabled? moved to
PublishMessage, SiteConfig#content_location introduced,
documentation updated, default message size limit increased to
1M, French translation and version-independent GetText wrapper
(thanks Boud)
2006-09-20 21:24 angdraug
* README, bin/samizdat-create-database, cgi-bin/login.rb,
cgi-bin/member.rb, data/samizdat/config.yaml,
data/samizdat/defaults.yaml, doc/install.txt,
doc/examples/apache.conf, lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/session.rb,
test/tc_robot.rb, test/tc_template.rb, test/util.rb: deployment
cleanup: shorter default login timouts for tighter security,
SiteConfig#email_enabled? and #upload_enabled? checks, restored
support for single-directory installation, updated documentation
and unit tests
2006-09-16 21:19 angdraug
* doc/examples/apache.conf: move cgi-bin scripts to Debian policy
compliant location under /usr/share
2006-09-16 18:45 angdraug
* bin/samizdat-create-database,
data/samizdat/database/create-pgsql.sql,
data/samizdat/database/create-sqlite3.sql,
data/samizdat/database/create.sql,
data/samizdat/database/grant-pgsql.sql,
data/samizdat/database/triggers-pgsql.sql,
data/samizdat/database/triggers-sqlite3.sql,
data/samizdat/database/triggers.sql, lib/samizdat/engine.rb,
lib/samizdat/storage.rb, lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/resource.rb,
lib/samizdat/engine/session.rb, test/tc_robot.rb: database
generation script; experimental SQLite3 support
2006-09-14 12:26 angdraug
* data/samizdat/xhtml.yaml, lib/samizdat/engine.rb,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/session.rb:
now works with new libgettext-ruby; cross-site images in
xhtml.yaml (replace path with uri to unblock); add environment
variables allowing to access Samiz dat classes from command line
2006-09-13 01:35 angdraug
* bin/samizdat-site, bin/samizdat-webrick-server, cgi-bin/index.rb,
data/samizdat/config.yaml, data/samizdat/defaults.yaml,
data/samizdat/rdf.yaml, data/samizdat/sites.yaml,
data/samizdat/xhtml.yaml, data/samizdat/css/sky.css,
doc/examples/apache.conf, lib/samizdat/engine.rb,
lib/samizdat/engine/deployment.rb,
lib/samizdat/engine/exceptions.rb,
lib/samizdat/engine/helpers.rb, lib/samizdat/engine/resource.rb,
lib/samizdat/engine/session.rb, lib/samizdat/engine/template.rb,
po/eo.po, test/tc_robot.rb, test/tc_storage.rb,
test/tc_template.rb: deployment refactored: get configuration
from /etc/samizdat/* instead of environment variables; common
options loaded from shared config file; FastCGI now works
correctly with multi-site setups; configs now allow to use method
names instead of hash keys; universal example of Apache site
config provided; first attempt to update for new libgettext-ruby;
Esperanto translation updated; unit and functional tests updated;
new theme from Indymedia Ukraine
2006-04-17 12:54 angdraug
* cgi-bin/index.rb, lib/samizdat/cache.rb, lib/samizdat/engine.rb,
lib/samizdat/engine/message.rb, po/be.po, po/eo.po, po/pl.po,
po/ru.po, po/ua.po: fixed cross-site config cache corruption,
selective flush implemented, only cache of the current site is
flushed on updates, added 'All Replies' to Links section on the
front page, updated translations
2006-04-16 11:14 angdraug
* bin/samizdat-drb-server, lib/samizdat/cache.rb,
lib/samizdat/engine.rb, lib/samizdat/storage.rb,
lib/samizdat/engine/session.rb, lib/samizdat/engine/template.rb:
many improvements in code safety and security: synchronized
Cache, $SAFE = 1 in samizdat-drb-server, more HTML escaping;
fixed RSS/DRbUnknown bug by rearranging requires
2006-04-09 19:02 angdraug
* cgi-bin/resource.rb: fixed: previous uriref focus fix broke
normal focuses
2006-04-07 10:01 angdraug
* cgi-bin/resource.rb, doc/install.txt,
lib/samizdat/engine/focus.rb, lib/samizdat/engine/message.rb,
lib/samizdat/engine/template.rb: fixed NULL new message language
bug; fixed virtual uriref focus again; stricter focus uriref
validation; links update from Kirill Shutemov
2006-02-28 15:36 angdraug
* cgi-bin/index.rb, cgi-bin/resource.rb,
lib/samizdat/engine/focus.rb, lib/samizdat/engine/message.rb,
lib/samizdat/engine/session.rb, lib/samizdat/engine/template.rb,
po/be.po, po/eo.po, po/pl.po, po/ru.po, po/ua.po: butchered the
l10n in the code to work with rgettext, updated and cleaned up
all translations with rgettext, updated Belarusian and Russian
translations
2006-02-21 17:40 angdraug
* cgi-bin/resource.rb: fixed brown paper bug with 'add new focus'
menu
2006-02-21 15:55 angdraug
* .cvsignore: unmess changelog
2006-02-21 15:46 angdraug
* TODO, cgi-bin/foci.rb, cgi-bin/history.rb, cgi-bin/index.rb,
cgi-bin/member.rb, cgi-bin/message.rb, cgi-bin/pingback.rb,
cgi-bin/query.rb, cgi-bin/resource.rb, data/samizdat/config.yaml,
doc/install.txt, lib/samizdat/engine.rb,
lib/samizdat/sanitize.rb, lib/samizdat/storage.rb,
lib/samizdat/engine/focus.rb, lib/samizdat/engine/message.rb,
lib/samizdat/engine/resource.rb, lib/samizdat/engine/template.rb,
test/tc_robot.rb, test/tc_template.rb: new focus management
interface, massive RDF update (parametrized queries, RDF#assert
returns ids of new resources and should be wrapped inside
transaction, PRESET NS is optional), better input validation
(thanks Alster), Pingback support removed, intuitive page titles,
modularized moderation logging, restored replies to focuses until
Translations are done via dct:isPartOf
2006-02-21 11:43 angdraug
* .cvsignore, doc/install.txt: typo in install.txt, directory
structure housekeeping
2006-01-17 12:23 angdraug
* lib/samizdat/sanitize.rb: make previous Sanitize fix compatible
with older REXML versions
2006-01-17 11:53 angdraug
* data/samizdat/xhtml.yaml, lib/samizdat/sanitize.rb,
lib/samizdat/engine/template.rb: 3 XSS vulnerabilities fixed:
<img src> regexp, non-whitelisted tag removal, HTML-escaping
message title
2006-01-11 11:51 mend0za
* .cvsignore: add tags file
2006-01-09 02:01 mend0za
* doc/install.txt: Add hint for missing SetEnv directive
2006-01-09 01:39 mend0za
* .cvsignore: move sample installation in single place
2006-01-09 00:59 mend0za
* .cvsignore: add some ignored files for apache tuning over CVS
working directory
2005-12-19 14:03 angdraug
* cgi-bin/index.rb, data/samizdat/css/default.css,
data/samizdat/css/indy.css, data/samizdat/css/savannah.css,
doc/install.txt, lib/samizdat/engine/message.rb,
lib/samizdat/engine/resource.rb, lib/samizdat/engine/template.rb,
po/be.po, po/pl.po, po/ru.po: set language and format in edit
form from previous message version; place buttons after comments,
don't offer to post replies to focuses; count only positively
rated relations in Message#nreplies; moderation log link on the
front page; Polish translation updated; installation manual
updated
2005-12-02 15:28 angdraug
* po/pl.po: typo in Polish translation
2005-12-02 11:14 angdraug
* AUTHORS, data/samizdat/config.yaml, po/pl.po: Polish translation
added
2005-11-10 19:32 angdraug
* lib/samizdat/sanitize.rb, lib/samizdat/engine/focus.rb,
test/tc_robot.rb, test/tc_storage.rb, test/tc_template.rb,
test/tc_version.rb, test/util.rb: updated unit tests
2005-11-10 19:28 angdraug
* cgi-bin/index.rb, cgi-bin/query.rb, cgi-bin/resource.rb,
lib/samizdat/engine/resource.rb: RSS feed of RDF query results
implemented; show just messages when paginating replies, latest
messages or query results
2005-11-10 19:26 angdraug
* lib/samizdat/cache.rb, test/tc_cache.rb, test/ts_samizdat.rb:
better fix for Cache issues; unit test for Cache added
2005-11-10 19:24 angdraug
* lib/samizdat/engine/template.rb: updated links to GPL and to
Samizdat engine site in page footer; replaced absolute xhtml path
in Template.format_inline_content with a lookup
2005-11-10 19:22 angdraug
* po/: be.po, ru.po, ua.po: Belarusian, Russian, Ukrainian
translations updated
2005-11-10 19:18 angdraug
* AUTHORS, README, doc/design-goals.txt, doc/install.txt: minor
documentation update
2005-10-27 18:38 angdraug
* COPYING: FSF address is changed in GPL
2005-10-27 18:21 angdraug
* AUTHORS, NEWS, README, TODO, config.yaml, foci.rb, history.rb,
index.rb, item.rb, login.rb, logout.rb, member.rb, message.rb,
moderation.rb, pingback.rb, query.rb, resource.rb, samizdat.rb,
setup.rb, xhtml.yaml, bin/samizdat-drb-server, bin/samizdat-site,
bin/samizdat-webrick-server, cgi-bin/foci.rb, cgi-bin/history.rb,
cgi-bin/index.rb, cgi-bin/item.rb, cgi-bin/login.rb,
cgi-bin/logout.rb, cgi-bin/member.rb, cgi-bin/message.rb,
cgi-bin/moderation.rb, cgi-bin/pingback.rb, cgi-bin/query.rb,
cgi-bin/resource.rb, data/samizdat/config.yaml,
data/samizdat/xhtml.yaml, data/samizdat/css/common.css,
data/samizdat/css/default.css, data/samizdat/css/indy.css,
data/samizdat/css/savannah.css,
data/samizdat/database/create.sql,
data/samizdat/database/triggers.sql, data/samizdat/rdf/focus.n3,
data/samizdat/rdf/items.n3, data/samizdat/rdf/schema.n3,
doc/about.txt, doc/concepts.txt, doc/design-goals.txt,
doc/install.txt, doc/notes.txt, lib/samizdat/cache.rb,
lib/samizdat/engine.rb, lib/samizdat/sanitize.rb,
lib/samizdat/storage.rb, lib/samizdat/engine/focus.rb,
lib/samizdat/engine/message.rb, lib/samizdat/engine/resource.rb,
lib/samizdat/engine/session.rb, lib/samizdat/engine/template.rb,
po/be.po, po/eo.po, po/ru.po, po/ua.po: update from 5-month long
development in private Monotone tree. source code restructured
for Minero Aoki's setup.rb, Cache, Sanitize, and Storage are
separated from core engine modules, samizdat-drb-server added to
the tree; hidden messages are implemented; CSS validation is
implemented; major documentation update, added verbose comments
to config.yaml (cookie_prefix option moved to site section along
the way); Ukrainian translation added, other translations
updated; minor fixes: Cache entry deletion fixed, NOT in RDF
literal expressions fixed, <del> removed from RedCloth markup,
flush cache when member full name is changed, Sanitized updated
for Ruby Tidy 1.1.x, several RSS improvements, html_short cache
corruption fixed
2005-05-23 13:32 angdraug
* po/: be.po, eo.po, ru.po: fixed s:openForAll and added url
parsing to reparent
2005-05-23 09:51 angdraug
* config.yaml, index.rb, pingback.rb, query.rb, resource.rb,
samizdat.rb, doc/install.txt: multi-site configuration fixes:
SAMIZDAT_CONFIG replaced with SAMIZDAT_BASE, full path to
xhtml.yaml is used, honor HTTP_X_FORWARDED_HOST when set, cleared
out cross-site singletons and globals, optional dRuby
cross-process cache; Cache, Sanitize, and Storage moved to
Samizdat namespace and untied from Samizdat core; minor fixes and
improvements
2005-05-16 10:06 angdraug
* config.yaml, history.rb, index.rb, member.rb, message.rb,
moderation.rb, resource.rb, samizdat.rb, doc/install.txt,
po/be.po, po/eo.po, po/ru.po, test/tc_robot.rb,
test/tc_template.rb: message handling severely re-organized;
database cache of sanitized html rendition of inline messages is
implemented; message reparent implemented; moved language
selection to the front page; moderation log rendering
implemented; static header and footer are now translateable; new
SamizdatRDF#get_property method; Pingback disabled by default;
many rendering fixes and code clean-ups
2005-05-05 14:35 angdraug
* xhtml.yaml: add rss link to html head where applicable
2005-05-05 14:35 angdraug
* message.rb: structured message publishing into Message class in
message.rb
2005-04-28 14:54 angdraug
* po/eo.po: Esperanto translation update from Antono Vasiljev
2005-04-28 14:54 angdraug
* config.yaml: add .torrent to supported formats
2005-04-28 14:53 angdraug
* message.rb: message parameter validation is refactored into
methods; migrated from ftools to FileUtils in upload handling
2005-04-28 14:52 angdraug
* test/tc_template.rb: updated unit test for new <label/> rendering
2005-04-28 14:51 angdraug
* po/: be.po, ru.po: reparent button placeholder
2005-04-28 14:47 angdraug
* doc/: about.txt, design-goals.txt: added feature list to
about.txt, updated design-goals.txt
2005-03-30 09:51 angdraug
* config.yaml, index.rb: only include message in features if its
rating exceeds or equals features_threshold
2005-03-28 11:52 angdraug
* foci.rb, history.rb, index.rb, item.rb, login.rb, logout.rb,
member.rb, message.rb, pingback.rb, query.rb, resource.rb,
samizdat.rb, test/tc_robot.rb, test/tc_storage.rb,
test/tc_template.rb, test/tc_version.rb, test/ts_samizdat.rb,
test/util.rb: coding style updated to Pickaxe2 recommendations;
include dc:date in RSS, display links to RSS feeds; associate
labels with form fields via 'for' attribute; show link to full
content in truncated messages; mark focus messages in short and
list modes; cache one front page per accept_language combination;
refactored focus_head and Session#accept_language; take config
file name from SAMIZDAT_CONFIG environment variable if set
2005-03-28 11:44 angdraug
* doc/install.txt: recommend disabling cache when running tests
2005-02-21 16:38 angdraug
* index.rb: do Apache's job and include files in static headers
2005-02-21 16:33 angdraug
* config.yaml: add ogg, mp3, mpeg, avi, and wmv to the list of
supported file formats
2005-02-17 17:11 angdraug
* config.yaml, member.rb: styles configuration changed from hash to
list, first style in the list is the default
2005-02-17 17:09 angdraug
* index.rb: get rid of duplicates in features query
2005-02-17 17:05 angdraug
* doc/install.txt: fixed Ruby/Tidy setup instructions
2005-02-15 13:48 angdraug
* foci.rb, history.rb, index.rb, item.rb, login.rb, logout.rb,
member.rb, message.rb, pingback.rb, query.rb, resource.rb,
samizdat.rb, po/be.po, po/ru.po, test/tc_robot.rb,
test/tc_storage.rb, test/tc_template.rb, test/tc_version.rb,
test/ts_samizdat.rb, test/util.rb: copyright notices updated to
year 2005
2005-02-15 13:37 angdraug
* foci.rb, index.rb, message.rb, resource.rb, samizdat.rb,
po/be.po, po/eo.po, po/ru.po, test/tc_robot.rb: new three-column
front-page layout, old "main focuses" moved to foci.rb; language
tags and translations, focus:Translation introduced; RSS
syndication of front page features and focus updates;
configurable site icon; Savannah style by Vladimir Shahov
enabled; query result caching and rendered resources; "redirect
to parent" usability tweak; many rendering clean-ups
2005-02-15 13:34 angdraug
* config.yaml: new three-column front-page layout, old "main
focuses" moved to foci.rb; language tags and translations,
focus:Translation introduced; RSS syndication of front page
features and focus updates; configurable site icon; Savannah
style by Vladimir Shahov enabled; query result caching and
rendered resources; "redirect to parent" usability tweak; many
rendering clean-ups
2005-02-11 13:31 angdraug
* test/tc_robot.rb: unit tests updated
2005-02-11 12:59 angdraug
* po/: be.po, ru.po: Russian and Belarusian translations updated
2005-02-11 12:58 angdraug
* member.rb, message.rb, query.rb: basic and advanced UI modes
introduced, some options in message publishing and search
interface are hidden in basic mode
2005-02-11 12:54 angdraug
* doc/install.txt: updated documentation on Tidy dependence
2004-12-20 15:01 angdraug
* login.rb, member.rb, message.rb, query.rb: fixed IE <label/> bug
2004-12-17 13:44 angdraug
* index.rb, member.rb, po/be.po, po/eo.po, po/ru.po: implemented
option to hide static header and footer from front page
2004-12-17 13:43 angdraug
* doc/install.txt, test/tc_robot.rb: unit tests updated
2004-12-03 17:15 angdraug
* message.rb: fixed another MSIE quirk, about PNG this time
2004-12-01 18:55 angdraug
* member.rb: fixed confirmation bug caused by guest posting
implementation
2004-11-29 10:54 angdraug
* config.yaml, index.rb, po/be.po, po/ru.po: static header and
footer, site head links clarified
2004-11-26 19:53 angdraug
* po/: be.po, ru.po: got rid of "focus" term in Russian and
Belarussian translation: real world hates perfection :(((
2004-11-26 19:35 angdraug
* po/ru.po, resource.rb, po/be.po: access control for voting is
finished
2004-11-25 16:54 angdraug
* member.rb, message.rb, po/be.po, po/eo.po, po/ru.po: anonymous
publishing and flexible access control (publishing only so far)
implemented; untaint custom locale path for mod_ruby
2004-11-25 16:51 angdraug
* doc/install.txt: stressed significance of order of pg_hba.conf
lines in install.txt
2004-11-24 14:19 angdraug
* config.yaml, member.rb: preparation for anonymous posting and
flexible access control
2004-11-23 14:03 angdraug
* history.rb, index.rb, item.rb, login.rb, logout.rb, member.rb,
message.rb, pingback.rb, query.rb, resource.rb, samizdat.rb,
test/tc_robot.rb, test/tc_storage.rb, test/tc_template.rb,
test/tc_version.rb, test/ts_samizdat.rb, test/util.rb: added vim
spacing instructions to all .rb files
2004-11-23 13:32 angdraug
* config.yaml: added text/html message format, renamed
application/x-textile to text/textile, added alternative filter
parameter to Sanitize
2004-11-15 16:47 angdraug
* test/tc_version.rb: unit tests updated
2004-11-15 16:26 angdraug
* samizdat.rb, xhtml.yaml: fixed escaping of quotes in XML
attributes, updated version to 0.5.5
2004-11-15 16:24 angdraug
* index.rb: fixed XHTML on the front page
2004-11-15 16:23 angdraug
* config.yaml, doc/install.txt, po/be.po, po/eo.po, po/ru.po:
Esperanto translation added, other translations updated,
documentation actualized
2004-11-12 14:13 angdraug
* message.rb: bugfixes: first upload lookup_uri, render_related for
empty focus
2004-11-08 15:29 angdraug
* xhtml.yaml: HTML validation implemented
2004-10-22 11:20 angdraug
* doc/notes.txt: Samizdat 0.5.4 release notes
2004-10-22 11:18 angdraug
* index.rb: XHTML fixed on the front page
2004-10-21 16:26 angdraug
* test/tc_template.rb: updated unit tests
2004-10-21 16:03 angdraug
* config.yaml, po/be.po, po/ru.po: make database connection
configurable to allow multiple Samizdat instances on the same
host; documentation update, translations update
2004-10-14 10:27 angdraug
* config.yaml, index.rb, member.rb, message.rb: stricter DB table
permissions, show description in message preview, theme selection
implemented
2004-10-11 10:39 angdraug
* config.yaml, message.rb, samizdat.rb, po/be.po, po/ru.po: string
length limits implemented for titles and short messages;
translations update
2004-10-04 13:13 angdraug
* resource.rb: fixed typo that broke Pingback
2004-10-04 12:47 angdraug
* doc/notes.txt: minor roadmap update
2004-10-04 12:38 angdraug
* config.yaml, history.rb, index.rb, query.rb, resource.rb,
po/be.po, po/ru.po: new frontpage layout, Belarusian translation
added, about link added, rendering fixes, crash with disabled
Pingback fixed
2004-10-01 12:15 angdraug
* resource.rb: fixed crash with disabled Pingback
2004-10-01 11:18 angdraug
* member.rb, message.rb: moderation log implemented
2004-09-27 16:41 angdraug
* message.rb: display RedCloth crashes as RuntimeError; minor code
cleanups
2004-09-27 09:47 angdraug
* member.rb, message.rb, samizdat.rb, po/ru.po,
test/tc_template.rb, test/tc_version.rb: moderation implemented
(take over message, displace message, block account); version
bumped to 0.5.4
2004-09-24 15:33 angdraug
* doc/about.txt: papers and link to boblycat added
2004-09-24 15:11 angdraug
* config.yaml, member.rb, po/ru.po: moderation: facility settings,
takeover and displacement buttons
2004-09-24 15:09 angdraug
* doc/notes.txt: removed all news that are not related to Samizdat
releases
2004-09-20 15:54 angdraug
* message.rb, po/ru.po: closed description recursion bug
2004-09-20 14:33 angdraug
* doc/notes.txt: Samizdat 0.5.3 release notes
2004-09-20 14:30 angdraug
* member.rb: global patterns, proper untaint of command line for
sendmail
2004-09-20 13:20 angdraug
* config.yaml, history.rb, message.rb, resource.rb, po/ru.po,
test/tc_robot.rb, test/tc_template.rb: dc:description
implemented, added date in vote display, destination anchors for
messages, link to settings even when not logged in
2004-09-20 13:20 angdraug
* doc/papers/: collreif.tex, rel-rdf.tex: added papers source to
documentation
2004-09-14 12:24 angdraug
* member.rb, samizdat.rb, doc/install.txt, doc/notes.txt, po/ru.po,
test/tc_robot.rb, test/tc_version.rb: email confirmation using
preferences, account management refactored, uniform digest
function, bugfixes, documentation update
2004-07-14 10:18 angdraug
* config.yaml, login.rb, member.rb, message.rb, samizdat.rb,
doc/install.txt, doc/notes.txt, po/ru.po: email interface to
account management, lost password recovery, l10n update,
documentation update
2004-07-05 11:01 angdraug
* doc/notes.txt: Samizdat 0.5.2 release notes
2004-07-05 10:23 angdraug
* history.rb, index.rb, login.rb, member.rb, message.rb,
resource.rb, doc/concepts.txt, doc/install.txt, doc/notes.txt,
po/ru.po, test/tc_robot.rb, test/tc_template.rb: major UI
reorganization for better usability; documentation update
2004-07-02 10:10 angdraug
* pingback.rb: older versions now can't be pingbacked and won't
appear in member's latest messages
2004-07-01 21:17 angdraug
* history.rb: implemented difference engine for history of changes,
added more input validation cases along the way
2004-07-01 21:15 angdraug
* test/tc_template.rb: updated tests for site name variable
2004-07-01 21:13 angdraug
* message.rb: several input validation improvements
2004-06-28 15:48 angdraug
* doc/notes.txt: another update to roadmap: added account
management to 0.6.0
2004-06-28 09:39 angdraug
* config.yaml, index.rb, member.rb, message.rb, resource.rb,
doc/design-goals.txt, po/ru.po: Big Monday Checkin 3.
New features: history of changes, s:openForAll message property,
new focus representation, site logo setting in config.yaml.
Minor improvements: show number of replies in message info, old
versions now can't be edited or commented, form template supports
disabled fields, show language box on account settings page,
textarea size increased, and some bugfixes.
Documentation: updated design goal achievements.
2004-06-25 15:56 angdraug
* config.yaml, index.rb, message.rb, pingback.rb, resource.rb,
po/ru.po, test/tc_storage.rb, test/tc_template.rb: basic Wiki
functionality implemented: message versioning and Textile
hypertext format; message.rb refactored, s:thread eliminated
2004-06-25 15:51 angdraug
* doc/notes.txt: reshuffled roadmap to postpone RDF coolness in
favor of features
2004-06-23 12:20 angdraug
* doc/: design-goals.txt, install.txt, notes.txt: documentation
update: updated design goal achievements, installation note about
FastCGI, SQLite added to roadmap, comment on unnecessary aliases
in storage
2004-04-07 16:08 angdraug
* config.yaml: default site name is Demo
2004-03-29 08:44 angdraug
* index.rb, pingback.rb, query.rb, resource.rb,
doc/rdf-storage.txt, doc/storage-impl.txt, test/tc_storage.rb,
test/tc_template.rb: RDF storage update: * SamizdatRDF is
Singleton again: instead of <Session#base+id>, internal resources
are now <id> (local URIref) * SamizdatRDF#assert fixed to
unconditionally insert blank nodes from INSERT section *
standardized storage documentation on the 'assertion' term
2004-03-29 08:41 angdraug
* test/tc_robot.rb: pingback test implemented
2004-03-22 09:25 angdraug
* index.rb, item.rb, login.rb, logout.rb, member.rb, message.rb,
query.rb, resource.rb: FastCGI support implemented
2004-03-22 09:25 angdraug
* samizdat.rb, test/tc_version.rb: updated version to 0.5.2; read
config.yaml inside block
2004-03-22 09:23 angdraug
* doc/notes.txt: removed Webrick, added installer to 0.5.2 roadmap
2004-03-18 17:19 angdraug
* doc/notes.txt: 0.5.1 release note
2004-03-18 16:34 angdraug
* test/tc_template.rb: explicitly select 'C' locale for template
tests
2004-03-15 15:08 angdraug
* config.yaml: denormalized away Proposition table to double the
speed of front page generation
2004-03-15 15:01 angdraug
* message.rb, po/ru.po: auto-detect format of uploaded files; fixed
text/uri-list validation bug
2004-03-15 14:57 angdraug
* doc/notes.txt: detalized 5.x-6.0 roadmap
2004-03-12 15:28 angdraug
* test/: tc_robot.rb, tc_template.rb: update to Template changes,
added message rendering tests
2004-03-12 15:27 angdraug
* index.rb, member.rb, message.rb, pingback.rb, query.rb,
resource.rb: API change: message rendering is refactored into
Template#{message,message_info,message_content} and now takes
parameters in a Hash; updated to Session and SamizdatRDF API
changes; add ", page #" to title of second and other pages of
long listings; take advantage of count() in focus usage counting;
moved set_lang to index.rb; focus threads skipping bug fixed;
"Skip navigation" accessibility link and "Vote" tooltip are added
2004-03-12 15:13 angdraug
* test/tc_storage.rb: updated to latest storage.rb changes
2004-03-12 14:54 angdraug
* po/ru.po: Russian translation update
2004-03-12 14:54 angdraug
* login.rb, logout.rb: use new Session#redirect
2004-03-12 14:52 angdraug
* item.rb: throwing out some dead weight
2004-03-12 14:52 angdraug
* doc/notes.txt: storage requirements for better performance and
versioning
2004-03-12 14:48 angdraug
* doc/install.txt: Apache setup clarifications
2004-03-01 16:29 angdraug
* config.yaml, index.rb, item.rb, login.rb, logout.rb, member.rb,
message.rb, pingback.rb, query.rb, resource.rb, samizdat.rb,
doc/install.txt, doc/notes.txt, po/ru.po, test/tc_robot.rb,
test/tc_storage.rb, test/tc_template.rb, test/tc_version.rb,
test/ts_samizdat.rb, test/util.rb: Another Big Monday Checkin:
gettext l10n support is implemented, Russian translation is
added.
Other changes: cookie handling refactored; copyrights updated to
2004; file upload in plain CGI mode is fixed; resource rendering
code cleaned up.
2004-02-27 19:46 angdraug
* resource.rb: add "Recent Threads" to the focus page recent
threads box
2004-02-16 18:18 angdraug
* test/tc_robot.rb: generate timestamped test user to allow
multiple subsequent runs
2004-02-16 10:21 angdraug
* message.rb: detect image/pjpeg MIME type from MSIE; remove some
dead code (Session class now handles that
2004-02-16 10:14 angdraug
* doc/notes.txt: reflect nextVersionOf->dct:isVersionOf schema
change; notes on sub-resources
2004-02-16 10:11 angdraug
* doc/install.txt: updates from Denis Valoha: reference to
Ruby/Postgres, psql-less database setup, generalize PostgreSQL
config files location, reflect Database class relocation,
Samizdat on Windows section
2004-02-16 10:04 angdraug
* samizdat.rb, test/tc_version.rb: update version to 0.5.1; rename
Config to SamizdatConfig to avoid conflict with standard class
2004-02-16 09:53 angdraug
* resource.rb: code cleanup: don't request rating of not voting
2004-02-16 09:51 angdraug
* doc/design-goals.txt: added admin-defined quorum to Vote features
2003-12-01 13:00 angdraug
* doc/notes.txt: remove (done) labels from roadmap, as latest
released version is obvious from news section
2003-12-01 11:27 angdraug
* samizdat.rb, doc/notes.txt: Samizdat 0.5.0 is released
2003-11-19 15:12 angdraug
* message.rb, samizdat.rb: fixed location to filename translation
for content uploads to /~username style locations
2003-11-18 18:45 angdraug
* message.rb: Pingback client is now working (latest Ruby CVS +
cgi.rb multipart fix required)
2003-11-18 14:45 angdraug
* doc/: notes.txt, about.txt: demo site is available
2003-11-10 10:49 angdraug
* doc/design-goals.txt: marked finished (+) and in-progress (~)
design goals; added spam filtering and Mixmaster anon-publishing
2003-11-10 10:47 angdraug
* message.rb, pingback.rb: URI::REGEXP::URI_REF -> URI::URI_REF
2003-11-06 18:32 angdraug
* message.rb, pingback.rb, test/tc_robot.rb: replaced === with
kind_of? invocations for readability
2003-11-03 20:25 angdraug
* resource.rb: don't allow to focus resource on itself; clean-up
message content padding
2003-11-03 20:14 angdraug
* test/tc_robot.rb: mass-message stress test added
2003-11-03 20:13 angdraug
* message.rb: non-functional Pingback client
2003-11-03 20:11 angdraug
* doc/design-goals.txt: added some ideas from blog discussion on
active2-dev
2003-10-26 20:44 angdraug
* doc/notes.txt: upgrade forthcoming 0.0.5 to 0.5.0 and call it a
beta release
2003-10-26 20:44 angdraug
* focus.rb, index.rb, resource.rb: focus management implemented:
store current focus in a cookie, render table of site focuses on
front page, show related threads in focus resource page, show
current, standard, and related focuses in focus box on resource
page; more paging with nav link
2003-10-26 20:42 angdraug
* samizdat.rb: define 5 year expire timeout for permanent cookie as
#forever
2003-10-26 20:41 angdraug
* doc/install.txt: to avoid spam, only first URI in text/uri-list
should be pingbacked
2003-10-26 20:41 angdraug
* doc/concepts.txt: reflect availability of non-existent standard
focuses
2003-10-26 20:38 angdraug
* query.rb: paging with nav link
2003-10-26 20:37 angdraug
* message.rb, test/tc_robot.rb: resource list, resource table,
navigation link; message rendering clean-up; make focus name in
focus info clickable
2003-10-24 15:51 angdraug
* test/tc_robot.rb: new focus handling
2003-10-24 15:48 angdraug
* resource.rb: placeholder focus management
2003-10-24 15:48 angdraug
* config.yaml: focus cookie, s:id property
2003-10-24 15:46 angdraug
* test/tc_storage.rb: s:id universal property implemented (however,
with a redundant self-join on Resource)
2003-10-22 15:24 angdraug
* doc/notes.txt: added news item on samizdat-devel ML creation
2003-10-20 17:49 angdraug
* pingback.rb: Pingback server
2003-10-20 17:18 angdraug
* config.yaml, focus.rb, index.rb, login.rb, member.rb, message.rb,
query.rb, resource.rb, samizdat.rb, tag.rb, doc/about.txt,
doc/concepts.txt, doc/design-goals.txt, doc/install.txt,
doc/notes.txt, doc/rdf-storage.txt, doc/references.txt,
test/tc_robot.rb, test/tc_storage.rb, test/tc_template.rb: Big
Monday Checkin. Content storage rewritten again: store inline
text content in the table, write multimedia uploads to files in
content/ directory; database schema changed, Upload table
removed. Tags are renamed to Focuses (kudos to Mike McMillan and
Anton Andreasson for coinage). Pingback server implemented,
text/uri-list MIME type added to support it.
Lesser changes: detect host name for base URI from HTTP_HOST
instead of config.yaml and propagate it through session to RDF
storage; renamed Storage to SamizdatRDF and Query to SquishQuery,
reshuffled both a bit; added NOT NULL constraints to mandatory
property fields to honour new dangling blank node behaviour;
changed MIME class aliasing from should to may in concepts.txt;
added instructions on enabling PL/pgSQL; added USING PRESET NS
Squish extension; use case-insensitive substring search in
query.rb; moved vote_box() to Template; more XHTML fixes.
2003-10-17 16:12 angdraug
* test/tc_robot.rb: many XHTML fixes: Samizdat output now passes
W3C validator
2003-10-16 13:40 angdraug
* test/tc_robot.rb: major update, use REXML to parse Samizdat
output, more strict checks for HTTP error codes
2003-10-16 13:38 angdraug
* test/tc_template.rb: moved REXML utility methods to test/util.rb,
refactored parse() to return instead of yield doc.root, completed
coverage (except tag-depended templates which need to access the
database)
2003-10-16 13:37 angdraug
* test/util.rb: moved REXML utility methods to test/util.rb
2003-10-16 13:35 angdraug
* samizdat.rb: version updated
2003-10-16 13:32 angdraug
* item.rb, login.rb, logout.rb, message.rb, query.rb, tag.rb:
copyright information updated (2002-2003), code polish (multiline
bracket spacing)
2003-10-16 13:31 angdraug
* doc/notes.txt: added static publishing task
2003-10-14 18:45 angdraug
* test/tc_template.rb: use shortcut methods to extract XML elements
texts
2003-10-14 18:40 angdraug
* doc/install.txt: unit tests now use REXML to parse Samizdat
output
2003-10-14 17:51 angdraug
* doc/: install.txt, rdf-storage.txt, storage-impl.txt:
acknowledged changes to config.yaml
2003-10-14 17:41 angdraug
* config.yaml: acknowledged publishing of Samizdat RDF schema;
moved default base location from personal /~angdraug/samizdat to
a more generic http://localhost/samizdat
2003-10-13 19:07 angdraug
* query.rb: code consistency fix
2003-10-13 19:05 angdraug
* test/: tc_storage.rb, ts_samizdat.rb, tc_template.rb: more tests:
test Template with REXML, update tc_storage.rb
2003-10-13 08:43 angdraug
* query.rb: fix substring search query indentation
2003-10-13 08:42 angdraug
* query.rb, samizdat.rb, test/tc_storage.rb: expand and polish code
comments for RDoc; make unstring a Query instance method; move
login_form template code to member_box since it is no longer used
elsewhere
2003-10-13 08:30 angdraug
* tag.rb: display tags usage
2003-10-13 08:25 angdraug
* query.rb: many usability fixes: select query target, show clause
numbers, don't offer BLANK CLAUSE when limit_pattern is reached,
explanatory labels for ASC/DESC, auto-rerun query on any
modification
2003-10-13 08:17 angdraug
* samizdat.rb: SAMIZDAT_VERSION constant
2003-10-13 08:16 angdraug
* message.rb: code consistency fix
2003-10-13 08:15 angdraug
* doc/notes.txt: testing framework marked as in proress; minor
polish
2003-10-13 08:14 angdraug
* doc/install.txt: Running Tests section
2003-10-13 08:13 angdraug
* test/: tc_robot.rb, tc_storage.rb, tc_version.rb, ts_samizdat.rb:
testing framework added
2003-10-13 08:11 angdraug
* README: put reference to doc/about.txt to the obligatory README
2003-10-13 08:10 angdraug
* config.yaml: comments fixup
2003-10-07 18:03 angdraug
* doc/install.txt: add libyaml-ruby1.8 to the note about
Debian/woody; removed comment about apt_preferences
2003-10-07 14:52 angdraug
* doc/install.txt: reference to backported packages on
http://people.debian.org/~angdraug/
2003-10-06 08:30 angdraug
* member.rb, message.rb, query.rb: changed handling of submit in
forms to allow l10n of submit button texts
2003-10-04 15:38 angdraug
* tag.rb: fixed for new resource rendering
2003-10-04 15:33 angdraug
* login.rb: fixed cornercase bug with base->ns['base'] replacement
2003-10-03 18:11 angdraug
* config.yaml, index.rb, login.rb, logout.rb, member.rb,
message.rb, query.rb, resource.rb, samizdat.rb, tag.rb: proper
error reporting implemented around yield from Session#out;
resource rendering (esp. listing) seriously improved; major code
clean-up; rudimentary tag management implementation started
2003-10-03 18:04 angdraug
* doc/: design-goals.txt, notes.txt: updated development plans:
calendar, trackback, testing framework, vocabulary entailment
2003-10-03 18:01 angdraug
* doc/about.txt: expanded project description on examples of
supported activities
2003-09-11 17:02 angdraug
* query.rb: fixed bug caused by config change: switch from expanded
to prefixed urirefs
2003-09-11 17:01 angdraug
* doc/rdf-impl-report.txt: link to web archive of www-rdf-interest
mailing list
2003-09-11 10:45 angdraug
* doc/rdf-impl-report.txt: added RDF Implementation Report sent to
www-rdf-interest
2003-09-11 10:41 angdraug
* index.rb, item.rb, message.rb, query.rb, resource.rb,
samizdat.rb: reflect changes in config.yaml; initiate GC in
Session before exit; detect undefined namespace in Query; cache
internal property map with expanded namespaces in Storage; minor
code clean-ups
2003-09-11 10:40 angdraug
* doc/: concepts.txt, design-goals.txt, notes.txt, rdf-storage.txt:
Major documentation and schema update: - "tag" property replaced
with "dc::relation"; - "friend" property removed in favor of
relating members to tags, "Friend" tag added; - private
messages removed; - material item exchange split into separate
namespace; - reflected the split of text messages into default
and verbatim, removal of vote comments, and implementation of
assumed reification for external properties and subjects; -
updated Design Goals priorities on advanced calendar (down) and
member grouping (up); - updated terminology throughout the
documentation
2003-09-11 10:39 angdraug
* config.yaml: major config dust-up: reorganized and lowercased
keys; added formats, namespaces, and input size limit; urirefs
are abbreviated using namespaces
2003-09-08 09:20 angdraug
* index.rb, item.rb, login.rb, logout.rb, member.rb, message.rb,
query.rb, resource.rb, samizdat.rb, tag.rb: CGI and Template are
consolidated under Session; input size limit implemented; on
message confirm uploader id is checked; "%" substring search
fixed; "%" -> "%{}"; template <link/> XHTML fix
2003-09-08 08:39 angdraug
* doc/concepts.txt: mime -> MIME
2003-09-08 08:17 angdraug
* doc/: about.txt, notes.txt, references.txt: RDF Implementation
Report added; notes and references are polished
2003-09-01 16:46 angdraug
* doc/: about.txt, notes.txt: added News section to notes.txt and
retitled it to "News and Roadmap"
2003-09-01 14:19 angdraug
* message.rb, query.rb, resource.rb: multimedia messages and query
publishing is complete
2003-09-01 14:11 angdraug
* doc/notes.txt: removed outdated Dublin Core and Active2 items,
added storage todo on blob literals
2003-09-01 14:08 angdraug
* samizdat.rb: reordered requires
2003-08-23 14:29 angdraug
* doc/install.txt: enable PL/pgSQL in PostgreSQL and install
StringIO from Ruby Shim for Ruby 1.6
2003-08-23 14:18 angdraug
* item.rb, login.rb, member.rb, query.rb, resource.rb: minor code
style cleanup
2003-08-23 14:17 angdraug
* message.rb, samizdat.rb: file upload finished: requires StringIO
from Ruby 1.8 or Ruby Shim
2003-08-20 17:51 angdraug
* samizdat.rb: workaround for yaml.rb/StringIO#binmode problem
2003-08-18 09:51 angdraug
* config.yaml: removed vote comment
2003-08-18 09:43 angdraug
* message.rb: message format wasn't quite complete: forgot to add
it in couple more places
2003-08-18 09:22 angdraug
* message.rb: added message dc:format (MIME type) property support
(file upload doesn't work due to what seems to be a bug in
cgi.rb); some naming consistency fixes (render format->mode;
message body->content)
2003-08-18 09:18 angdraug
* member.rb: don't allow duplicate full names; use passwd1 field
name in account settings to fool browsers that remember user
passwords and produce inconvenient password mismatch
2003-08-18 09:14 angdraug
* doc/notes.txt: updated storage tasks
2003-08-18 09:08 angdraug
* doc/: euruko2003_samizdat.xml, oscom3_samizdat.xml,
slides/euruko2003_samizdat.xml, slides/oscom3_samizdat.xml: moved
slides into separate directory
2003-08-12 14:27 angdraug
* doc/notes.txt: minor error
2003-08-08 15:04 angdraug
* doc/notes.txt: version 3.0.0 is done
2003-08-08 15:03 angdraug
* query.rb: improved help messages
2003-08-08 12:29 angdraug
* query.rb: sort property labels in select; NEW CLAUSE -> BLANK
CLAUSE
2003-08-08 12:19 angdraug
* index.rb, item.rb, member.rb, message.rb, query.rb, resource.rb:
always use UTF-8 encoding
2003-08-08 12:17 angdraug
* tag.rb: placeholder to give meaningful error message until tag
management is implemented
2003-08-06 19:14 angdraug
* query.rb: finished namespace management in query construction UI;
added NEW CLAUSE to query pattern form
2003-08-05 10:03 angdraug
* doc/install.txt: rewritten Apache configuration instructions to
set everything from .htaccess instead of httpd.conf
2003-08-05 08:05 angdraug
* doc/references.txt: updated reference to DQL
2003-08-05 08:04 angdraug
* doc/notes.txt: storage task: parametrized queries
2003-08-05 08:02 angdraug
* query.rb: Update button now works; reorganized form parameters
processing; minor construction UI enhancements
2003-08-05 08:01 angdraug
* doc/rdf-storage.txt: ORDER BY can include ASC or DESC order
direction
2003-08-01 19:15 angdraug
* doc/notes.txt: added aggregation and material item exchange to
release roadmap
2003-07-30 09:45 angdraug
* index.rb, member.rb, message.rb, query.rb: query construction UI:
form rendering refactored, query construction form is rendered,
but not yet updated; resource rendering improvements; in RDF
storage, query parsing and translation is separated to Query
class
2003-07-30 09:38 angdraug
* doc/: notes.txt, rdf-storage.txt: cleaned up terminology in
Squish section descriptions (needs yet more syncronization with
DAML Query Language)
2003-07-14 19:17 angdraug
* samizdat.rb: minor changes
2003-07-14 19:16 angdraug
* resource.rb: tag handling is refactored
2003-07-14 19:14 angdraug
* query.rb: report no matching resources
2003-07-14 19:13 angdraug
* doc/: install.txt, notes.txt, rdf-storage.txt: documentation
update
2003-07-14 19:12 angdraug
* config.yaml: Site Name parameter introduced; tags are moved to a
separate namespace
2003-07-14 14:06 angdraug
* query.rb: fixed bug with displaying non-unstringed query parts
2003-07-14 10:02 angdraug
* member.rb: fix stupid bug in session handling
2003-07-14 07:10 angdraug
* index.rb, item.rb, login.rb, logout.rb, member.rb, message.rb,
query.rb, resource.rb: queries updated to Dublin Core
integration; access to utility classes is reorganized; fetch_many
is used to reduce size of transfer from database; resource
rendering is separated into a class, search result display is
enhanced
2003-07-14 07:05 angdraug
* config.yaml: Dublin Core integration; tags namespace; page
lengths and query pattern limits introduced
2003-07-14 07:00 angdraug
* samizdat.rb: access to utility classes is reorganized
2003-07-14 06:56 angdraug
* doc/: concepts.txt, design-goals.txt, notes.txt, rdf-storage.txt,
storage-impl.txt: documentation update; Dublin Core integration,
terminology fixes
2003-06-24 14:45 angdraug
* samizdat.rb: ProgrammingError exception class
2003-06-24 14:43 angdraug
* query.rb: form submit=nil handling changed in template.rb
2003-06-24 14:42 angdraug
* member.rb: fixed bug: changes never accepted because of exit
before transaction commit
2003-06-24 14:36 angdraug
* doc/: about.txt, euruko2003_samizdat.xml, notes.txt,
oscom3_samizdat.xml: euruko2003 slides and minor documentation
update
2003-06-18 15:50 angdraug
* doc/install.txt: clarifications on required software
2003-06-18 14:58 angdraug
* doc/notes.txt: roadmap for versions 0.0.1 to 0.0.5
2003-06-18 14:57 angdraug
* doc/about.txt: removed reference to samizdat.tar.gz
2003-06-09 15:50 angdraug
* query.rb: first cut at RDF query construction UI
2003-06-07 21:21 angdraug
* doc/: about.txt, design-goals.txt, notes.txt: major documentation
update
2003-06-06 16:38 angdraug
* doc/install.txt: Installation manual, first version.
2003-05-24 21:10 angdraug
* doc/oscom3_samizdat.xml: text comments for slides 6-8
2003-05-23 17:40 angdraug
* doc/oscom3_samizdat.xml: text comments update, comment for slide
5
2003-05-22 21:07 angdraug
* doc/oscom3_samizdat.xml: text comments for first 4 slides
2003-05-17 19:24 angdraug
* doc/oscom3_samizdat.xml: cleanup; reification in Samizdat
features
2003-05-14 16:33 angdraug
* doc/oscom3_samizdat.xml: comments from active2-dev
2003-05-14 16:32 angdraug
* doc/concepts.txt: mp3->MP3
2003-05-05 12:23 angdraug
* doc/oscom3_samizdat.xml: last minute polish
2003-05-05 12:23 angdraug
* doc/concepts.txt: removed 'private' property: postpone
conceptualization of access model
2003-05-03 18:38 angdraug
* doc/oscom3_samizdat.xml: ready for oscom
2003-04-26 19:47 angdraug
* doc/oscom3_samizdat.xml: First draft of slides for Oscom3,
unfinished.
2003-04-26 18:32 angdraug
* doc/about.txt: more typos
2003-04-26 18:05 angdraug
* doc/about.txt: typo
2003-03-10 08:59 angdraug
* member.rb, message.rb, samizdat.rb: Change database AutoCommit to
off by default; minor comments cleanup
2003-03-10 08:55 angdraug
* config.yaml, item.rb, resource.rb, doc/concepts.txt: Beginning of
item exchange implementation; replaced Instance with Item, and
Item with Message
2003-01-13 09:34 angdraug
* doc/: about.txt, concepts.txt, design-goals.txt, rdf-storage.txt,
references.txt, storage-impl.txt, storage.txt: Documentation
update: storage rehaul, terminology cleanup, minor fixes
2003-01-08 19:07 angdraug
* config.yaml, message.rb, resource.rb, samizdat.rb: first working
prototype, produced on christmas holidays - new files
2003-01-08 19:01 angdraug
* index.rb, login.rb, logout.rb, member.rb, doc/about.txt,
doc/concepts.txt, doc/design-goals.txt, doc/storage.txt: first
working prototype, produced on christmas holidays
2002-12-20 13:17 angdraug
* COPYING, index.rb, login.rb, logout.rb, member.rb, doc/about.txt,
doc/concepts.txt, doc/design-goals.txt, doc/references.txt,
doc/storage.txt: Initial checkin.
|