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
|
gforge (4.5.14-22etch13) oldstable-security; urgency=high
* Fix for symlink attack (CVE-2009-3304).
-- Roland Mas <lolando@debian.org> Mon, 23 Nov 2009 13:51:25 +0100
gforge (4.5.14-22etch12) oldstable-security; urgency=high
* Fixes for potential XSS and SQL injection problems (CVE-2009-3303).
-- Roland Mas <lolando@debian.org> Mon, 16 Nov 2009 14:45:18 +0100
gforge (4.5.14-22etch11) oldstable-security; urgency=high
* Fixed SQL injection and possible cross-site scripting vulnerabilities
due to insufficient input sanitizing (CVE ids pending).
-- Roland Mas <lolando@debian.org> Mon, 15 Jun 2009 15:13:28 +0200
gforge (4.5.14-22etch10) stable-security; urgency=high
* Fixed yet another SQL injection vulnerability due to insufficient
input sanitizing (CVE-2008-2381).
-- Roland Mas <lolando@debian.org> Wed, 17 Dec 2008 15:28:28 +0100
gforge (4.5.14-22etch9) stable-security; urgency=high
* Fixed several SQL injection vulnerabilities due to insufficient input
sanitizing (CVE-2008-6187, CVE-2008-6188, CVE-2008-6189).
-- Roland Mas <lolando@debian.org> Mon, 06 Oct 2008 16:08:24 +0200
gforge (4.5.14-22etch8) stable-security; urgency=high
* Also fixed a syntax error specific to ssh_dump_update.pl introduced in
-22etch6.
-- Roland Mas <lolando@debian.org> Wed, 14 May 2008 16:44:34 +0200
gforge (4.5.14-22etch7) stable-security; urgency=high
* Fixed the previous patch, which rendered the write_array_file
inoperant.
-- Roland Mas <lolando@debian.org> Wed, 14 May 2008 16:42:52 +0200
gforge (4.5.14-22etch6) stable-security; urgency=high
* Fixed insecure file handling (CVE-2008-0167).
-- Roland Mas <lolando@debian.org> Tue, 13 May 2008 12:01:49 +0200
gforge (4.5.14-22etch5) stable-security; urgency=high
* Fixed cross-site scripting vulnerability (CVE-2007-0176).
-- Roland Mas <lolando@debian.org> Mon, 21 Jan 2008 14:59:24 +0100
gforge (4.5.14-22etch4) stable-security; urgency=high
* Made locking mechanism more robust in cron_utils.php.
* Fixed SQL injection vulnerability due to insufficient input sanitizing
(CVE-2008-0173).
-- Roland Mas <lolando@debian.org> Wed, 09 Jan 2008 20:34:21 +0100
gforge (4.5.14-22etch3) stable-security; urgency=high
* Fixed denial of service and file truncation vulnerabilities
(CVE-2007-3921).
-- Roland Mas <lolando@debian.org> Sun, 04 Nov 2007 14:46:35 +0100
gforge (4.5.14-22etch2) stable-security; urgency=high
* Fixed cross-site scripting vulnerability (CVE-2007-3918).
-- Roland Mas <lolando@debian.org> Wed, 03 Oct 2007 09:10:55 +0200
gforge (4.5.14-22etch1) stable-security; urgency=high
* Fixed SQL injection vulnerability due to insufficient input
sanitizing (CVE-2007-3913).
-- Roland Mas <lolando@debian.org> Wed, 05 Sep 2007 21:37:45 +0200
gforge (4.5.14-22) unstable; urgency=low
* Removed Bazaar-internal ,,commit-blahblah directory from the source
package. No other changes.
-- Roland Mas <lolando@debian.org> Wed, 7 Mar 2007 20:04:08 +0100
gforge (4.5.14-21) unstable; urgency=high
* More input sanitisation, fixing more cross-site scripting
vulnerabilities. Again, security implications cause the high urgency.
* Also, make sure that the registration procedure happens over SSL.
* New debconf templates translations, thanks to Jacobo Tarrio
<jtarrio@trasno.net> for Galician (closes: #412917), Miroslav Kure
<kurem@upcase.inf.upol.cz> for Czech (closes: #409655), and Ricardo
Silva <ardoric@gmail.com> for Portuguese (closes: #413750).
* Stopped enabling pgsql.so and gd.so in php.ini, since they're enabled
in separate files by the respective packages.
-- Roland Mas <lolando@debian.org> Wed, 7 Mar 2007 09:56:47 +0100
gforge (4.5.14-20) unstable; urgency=high
* Added input sanitisation in the advanced search form to fix a
cross-site scripting vulnerability (closes: #406244). Security
implications, hence the urgency.
* Updated Dutch debconf templates translation, from Bart
Cornelis <cobaco@skolelinux.no> (closes: #408073).
* Added German debconf templates translation, from Helge Kreutzmann
<debian@helgefjell.de> (closes: #408868).
-- Roland Mas <lolando@debian.org> Mon, 29 Jan 2007 13:28:52 +0100
gforge (4.5.14-19) unstable; urgency=low
* [Roland] Made the chroot environment a bit more complete, by adding
missing files: pam_pgsql.conf (closes: #396329), various libraries
(closes: #396128), /etc/hosts (closes: #396333).
-- Roland Mas <lolando@debian.org> Thu, 9 Nov 2006 21:16:12 +0100
gforge (4.5.14-18) unstable; urgency=low
* [Roland] Oops. fix-frs.pl was only added to the source package, not
to the binary ones. Fixed.
-- Roland Mas <lolando@debian.org> Sat, 28 Oct 2006 17:30:28 +0200
gforge (4.5.14-17) unstable; urgency=low
* [Roland] Removed (actually, commented out) Listen directives in the
Apache configuration (closes: #394933) (again). For some reason,
Apache doesn't want to start when told to listen on a particular port
twice.
* [Roland] Added deb-specific/fix-frs.pl, to move released files to the
appropriate place according to the new layout mandated by the FRS.
-- Roland Mas <lolando@debian.org> Sat, 28 Oct 2006 17:22:39 +0200
gforge (4.5.14-16) unstable; urgency=high
* [Roland] install-nsspgsql.sh: Create an empty pam_pgsql.conf if it
doesn't exist prior to installation.
* [Roland] install-ldap.sh: Ditto for libnss-ldap.conf.
* [Roland] gforge-mta-exim4: Invoke update-exim4.conf on installation
and removal, so Exim is actually configured...
* [Roland] fix-mailing-lists.pl needs to be run as root, not gforge,
otherwise it has no access to the mailing-lists data. Fixed
gforge-mta-mailman.postinst and fix-mailing-lists.pl accordingly.
* [Roland] install-db.sh: Made purge more resistant (closes: #395088).
* [Roland] install-ldap.sh: Made installation more resistant.
* [Roland] Made Apache setup less invasive (closes: #394933).
-- Roland Mas <lolando@debian.org> Wed, 25 Oct 2006 12:12:11 +0200
gforge (4.5.14-15) unstable; urgency=low
* [Roland] sql2ldif.pl: Get the user password from nss_shadow, since it
cannot be found in nss_passwd any longer due to the recent NSS/PAM
reorg, patch from Julien Cristau <julien.cristau@ens-lyon.org>
(closes: #394022).
-- Roland Mas <lolando@debian.org> Thu, 19 Oct 2006 11:09:37 +0200
gforge (4.5.14-14) unstable; urgency=low
* [Roland] deb-specific/db-upgrade.pl: Last upload only prevented new
migrations from using the broken role names, this one tries to restore
the names as they should have been.
-- Roland Mas <lolando@debian.org> Thu, 12 Oct 2006 13:37:36 +0200
gforge (4.5.14-13) unstable; urgency=high
* [Roland] deb-specific/db-upgrade.pl: Fixed conversion of old
permissions system to RBAC. All roles were created under the name
"rname", which is... let's just say the urgency of this upload is
probably not exaggerated.
-- Roland Mas <lolando@debian.org> Fri, 6 Oct 2006 21:10:19 +0200
gforge (4.5.14-12) unstable; urgency=low
* [Roland] Fixed the NSS/PAM mess, hopefully. We now have NSS views so
that the password is hidden from normal users, and a new PAM-specific
database user with access to the nss_shadow view.
-- Roland Mas <lolando@debian.org> Wed, 4 Oct 2006 15:15:59 +0200
gforge (4.5.14-11) unstable; urgency=low
* [Roland] Updated Dutch debconf templates translation, from Bart
Cornelis <cobaco@skolelinux.no> (closes: #384150).
* [Roland] debian/rules: Also remove binary files coming from uu-files
coming from patches on clean.
* [Roland] db-upgrade.pl: Fixed conversion of the Resolution field to
the extra-fields system.
* [Roland] debian/rules: Remove .arch-ids directories at build time, if
present (for packages built from an Arch/Bazaar gateway).
-- Roland Mas <lolando@debian.org> Tue, 19 Sep 2006 20:50:12 +0200
gforge (4.5.14-10) unstable; urgency=low
* [Roland] Fixed control file (it referenced a gforge-plugin-scmcase
package that never existed, rather than -scmccase).
* [Roland] Updated from CVS.
* [Roland] Updated French debconf templates translation, from Christian
Perrier <bubulle@debian.org> and the French l10n team (closes:
#382589).
* [Roland] Updated Swedish debconf templates translation, from Daniel
Nylander <po@danielnylander.se>.
* [Roland] Updated Vietnamese debconf templates translation, from Clytie
Siddall <clytie@riverland.net.au> and the Vietnamese free-software
translation team.
-- Roland Mas <lolando@debian.org> Fri, 18 Aug 2006 09:12:54 +0200
gforge (4.5.14-9) unstable; urgency=low
* [Roland] Uploading to unstable. This means the bugs that were fixed
during the experimental phase can now be closed (closes: #358241,
#328224, #375863, #331835, #339646, #374384, #373554, #242186,
#376155, #311791, #339878, #354591).
* [Roland] fix-lists-url.dpatch: Fixed URL patterns for Mailman pages
(closes: #375529). By using the appropriate URLs, rather than messing
with Mailman's configuration. Adapted the Apache config accordingly.
* [Roland] Fixed Postfix configuration (closes: #376284).
* [Roland] Removed versioned dependencies on virtual packages, by
keeping only the existing packages (closes: #376163). If new
alternatives appear (for new MTAs or mailing-list managers or anything
else), I'll be glad to add them in the control file.
* [Roland] Applied patch from Julien Cristau
<julien.cristau@ens-lyon.org>, whereby sql2ldif.pl now uses the SQL
views rather than duplicating their code.
-- Roland Mas <lolando@debian.org> Sat, 22 Jul 2006 16:43:57 +0200
gforge (4.5.14-8) experimental; urgency=low
* [Roland] Oops. Only part of the fix for #376155 had been committed,
and the rest wasn't part of 4.5.14-7. This new upload should have it.
-- Roland Mas <lolando@debian.org> Mon, 10 Jul 2006 18:56:25 +0200
gforge (4.5.14-7) experimental; urgency=low
* [Roland] Add a "project_before_description" hook on project homes.
* [Roland] Managed to get apache-related scripts to play nice with
debconf (closes: #376155).
* [Roland] Also, updated from CVS, to fix the "missing
Textsanitizer.class" bug (closes: #375863).
-- Roland Mas <lolando@debian.org> Mon, 10 Jul 2006 18:15:56 +0200
gforge (4.5.14-6) experimental; urgency=low
* [Roland] Fixed the RBAC migration (which left the whole site without
any project admin, doh!).
-- Roland Mas <lolando@debian.org> Wed, 28 Jun 2006 10:41:30 +0200
gforge (4.5.14-5) experimental; urgency=low
* [Roland] Converted the remaining PHP database upgrading scripts
(20040826_migraterbac.php and 20041211-syncmail.php, 20051027-2.php
and 20050325-2.php) to static Perl code in db-upgrade.pl.
-- Roland Mas <lolando@debian.org> Tue, 27 Jun 2006 14:49:03 +0200
gforge (4.5.14-4) experimental; urgency=low
* [Roland] Now recommends at least one of the SCM plugins (Subversion or
CVS).
* [Roland] Added missing rss.png icon (closes: #373554).
* [Roland] Fixed db-upgrade.pl (trying to access a column not yet
created yet for checkpoint 4.1-8).
-- Roland Mas <lolando@debian.org> Mon, 26 Jun 2006 16:05:06 +0200
gforge (4.5.14-3) experimental; urgency=low
* [Roland] Removed a bit of verbosity from db-upgrade.pl.
* [Roland] add-groupadminmenu-hook.dpatch: Backported the insertion of
the groupadminmenu hook from CVS HEAD.
* [Roland] Set up the tables for timetracking at install time, rather
than needing the admin to go and click on a button.
* [Roland] Removed banner ads.
* [Roland] Made create-vhosts.sh cronjob silent (closes: #374384).
-- Roland Mas <lolando@debian.org> Mon, 19 Jun 2006 16:37:24 +0200
gforge (4.5.14-2) experimental; urgency=low
* [Roland] Started moving database upgrading code from PHP scripts to
db-upgrade.pl: migrateforum.php, 20050617.php.
* [Roland] disable-tracker-reply-by-email.dpatch: Removed the blurb
about replying to a bug report by email from the notifications, since
the reply by email doesn't work yet.
* [Roland] Re-enabled dpatch, which seems to have been left out at some
point.
-- Roland Mas <lolando@debian.org> Mon, 12 Jun 2006 16:03:11 +0200
gforge (4.5.14-1) experimental; urgency=low
* [Roland] New upstream release (4.5.14), snapshot as of 2006-06-03,
(closes: #242186, #281310).
* This release includes the fix for a cross-site scripting security
vulnerability (closes: #328224).
* proftpd's config file is now in /etc/proftpd/proftpd.conf.
* Added Debconf translations for Vietnamese and Swedish, updated Dutch
(closes: #311791, #339878, #354591).
* Allow debconf-2.0 as an alternative for debconf (closes: #331835).
-- Roland Mas <lolando@debian.org> Tue, 6 Jun 2006 21:03:26 +0200
gforge (4.5.6-1) unstable; urgency=low
* [Christian] Add support for most recent database postgresql 8.0 8.1 at the time
writing this.
-- Christian Bayle <bayle@debian.org> Mon, 30 Jan 2006 00:51:15 +0100
gforge (4.5.3-4) stable; urgency=low
* New Upstream version, compile for sarge
-- Christian Bayle <bayle@debian.org> Wed, 16 Nov 2005 19:08:15 +0100
gforge (4.5.3-3) stable; urgency=low
* New Upstream version, compile for sarge
-- Christian Bayle <bayle@debian.org> Sun, 13 Nov 2005 18:25:52 +0100
gforge (4.5-5k) stable; urgency=low
* [Christian] Compile for sarge
-- Christian Bayle <bayle@debian.org> Tue, 8 Nov 2005 22:11:58 +0100
gforge (4.5-2) unstable; urgency=low
* [Christian] Added 20050605.sql, 20050617.php, 20050628.sql in db-upgrade
* [Christian] Some issues were fixed in migraterbac scripts and in tracker
* [Christian] Include last branch corrections
-- Christian Bayle <bayle@debian.org> Sun, 3 Jul 2005 17:44:38 +0200
gforge (4.1-5z18) unstable; urgency=low
* [Christian] nss-pgsql1 integration
* [Christian] System.class reorganization
* [Christian] Added anonscm-gforge user for anonymous cvs
and moved lock files in cvsroot/cvs-locks/ dir
* [Christian] dummy user is now scm-gforge and removed from ldap
* [Christian] Fixed a problem with OID at db upgrade (see db-upgrade.pl)
* [Christian] Moved some gforge.conf var from include.pl to local.pl
* [Christian] Update to fit with last sid LDAP
* [Christian] Added www-gforge user used as the apache user/group
for gforge main vhosts
* [Christian] Hope I solved a long time bug at apache reload, but adding
more tests in install-apache.sh
* [Christian] reorganized gforge-shell-* cron so homedirs are created in
both ldap and postgresql, update of ldap is done in gforge-ldap
* [Christian] Added sys_apache_user and sys_apache_group in local.inc
* [Christian] Removed remaining CVS stuffs in pot files and elsewhere
* [Christian] Added debconf questions for ftp upload and jabber hosts
-- Christian Bayle <bayle@debian.org> Tue, 26 Apr 2005 21:28:24 +0200
gforge (4.0.2-7) unstable; urgency=low
* [Christian] Let's go for 4.0
* [Christian] Had to add a db_stop before gforge-config in
* ftp and dns postinst scripts, quite strange
* [Christian] Now do a replace file in postinst if replace was wanted.
during config by changing dsf-helper replace-file functions.
Now at replace I make a copy of conffile to conffile.dpkg-old
At postinst, if conffile.dpkg-old exists conffile is
replaced with conffile.dpkg-new
* [Christian] Added 20041124.sql to db-upgrade.pl
* [Christian] Added dpatch support
* [Christian] Added globalsoff dpatch
* [Christian] Added overrides file for select-with-translated-default-field
warning
* [Christian] replace_files helper now don't brake when file doesn't exist
by emit a warning during config and postinst
* [Christian] Added exist_db function in postgresql the ancient method was
broken with non US localized distro
* [Christian] Added myself as uploader to remove a lintian warning I had
* [Christian] Added conflict to gforge-cvs
* [Christian] Move common dir and some files from web-apache to common
so postgresql can upgrade without web-apache
* [Christian] added from 20041211 to 20050212 db stuffs
* [Christian] added build-depends on devscripts and dpatch
-- Christian Bayle <bayle@debian.org> Fri, 11 Feb 2005 01:19:12 +0100
gforge (3.3.0-60) unstable; urgency=low
* [Christian] Added a call to migrateform.php and migraterbac.php in
db-upgrade
* [Christian] Added 20040804.sql and 20040826.sql to db-upgrade.pl
* [Christian] Removed dc: field in install-ldap.sh since this generate
an attribute 'dc' not allowed at install
* [Christian] Create an empty /var/lib/gforge/etc/httpd.vhosts if necessary
* [Christian] Changed default sys_theme to gforge, so web frontend is
not broken when theme pack is not installed
* [Christian] sys_project_reg_restricted=false by default
* [Roland] Added views for NSS-PGSQL (form Wichert Akkerman).
* [Christian] Added 20040914.sql, 20041005.sql, 20041006.sql.
* [Hal] Maded changes to support apache2
* [Roland] Removing LDAP dependency, now replaced with direct PostgreSQL
lookups: new database views, new pgsql.class, new NSS configuration,
new configuration for Exim4 and Postfix.
* [Roland] Cleaned up the generated packages a bit: no more sourceforge
packages, fixed dependencies to take into account the LDAP->PGSQL
migration.
* [Roland] libphp-jpgraph goes from suggested to recommended.
* [Roland] Don't die in install-db.sh if postgresql is not running, but
start it instead.
* [Roland] Various fixes in several scripts.
* [Christian] Added 20041104 and 20041108 to db-upgrade.pl
* [Christian] Added dependancy on php4-cli for gforge-db-postgresql
* [Christian] Change redirection from /dev/null to $tmp1 $tmp2 in
install-db.sh
* [Christian] Lintian cleanup
* [Christian] Renamed gforge/debian/dsf-helper/replace-files.postinst in
gforge/debian/dsf-helper/replace-files.config and moved debconf stuff from
postinst to config
* [Christian] Commented fileforge and filemove in rules not to install them
as there are not used right now
-- Christian Bayle <bayle@debian.org> Sat, 15 Jan 2005 15:30:33 +0100
gforge (3.3.0-12) unstable; urgency=low
* [Christian] Repared vhosts generation
* [Christian] Some renaming cvs -> scm
* [Christian] Added new sql upgrade (2004*.sql)
* [Christian] Stable backbort
* [Christian] Added = ${Source-Version} for gforge-mta-postfix
* [Christian] Make db-upgrade able to run with default pg_hba.conf
* [Christian] Make vhost scripts work default pg_hba.conf
* [Christian] Add missing space in update-user-group.sh (closes
gforge upstream bug #751)
* [Christian] Adjust cvs_dump rights
* [Christian] Try to fix problems when dbname and dbuser are not gforge
* [Christian] Applied blindly (I red the diff) Mathieu Peltier patch #641
that fix DNS configuration problem
* [Christian] Added default project home page generation
* [Christian] Added get_news_notapproved cron
* [Christian] Made system management OO (see Changelog)
* [Roland] SCM systems are now pluginified.
-- Christian Bayle <bayle@debian.org> Thu, 29 Jul 2004 16:41:16 +0200
gforge (3.2.1-4) experimental; urgency=low
* [Christian] Now use setup script (wrapped in gforge-config)
* [Christian] Added dependencies in control file so all package of the same version are
installed when you apt-get install gforge
* [Christian] Re-added local.pl and database.inc fill
* [Christian] Added dumps dir for gforge-cvs
* [Christian] Various change to make work better setup script
-- Christian Bayle <bayle@debian.org> Sat, 13 Mar 2004 02:59:35 +0100
gforge (3.2.1-2) experimental; urgency=low
* [Roland] New upstream release. Debian packaging still experimental at
this stage.
* [Roland] Upgrade database schema using 20031105.sql and 20031124.sql.
* [Roland] Also use 20031129.sql, for the "last changed XX days ago"
patch from Hidenari Miwa and Tsutomu Tominaga.
* [Roland] Also use 20031126.sql, for the "cron manager" feature.
* [Roland] Also use 20031205.sql.
* [Christian] Now use setup script (wrapped in gforge-config)
* [Christian] Added dependencies in control file so all package of the same version are
installed when you apt-get install gforge
-- Christian Bayle <bayle@debian.org> Wed, 3 Mar 2004 10:08:06 +0100
gforge (3.1-12) unstable; urgency=low
* [Roland] Added an empty sourceforge binary package, with some Debconf
magic to help people upgrading from sourceforge to gforge.
* [Christian] Also moved the logs in gforge-sourceforge-transition.
-- Roland Mas <lolando@debian.org> Tue, 2 Mar 2004 23:06:02 +0100
gforge (3.1-11) unstable; urgency=low
* [Roland] Added exim4 support, patch from Guillem Jover
<guillem@debian.org>. Thanks! (closes: #234684). Also made it the
default, since exim4 is the new default MTA for Sarge.
-- Roland Mas <lolando@debian.org> Mon, 1 Mar 2004 16:46:57 +0100
gforge (3.1-10) unstable; urgency=low
* [Roland] This is a brown-paper-bag type of release. I broke
install-ldap.sh in 3.1-9. This should fix it.
-- Roland Mas <lolando@debian.org> Mon, 16 Feb 2004 14:20:27 +0100
gforge (3.1-9) unstable; urgency=low
* [Roland] Added permissions for the robot to edit the
ou=mailingList,dc=... entries in LDAP.
* [Roland] Better detection of strange conditions in cvs_dump_update.pl.
* [Roland] Fixed permissions for groups' "home" directories.
* [Roland] Added po/nl.po for the Dutch translation (closes: #232236).
* [Roland] Don't comment out LDAP schema inclusions in slapd.conf
(closes: #227377).
* [Roland] Don't count private projects and the None user when
displaying numbers on the front page (closes: #211086).
-- Roland Mas <lolando@debian.org> Sun, 15 Feb 2004 17:10:11 +0100
gforge (3.1-8) unstable; urgency=low
* [Roland] It seems the new organisation of the apache (and related)
packages managed to break quite a lot of things. Still trying to
catch up, this time removing a "Listen" directive that would turn out
to be a duplicate one, thus preventing Apache from running.
-- Roland Mas <lolando@debian.org> Tue, 20 Jan 2004 22:45:03 +0100
gforge (3.1-7) unstable; urgency=low
* [Roland] Yet another LDAP fix. This one would completely prevent
installation from scratch.
-- Roland Mas <lolando@debian.org> Sun, 11 Jan 2004 02:12:51 +0100
gforge (3.1-6) unstable; urgency=low
* [Roland] Detection of wrong passwords, with a message describing how
to fix (closes: #223693, #215577, #224257).
* [Roland] Insert data into LDAP using the robot DN, so as to minimise
the use of the admin DN.
* [Roland] Better detection of errors when creating database and user,
too.
* [Roland] Added cronjobs/massmail.php and enabled it in
gforge-db-postgresql.cron.d (closes: #225686).
* [Roland] Cleaned up the Apache installation process so that it works
more generically with apache{,-perl,-ssl} flavours. Also use
/etc/$flavour/conf.d/ directory (thus removing the hack that changed
the /etc/$flavour/httpd.conf file).
-- Roland Mas <lolando@debian.org> Sat, 10 Jan 2004 22:41:21 +0100
gforge (3.1-5) unstable; urgency=low
* [Christian] corrected stupid chmod error in user_dump_update.pl
that was making unwritable htdocs dir to the group
* [Christian] added support for cvsweb.php a cvsweb wrapper
updated to last cvsweb version
* [Christian] added setup and cleanup target in install-ldap.sh
and fill crypted password
* [Roland] Tightened the versioned dependency on Apache so that we can
rely on modules-config (closes: #220872).
* [Roland] Escape special characters like @ and $ before passing strings
containing them to a Perl script, for instance e-mail addresses.
Should help fix the administrator's e-mail.
* [Roland] install-db.sh now uses grep and cut (instead of Perl) to
extract the configuration variables from the configuration file, which
should help gforge-sourceforge-transition work better.
* [Roland] Added full path to invoke-rc.d in create-vhosts.sh. This
script may be called from a very sparse environment (cron), in which
$PATH does not include /usr/sbin.
* [Roland] Remove .ssh/authorized_keys when they are set to empty,
instead of just leaving them as they are.
* [Roland] Added support for apache-perl too.
* [Roland] Fixed the way we use modules-config so that gforge-web-apache
does not hang on install (closes: #221172).
* [Roland] Added "--encoding=UNICODE" to the restore action of
install-db.sh.
-- Roland Mas <lolando@debian.org> Fri, 9 Jan 2004 22:35:34 +0100
gforge (3.1-4) unstable; urgency=low
* [Roland] Fixed multiline inline Perl script for gforge-mta-postfix's
configuration process (I know, I know) (closes: #219379).
* [Roland] install-apache.sh now uses the new "modules-config" mechanism
provided by Apache packages to enable/disable modules, instead of
uncommenting LoadModules lines by script (closes: #219745).
* [Roland] Fixed update-user-group-cvs.sh's handling of lockfiles
(closes: #219957).
* [Christian] corrected SYSLOGD warning to 'you must have
SYSLOGD="-p /dev/log -a /var/lib/gforge/chroot/dev/log" in
/etc/init.d/sysklogd', since the old advice might have break
your syslogd, sorry for this but this is makejail advice.
-- Roland Mas <lolando@debian.org> Thu, 13 Nov 2003 23:21:26 +0100
gforge (3.1-3) unstable; urgency=low
* [Roland] Added a lock feature to update-user-group-cvs.sh. That adds
a dependency on lockfile-progs.
* [Roland] Fixed install-postfix.sh for gforge-mta-postfix's
deconfiguration process (closes: #218637).
-- Roland Mas <lolando@debian.org> Tue, 4 Nov 2003 23:16:44 +0100
gforge (3.1-2) unstable; urgency=low
* [Roland] Fixed install-db.sh and its "cannot create user : already
exists" bug.
-- Roland Mas <lolando@debian.org> Mon, 27 Oct 2003 10:35:09 +0100
gforge (3.1-1) unstable; urgency=low
* New upstream release.
* [Roland] Patch #558 from Patrick McFarland to fix hardwiring problem
in install-db.sh.
* [Roland] Patch #561 from Patrick McFarland to fix "access to *'" bug
in install-ldap.sh.
* [Roland] Fixed a few occurences of SF in the Debconf templates (Gforge
bug #555).
-- Roland Mas <lolando@debian.org> Sun, 26 Oct 2003 23:01:26 +0100
gforge (3.0-9) unstable; urgency=low
* [Roland] New CVS snapshot, including fix for a bug that prevented
e-mails to be sent with the passwords for new mailing-lists at their
creation.
-- Roland Mas <lolando@debian.org> Fri, 10 Oct 2003 12:23:09 +0200
gforge (3.0-8) unstable; urgency=low
* [Roland] Fixed redirection URL for Mailman.
* [Roland] Made the create-vhosts cronjob silent.
* [Roland] Removed duplicate colon from PHP script, it belongs in the
*.tab files (closes: #212213).
* [Roland] Fixed -request alias for Mailman (closes: #213160).
* [Roland] Index page is now customisable (in
/etc/gforge/custom/index_std.php) (and the default version differs
from the gforge.org home page). Patch from Francisco Gimeno.
* [Roland] Fixed images alias for Mailman (closes: #213052).
-- Roland Mas <lolando@debian.org> Mon, 6 Oct 2003 16:27:38 +0200
gforge (3.0-7) unstable; urgency=low
* [Roland] Added 20030822.sql.
* [Roland] Added scripts to generate a /var/lib/gforge/etc/httpd.vhosts
file from the database and use that, so projects can use virtual hosts
other than <projectname>.<domainname>. Added a
/etc/gforge/templates/httpd.vhosts.template file, too.
* [Roland] Bumped Standards-Version: to 3.6.1 (no changes needed).
* [Christian] Applied Joo-won Jung ldap patch [#507] to correct bad ldap
init
* [Christian] Applied Vicente J. Ruiz Jurado patch [ #430 ] mailman +
postfix to correct postfix setup (untested)
* [Christian] Applied Antoine Nivard suggestion to correct [ #505 ]
Disable Tracker and the "TAB" is not disable / error in Layout.class
* [Roland] Added "objectclass: domain" to the top-level LDAP object when
it's not the same as the top-level LDAP object created by slapd, see
Gforge bug #518. Also, (closes: #208849), since I believe it's the
same bug.
* [Roland] Create /var/lib/gforge/etc in all packages, for the upcoming
move of generated config files.
* [Roland] install-apache.sh: do not exit with an error if Apache fails
to start, so that people without an SSL certificate will still be able
to install.
* [Roland] Fixed db-upgrade.pl. It seems Postgresql feels free to
change the return type of a function when it's used by a trigger, but
doesn't allow the user to change that return type afterwards. Fix:
drop trigger and function, re-create function and trigger.
-- Roland Mas <lolando@debian.org> Sun, 21 Sep 2003 14:43:14 +0200
gforge (3.0-6) unstable; urgency=low
* [Roland] Suppressed warning in gforge-common.postinst when the
sourceforge user does not exist.
-- Roland Mas <lolando@debian.org> Fri, 22 Aug 2003 17:38:01 +0200
gforge (3.0-5) unstable; urgency=low
* [Roland] Changed proftpd configuration file to comply with current
syntax. Patch from Igor Genibel <igenibel@debian.org>, thanks Igor
(closes: #203341).
* [Roland] Fixed the *-owner alias for Mailman lists. Patch from Igor
Genibel again (closes: #203522).
* [Roland] Changed the objectclass: person to objectclass: account,
since person requires an additional field.
-- Roland Mas <lolando@debian.org> Fri, 22 Aug 2003 12:24:35 +0200
gforge (3.0-4) unstable; urgency=low
* [Roland] Make sure the $gforge_base_dn, ou=People,$gforge_base_dn and
other needed LDAP records exist before we try to insert new
sub-trees/records in them (closes: #201536).
* [Christian] Corrected my stupid error in ldap.php that made a warning
on changing ldap protocol version (closes: #202208)
* [Christian] Added dependancy on cpio for gforge-common
* [Roland] Updated French translation for Debconf templates, again
thanks to the French l10n team (closes: #201668).
* [Roland] The French l10n team have too much time on their hands, but
they provide valid suggestions as for which Debconf templates should
be translated and which shouldn't. I obey the French l10n team's
wishes in that regard (closes: #201666).
* [Roland] Clearly mark files generated from templates as such, as well
as these templates (closes: #193155).
* [Christian] Added cronjobs/db_project_sums.php in postgres cron
* [Christian] Added cronjobs/check_stale_tracker_items.php in postgres cron
* [Christian] Added objectClass: person in install-ldap.sh as suggested by
Lars Ehrhardt in http://gforge.org/forum/message.php?msg_id=3211
* [Roland] Reverted a few images to their status in 3.0-1, to avoid
build problems. Sorry about the delay, and the lack of a 3.0-3.
-- Roland Mas <lolando@debian.org> Wed, 20 Aug 2003 22:02:32 +0200
gforge (3.0-2) unstable; urgency=low
* [Roland] Applied patch provided by Denis Barbier <barbier@debian.org>
and the French l10 team, to switch the Debconf templates to po-debconf
(closes: #199939). Many thanks, guys!
-- Roland Mas <lolando@debian.org> Tue, 8 Jul 2003 21:23:45 +0200
gforge (3.0-1) unstable; urgency=low
* [Roland] The much-awaited 3.0 release! Yay!
* [Roland] This Debian release is dedicated to Christian and his wife,
whose marriage was five years old on the 20th of June.
* [Roland] Do not take the availability of mod_userdir.c for granted.
Patch from Tomas Pospisek <tpo_deb@sourcepole.ch> (closes: #197606).
* [Roland] Bumped Standards-Version: to 3.5.10 (no changes needed).
* [Christian] added sys_ldap_version variable and take it in account if
defined in common/include/ldap.php after bind
* [Roland] Rename French versions of the fields in Debconf templates
from *-fr_FR to *-fr (closes: #199743).
* [Roland] Cleanup in install-ldap.sh.
-- Roland Mas <lolando@debian.org> Thu, 3 Jul 2003 21:09:15 +0200
gforge (3rc2-4) unstable; urgency=low
* [Roland] Install README.Debian into all packages (Gforge bug #340),
and README.Multipack into gforge-common (closes: #193151).
* [Roland] We can even quit using the OID 1.3.6.1.4.1.9586.1.1
(iso.org.dod.internet.private.enterprise.Debian.package.sourceforge)
and start using the newly assigned 1.3.6.1.4.1.9586.100.3
(iso.org.dod.internet.private.enterprise.Debian.package.gforge)
instead. That means a global s/debSf/debGforge/ in attribute types
and object classes, in all the files that use LDAP.
* [Roland] Lots of fixes in the Debconf variable handling. It should be
more straightforward now, more logical (variables have been moved to
their proper package), more policy-compliant (gforge.conf is read and
Debconf is initialised from it as much as possible), and it even
actually seems to work.
* [Christian] Added {cronolog_path} in httpd.conf.template, make it fill
by gforge-config and removed dependancy on a specific cronolog version
* [Roland] Fixed create-mailing-lists.pl to change the base URL of newly
created mailing-lists (Gforge bug #331). Also added a
fix-mailing-lists.pl script to fix the previous damage. We even run
this script if the previously installed version was likely to have the
bug.
* [Roland] and [Christian] Added cn: fiend in LDAP entries for
mailing-lists.
* [Roland] Stopped trying to create/modify the base DN of the LDAP
directory if it already exists.
-- Roland Mas <lolando@debian.org> Fri, 20 Jun 2003 13:31:38 +0200
gforge (3rc2-3) unstable; urgency=low
* [Roland] Switched from non-US to main, so that the upload be accepted.
-- Roland Mas <lolando@debian.org> Wed, 21 May 2003 00:11:57 +0200
gforge (3rc2-2) unstable; urgency=low
* [Roland] Added db/20030513.sql, to add an "enabled" column to the
themes table. Fixed register-theme accordingly, and wrote a new
unregister-theme too (which just disables the theme).
* [Christian] Updated French.tab contributed by Linac (Angouleme Lug)
for Adullact <michel.bondaz@linac.org>.
* [Roland] Applied patch #330 fixing LDAP schema. Thanks, Alwyn
Schoeman <alwyn@smart.com.ph>.
* [Christian] Moved <name> theme in gforge-theme-<name> dir where name
not gforge or osx.
* [Roland] Fixed cvs_dump_update.pl so that it creates the homedirs for
the anoncvs_* users when needed.
* [Roland] Also fixed database user creation code.
* [Roland] Depend on cronolog (>= 1.6.2-1), since the binary was
relocated from /usr/sbin to /usr/bin in that version.
* [Roland] Clean the source tree so as to be able to build a non-native
Debian package.
* [Roland] Restored initial debSfMailingList (Mailman 2.0 version) to
the LDAP schema, and added the new debSfMailingListMM21 with OID
1.3.6.1.4.1.9586.1.1.1.2.3 for Mailman 2.1. Fixed sql2ldif.pl
accordingly.
-- Roland Mas <lolando@debian.org> Tue, 20 May 2003 23:18:47 +0200
gforge (3rc2-1) unstable; urgency=low
* [Christian] rc2 will go to unstable
-- Christian Bayle <bayle@debian.org> Wed, 14 May 2003 00:15:36 +0200
gforge (3rc1-3) experimental; urgency=low
* [Christian] Fixed GForge-CVS in cvsweb.conf
* [Christian] Fixed jpgraph path in local.inc
* [Christian] Added suggest on libphp-jpgraph
* [Christian] Added unix_box and cvs_box argument to the
create funtion in Group.class
* [Christian] added darkaqua theme from Patrick McFarland (diablod3)
* [Chrsitian] added a find for sourceforge owned file in common postinst
(Closes: bug#179050)
* [Roland] Fixed homedirs for anoncvs_* users.
* [Roland] Enabled HTTPS for CVSweb.
* [Roland] Removed yet a few mentions of Sourceforge.
* [Roland] Fixed a few problems with OpenLDAP 2.1.
-- Roland Mas <lolando@debian.org> Sat, 26 Apr 2003 22:22:39 +0200
gforge (3rc1-2) experimental; urgency=low
* [Roland] Corrected a bug in exim install script
* [Christian] Added location on projects and users for ssl part
* [Christian] Fixed a typo in deb-specific/install-postfix.sh
-- Christian Bayle <bayle@debian.org> Wed, 26 Mar 2003 23:29:15 +0100
gforge (3rc1-1) experimental; urgency=low
* [Christian] Added support for content encoding in util_send_mail
* [Christian] Removed .htaccess and put appropriate lines in httpd template
* [Christian] Renamed sf-(un)register functions in (un)register
* [Christian] Some cvs improvement
* [Roland] Fixed several database upgrading bugs.
* [Roland] Don't fail or hang in postinst with recent ssh.
* [Roland] Added a few diagnostic tests in the LDAP isntallation
scripts. That should help pointing out errors caused by the user
inputting invalid data.
* [Christian] rewrote partly user/group/cvs/ssh backend, now there
are four separate scripts [user|group|cvs|ssh]_dump_update.pl
-- Christian Bayle <bayle@debian.org> Sun, 16 Mar 2003 21:51:42 +0100
gforge (3pre9-0+2) experimental; urgency=low
* [Roland] Recoded Debconf templates into UTF-8, as part of the grand
transition to UTF-8.
* [Roland] Also set the PHP default charset to be UTF-8 in the Apache
configuration.
* [Christian] Improved transition from debian-sf 2.5
* [Christian] pre9 package db upgrade
* [Christian] Removed stricter dependency on debconf, to be able to run
on woody
* [Christian] removed dns.head for simple config and added test in dns
cron
* [Christian] applied Jim Nutt (jimnutt) patch [ #183 ] Fixes an ip
address in dns config
* [Roland] Adapted to run with Mailman 2.1.
* [Christian] Adjusted sequence in language table
* [Christian] Adjusted stateid in doc_data
* [Christian] Repeared local customization
-- Christian Bayle <bayle@debian.org> Mon, 3 Mar 2003 22:55:59 +0100
gforge (3pre8-0+1) experimental; urgency=low
* [Roland] Reencoded this changelog into UTF-8, as per upcoming policy
changes (see bug #174982).
* [Roland] Also, changed version to reflect the pre8 status of the
current code.
* [Roland] Stricter dependency on debconf, to fix a Lintian warning.
* [Roland] Die on error when installing the DB.
* [Roland] Do not forget 20021213.sql...
* [Roland] Generate a random password for the LDAP stuff if the user
doesn't provide one.
* [Christian] Applied Olafur Osvaldsson patch #143, Incorrect user
permissions on upload dir
* [Roland] Several changes occured in PostgreSQL between versions 7.2
and 7.3: the pg_hba.conf file syntax, the way users are authenticated,
and data checking is stricter. The installation process should now
work with both versions (provided the PostgreSQL server is installed
correctly).
* [Roland] Applied patches #103 and #104 fixing stuff related with
Apache-SSL / Apache + mod_ssl. Thanks, Julien Goodwin
<laptop006@users.gforge.org>.
* [Roland] Applied patch #102. At last, a serious attempt at a working
install-postfix.sh. Thanks again, Julien Goodwin.
-- Roland Mas <lolando@debian.org> Wed, 15 Jan 2003 17:15:52 +0100
gforge (3.0-0+8) experimental; urgency=low
* [Christian] Reintroduce the possibility to define default home page in
Themes
* [Christian] Added subMenu in Layout
* [Roland] Merged in everything that was done on the trunk since
Branch_gforge was started. That includes the plugin subsystem.
* [Roland] Merged Branch_gforge back into the trunk.
* [Christian] Removed dependency on php4-mcrypt
* [Christian] Applied F. Elie patch theme init #73
* [Christian] Applied F. Elie patch image and searchbox localisation #84 #85
-- Christian Bayle <bayle@debian.org> Tue, 31 Dec 2002 13:12:48 +0100
gforge (3.0-0+7) experimental; urgency=low
* [Christian] Added db upgrade 20021125-debian.sql
* [Christian] See upstream Changelog
* [Christian] Replacing html_get_alt_row_color with boxGetAltRowStyle
* [Christian] Removed obsolete html_get_alt_row_color function
* [Christian] FRS/QRS in gforge fashion
* [Christian] Added Peerating parameter management
-- Christian Bayle <bayle@debian.org> Thu, 19 Dec 2002 00:27:27 +0100
gforge (3.0-0+5) experimental; urgency=low
* [Christian] Merged mostly all change from gforge tree
now changing the package name
* [Christian] Applied Francisco Gimeno alias kikov supposed corrected patch
* [Christian] Big renaming from sourceforge to gforge
* [Christian] Added Jabber related French translation
* [Christian] Added Jabber stuffs in local.inc.template
* [Christian] Made sys_dbname sys_dbuser sys_dbhost debconf param
* [Christian] Added gforge-sourceforge-transition package for smooth upgrade
* [Christian] First pre-pre-realease
-- Christian Bayle <bayle@debian.org> Wed, 11 Dec 2002 00:08:07 +0100
sourceforge (2.6-0+17+gforge-1) experimental; urgency=low
* [Roland] Started the "gforge" branch, to temporarily host all the
changes made by Tim Perdue (a.k.a. Bigdisk) in his Gforge fork.
Hopefully, we'll eventually merge them into the trunk and drop that
branch, but since his changes seem to be rather large, we can't do
that instantly.
-- Roland Mas <roland.mas@free.fr> Wed, 27 Nov 2002 22:42:02 +0100
sourceforge (2.6-0+17+) experimental; urgency=low
* [Roland] Introducing the plugin subsystem: some infrastructure is now
in place to add plugins to Sourceforge. Currently implemented: a
table containing a list of installed plugins, a table for a list of
"this group uses that plugin" relations, one for "this user uses that
plugin" relations, and a usesPlugin() method for the User and Group
classes (in PHP).
* [Roland] Also implemented: a PluginManager class, a Plugin class.
* [Roland] Also, a hook system. Read README.Plugins for more info.
-- Roland Mas <lolando@debian.org> Sat, 14 Dec 2002 19:29:04 +0100
sourceforge (2.6-0+17) experimental; urgency=low
* [Christian] repared broken delete function in new_parse.pl (again)
* [Christian] Fixed install-chroot.sh incomplete copy of libs for ldap
* [Roland] DSF-Helperised a bit of Debconf for sourceforge-dns-bind9
that had previously been forgotten.
-- Christian Bayle <bayle@debian.org> Tue, 10 Dec 2002 23:03:18 +0100
sourceforge (2.6-0+16) experimental; urgency=low
* [Christian] repared broken delete function in new_parse.pl
* [Christian] made that ssh_dump.pl don't try to create key files for
deleted user
* [Christian] Applied an repared Francisco Gimeno alias kikov task
manager patch
-- Christian Bayle <bayle@debian.org> Tue, 3 Dec 2002 10:11:31 +0100
sourceforge (2.6-0+15) experimental; urgency=low
* [Christian] Add the possibility to hide forum in news_show_latest
* [Christian] Added the possibility of a language by theme customization
and updated README.Custom
* [Christian] Included full Spanish translation from Vicente Ruiz.
Thanks again
* [Christian] Removed the unused categories column in
www/admin/grouplist.php
* [Christian] Added stats_getprojects_active_public function in
www/include/features_boxes.php
* [Christian] Applied Francisco Gimeno patch as is
-- Christian Bayle <bayle@debian.org> Wed, 27 Nov 2002 22:08:19 +0100
sourceforge (2.6-0+14) experimental; urgency=low
* [Roland] Uuencoded all binary files in the source package, so that
dpkg-source can build a .diff.gz from the .orig.tar.gz. debian/rules
changed accordingly to uudecode the *.uu files at build time, and to
remove the resulting files at clean time.
* [Christian] Made trove cat more editable
* [Roland] Added integrity constraints between the tables related to the
Trove map.
* [Roland] Bumped Standards-Version to 3.5.7 and DH_COMPAT to 4.
Changed Build-Depends-Indep accordingly.
* [Roland] Applied patch from Vicente Ruiz <vjrj@ourproject.org> to fix
LDAP installation.
* [Roland] Added an <IfModule apache_ssl.c> test in sf-httpd.conf so
that SSL is enabled on Apache-SSL (as opposed to Apache / mod_ssl)
servers. Thanks, Kees Louwen <keeslouwen@hotmail.com>.
* [Christian] Added delete capability in trove map edit
* [Christian] Added setup_onevar_mainfile function in dsf helper to add
vars in sourceforge.conf not managed by debconf
* [Christian] More i18n in /my and /account
* [Christian] Make user menu themeable
* [Christian] Applied Mathieu Peltier <Mathieu.Peltier@inrialpes.fr>
patch to send mail to admin when a project is submitted, and modified
it to send the mail to all members of siteadmin (id=1) group, also
applied ftp patch partly.
* [Christian] Added translation tool in admin (Visualisation only at the
moment)
* [Roland] Added missing dependency on php4-cgi for package
sourceforge-web-apache.
* [Roland] [From 2.5] Sort documents by title.
* [Roland] Fix email delivery to users, patch from Vicente Ruiz.
* [Otavio] Now the browser accepted language are only read if set.
* [Christian] i18n for project Approval/Rejection/Submission mail.
* [Paddington] Patch #577 by Andreas Schrattenecker
<andreas.schrattenecker@aon.at>: preserve release date hh:mm in "Edit
Releases".
* [Roland] Added eval magic in install-ldap.sh to help debugging.
"export DEBSFDEBUG=1" will disable all the redirections, thus showing
the STDOUT and STDERR of all commands.
* [Roland] Added extra columns (use_ftp, use_tracker, use_frs,
use_stats, enable_pserver, enable_anoncvs) in the groups table.
* [Christian] added web management of these new columns, now you can
hide almost everything in project page.
* [Roland] sourceforge-ldap-openldap now depends on libnss-ldap. This
should not be necessary and will have to be fixed at some point, but
for now I'm just too lazy to move the code from install-ldap.sh to
another, more appropriately named, script.
* [Roland] Applied patch #614 from Robert Lamoureux
<Robert.Lamoureux@tfn.com> fixing various problems with themes.
Thanks, Bob!
* [Roland] Included full Spanish translation from Vicente Ruiz. Thanks
a lot, Vicente!
* [Roland] Changes to the supported_languages table: the language_code
field is now 5 characters wide (2 characters previously). We can thus
rename the language code for Brazilian to its proper value, pt_BR.
Also renamed the files to PortugueseBrazilian with one 'l' only, which
is the proper spelling for it.
* [Roland] Also, added a foreign key constraint: the doc_data table
references a language_id.
* [Christian] Made project admin menu themeable
* [Christian] Made news menu themeable
* [Christian] A lot of i18n in forum_utils
* [Christian] You can now customize date format in language tab files
* [Roland] Applied patch #617 from Robert Lamoureux. Stats should now
work! Changes are detailed below, with a [Bob] prefix.
* [Bob] Fixed initial pass problem with calculate_user_metric.php so
user ratings statistics now run.
* [Bob] Fixed db_ commit() error in project_weekly_metric.php. Project
statistics now work.
* [Bob] Fixed stats_http_logparse.pl to look for HTTP access log entries
in the right place (/var/log/sourceforge).
* [Bob] Changed sf-httpd.conf to have all sourceforge Virtual Web
servers log all activity to /var/log/sourceforge. Introduced a
dependency on cronolog. The stats Perl files all assume a YYYY/MM/DD
directory structure for the log files.
* [Bob] Fixed rules file to install cron jobs into /bin directory.
* [Bob] Changed sourceforge-db-postgresql cron file to call the stats
jobs every night.
* [Bob] Changed the views_graph.png and users_graph.png files to
generate an empty graph when no data is present rather than a broken
image icon. Also, fixed a bug that would break the graph if there was
0 or only 1 row in the database.
* [Bob] Changed stats_logparse.sh to have the full path to the scripts.
We cannot assume we will be in the right directory when it runs.
* [Bob] Fixed relative paths to utils/include.pl since all cronjobs seem
to installed in the bin directory. The old path was 3 levels down in
the cronjobs directory which is not part of the install hierarchy.
* [Roland] Applied patch #637 from Mathieu Peltier
<Mathieu.Peltier@inrialpes.fr>. Changes are detailed below, with
entries having a [Mathieu] prefix.
* [Mathieu] Fixed project title displayed when the forum of a news item
is viewed (was always 'Site Admin News' instead of the name of the
project).
* [Mathieu] Fixed typos in www/forum/forum_utils.php,
www/include/Base.tab, www/include/menu.php and
www/include/Layout.class.
* [Mathieu] Removed 'Edit' and '?' links for root trove category in the
trove map.
* [Christian] you can now have a customized pre.php in
/etc/sourceforge/custom/pre.php
* [Roland] Changed the authentication system: the authoritative password
field is now unix_pw, even for authenticating web sessions. We keep
user_pw for better performance when looking up the user entry in the
database, but it is just a cached value that is recomputed from the
unix_pw when possible (except when said unix_pw is empty, in which
case user_pw is the reference, and unix_pw is recomputed when
possible). This allows for better integration with existing systems
(for instance, if you want to inject some existing accounts into the
database...).
* [Roland] A little i18n in the user's homepage.
* [Christian] added James Michael DuPont proposed files from
http://introspector.sourceforge.net/sfexport.tgz . This means 2 files:
bug_dump.php and patch_dump.php
* [Christian] Added the supposed userIsAdmin() function in Group class
used in bug_dump.php and patch_dump.php
* [Christian] Made some change in bug_dump.php and patch_dump.php to make
them work (partially), this need actually to manually create two views since in 2.6
patch and bug tables don't exist, scripts creating views are view_bug.sql and
view_patch.sql.
* [Roland] Make HTTPS harder to leave, and make it the default in links
sent as e-mails (should fix Savannah bug #1401).
* [Christian] applied paddington patch #644 missing rotate_activity.php,
generate artifact stats
* [Christian] more i18n in account management
-- Christian Bayle <bayle@debian.org> Tue, 12 Nov 2002 21:49:11 +0100
sourceforge (2.6-0+13) experimental; urgency=low
* [Christian] Added a dump and restore option to install-db.sh
* [Christian] Added themeable main page support
* [Christian] Rewritting of trove_getcatlisting function to
return a string instead of direct printing
* [Christian] you can choose default language in local.inc with
e.g. $sys_lang='French';
* [Roland] Added the files necessary for sourceforge-mta-postfix. Yay!
Our first try at flexibility! Don't get any funny ideas though, I'm
pretty confident it doesn't work. Yet.
* [Roland] [From 2.5] Changed the way we empty the LDAP directory, so as
not to kill entries that are not ours.
* [Roland] [From 2.5] Fixed last inserted languages.
* [Soon-Son] added group write permission (0664) when creating the
val-tags file in the CVSROOT directory of each project. Old
configuration (0644) caused an error when the user tries to tag it as
follows:
$cvs up -r xterm-branch
cvs [server aborted]: cannot write /cvsroot/[...]/CVSROOT/val-tags:
Permission denied
* [Roland] [From 2.5] New install-ldap.sh. Should help killing our LDAP
problems. Still waiting for more testing, but it seems to mostly
work. There's still a bug in it, but it should be fairly simple to
fix and I'm working on it.
* [Roland] Various other cleanings in install-ldap.sh.
* [Roland] Fixed dependencies of the packages. Not as if it were really
important before multi-host installations are officially supported,
but it's good to do it nevertheless.
* [Roland] [From 2.5] common/include/User.class: Fixed Unix UID
attribution, so that accounts activated by hand by the admin are given
an UID too.
* [Roland] [From 2.5] deb-specific/db-upgrade.pl: Fixed the backlog of
wrong UIDs.
* [Roland] Applied patch #417 from Chris Rudd <chris@omegaware.com>
(very slightly modified) to spread the use of the util_send_mail()
function. Thanks, Chris.
* [Roland] Also applied patch #418 from same Chris Rudd to help
portability on Cygwin platforms. Thanks, Chris.
* [Roland] utils/new_parse.pl: Applied patch from Manik Surtani
<manik.surtani@conchango.com> fixing a few paths.
* [Christian] Update language_code in supported_languages table. It's
used to have a default language corresponding to browser language
settings.
* [Christian] More i18n on Trove map (work in progress).
* [Christian] More i18n in group, French translation added too.
* [Christian] Added choice for default language and theme in debconf.
* [Roland] Made some scripts silent (including some cron jobs). They
should have been silent earlier, but shell redirection is trickier
than I thought.
* [Roland] README.Themes: Added a section on theme naming to avoid name
conflicts.
* [Christian] added choice for default language and theme in debconf
* [Christian] more i18n for account register
* [Christian] cosmetics/i18n in bugtracker
* [Christian] removed multi record bug in software map
* [Roland] Dropped and recreated the views related to the artifact
manager, to fix the artifact bug (couldn't submit new artifacts,
couldn't add new comments to existing ones, couldn't attach files).
Thanks to Andreas Schrattenecker <andreas.schrattenecker@aon.at> for
the bug report and analysis.
-- Christian Bayle <bayle@debian.org> Wed, 9 Oct 2002 21:35:36 +0200
sourceforge (2.6-0+12) unstable; urgency=low
* [Roland] Added support for local overloading of the default
translation files. See README.Custom for details.
* [Roland] Applied Olafur's "Making DNS simpler" patch, with a few
changes.
* [Roland] Applied Soon-Son's patch #281 increasing internationalisation
and the Korean translation.
* [Roland] Split the package into no less than eleven subpackages. This
isolates different features into different packages, and it also paves
the road to multi-host installations (that part is not done yet).
* [Roland] To facilitate this splitting, a bit of magic was introduced.
I hereby present DSF-Helper to the face of the world. This script is
inspired from dh_installdeb, and basically does a search-and-replace
on template files. This allows us to share bits of code (for
maintainer scripts) or text (Debconf templates) between several
packages without having to maintain consistency by hand. The
code/text is in one file, and is inserted in the appropriate files
when the package is built.
* [Roland] Cleaned debian/rules file a bit.
* [Christian] Added box1_get_alt_row_style function in Layout.class that
replace html_get_alt_row_color from html.php. This will help to solve
problems with savannah themes. I also made the necessary changes in
savannah styles
* [Soon-Son] fixed bug # 148 (malformed part on dns.zone)
* [Soon-Son] fixed bug # 431 (Number of public forum/msg are 0)
* [Soon-Son] removed all links to nonexistent document
* [Soon-Son] more i18n effort including patch # 283
* [Soon-Son] removed dtd definition for bug # 120
* [Christian] Repared trove map count
* [Roland] Fixed invocation of tarballs.sh in crontab.
* [Roland] [From 2.5] Fixed mailing-lists entries in LDAP.
* [Roland] Included entries from the 2.5 changelog file into this one.
Don't worry it the dates are not ordered. Development has been
concurrent for a while (and still is). Such merges should happen
until the 2.5 branch is abandoned.
* [Roland] Added missing languages.
* [Christian] added checks in sourceforge-config
* [Christian] install/desinstall cycle support for common, web-apache,
db-postgress
* [Christian] Added ssh-nonfree support
* [Christian] Added many Replaces: sourceforge in control files
-- Christian Bayle <bayle@debian.org> Thu, 27 Jun 2002 00:13:31 +0200
sourceforge (2.6-0+11) unstable; urgency=low
* [Roland] Fixed theme registration for 2.6->2.6 upgrades. You might
encounter problems if you registered them manually, in this case
simply run the following SQL in the sourceforge database:
DELETE FROM themes WHERE dirname LIKE 'savannah_%'; BUG #124 CLOSED
* [Christian] changed Layout.class with div align=center BUG #120 CLOSED
* [Christian] removed link to docman BUG #122 CLOSED
* [Christian] $sys_name is now used for imported savannah themes
BUG #129 CLOSED
* [Christian/Roland] added darkslate savannah theme
-- Christian Bayle <bayle@debian.org> Thu, 25 Apr 2002 17:15:57 +0200
sourceforge (2.6-0+10) unstable; urgency=low
* [Christian] Corrected wrong link in menu.php for lastlogin.php.
* [Roland] *Lots* of patches from Olafur Osvaldsson <oli@isnic.is>
applied, many thanks to him.
* [Roland] Changed about.php page so that it now speaks about Debian
Sourceforge. It's internationalised, too.
* [Roland] Page footer is now shorter, internationalised, and pointing
to the About page.
* [Roland] Fixed links in the Site News page.
* [Roland] Made groups siteadmin and newsadmin public to prevent
problems with submitting of news. Also, changed their names for
coherence with names inherited from the 2.5 branch.
* [Christian] Continuing work on theming, added a new function in
html.php (url_html)
* [Roland] Removed a few bashisms in maintainer scripts.
* [Christian] Added savannah converted themes and appropriate db inserts
* [Christian] Added README.Themes
-- Christian Bayle <bayle@debian.org> Thu, 25 Apr 2002 01:02:54 +0200
sourceforge (2.6-0+9) unstable; urgency=low
* [Christian] Added dependancy on rcs for our patched cvsweb
* [Roland] Renamed db-upgrade26.pl to db-upgrade.pl.
* [Roland] Split the parse_sql_file function out of db-upgrade.pl and
into its own file (sqlparser.pm).
* [Roland] Fixed configuration of apache-ssl.
* [Roland] Worked to make the database scheme independent of the upgrade
path: installing 2.6 over 2.5 now yields the same scheme as installing
2.6 from scratch. Well, actually, not quite, but the differences are
only in a few constraints, and that'll be taken care of when we
provide some way to backup and restore a database.
* [Roland] db-upgrade.pl: replay the database "fixes" included in the
2.5 packages before starting the conversion to 2.6, to permit upgrades
from versions that are not the latest in the 2.5 series.
* [Christian] gig2png conversion to make GNU happy.
* [Christian] some html cleaning in Layout.class and osdn.php
* [Christian] added Add, Delete, or Edit Themes in Site Utilities for admin
* [Christian] change uid/gid attribution in ldap.php to be backend compliant
* [Christian] added debian and savannah Themes
* [Roland] Remove /cvsroot symlink on purge.
* [Roland] Insert the appropriate rows in the database for themes.
* [Roland] Added a "checkpoint" in db-upgrade.pl, so that we should now
be able to provide upgrades between different releases in the 2.6
series.
* [Roland] Added a totally rewritten Korean language translation file
provided by Soon-Son Kwon <kss@kldp.org>. Many thanks to him.
* [Roland] Also rewrote the French language translation file, so as to
not be lagging behind the Koreans :-)
* [Roland] Also fixed a few typoes in the English language.
* [Christian] Removed confusing unused image from archive and put in unused
directory in cvs, preparing easy Theming
* [Christian] Theming should be easier though not complete
-- Christian Bayle <bayle@debian.org> Tue, 16 Apr 2002 22:14:28 +0200
sourceforge (2.6-0+8) unstable; urgency=low
* [Christian] Added debian/BUGS
* [Christian] Corrected approve_pending bug
* [Christian] Corrected wrong userid for CVS
* [Christian] Fixed libmcryp4 dependancy
* [Christian] Added anoncvs_ users in ldap db
* [Roland] [From 2.5] Added man page for sourceforge-config (from a
Docbook SGML file). This fixes a lintian error.
* [Christian] Added ldap support for chrooted anonymous cvs
* [Roland] Minor typo-fixes here and there, and a few cosmetic changes.
* [Roland] [From 2.5] Fixed unix_box entries.
* [Roland] Fixed leftover cruft in /etc/nsswitch.conf purging.
* [Roland] Made the header somewhat customizable (display/hide the
banner, mainly).
* [Roland] Transitioned to PostgreSQL 7.2. That was far from easy,
since PG 7.2 is much more anal retentive than 7.1.3. In particular,
foreign key constraints and indices are not automagically dropped,
which caused strange errors and deep frustration in the upgrade path
from the 2.5 series.
* [Roland] While I was fixing that, I also took the opportunity to add
some code to drop the useless "deadXX" columns that are introduced by
the 2.5->2.6 upgrade (ALTER TABLE/DROP COLUMN not being implemented in
PostgreSQL yet).
* [Roland] Moved a few SQL statements used only in the 2.5->2.6 upgrade
from db-upgrade26.pl to sf2.5-to-sf2.6.sql.
-- Christian Bayle <bayle@aist.enst.fr> Mon, 11 Mar 2002 23:54:57 +0100
sourceforge (2.6-0+7) unstable; urgency=low
* [Roland] [From 2.5] Added templates to conffiles.
* [Roland] Added debconf magic to ask whether to replace a config file
before doing it (in the post-installation and pre-remove phases).
* [Christian] Changed to use cvsweb
* [Roland] [From 2.5] Added "-s /bin/sh" when su'ing to postgres.
* [Roland] [From 2.5] Moved templates to a Policy-compliant location
(/etc/sourceforge/templates).
* [Christian] modify install-ldap.sh to follow slapd undocumented
changes
* [Christian] removed test on /etc/ldap.secret in sourceforge.config
* [Christian] changed template in local.inc.template to remove People in
sys_ldap_admin dn
-- Christian Bayle <bayle@aist.enst.fr> Tue, 26 Feb 2002 18:20:31 +0100
sourceforge (2.6-0+6) unstable; urgency=low
* [Roland] [From 2.5] Added docs.
* [Roland] Added libmime-base64-perl and libhtml-parser-perl to
dependencies (db-upgrade26.pl now uses MIME::Base64 and
HTML::Entities).
* [Roland] Added migration capability to the db-upgrade26.pl script.
Database upgrades smoothly from 2.5 to 2.6. Hopefully. Not very well
tested yet.
* [Christian] Removed libmcrypt bug workaround
-- Christian Bayle <bayle@aist.enst.fr> Thu, 7 Feb 2002 18:30:27 +0100
sourceforge (2.6-0+5) unstable; urgency=low
* [Christian] Added dependency to php4-mcrypt
* [Christian] Temporary workaround for libmcrypt bug in local.inc.template
* [Christian] Removed mcrypt-test.sh
-- Christian Bayle <bayle@aist.enst.fr> Sun, 27 Jan 2002 18:43:43 +0100
sourceforge (2.6-0+4) unstable; urgency=low
* [Christian] Removed unjustified warning in intall-ldap.sh.
* [Roland] Updated Standards-Version to 3.5.6.0.
* [Roland] Made the package arch-independent.
* [Roland] Updated debian/TODO a bit.
* [Roland] Fixed a few minor bugs in my/index.php.
* [Roland] Fixed speling error in Description: field.
* [Roland] Added dependencies on packages providing the vi editor.
* [Roland] www/include/Layout.class (and others): Removed the VA logo in
the site icon. The new site icon now consists of a black "SF" written
over a Debian swirl.
* [Roland] deb-specific/install-ldap.sh: Test for the existence of
/etc/ldap/slapd.conf before trying to modify it, and suggest to
reconfigure slapd if it is not present.
* [Roland] [From 2.5] Ported the new LDAP schema, that had been
forgotten for some reason.
* [Roland] [From 2.5] Fixed email addresses on the users' home page.
* [Roland] Added the login name and real name of the user whose
permissions in a project are being edited.
* [Roland] Replaced a call to /etc/init.d/bind9 restart by a (more
appropriate) reload. Used the policy-defined invoke-rc.d, too.
* [Roland] Fixed dependencies to correctly handle apache-ssl and
exim-tls.
-- Roland Mas <lolando@debian.org> Fri, 11 Jan 2002 13:05:02 +0100
sourceforge (2.6-0+3) unstable; urgency=low
* [Christian] Added proper chmod for cp -r www and common
* [Christian] Added homedir_prefix and groupdir_prefix in
local.inc.template and made the change in account.php to take this in
account
* [Roland] [From 2.5] Rewrote the config file handling, so that it does
not overwrite local changes.
* [Roland] [From 2.5] Added cvssh.pl.
-- Christian Bayle <bayle@aist.enst.fr> Mon, 3 Dec 2001 20:09:39 +0100
sourceforge (2.6-0+2) unstable; urgency=low
* [Christian] Patch for db init
* [Christian] Repared bad db init
-- Christian Bayle <bayle@aist.enst.fr> Sat, 17 Nov 2001 01:29:25 +0100
sourceforge (2.6-0+1) unstable; urgency=low
* Started working on 2.6. Don't expect it to work just yet.
* Split the DB installation/deinstallation process out of
postinst/postrm/prerm and into an install-db.sh script. Made it a bit
less verbose.
* Split the Apache installation/deinstallation process out of
postinst/prerm and into an install-db.sh script.
* Cleaned the exim configuration a bit.
* Cleaned the DNS configuration a bit.
* Cleaned the install-*.sh scripts a lot. They now all look the same,
are more readable (well, they are more readable to me), and work
approximately the same way. Added a template for future such scripts
(install-skel.sh).
* [Christian] Put utils/include.pl utils/sql2ldif.pl
utils/underworld-dummy/ssh_dump.pl of 2.5 as 2.6 scripts, sql2ldif
will probably have to be re-seen
* [Christian] Added sf-2.6-complete.sql script
* [Christian] Cleaned debian/rules
* [Christian] Added path in apache template
* deb-specific/db-upgrade26.pl: Rewrote the SQL parsing state machine so
that it 1. works better, 2. is more readable, 3. knows about comments,
4. knows about COPY [...] FROM stdin.
* [From 2.5 branch] Fixed install-cvs.sh so that it no longer inserts
too many lines in the inetd.conf file.
* [From 2.5 branch] Added sf_ldap_modify_if_exists() to
www/include/ldap.php. Works the same as sf_ldap_modify, but returns a
non-error if the LDAP entry does not exist. Patched
sf_ldap_user_set_attribute to use this new function, so that even
users with no account (or no account yet) can change their passwords
and personal info.
* Adapted the patch to display the site admin menu, from using the now
deprecated function user_ismember() to using the new (2.6) methods
involving Group and Permission objects.
* [From 2.5 branch] Improved personal page: site admin(s) now see(s) a
list of pending projects, and news admin(s) see(s) a list of pending
news bytes.
* Replaced calls to /etc/init.d/<script> <action> in maintainer scripts
with invoke-rc.d <script> <action>, as per policy.
* Slightly rewrote the template handling in postinst script, to allow
parsing for files not in /etc/sourceforge (not needed yet, but it
might come in handy).
* Removed an unneeded dependency on bash (in install-chroot.sh).
* Added resolution data. Fixes the "Can't submit a bug/patch/whatever"
bug.
-- Roland Mas <lolando@debian.org> Fri, 23 Nov 2001 20:05:11 +0100
sourceforge (2.5-34) unstable; urgency=low
* [Christian] made that adduser don't break postinst
* [Otavio] Added the possibility to change default language using a
system variable called $sys_lang (look in /etc/sourceforge/local.inc).
* [Otavio] Added the commentary in /etc/sourceforge/local.inc about
$sys_theme.
* [Christian] Applied Otavio patch and updated postinst consequantly
* [Roland] Bumped Standards-Version to 3.5.7 and DH_COMPAT to 4.
* [Otavio] Patch to fix user deletion (closes: #162793).
* [Roland] Sort documentations by title.
* [Roland] Updated language codes in the database.
* [Roland] Otavio's patch #552: better handling of the browser language
preferences.
-- Roland Mas <lolando@debian.org> Tue, 12 Nov 2002 19:22:05 +0100
sourceforge (2.5-33) unstable; urgency=low
* [Roland] Fixed the fix in db-upgrade.pl, which caused an error to
occur when upgrading (closes: #159277).
-- Roland Mas <lolando@debian.org> Tue, 3 Sep 2002 13:38:06 +0200
sourceforge (2.5-32) unstable; urgency=low
* [Roland] www/admin/useredit.php: Fixed Unix UID attribution, so that
accounts activated by the admin are given an UID too. Previously only
the accounts that were entering a group got given an UID, and that
could result in people existing in the LDAP database and having a
shell account yet no UID. Thanks to Otavio Salvador
<otavio@debian.org> for the report and help in fixing.
* [Roland] deb-specific/db-upgrade.pl: Fixed the backlog of wrong UIDs.
* [Roland] utils/new_parse.pl: Applied patch from Manik Surtani
<manik.surtani@conchango.com> fixing a few paths.
* [Soon-Son] fixed an error when rating a user. The error message was
as follows: (Fatal error: Call to a member function on a non-object
in /usr/lib/sourceforge/www/include/User.class on line 666)
* [Roland] Hot news! ProFTPd is now in main! Sourceforge migrated back
from non-US to main. Ftpmasters: sorry about all the fuss.
-- Roland Mas <lolando@debian.org> Sun, 1 Sep 2002 18:35:18 +0200
sourceforge (2.5-31) unstable; urgency=low
* [Soon-Son] added method="post" to massmail.php which was missing so
far so that the admin can send email to the users
* [Roland] Revamped install-ftp.sh more or less thoroughly in order to
finally get rid of the sneaky LDAP problems. From what I can see, it
works. Yay!
* [Roland] Various other cleanings in install-ldap.sh.
-- Roland Mas <lolando@debian.org> Mon, 26 Aug 2002 13:01:49 +0200
sourceforge (2.5-30) unstable; urgency=high
* [Christian] Change gid/uid attribution in ldap.php to be like in
backend
* [Christian] Added asciize function in ldap.php because
LDAP expects utf-8 encoded character string (backport from 2.6)
* [Roland] Fixed install-ftp.sh so that it actually does install stuff.
* [Roland] Fixed a few bashisms in maintainer scripts.
* [Roland] Fixed LDAP entries for mailing-lists (attribute cn: is not in
the schema).
* [Roland] Fixed user in crontab (for the DNS stuff) (closes: #147434).
* [Roland] Fixed bug in the "Submit a bug" form: all bug admins are able
to assign a bug from the start, not just project admins.
* [Roland] May I introduce you to Soon-Son Kwon <kss@kldp.org> who
recently got write access to our CVS repository. He seems to focus on
internationalisation and Korean translation, but he is also a source
of bugfixes and other interesting patches.
* [Soon-Son] applied patch for bug # 148(savannah project page).
* [Soon-Son] added "scp" to allowed commands in cvssh.pl
* [Soon-Son] changed hardcoded "SourceForge" to $GLOBALS[sys_name]
so that the user can define custom site name.
* [Soon-Son] modified .../www/forum/message.php so that it can display
article subject correctly on the title.
* [Soon-Son] i18n patch for *many* pages (not all yet)
* [Soon-Son] removed "sourceforge.net" & "VA linux" specific pages
like .../contest/*, .../mirrors/* and simplified/generalized footer
* [Roland] Fixed search results page for Software/Group: the link was
wrong in the case of foundries.
* [Roland] Fixed POSIXness of maintainer scripts (closes: #150410).
* [Roland] Added missing languages (closes: #150301).
* [Christian] Added support for ssh-nonfree
* [Christian] Hope I solved a postrm bug that made uninstall fail
* [Soon-Son] fixed "forbidden" error when trying to connect
download.foobar.net
* [Roland] Fixed "value too long for type character varying(32)" in the
db-upgrade.pl script (when inserting local data) for a fresh install
(closes: #153031). It was caused by a change of behaviour in the
md5sum binary provided by dpkg 1.10 and higher.
* [Roland] Be a little less stupid when emptying the LDAP directory on
purge (closes: #153032). Instead of removing all entries but a few,
we now remove all *our* entries but a few. Sorry about that.
* [Roland] When exiting on an error, db-upgrade.pl now tells you the
request that failed. That should help debugging.
* [Roland] Moved the PostgreSQL de-configuration down in the prerm
script, since the LDAP de-configuration now uses sql2ldif and
therefore needs access to the database.
* [Roland] Moved back to non-US. It seems there was a mistake, and not
all the dependencies were in main after all. For some reason, the
fact that ProFTPd was still in non-US eluded both me and the
ftpmasters at the time the 2.5-29 package made it into main. I'm
sorry about that.
* [Soon-Son] added group write permission(0664) when creating the val-tags
file in the CVSROOT directory of each project. Old configuration (0644)
caused an error when the user tries to tag it as follows:
$cvs up -r xterm-branch
cvs [server aborted]: cannot write /cvsroot/hanterm-xf/CVSROOT/val-tags:
Permission denied
-- Roland Mas <lolando@debian.org> Fri, 19 Jul 2002 20:46:00 +0200
sourceforge (2.5-29.1) stable; urgency=low
* [Roland] Maintenance release for Debian 3.0r1, the first update of
Woody. Only fixing really major bugs, so that the stable release
manager may accept this package.
* [Roland] Moved back to non-us, since proftpd is not in main in Woody.
* [Roland] Backported fix from 2.5-30 so that uninstalling will not
completely remove the LDAP directory, but only the entries generated
from our database. This fixes bug #153032 in Woody.
-- Roland Mas <lolando@debian.org> Tue, 12 Nov 2002 19:09:24 +0100
sourceforge (2.5-29) unstable; urgency=low
* [Roland] Moved to main. I promise the only changes in this package
are this changelog entry and the Section: field of debian/control.
* Note to ftpmasters, #1: there's no crypto code in this package, only
dependencies. I'm not sure you need to notify the BXA or anything.
* Note to ftpmasters, #2: this package depends on libdbd-pg-perl, which
is currently in queue/new. Take care not to process sourceforge
before libdbd-pg-perl.
* Note to ftpmasters, #3: this package also has a dependency on
libapache-mod-ssl | apache-ssl. At the time of writing, only
apache-ssl has transitioned to main, but the package is still
installable without any non-US-only component. My interpretation is
that this is enough to allow the transition. If not, well, I'll bug
the libapache-mod-ssl maintainer so that he goes through this
transition.
* Note to ftpmasters, #4: I chose the "devel" subsection because I felt
it was most appropriate. "web" would be inaccurate (mailing-lists and
CVS are not web stuff). In a quick survey on IRC, no really
convincing arguments were put up for (or against) either.
* Note to ftpmasters, #5: "Thank you for your contribution to Debian"
yourself. You do a great job. Thanks a lot guys.
-- Roland Mas <lolando@debian.org> Tue, 9 Apr 2002 19:38:46 +0200
sourceforge (2.5-28) unstable; urgency=low
* [Roland] Fixed problem with Apache-SSL: the config file is
/etc/apache-ssl/httpd.conf, not /etc/apache/httpd.conf.
* [Christian] Removed ou=People for admin in local.inc.template
-- Roland Mas <lolando@debian.org> Tue, 9 Apr 2002 18:59:48 +0200
sourceforge (2.5-27) unstable; urgency=low
* [Roland] Fixed the shell box hostname entries (again) in db-upgrade.pl
(closes: #137183).
* [Christian] Added dependency on rcs for cvsweb (closes: #137811).
Yes, we need to have our own cvsweb, since it's a patched version.
* [Roland] Bumped the sequences for bug and task ids so that they are
greater than 100. If they are not, the 100th task/bug will have a
wrong list or reverse dependencies (since 100 is the id of "None", and
all tasks and bugs depend on this "None" by default. This patch
should prevent that from happening if it hasn't already. It won't fix
existing sites where the 100th bug/task already exists, though. If
you are in such a situation, I'm afraid there's nothing I can do for
you. Your best bet would be to declare that bug/task closed and
recreate another, identical, one.
-- Roland Mas <lolando@debian.org> Fri, 22 Mar 2002 13:59:36 +0100
sourceforge (2.5-26) unstable; urgency=medium
* [Christian] Made big changes in install-ldap.sh to be ok with
slapd config.
* [Roland] Removed unused dir /usr/lib/sourceforge/templates.
* [Roland] Recalculated $version in db-upgrade.pl.
* [Roland] Mentioned the .sourceforge-old backup files in the debconf
question.
* [Roland] Versioned Depends: on slapd (the admin dn seems to have
changed).
* [Roland] Fixed cleaning of LDAP-related files on purge.
* [Roland] Also fixed cleaning of LDAP directory on remove.
* [Roland] Updated debian/TODO a bit. It seems we mostly have "can wait
until / will be done in / already done in the 2.6 series" entries now,
which is cool.
* [Roland] Removed an invalid (and useless) request from
approve-pending.php. Should remove a few lines in PostgreSQL error
logs.
* [Roland] A few changes here and there to get Sourceforge working with
the recently uploaded PostgreSQL 7.2, see items tagged [PG7.2] below.
* [Roland] [PG7.2] Send HUP signal to postmaster in postinst and prerm
scripts. This because PostgreSQL now only re-reads the pg_hba.conf
file upon receiving this signal (and no more on each connection).
* [Roland] [PG7.2] Fixed insertion of over-long hostnames in the
database (db-upgrade.pl).
* [Roland] Also in db-upgrade.pl: fixed the (probably truncated)
existing unix_box entries.
* [Roland] Various minor fixes here and there: Debconf templates,
install-dap.sh, sourceforge-config.sgml, qrs.php.
* [Christian] change gid determination in install-ftp.sh update
* [Roland] Overall urgency set to medium, since 2.5-25 is broken with
recent slapds and PostgreSQLs.
-- Roland Mas <lolando@debian.org> Wed, 6 Mar 2002 19:35:01 +0100
sourceforge (2.5-25) unstable; urgency=low
* [Roland] Rewrote the setup_vars() function in install-ldap.sh for more
robustness.
* [Roland] Added manpage for sourceforge-config (fixes lintian error).
* [Christian] Added ':' in /etc/nsswitch.conf
* [Christian] Added do_config template
* [Roland] Wrote the code behind the do_config debconf variable.
* [Roland] Also, do not completely replace the existing configuration in
/etc/nsswitch.conf. Only add 'ldap' in there. This, and the two
previous entries, makes the package well-behaved (closes: #134058).
* [Roland] Moved template files to /etc/sourceforge/templates
(Policy for conffiles) (closes: #134724).
* [Roland] Specified shell when su'ing to postgres. Will hopefully help
in resolving #130230, but I'm not sure yet so I don't close it.
* [Roland] Added Korean language class provided by Soon-Son Kwon
<kss@kldp.org>, many thanks to him.
-- Roland Mas <lolando@debian.org> Fri, 22 Feb 2002 17:43:19 +0100
sourceforge (2.5-24) unstable; urgency=low
* [Roland] Fixed a few errors (SQL syntax, queries on nonexistant
tables) in project_metric.php.
* [Roland] Marked the templates as conffiles (closes: #130239).
-- Roland Mas <lolando@debian.org> Thu, 14 Feb 2002 17:17:26 +0100
sourceforge (2.5-23) unstable; urgency=low
* [Roland] Fixed the .../home/users/<user>.incoming bug (erroneous
directories were created).
* [Roland] Included documentation files per request (closes: #130219).
-- Roland Mas <lolando@debian.org> Mon, 28 Jan 2002 10:52:06 +0100
sourceforge (2.5-22) unstable; urgency=low
* [Roland] Replaced a call to /etc/init.d/bind9 restart by a (more
appropriate) reload. Used the policy-defined invoke-rc.d, too.
* [Roland] Fixed dependencies to correctly handle apache-ssl and
exim-tls (closes: #128345).
-- Roland Mas <lolando@debian.org> Fri, 11 Jan 2002 11:05:03 +0100
sourceforge (2.5-21) unstable; urgency=low
* [Roland] Delete temporary LDIF files created by cronjob (closes:
#127636, #127641).
-- Roland Mas <lolando@debian.org> Fri, 4 Jan 2002 11:44:30 +0100
sourceforge (2.5-20) unstable; urgency=low
* [Roland] Fixed thinko in 2.5-19. I'll stop uploading things for
today, sorry for the noise.
-- Roland Mas <lolando@debian.org> Fri, 28 Dec 2001 16:28:42 +0100
sourceforge (2.5-19) unstable; urgency=low
* [Roland] user_home.php: Fixed email addresses on /users/<blah>.
* [Roland] sendmessage.php: Fixed a few typos.
-- Roland Mas <lolando@debian.org> Fri, 28 Dec 2001 14:44:49 +0100
sourceforge (2.5-18) unstable; urgency=low
* [Roland] Fixed speling error in Description: field (closes: #125372).
* [Roland] Added dependencies on packages providing the vi editor
(closes: #124326). I hope I got them all.
* [Roland] deb-specific/install-exim.sh: Fixed LDAP queries to match the
real attribute names from the new schema introduced in 2.5-15.
-- Roland Mas <lolando@debian.org> Fri, 28 Dec 2001 10:12:30 +0100
sourceforge (2.5-17) unstable; urgency=low
* [Roland] Fixed a lintian error.
* [Roland] Fixed a bug in postinst: just having a LoadModule line in
httpd.conf doesn't mean the module is present (closes: #122413).
-- Roland Mas <lolando@debian.org> Fri, 7 Dec 2001 11:54:57 +0100
sourceforge (2.5-16) unstable; urgency=low
* [Christian] Added proper chmod for cp -r of www
* [Roland] Replaced last instances of x-cvsShell by the correct form
(debSfCvsShell) in the LDAP stuff. Also fix sf_ldap_moify_if_exists.
(closes: #121633).
* [Justin] Fix displayed file sizes in the FRS.
-- Roland Mas <lolando@debian.org> Fri, 30 Nov 2001 16:01:43 +0100
sourceforge (2.5-15) unstable; urgency=medium
* [Christian] LDAP cleanup: Added access to userPassword for SF_robot
(Thanks to Justin Richer), made a clean LDAP purge, made
install-ldap.sh more silent and backport from 2.6.
* deb-specific/sourceforge.schema, utils/sql2ldif.pl: Changed schema to
use assigned OIDs, a saner naming scheme and better attribute types.
* install-ldap.sh: Replaced calls to "/etc/init.d/slapd restart" with
"invoke-rc.d slapd restart" (policy).
* install-ldap.sh: Clean the LDAP directory on package removal (closes:
#118516).
* Rewrote grap.c (cvssh) in Perl, to allow for a greater portability.
Switched the architecture to arch: all accordingly.
* Merged in patch from Justin Richer: fix the changing of a user's
password by the admin.
* Also from Justin's patch (slightly rewritten): admin now sees a list
of pending projects on his homepage.
* This was not in Justin's patch, but he inspired the idea: news admin
sees a list of pending news bytes on his personal page too.
* Still from Justin's patch (a bit rewritten): fixed "My Projects" links
on personal pages so that they point to the right place in case the
project is a foundry.
* Added sf_ldap_modify_if_exists() to www/include/ldap.php. Works the
same as sf_ldap_modify, but returns a non-error if the LDAP entry does
not exist. Patched sf_ldap_user_set_attribute to use this new
function, so that even users with no account (or no account yet) can
change their passwords and personal info.
* Fixed install-cvs.sh so that it no longer inserts too many lines in
the inetd.conf file.
* Rewrote the config file handling, so that it does not overwrite local
changes (closes: #120442).
-- Roland Mas <lolando@debian.org> Fri, 23 Nov 2001 14:46:29 +0100
sourceforge (2.5-14) unstable; urgency=low
* Made install-dns.sh a bit more silent.
* Same for the db-upgrade.pl, which is now piped to an appropriate grep.
* Added a Depends: on perl-suid (for fileforge.pl).
* Made sure the incoming and download dirs are created and have correct
permissions. Cleaned new_parse.pl a bit, accordingly.
* Changed Priority: from optional to extra to avoid overrides.
* Various fixes and cleanups.
-- Roland Mas <lolando@debian.org> Wed, 7 Nov 2001 19:01:59 +0100
sourceforge (2.5-13) unstable; urgency=low
* Fixed config so that the database password is set to what the user
types (and not randomly generated).
-- Roland Mas <lolando@debian.org> Sun, 4 Nov 2001 18:52:29 +0100
sourceforge (2.5-12) unstable; urgency=low
* Fixed a PATH problem in install-ldap.sh.
* Made the cronjobs silent.
-- Roland Mas <lolando@debian.org> Thu, 1 Nov 2001 20:03:28 +0100
sourceforge (2.5-11) unstable; urgency=low
* Fixed /etc/aliases entry for sourceforge user. Really, this time.
* Fixed Trove software map (closes: #108297).
* Added sf-add-skill and sf-register-theme scripts.
* Removed the need for chsh sourceforge in update-user-group-cvs.sh.
* Fixed user list and group list.
* [Christian] Added support for sites without DNS delegation.
* Included patch from Olivier Garcia <olivier@linux-nerd.com>: support
for multiple network cards.
* Made sourceforge.config ash-compatible.
* Fixed User.class (closes: #108682).
* Added the alias for the Mailman images in sf-httpd.conf.template.
* Fixed the most important entry in the zone file (ours).
* Email forwarding should now work (through LDAP). I'm afraid this has
required that we depend on exim specifically (instead of any other
MTA). If you desperately need support for another MTA, please read
(and understand) deb-specific/install-exim.sh and send me the
appropriate install-<your-MTA-here>.sh for inclusion.
* Fixed fill-in-the-blanks.pl to allow multiple replacements of the same
token on the same line. That was needed by some magic that's not here
anymore, but it's better nevertheless.
* [Christian] Added SF_robot and Replicator entry in sql2ldif script.
* [Christian] Made ldap_add_password template var work.
* Mailing-lists should now work. The emails should also be sent to the
list with the same LDAP trick we used for the email forwarding, and
the web part of Mailman be correctly configured.
* Fixed apache-ssl support (apache + libapache-mod-ssl was the only
combination I had previously tested).
* [Christian] Added ldap check in apache/php config.
* [Christian] Ldap online support enabled. Requires intensive testing
and probably security enhancements similar to database.
* Fixed possible infinite loop in cronjobs/calculate_user_metric.php.
* [Christian] backport of 2_6_1 docman for better language support
* [Christian] Fixed install-ldap loss of robot password
* [Christian] Started FTP setup
* [Christian] Download server added
* [Christian] File Release FRS support added (closes: #108173)
* [Christian] Added CVS nightly tarballs
* Fixed errors in LDAP configuration so that the online creation of
groups and users works.
* Fixed a thinko in debian/sourceforge/cron.d.
* Added a periodical check for the presence of an incoming directory in
the users' home dir.
* Fixed versioned dependency on debconf (thanks to lintian).
* Removed unnecessary CVS/ dirs from the package when it's built from a
CVS checkout (as opposed to a CVS export).
* Fix in include.pl to allow the use of an empty password. To be
tested, but it might help closing #116009.
* Delayed deletion of files until the very end of the uninstall process,
in order to potentially help fixing one symptom described in #116009
too.
* deb-specific/install-exim.sh: (still related to, and not closing,
#116009) no need to require /etc/sourceforge/local.pl when
deconfiguring.
* Updated debian/TODO a bit.
* Added fileforge.pl, a setuid Perl script to move files around securely
(without needing to grant www-data read/write permission on
$user/incoming/ directories).
* [Christian] Splited install-dns.sh in install-dns.sh and
install-cvs.sh and related modification in prerm and postinst, purge
is now done for cvs, but i don't use update-inetd that doesn't restore
old config. probably cvs maintainer should be contacted to have a
friendly sourceforge config, because cvs config break sourceforge cvs
config
* Migrated install-cvs.sh to update-inetd (using appropriate
--comment-chars tricks).
* Fixed top of page background (looked nice on Forged Metal theme, but
not with any other theme).
* Deduped releases in the Quick Release System.
* Fixed searches: broken SQL syntax in the admin-only search, and
removed case-sensitiveness in the other search.
* www/include/theme.php: Fixed SQL (removed quotes from integer fields).
* www/include/theme.php: Changed the default user theme to a saner one.
* www/include/cache.php: Removed warning when the page is not cached.
* debian/sourceforge.prerm: Fixed uninstall-time bugs (deluser could
fail, and the FTP root directory could be non-empty).
* debian/sourceforge.config: Eventually fixed the empty db_passwd bug
(closes: #116009).
* Removed the web-only installation. All the services work, and there
is no need for a stripped-down version (which would be full of broken
links and non-working features).
* debian/control: Replaced Recommends: with Depends: now that the
web-only installation is no more. Removed cvsweb, too, since we
provide our own version.
* deb-specific/database.inc.template, deb-specific/local.inc.template,
deb-specific/sf-httpd.secrets.template: Took the LDAP password out of
the reach of unallowed users (same trick we used for the database
password).
* deb-specific/install-ldap.sh: Rewrote the way the LDAP password was
handled.
* Added a debconf note concerning the way libpam-ldap has to be
configured.
* [Christian] deb-specific/install-ldap.sh: Fixed incorrect upgrade.
* Plus a ton of other fixes and cleanups, but this changelog entry is
already long enough.
* Today, the 1st of November 2001, I'd like to dedicate this release to
Édith and Virginie. So there.
-- Roland Mas <lolando@debian.org> Thu, 1 Nov 2001 14:31:48 +0100
sourceforge (2.5-10) unstable; urgency=low
* I am starting to get rather confident in this package, to the point
where I cannot think of major bugs preventing it to enter woody
(closes: #99336). It will still have to wait for its dependencies to
be fulfilled and for its other RC bugs to be fixed/closed, but I won't
artificially keep it out from testing.
* Fixed possible double insertion of the sourceforge alias in
/etc/aliases.
* Check the presence of, and when needed, add, "extension={pgsql,gd}"
lines in /etc/php4/{apache,cgi}/php.ini files (closes: #107290).
* Moved some code where it belongs (in the "if web_only = false"
if-block) in sourceforge.config.
* Added a Debconf note to remind the admin to create the SSL/TLS
certificate.
* A few cosmetic changes.
* Added an "Installation notes" paragraph in README.Debian.
* Removed an entry in the TODO file (now it's a bug on the BTS).
* Fixed the diary stuff (viewing entries, monitoring other people's
diary) (closes: #108166, #108169).
-- Roland Mas <lolando@debian.org> Fri, 10 Aug 2001 09:04:44 +0200
sourceforge (2.5-9) unstable; urgency=low
* Added more checks into the postinst to deal with more possible errors.
* Small fixes in postinst and postrm.
* Changed the way we use the templates (fill-in-the-blanks.pl) and keep
the postinst script -e (closes: #103902).
* Continued work on db-upgrade.pl: added a function to parse SQL files.
The first installation (database initialisation) is now done via this
script too.
* Redirected email to sourceforge@domain to the server admin address (as
specified by the debconf question).
* Continued the hunt for references to sourceforge.net, including
removed links to some pages that were too deeply connected with
sf.net.
-- Roland Mas <lolando@debian.org> Wed, 18 Jul 2001 18:58:46 +0200
sourceforge (2.5-8) unstable; urgency=low
* Removed references to foundries from the site homepage.
* Went through debian/TODO. Didn't do much, but the file is a bit
cleaner and more up-to-date now. Transferred a bit of it onto
Savannah.
* Added French translation into the debconf template.
* Ask confirmation for passwords in debconf.
* Other minor tweaks in debconf.
* Fixed cvsweb "Unable to find gzip binary in $PATH" bug.
* Fixed the PostgreSQL reconfiguration in case the server changes IP
addresses.
* Added smooth DB upgrade script. Be afraid, be very afraid.
-- Roland Mas <lolando@debian.org> Wed, 27 Jun 2001 19:58:09 +0200
sourceforge (2.5-7) unstable; urgency=low
* Started removing some VA / SF.net / OSDN advertisements.
* Fixed postinst for web-only installs.
* Fixed project_weekly_metric.php cron job (closes: #101004).
-- Roland Mas <lolando@debian.org> Sat, 16 Jun 2001 19:09:49 +0200
sourceforge (2.5-6) unstable; urgency=low
* [Christian] New install-ldap.sh and fixed sourceforge.schema. Should
help fix the LDAP problems.
* Depends: libpam-ldap.
* Fixed Depends: debconf (closes: #100415).
* [Christian] Fixed a bug sending an email for un-approved projects.
-- Roland Mas <lolando@debian.org> Fri, 15 Jun 2001 23:07:59 +0200
sourceforge (2.5-5) unstable; urgency=low
* Removed annoying "activate_group(...)" in /admin/approve_pending.php.
* Fixed user_get_language().
-- Roland Mas <lolando@debian.org> Tue, 22 May 2001 19:49:28 +0200
sourceforge (2.5-4) unstable; urgency=low
* Fixed /new/ script.
* Made the LDAP password debconf parameter to be a password (instead of
a string).
-- Roland Mas <lolando@debian.org> Sat, 19 May 2001 20:39:38 +0200
sourceforge (2.5-3) unstable; urgency=low
* rules: remove cvssh.1 for the 'clean' target.
* Fixed and improved the skill import.
* [Christian] Added list option to install-ldap.sh.
* [Christian] More things for ldap in local.inc.template.
* Added debconf question for ldap password.
-- Roland Mas <lolando@debian.org> Fri, 18 May 2001 22:37:57 +0200
sourceforge (2.5-2) unstable; urgency=low
* Fixed the sending of emails in the support request tracker.
* Fixed the Change User Password page.
* [Christian] Correct a bug in new_parse.pl for anonymous CVS
* [Christian] Removed maybe 2 dangerous rm -rf from new_parse.pl, should
find a better solution
* [Christian] Added man for cvssh
* [Christian] Remove warning from grap.c compilation (Dirty code)
* [Christian] Started to reintroduce in local.inc.template things about
ldap
* [Christian] Modified dirs for ftp (things changing have to be in var
not in usr, remember that a system should work with /usr /etc read
only, that's why zone files for bind are in var)
* Trimmed package dependencies a bit.
* Improved the way postinst detects an error upon database and user
creation.
* Added sfdocs.sql, not (yet) used.
* [Christian] Fixed incorrect list of shell in account.php (function
account_shellselects) for useredit.php
* [Christian] Made /bin/cvssh as default shell and take this in
new_parse and sql2ldif , admin can now choose by web: Restricted shell
/bin/cvssh or whatever shell available in /etc/shells.
-- Roland Mas <lolando@debian.org> Fri, 18 May 2001 20:21:11 +0200
sourceforge (2.5-1) unstable; urgency=low
* First upload to Debian (closes: #78847).
-- Roland Mas <lolando@debian.org> Mon, 14 May 2001 20:18:03 +0200
sourceforge (2.5-0+17) unstable; urgency=low
* Fixed a postinst bug.
* Merged stuff from Christian again:
+ Moved db_get sourceforge/noreply_to_bitbucket because later db_get
locks
+ Created install-ssh.sh and relativ modifs in prerm and postinst
+ Modified local.pl.template to have database access
+ Adding ldap config that allow user/passwd management without
touching /etc files. LDAP is not directly used from php like it's done
on current CVS snapshot.
+ By default now ssh don't chroot (Possible, thanks to ldap) and there
is a symlink /cvsroot to let CVS with ssh run like before and there is
an option chroot to install-ssh.sh to have chroot again. To have a on
demand per user chroot, we maybe should create a special shell that to
this. Because we run in one box cvs imply ssh, this make that a cvs
writer has got a shell on your box. Chroot restrict access, it would
also be possible to restrict access using cvssh (alias grap.c) without
chroot
+ Modified update-user-group-cvs.sh to update ldap tables
+ Correct a mistake in /cvs/ page (Added :ext: at cvs command)
+ Added cvssh in /bin/
+ Changed sql2lif.pl to have cvssh as default shell in ldap tables
* Stripped cvssh to make lintian happy.
-- Roland Mas <lolando@debian.org> Mon, 14 May 2001 14:07:28 +0200
sourceforge (2.5-0+16) unstable; urgency=low
* Fixed some bugs in the maintainer scripts again.
* Merged stuff from Christian Bayle:
+ Added sf-httpd.conf.template enhancement for virtual hosting
+ Added vhost_alias_module check in sourceforge.postinst
+ Work on sql2ldif.pl and install-ldap.sh
* Fixed crontab so that it doesn't complain when the package is
uninstalled.
* Also in crontab: do not start the non-web-only scripts if the
installation was web-only.
* Depend on mail-transport-agent.
-- Roland Mas <lolando@debian.org> Fri, 11 May 2001 20:23:13 +0200
sourceforge (2.5-0+15) unstable; urgency=low
* Still heading to stability.
* Updated TODO list and README.Debian.
* Optionnally send email to "noreply" to /dev/null.
* Fiddled with the .orig.tar.gz to fix permissions on some files
(notable some executable *.png and *.php). Lintian is now happier.
* Added dependencies on the right LDAP packages.
* Fixed the postgresql cron script problem.
* Clean up more stuff when purging the package.
-- Roland Mas <lolando@debian.org> Fri, 11 May 2001 14:00:23 +0200
sourceforge (2.5-0+14) unstable; urgency=low
* Got my hands back on the package, and started cleaning it a bit.
* Removed the killall in postinst (it bit me while I was remotely
installing the package).
* Added a bit more verbosity in postinst.
* Fixed a typo in the debconf template.
* Ditto in install-dns.sh.
* Restart ssh in prerm.
* Removed duplicate invocation of debconf for the LDAP stuff in config.
* Added Depends: on ssh, libnss-ldap and bind9.
* Heading to a stable state, all unstable stuff is conditioned to a
debconf question.
* Removed bashisms in config.
-- Roland Mas <lolando@debian.org> Thu, 10 May 2001 11:10:34 +0200
sourceforge (2.5-0+13.3) unstable; urgency=low
* Modified sourceforge.config to get a correct ldap DN
* Changed ldaptest for install-ldap.sh in deb-specific
* Added sql2ldif.sh and install-ldap.sh in debian/rules
* Added stuffs for default ldap_dn in sourceforge.config but this should
be better done
* Added sourceforge.schema for ldap in etc/sourceforge (Added in rules)
* Now nstall-ldap.sh is a working loader of the ldap database
* Probably libnss-ldap will require modif of /etc/nsswitch.conf
* Added apache_conf.pl example found on sourceforge offsite talk
* This should help for apache aliasing of sites except if there is a
solution without restarting apache
-- Christian Bayle <bayle@aist.enst.fr> Wed, 9 May 2001 01:43:06 +0200
sourceforge (2.5-0+13.2) unstable; urgency=low
* Changed install-chroot.sh for improved one with option
* Modified utils/underworld-dummy/ssh_dump.pl installed
* Modified utils/underworld-dummy/dns_conf.pl installed
* Modified utils/underworld-dummy/dump_database.pl installed
* Changed gid_add from 1000 to 10000 and dummy_uid from 103 to 9999
* Modified utils/new_parse.pl installed
* Modified utils/ssh_create.pl installed
* Added update_user_group_cvs.sh and use in postinst and cron.d
* Changed sourceforge/db_password from low to medium in sourceforge.config
* Changed postinst: database passwd must be introduced after database init
* Uncommented DNS
* In sourceforge.config changed ip_adress default for $(hostname -i)
* Added install-dns.sh script in debian/rules with option
* and use added in prerm and posinst
* Added modified perl script ans icons in deb-specific/cvsweb
* Added install for cvsweb in debian/rules
* Added usr/lib/sourceforge/<cvs,cvs/icons,cgi-bin> in debian/sourceforge.dirs
* Modified www/cvs/index.php to have a good ref with cvs
* Modified sf-httpd.template to make good ref to cvs cgi-bin
* Added required cron for DNS/CVS/GROUP/USER in debian/sourceforge.cron.d
* Everything from my 2.5-0+12p9 is reintegrated
* Added ldaptest exemple in deb-specific and could test this with
* std debian slapd install. This should help for ldap setup
-- Christian Bayle <bayle@aist.enst.fr> Mon, 7 May 2001 00:32:08 +0200
sourceforge (2.5-0+13.1) unstable; urgency=low
* Starting to merge in a huge lot of things that were previously in the
TODO list, done by Christian Bayle <bayle@aist.enst.fr>.
-- Roland Mas <lolando@debian.org> Wed, 2 May 2001 23:08:30 +0200
sourceforge (2.5-0+13) unstable; urgency=low
* Should fix the error on news forum creation (thanks to Y. J. Chun
<monac@pmail.net>).
* Added a $sys_images_url (Y. J. Chun again).
* Started work on the LDAP stuff. The script seems to work, now I don't
know what to do with it yet.
* Run the postinst psql scripts as sourceforge to satisfy PostgreSQL's
paranoia.
* Sort-of-fixed a problem occurring when trying to see the source for
generated pages (/projects/test/, for instance).
* Fixed the sending of emails to strange addresses on task creation.
-- Roland Mas <lolando@debian.org> Wed, 2 May 2001 19:29:23 +0200
sourceforge (2.5-0+12) unstable; urgency=low
* Fixed some incorrect SQL (DROP TABLE IF EXISTS), removed the adequate
hack in some cronjobs.
* Added project metrics cronjobs.
-- Roland Mas <lolando@debian.org> Fri, 20 Apr 2001 18:50:43 +0200
sourceforge (2.5-0+11) unstable; urgency=low
* Ran lintian. Fixed errors and warnings (many).
-- Roland Mas <lolando@debian.org> Thu, 19 Apr 2001 20:05:55 +0200
sourceforge (2.5-0+10) unstable; urgency=low
* Fixed HTML and link in the "Showing the Sourceforge logo" blurb (in
project/admin/).
* Fixed the daily activity log rotation.
-- Roland Mas <lolando@debian.org> Wed, 18 Apr 2001 23:11:29 +0200
sourceforge (2.5-0+9) unstable; urgency=low
* Hopefully fixed cron job calculating the Trove software map sums.
* Made the cron jobs silent.
-- Roland Mas <lolando@debian.org> Mon, 16 Apr 2001 22:39:09 +0200
sourceforge (2.5-0+8) unstable; urgency=low
* Small patch: default timezone is read from /etc/timezone. Yeah, very
small patch indeed :-)
-- Roland Mas <lolando@debian.org> Mon, 9 Apr 2001 19:59:04 +0200
sourceforge (2.5-0+7) unstable; urgency=low
* Changed the database host to localhost in psql calls from the
maintainer scripts. It still doesn't work with out-of-the-box
PostgreSQL installation (which is a little paranoid), but it should
lower the requirements for manual intervention.
* Un-commented the Apache restart in maintainer scripts. It's really
needed, especially for the prerm.
* Cease to drop the databases on remove (only do this un purge).
-- Roland Mas <lolando@debian.org> Sun, 8 Apr 2001 20:27:27 +0200
sourceforge (2.5-0+6) unstable; urgency=low
* Added debconf question to insert an initial list of skills into the
database.
-- Roland Mas <lolando@debian.org> Fri, 6 Apr 2001 00:03:50 +0200
sourceforge (2.5-0+5) unstable; urgency=low
* Big ooops. The postinst used to chown plenty of files to the
not-yet-existant user sourceforge. Thanks to Luca for noticing.
-- Roland Mas <lolando@debian.org> Wed, 4 Apr 2001 18:09:19 +0200
sourceforge (2.5-0+4) unstable; urgency=low
* Continued work on cron jobs: disabled the vacuuming part (not needed),
fixed some SQL in the user rating script.
-- Roland Mas <lolando@debian.org> Thu, 22 Feb 2001 23:03:36 +0100
sourceforge (2.5-0+3) unstable; urgency=low
* Started work on the cron jobs. Same again, don't expect it to Just
Work, because it won't. Why on Earth they should write cron jobs in
PHP I will probably never understand.
* CHanged Depends: perl5 to Depends: perl.
-- Roland Mas <lolando@debian.org> Wed, 21 Feb 2001 22:59:41 +0100
sourceforge (2.5-0+2) unstable; urgency=low
* Bugfix in the installation procedure: the sequences are now
initialised after the default data have been inserted.
* Bugfix in the diary page.
-- Roland Mas <lolando@debian.org> Mon, 19 Feb 2001 23:06:19 +0100
sourceforge (2.5-0+1) unstable; urgency=low
* New upstream release.
* New maintainer address.
* This package should (barely) install. Don't expect it to work. It's
not public anyway, so how did you get it?
-- Roland Mas <lolando@debian.org> Mon, 12 Feb 2001 00:01:50 +0100
sourceforge (2.0-0phase1v19) unstable; urgency=low
* Removed a lintian warning.
-- Roland Mas <99.roland.mas@aist.enst.fr> Fri, 12 Jan 2001 20:15:45 +0100
sourceforge (2.0-0phase1v18) unstable; urgency=low
* Fixed the bugs caused by file permission in v17. Separated secrets
into different files.
-- Roland Mas <99.roland.mas@aist.enst.fr> Wed, 10 Jan 2001 21:01:45 +0100
sourceforge (2.0-0phase1v17) unstable; urgency=low
* Changed security for the database password: it is now only stored in
the sf-httpd.conf file, and this file is now chmod 600.
-- Roland Mas <99.roland.mas@aist.enst.fr> Mon, 8 Jan 2001 22:10:03 +0100
sourceforge (2.0-0phase1v16) unstable; urgency=low
* Changed the sourceforge user's homedir.
* Added entries into the TODO list.
-- Roland Mas <99.roland.mas@aist.enst.fr> Sat, 6 Jan 2001 22:56:02 +0100
sourceforge (2.0-0phase1v15) unstable; urgency=low
* Added TODO.Debian file (might be temporary).
* Fixed the order of db_* config file to set the defaults.
* Changed the sf-httpd.conf file to avoid "Address already in use" bug.
* debconf'ed the newsadmin group id.
* Added a system user to run the crontab scripts.
-- Roland Mas <99.roland.mas@aist.enst.fr> Sat, 6 Jan 2001 19:58:17 +0100
sourceforge (2.0-0phase1v14) unstable; urgency=low
* Fixed some data in the database init phase: no-reply email address,
features of the siteadmin and newsadmin groups, some fields
de-NULLified.
* Added Depends: php4-gd (for the statistics graphs).
* Added entries in conffiles for the templates.
* Added some more backend (stats) scripts to the crontab.
-- Roland Mas <99.roland.mas@aist.enst.fr> Wed, 3 Jan 2001 22:54:37 +0100
sourceforge (2.0-0phase1v13) unstable; urgency=low
* Re-enabled the conffiles-ness of the crontab, with appropriate testing
([ -x ... ] && ...).
-- Roland Mas <99.roland.mas@aist.enst.fr> Fri, 29 Dec 2000 16:32:40 +0100
sourceforge (2.0-0phase1v12) unstable; urgency=low
* Removed the need for exclusivity on DocumentRoot by using a
VirtualHost.
-- Roland Mas <99.roland.mas@aist.enst.fr> Thu, 28 Dec 2000 14:19:44 +0100
sourceforge (2.0-0phase1v11) unstable; urgency=low
* Re-enabled the full user list and full project list links in the site
admin page.
* Replaced all references to "Alexandria" by the chosen system name.
* Removed crontab from conffiles, lest we try to call a script that
doesn't exist when the package is removed but not purged.
* Added plenty of backend scripts into the crontab.
-- Roland Mas <99.roland.mas@aist.enst.fr> Wed, 27 Dec 2000 21:31:14 +0100
sourceforge (2.0-0phase1v10) unstable; urgency=low
* Fixed the graphs (survey results, bugs aging reports). Crude hack for
now, hopefully a cleaner fix will occur soon.
-- Roland Mas <99.roland.mas@aist.enst.fr> Sat, 23 Dec 2000 18:36:25 +0100
sourceforge (2.0-0phase1v9) unstable; urgency=low
* Removed dependency on localhost.
-- Roland Mas <99.roland.mas@aist.enst.fr> Fri, 22 Dec 2000 13:25:27 +0100
sourceforge (2.0-0phase1v8) unstable; urgency=low
* Added site-admin and site-news-admin menu.
-- Roland Mas <99.roland.mas@aist.enst.fr> Thu, 21 Dec 2000 21:00:59 +0100
sourceforge (2.0-0phase1v7) unstable; urgency=low
* Fixed include path in db_trove_treesums.pl (again).
-- Roland Mas <99.roland.mas@aist.enst.fr> Thu, 21 Dec 2000 15:03:51 +0100
sourceforge (2.0-0phase1v6) unstable; urgency=low
* Fixed clear.gif image references and included the image.
-- Roland Mas <99.roland.mas@aist.enst.fr> Thu, 21 Dec 2000 12:41:01 +0100
sourceforge (2.0-0phase1v5) unstable; urgency=low
* Suppressed dependency on dnsutils (by using getent instead of host).
* Fixed include path in db_trove_treesums.pl.
-- Roland Mas <99.roland.mas@aist.enst.fr> Thu, 21 Dec 2000 10:26:59 +0100
sourceforge (2.0-0phase1v4) unstable; urgency=low
* Fixed the docman bug (another one).
* Fixed the survey bug.
* Installed crontab for the software map.
* Tested patches, code snippet library, news, support, user skills,
software map.
-- Roland Mas <99.roland.mas@aist.enst.fr> Wed, 20 Dec 2000 23:01:10 +0100
sourceforge (2.0-0phase1v3) unstable; urgency=low
* Fixed Makefile for building.
-- Roland Mas <99.roland.mas@aist.enst.fr> Tue, 12 Dec 2000 17:46:36 +0100
sourceforge (2.0-0phase1v2) unstable; urgency=low
* Deleted many .ex files in debian/.
* Fixed the docman bug.
* Fixed the news bug.
* Removed mode -x in postinst script, and generally cleaned postinst and
postrm a bit.
* Added debconf questions cvs_host and lists_host.
* Moved the cache directory into a FHS-compliant location.
-- Roland Mas <99.roland.mas@aist.enst.fr> Tue, 12 Dec 2000 14:12:17 +0100
sourceforge (2.0-0phase1v1) unstable; urgency=low
* Initial Release. Expect many bugs.
-- Roland Mas <99.roland.mas@aist.enst.fr> Sun, 10 Dec 2000 16:15:20 +0100
Local Variables:
coding: utf-8
End:
|