summaryrefslogtreecommitdiffstats
path: root/perl-install/printer/main.pm
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2003-08-25 22:38:06 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2003-08-25 22:38:06 +0000
commita0be523710b157b40e483a72b1e4f59ebdcf804d (patch)
treeb08c9d56fb1764467a8e8e9820b0cc59baba2feb /perl-install/printer/main.pm
parent832d5aa7a225f3a20a9aac42f42b09ee675cc7de (diff)
downloaddrakx-backup-do-not-use-a0be523710b157b40e483a72b1e4f59ebdcf804d.tar
drakx-backup-do-not-use-a0be523710b157b40e483a72b1e4f59ebdcf804d.tar.gz
drakx-backup-do-not-use-a0be523710b157b40e483a72b1e4f59ebdcf804d.tar.bz2
drakx-backup-do-not-use-a0be523710b157b40e483a72b1e4f59ebdcf804d.tar.xz
drakx-backup-do-not-use-a0be523710b157b40e483a72b1e4f59ebdcf804d.zip
- Modularized the function main() to have separate subroutines for
adding, setting as default, editing, and removing a printer (for new main window). - Cleaned up the code of the former function main(). - Re-activated the wizard mode for adding a printer, it works again!
Diffstat (limited to 'perl-install/printer/main.pm')
0 files changed, 0 insertions, 0 deletions
36'>136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Name:    drakxtools
Version: 10.3
Release: 0.20mdk
Url: http://www.mandrivalinux.com/en/drakx.php3
Source0: %name-%version.tar.bz2
License: GPL
Group: System/Configuration/Other
Requires: %{name}-newt = %version-%release, perl-Gtk2 >= 1.072-1mdk, perl-Glib >= 1.072-1mdk, /usr/X11R6/bin/xtest, font-tools, usermode >= 1.63-5mdk, perl-MDK-Common >= 1.1.23, mandrake-doc-common >= 9.2-5mdk
Requires: foomatic-db-engine
Requires: drakconf-icons
Conflicts: drakconf < 10.1-0.6mdk
Conflicts: rpmdrake < 2.1-29mdk
Conflicts: mandrake_doc-drakxtools-en < 9.2, mandrake_doc-drakxtools-es < 9.2, mandrake_doc-drakxtools-fr < 9.2
Conflicts: bootloader-utils < 1.8-4mdk, bootsplash < 2.1.7-1mdk
BuildRequires: gettext, gtk+2-devel, ldetect-devel >= 0.5.3-1mdk, ncurses-devel, newt-devel, perl-devel >= 1:5.8.0-20mdk, libext2fs-devel, perl-MDK-Common-devel >= 1.1.8-3mdk
BuildRequires: rpm-devel
BuildRoot: %_tmppath/%name-buildroot
Provides: draksec
Obsoletes: draksec
%define _requires_exceptions perl(Net::FTP)\\|perl(Time::localtime)\\|perl(URPM)

%package newt
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Group: System/Configuration/Other
Requires: perl-base >= 2:5.8.6-1mdk, urpmi >= 4.6.13, modutils >= 2.3.11, usermode-consoleonly >= 1.44-4mdk, msec >= 0.38-5mdk
Requires: %{name}-backend = %version-%release
Requires: monitor-edid
Requires: netprofile
Obsoletes: diskdrake kbdconfig mouseconfig printtool setuptool drakfloppy
Provides: diskdrake, kbdconfig mouseconfig printtool setuptool, drakfloppy = %version-%release
Provides: perl(Newt::Newt)
Provides: perl(network::isdn_consts)

%package backend
Summary: Drakxtools libraries and background tools 
Group: System/Configuration/Other
Requires: ldetect-lst >= 0.1.71
Requires: dmidecode
Conflicts: drakxtools-newt < 10-51mdk


%package http
Summary: The drakxtools via http
Group: System/Configuration/Other
Requires: %{name}-newt = %version-%release, perl-Net_SSLeay >= 1.22-1mdk, perl-Authen-PAM >= 0.14-1mdk, perl-CGI >= 2.91-1mdk
PreReq: rpm-helper

%package -n drakx-finish-install
Summary: First boot configuration
Group: System/Configuration/Other
Requires: %{name} = %version-%release

%package -n harddrake
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %{name}-newt = %version-%release
Requires: hwdb-clients
Obsoletes: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Provides: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Prereq: rpm-helper

%package -n harddrake-ui
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %name = %version-%release
Requires: sane-backends

%description
Contains many Mandrivalinux applications simplifying users and
administrators life on a Mandrivalinux machine. Nearly all of
them work both under XFree (graphical environment) and in console
(text environment), allowing easy distant work.

drakbug: interactive bug report tool

drakbug_report: help find bugs in DrakX

drakclock: date & time configurator

drakfloppy: boot disk creator

drakfont: import fonts in the system

draklog: show extracted information from the system logs

draknet_monitor: connection monitoring

drakperm: msec GUI (permissions configurator)

drakprinter: detect and configure your printer

draksec: security options managment / msec frontend

draksplash: bootsplash themes creation

drakTermServ: terminal server configurator

listsupportedprinters: list printers

net_applet: applet to check network connection

%description backend
See package %name

%description newt
Contains many Mandrivalinux applications simplifying users and
administrators life on a Mandrivalinux machine. Nearly all of
them work both under XFree (graphical environment) and in console
(text environment), allowing easy distant work.

adduserdrake: help you adding a user

diskdrake: DiskDrake makes hard disk partitioning easier. It is
graphical, simple and powerful. Different skill levels are available
(newbie, advanced user, expert). It's written entirely in Perl and
Perl/Gtk. It uses resize_fat which is a perl rewrite of the work of
Andrew Clausen (libresize).

drakauth: configure authentification (LDAP/NIS/...)

drakautoinst: help you configure an automatic installation replay

drakbackup: backup and restore your system

drakboot: configures your boot configuration (Lilo/GRUB,
Bootsplash, X, autologin)

drakconnect: LAN/Internet connection configuration. It handles
ethernet, ISDN, DSL, cable, modem.

drakfirewall: simple firewall configurator

drakgw: internet connection sharing

drakkeyboard: configure your keyboard (both console and X)

draklocale: language configurator, available both for root
(system wide) and users (user only)

drakmouse: autodetect and configure your mouse

drakproxy: proxies configuration

drakscanner: scanner configurator

draksound: sound card configuration

drakx11: menu-driven program which walks you through setting up
your X server; it autodetects both monitor and video card if
possible

drakxservices: SysV services and daemons configurator

drakxtv: auto configure tv card for xawtv grabber

lsnetdrake: display available nfs and smb shares

lspcidrake: display your pci information, *and* the corresponding
kernel module

%description http
This add the capability to be runned behind a web server to the drakx tools.
See package %name


%description -n drakx-finish-install
For OEM-like duplications, it allows at first boot:
- network configuration
- creating users
- setting root password
- choosing authentication


%description -n harddrake
The harddrake service is a hardware probing tool run at system boot
time to determine what hardware has been added or removed from the
system.
It then offer to run needed config tool to update the OS
configuration.


%description -n harddrake-ui
This is the main configuration tool for hardware that calls all the
other configuration tools.
It offers a nice GUI that show the hardware configuration splitted by
hardware classes.


%prep
%setup -q

%build
%make CFLAGS="$RPM_OPT_FLAGS"

%install
rm -rf $RPM_BUILD_ROOT

%make PREFIX=$RPM_BUILD_ROOT install
mkdir -p $RPM_BUILD_ROOT/{%_initrddir,%_sysconfdir/{X11/xinit.d,sysconfig/harddrake2}}
touch $RPM_BUILD_ROOT/etc/sysconfig/harddrake2/previous_hw

dirs1="usr/lib/libDrakX usr/share/libDrakX"
(cd $RPM_BUILD_ROOT ; find $dirs1 usr/bin usr/sbin ! -type d -printf "/%%p\n")|egrep -v 'bin/.*harddrake' > %{name}.list
(cd $RPM_BUILD_ROOT ; find $dirs1 -type d -printf "%%%%dir /%%p\n") >> %{name}.list

perl -ni -e '/activefw\.pm|clock|drak(backup|bug|clock|floppy|font|log|net_monitor|perm|printer|sec|splash|TermServ)|gtk|icons|logdrake|net_applet|net_monitor|pixmaps|printer|roam|xf86misc|\.png$/ ? print STDERR $_ : print' %{name}.list 2> %{name}-gtk.list
perl -ni -e '/http/ ? print STDERR $_ : print' %{name}.list 2> %{name}-http.list
perl -ni -e 'm!lib/libDrakX|bootloader-config|fileshare|lsnetdrake|drakupdate_fstab|rpcinfo|serial_probe! && !/newt/i ? print STDERR $_ : print' %{name}.list 2> %{name}-backend.list

#mdk menu entry
mkdir -p $RPM_BUILD_ROOT/%_menudir

cat > $RPM_BUILD_ROOT%_menudir/drakxtools-newt <<EOF
?package(drakxtools-newt): \
	needs="X11" \
	section="System/Configuration/Other" \
	title="LocaleDrake (System)" \
	longtitle="System wide language configurator" \
	command="/usr/bin/drakconf --start-with=Localization" \
	icon="localedrake.png"

?package(drakxtools-newt): \
	needs="X11" \
	section="System/Configuration/Other" \
	title="LocaleDrake (User)" \
	longtitle="Language configurator" \
	command="/usr/bin/localedrake" \
	icon="localedrake.png"

EOF
 
cat > $RPM_BUILD_ROOT%_menudir/harddrake-ui <<EOF
?package(harddrake-ui):\
	needs="X11"\
	section="Configuration/Hardware"\
	title="HardDrake"\
	longtitle="Hardware Central Configuration/information tool"\
	command="/usr/sbin/harddrake2"\
	icon="harddrake.png"
EOF

cat > $RPM_BUILD_ROOT%_menudir/net_applet <<EOF
?package(drakxtools):\
        needs="X11"\
        section="System/Monitoring"\
        title="NetApplet"\
        longtitle="Network monitoring applet"\
        command="/usr/bin/net_applet --force"\
        icon="/usr/share/libDrakX/pixmaps/connected.png"
EOF

cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2 <<EOF
#!/bin/sh
exec /usr/share/harddrake/service_harddrake X11
EOF

cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/net_applet <<EOF
#!/bin/sh
DESKTOP=\$1
case \$DESKTOP in
   KDE|GNOME|IceWM|Fluxbox|XFce4) exec /usr/bin/net_applet;;
esac
EOF

mv $RPM_BUILD_ROOT%_sbindir/service_harddrake_confirm $RPM_BUILD_ROOT%_datadir/harddrake/confirm

chmod +x $RPM_BUILD_ROOT{%_datadir/harddrake/*,%_sysconfdir/X11/xinit.d/{harddrake2,net_applet}}
# temporary fix until we reenable this feature
rm -f $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2

%find_lang libDrakX
cat libDrakX.lang >> %name.list

%clean
rm -rf $RPM_BUILD_ROOT

%post
%update_menus
[[ ! -e %_sbindir/kbdconfig ]] && %__ln_s -f keyboarddrake %_sbindir/kbdconfig
[[ ! -e %_sbindir/mouseconfig ]] && %__ln_s -f mousedrake %_sbindir/mouseconfig
[[ ! -e %_bindir/printtool ]] && %__ln_s -f ../sbin/printerdrake %_bindir/printtool
:

%postun
%clean_menus
for i in %_sbindir/kbdconfig %_sbindir/mouseconfig %_bindir/printtool;do
    [[ -L $i ]] && %__rm -f $i
done
:

%post http
%_post_service drakxtools_http

%preun http
%_preun_service drakxtools_http

%post newt
%update_menus

%postun newt
%clean_menus

%post -n harddrake-ui
%update_menus

%postun -n harddrake-ui
%clean_menus

%post -n harddrake
%_post_service harddrake

%preun -n harddrake
%_preun_service harddrake

%postun -n harddrake
file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrake/convert || :

%files backend -f %{name}-backend.list
%defattr(-,root,root)
%config(noreplace) /etc/security/fileshare.conf
%attr(4755,root,root) %_sbindir/fileshareset

%files newt -f %name.list
%defattr(-,root,root)
%_menudir/drakxtools-newt
%doc diskdrake/diskdrake.html
%_iconsdir/localedrake.png
%_iconsdir/large/localedrake.png
%_iconsdir/mini/localedrake.png
%_mandir/*/*

%files -f %{name}-gtk.list
%defattr(-,root,root)
/usr/X11R6/bin/*
%_sysconfdir/X11/xinit.d/net_applet
%_menudir/net_applet

%files -n harddrake
%defattr(-,root,root)
%config(noreplace) %_initrddir/harddrake
%dir /etc/sysconfig/harddrake2/
%config(noreplace) /etc/sysconfig/harddrake2/previous_hw
%dir %_datadir/harddrake/
%_datadir/harddrake/*
#%_sysconfdir/X11/xinit.d/harddrake2

%files -n harddrake-ui
%defattr(-,root,root)
%dir /etc/sysconfig/harddrake2/
%_sbindir/harddrake2
%_datadir/pixmaps/harddrake2
%_menudir/harddrake-ui
%_iconsdir/large/harddrake.png
%_iconsdir/mini/harddrake.png
%_iconsdir/harddrake.png

%files -n drakx-finish-install
%defattr(-,root,root)
%config(noreplace) %_sysconfdir/sysconfig/finish-install
%_sysconfdir/X11/xsetup.d/finish-install.xsetup
%_sbindir/finish-install

%files http -f %{name}-http.list
%defattr(-,root,root)
%dir %_sysconfdir/drakxtools_http
%config(noreplace) %_sysconfdir/pam.d/miniserv
%config(noreplace) %_sysconfdir/init.d/drakxtools_http
%config(noreplace) %_sysconfdir/drakxtools_http/conf
%config(noreplace) %_sysconfdir/drakxtools_http/authorised_progs
%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http

%changelog
* Mon May 30 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.20mdk
- handle more DVB cards
- drakconnect: third party support update (blino):
  o point the user to the relevant packages/documentation/url if
    needed,
  o do not allow to configure a device if its requirements aren't
    satisfied
- harddrake service: load drivers for newly added devices so that they
  work out of the box on first boot after card plugging (AGP, IDE, DVB,
  SCSI, TV)
- printerdrake: support for PPD file names with spaces (till, #16172)

* Fri May 27 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.19mdk
- drakedm: handle /etc/X11/dm.d/* entries (as proposed by Loic Baudry)
- localedrake:
  o display SCIM combinaisons in a sub menu
  o enable to select extra SCIM combinaisons: scim+anthy, scim+canna,
    scim+fcitx, scim+m17n, scim+prime, and scim+skk;

* Fri May 27 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.18mdk
- drakgw, drakshorewall: misc fixes (blino)
- draksplash (blino):
  o use scrollbar in preview window
  o try not to be larger than screen size minus toolbars size
  o close_window -> close_all
- harddrake: fix misdetecing USB mass storage devices (#13569)
- localedrake:
  o enable to select scim+uim again
  o install needed packages for kinput2
- net_applet: let user call drakroam (blino, #16019)

* Tue May 24 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.17mdk
- drakgw (blino):
  o wizardify
  o allow not to enable DNS, dhcpd and proxy servers
  o allow not to enable CUPS broadcast
  o use network interfaces instead of network addresses in CUPS
    configuration
- harddrake: use mousedrake to configure tablets & touchscreens

* Sun May 22 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.16mdk
- interactive layer: fix canceling managment in text mode
- XFdrake: only run ldconfig if needed (aka only if GL config was
  altered), thus speeding up auto-config of X in harddrake service
- fix joystick detection (pixel, #16099)

* Thu May 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.15mdk
- drakconnect, harddrake: detect all ADSL modems of each kind
- harddrake GUI:
  o detect yet more webcams and USB audio devices
  o DVB support:
    * list DVB cards in their own category
    * install needed packages for DVB
  o list tablets and touchscreens in their own category
  o fix detecting joysticks
  o really list ATM devices
- harddrake service: install/remove DVB drivers if needed

* Thu May 19 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.14mdk
- interactive layer: handle canceling wizards in text mode
- hardware support:
  o detect more webcams
  o detect more ADSL USB modems (needs further drakconnect work)
- harddrake:
  o create new categories for USB audio, ATM, Bluetooth, WAN, and radio devices
  o split joysticks category into real joystick and gameport controller ones
- localedrake: clarify "other countries" vs "advanced" label depending if the
  language is spoken in several countries and if the language needs an IM method

* Tue May 17 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.13mdk
- drakboot (blino):
  o add the "Create new theme" button back
  o allow to choose between "text only", "verbose" and "silent"
    bootsplash modes
- drakconnect (blino):
  o use iwpriv for WPA with rt2x00 drivers (since they don't support
    wpa_supplicant)
  o keep # and * characters in phone number (#16031)
- drakroam:
  o fix perms on /etc/wlandetect.conf (#16020)
  o really write waproamd config files (blino)

* Mon May 16 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.12mdk
- fix GtkTextView wrapper
- drakups: do not detect MS joystick as UPS (#15930)

* Thu May 12 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.11mdk
- diskdrake: default to "Custom" when group fileshare exists (pixel, #15917)
- drakbackup (stew):
  o drop webdav support (can be mounted as a normal net filesystem
    these days)
  o remove translation on "tape" media selection (#15437)
  o rework .backupignore handling (#12352)
- drakconnect: netconnect.pm: reorder drakconnect first screen (blino)
- drakups: fix detecting Wingman gamepad as UPS (#15750)
- harddrake: ensure wait message is centered on mcc
- harddrake service: fix PCMCIA breakage (#15742)
- fix serial controllers detection (#15457)

* Tue May 10 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.10mdk
- draksplash (blino):
  o improved layout (separate window for image previews, notebook to
    split silent/verbose/console settings)
  o update scale factors when the theme name is changed too
  o use default jpeg image path in config file for both silent and
    verbose images
  o force the exact image size when writing a theme
  o write bootsplash v3 configuration files (progress bar still
    missing)
  o allow to modify progress bar and console box by dragging the mouse
  o really get default vga mode
  o shrink preview window on resolution change
  o handle both silent and verbose images
- localedrake (UTUMI Hirosi):
  o add support for iiimf
  o do not install anymore uim-anthy for japanese users

* Wed May  4 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.9mdk
- diskdrake (pixel):
  o fix displaying number of logical extents
  o allow resizing ext3 LV if not mounted
  o allow resizing reiserfs LV even if not mounted
- drakbackup (stew):
  o clarify quota message, optional delete old backups (#15066)
  o optional mail "From" address (#15293)
  o fix automagic addition of /root to backups when not desired
- drakconnect (blino):
  o ask wireless settings before boot protocol selection
  o remove useless warning in install, we never override configuration (#10827)
- draksplash (blino):
  o fix theme creation
  o preview theme in real time, cleanups
  o use default values for scale settings
  o draw a cross inside the text box
- drakTermServ (stew):
  o update for new etherboot
  o predict NBI disk space usage and check
  o catch failed NBI creation (#13902)
  o catch failed dhcpd.conf creation (#13943)
  o misc small bug fixes

* Mon May  2 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.8mdk
- ensure most sub dialogs reuse the icon of their main window
- drakboot: improve layout
- drakconnect: fix USB devices detection for ndiswrapper (blino)
- harddrake: fix SATA & hw RAID detection (detect them pior to detecting PATA)

* Fri Apr 29 2005 Thierry Vignaud <tvignaud@mandriva.com> 10.3-0.7mdk
- drakconnect (blino):
  o don't write /etc/ppp/options anymore, adjust options in peer files
  o display VPI/VCI values in decimal
  o configure pppoe connections in a ppp peer file
- drakroam (blino):
  o do not write blank ESSID
  o exit and warn when no wireless interface is found (#15244)
- drakups: do not detect IR devices as UPSes (#15495)
- XFdrake: if one prefer using "Modes" instead of "Virtual", keep it
  as is (pixel)

* Mon Apr 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.6mdk
- drakconnect (blino):
  o fix WPA key (#15621)
  o allow to disable WPA even if no key is used
  o handle errors in wireless packages installation
- drakroam: fix Signal Quality parsing (blino)

* Thu Apr 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.5mdk
- mandrakesoft is now mandriva

* Thu Apr 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.4mdk
- drakconnect: basic tokenring support

* Thu Apr 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.3mdk
- drakbackup, drakfont, draksplash: switch to gtk+-2.6's new file selector
- drakbackup, drakroam: fix layout
- drakfont: filter file list so that only fonts are displayed

* Wed Apr 20 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.2mdk
- drakconnect (blino):
  o merge wireless steps and move advanced settings in advanced mode (#15501)
  o configure wpa driver in drakconnect, wpa_supplicant init script is dropped
  o fix default wireless mode to be "Managed" instead of "Secondary"
  o really use given encryption key
  o improve ndiswrapper driver configuration (allow to select driver,
    device and many errors handling)
  o fix fallback sysfs if ethtool failled
  o do not write zeroed MAC addresses in iftab, it confuses ifrename
  o do not crash if modprobe fails
  o unload ndiswrapper first so that the newly installed .inf files
    will be read
  o allow to choose the wireless encryption mode between "None", "Open
    WEP", "Restricted WEP" and "WPA Pre-Shared Key"
- drakfirewall: fix automatic net interface detection (blino)
- drakroam: fix SSID listing (blino)
- keyboardrake: update keyboard list for next xorg-x11 (pablo)
- mousedrake (blino):
  o preselect synaptics touchpad if no external mouse is present
  o better detection for touchpad
  o append evdev in modprobe.preload if a touchpad is detected
  o always configure an universal mouse so that USB mices can be hotplugged
  o always set synaptics touchpad as secondary and don't list them in
    mousedrake
- net_applet: increase network check timeout to lower the load (blino)
- XFdrake: suggest 1280x1024 instead of 1280x960 which causes pbs (pixel)

* Fri Apr 15 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.3-0.1mdk
- drakbackup: fix direct-to-tape backup/restore issues (stew, #15293)
- drakconnect (blino):
  o use sysfs as fallback to detect wireless interfaces (eg:
    rt2x00/prism2_*)
  o allow to modify METRIC settings in the wizard
  o fix displaying wifi data in manage interface

* Tue Apr 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-24mdk
- drakconnect: fix connection establishment (rafael)

* Mon Apr 11 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-23mdk
- drakconnect (blino):
  o fix error reporting for ndiswrapper package installation (#15373)
  o handle spaces in ndiswrapper drivers path
- XFdrake (pixel):
  o fix empty ModeLine lines
  o 1152x864 needs more modelines than the poor 1152x864@75Hz builtin
    xorg (#11698)

* Fri Apr  8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-22mdk
- drakconnect: always restart slmodem, even if it was already
  installed (blino)
- harddrake: fix harddrake crash with USB/PCI DSL modems (blino, #15034)

* Thu Apr  7 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-21mdk
- drakconnect (blino):
  o fix support for fix h[cs]f modems
  o create correct /dev/modem && install correct package for HCF modems
- drakroam (blino):
  o don't truncate default gateway (#15247)
  o hide roaming frame by default
- net_applet (blino):
  o really allow users to start connection without having to type the
    root password
  o fix refresh

* Tue Apr  5 2005 Olivier Blin <oblin@mandrakesoft.com> 10.2-20mdk
- mousedrake: really apply specific ALPS touchpad settings (#14510)
- drakconnect:
  o install dkms packages if found
  o support more slmodems
- net_monitor: improve wifi detection
- drakroam:
  o do not crash if no essid is selected (partially fix #15244)
  o hide unavailable features, add close button
- drakboot (Pixel): apply patch from bugzilla #15216, adding support for
  "password=..." and "restricted" at per-entry level (thanks to jarfil)
- misc charset fixes (Pixel, Pablo)

* Mon Apr  4 2005 Olivier Blin <oblin@mandrakesoft.com> 10.2-19mdk
- drakconnect:
  o only switch up wireless devices during detection
  o do not reupload firmware for eagle-usb modems if already done
  o disconnect internet interface before trying to connect
- mousedrake: configure wacom devices with synaptics touchpads too
- printerdrake (Till):
  o Fixed bug #4319: Printer options cannot be set after renaming the
    printer or changing the connection type
  o Fixed bug of PostScript printers with manufacturer-supplied PPD
    cannot be renamed at all
  o Fixed bug of print queue being deleted when renaming fails
  o Fixed bug of printerdrake trying to open a message window when
    non-interactive queue generation fails
  o Fixed pre-definition of $printer->{ARGS}, this bug made printerdrake
    crashing sometimes
- diskdrake (Pixel): add /usr/local and /opt to suggestions_mntpoints

* Fri Apr  1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-18mdk
- drakconnect: enable ethernet interfaces during detection, thus
  fixing Ralink wireless detection (blino)
- harddrake: fix crash
- mousedrake: configure wacom devices with synaptics touchpads too
  (blino)

* Thu Mar 31 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-17mdk
- drakconnect: do not use ifplugd for wireless cards (and don't allow
  to enable it) (blino)
- drakfirewall: make it usable (pixel, #15116)
- drakups: do not detect USB joystics as UPSes (#15131)
- harddrake:
  o do not try to install packages that are not availlable (#15106)
  o do no try to install too generic hw packages (#15101)
  o do not detect USB joystics as UPSes (#15102)
- localedrake: do not try to logout wm (pixel, #15087)

* Wed Mar 30 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-16mdk
- drakconnect (blino):
  o fix speedtouch microcode url (#15095)
  o fix sagem modem config
  o try to use the country specific CMV for sagem modems
- harddrake:
  o list hardware RAID controllers in their own section (so that they do not
    appear in the unknown one)
  o ensure we detect all known SATA controllers and all known sound cards
  o fix optical mice detection (#15082)
- net_applet: really load network configuration at start (blino)
- printerdrake: do not mis-detect some USB keyboards as printers (till)

* Tue Mar 29 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-15mdk
- drakconnect (blino):
  o fix eaglectrl path (#15033)
  o detect more Bewan devices
  o fix support for sagem modems not using pppoa
- harddrake: add an option in harddrake to probe imm/ppa (pixel,
  #12560)
- localedrake:
  o fix russian size (pixel, #14988)
  o "unicode" checkbox is visible only in expert mode
- fix tools' crash when drakconf is not installing (#13392)

* Fri Mar 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-14mdk
- drakroam:
  o do not crash (blino)
  o fix translations
- net_applet (blino):
  o ask for root password if needed when setting a new profile
  o force refresh if asked by user from the menu

* Thu Mar 24 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-13mdk
- banners: make banner be RTL aware (aka follow language direction and
  display itself mirrored for RTL languages) (#11910)
- diskdrake (pixel):
  o ensure we use/propose a free md when creating a new one
  o after "mdadm --assemble" there can be some inactivate mds busying
    devices, stopping them
- drakconnect (blino):
  o make Bewan PCI modems work again
  o add support for modems using pppoatm (e.g. SpeedTouch) and ISP
    using RFC 1483 Routed VC MUX (e.g. Free Degroupe)

* Wed Mar 23 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-12mdk
- XFdrake: fix probing on neomagic (pixel)
- harddrake: package rpmsrate so that installing hw packages works

* Tue Mar 22 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-11mdk
- drakconnect: do not list wifi* interfaces (blino, #14523)
- harddrake2: install packages needed for hw support
- keyboarddrake: run dmidecode only once we acquired root capabilities
  (pixel, #13619)

* Mon Mar 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-10mdk
- drakboot: enhance yaboot macos entry handling (cjw, #14642)
- drakconnect: disable network hotplug for the via-velocity driver
  (#14763)
- drakups:
  o fix driver for APC UPSes for auto USB probing
  o set extra parameters if present
- net_applet (blino):
  o force start from menu (#14858)
  o don't modify autostart config file value if started with --force
- XFdrake (blino):
  o use new recommended settings for synaptics-0.14.0
  o use specific Synaptics settings for ALPS devices (#14512)

* Fri Mar 18 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-9mdk
- drakTermServ: detect all NIC that're know to drakconnect
- drakups: fix device path when manually adding an UPS (#12290)
- logdrake: fix explanation mode only displaying last line (#14368)

* Fri Mar 18 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-8mdk
- diskdrake (pixel):
  o fix remove on LVM in newt interface (#14254)
  o remove the lvm if destroying it succeeds (#14249)
- drakboot: handle grub file names that do not correspond to a mounted
  filesystem (pixel, #14410)
- drakconnect: remove other mac address occurrences in iftab (blino)
- drakTermServ (stew):
  o lose the "system" calls
  o use pxe.include now
- drakperm:
  o do not ignore groups with empty password field (#14777)
  o better looking GUI: span groups & users on several columns (up to 3)
- localedrake: always warn the user to logout, even if we can't help
  (pixel, #14403)

* Thu Mar 17 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-7mdk
- drakconnect:
  o fix localized sorting (#14634)
  o manage interface (blino):
    * allow to modify non configured devices
    * really detect wireless devices
- harddrake: fix adsl devices detection (blino, #14747)
- logdrake: fix save dialog (blino)
- printerdrake: fix queue name auto-generation, it sometimes hanged in
  an endless loop (till, #14426, #14525, #14563)
- XFdrake (pixel): 
  o instead of having xorg.conf symlinked to XF86Config, do the
    contrary
  o use monitor-probe-using-X
  o remove the "ratio" combo and have the resolutions from current
    ratio by default and allow "Other" to see all others

* Wed Mar 16 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-6mdk
- drakboot: fix dropping line macos in yaboot.conf (pixel, #14642)
- drakconnect (blino):
  o allow to display multiple instances of the similar adsl devices
  o fix unicorn packages installation
- interactive layer: fix some nasty bug
- localekdrake:
  o preserve utf-8 setting (#12308)
  o properly set UTF-8 for HAL mount options if needed (#13833)
  o enable to enable/disable utf-8
  o install scim-input-pad when switching IM for japanese
  o ensure there's never a "previous" button on first step (even when
    stepping back)
- printerdrake: fix setting of default printer on daemon-less CUPS
  client (till, #13940)
- XFdrake: probe DDC, then fallbacks on DMI

* Tue Mar 15 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-5mdk
- diskdrake: add support for XBox (stew, pixel)
- drakboot: don't die when we have no entries in grub menu.lst (pixel)
- drakconnect (blino):
  o allow not to set gateway device (#14633)
  o fix and force CMVs symlink creation for eagle-usb
- drakfirewall: allow connections from local net to firewall (blino,
  #14586)
- XFdrake (pixel):
  o for 1400x1050, put the resolutions (60 and 75Hz are already in
    extramodes, but they are GTF modelines, we can overrule them) 
  o don't add modelines for 1280x1024, they are already in standard
    vesamodes (builtin Xorg)
  o when adding gtf modelines, sort them with high frequencies first
    (since Xorg prefer the first matching modeline (!))

* Thu Mar 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-4mdk
- harddrake2: enable to upload the hardware list
- XFdrake:
  o fix crash when called from hwdb-clients
  o skip the 4/3 detailed_timings otherwise they conflict with the
    Xorg builtin vesamodes (pixel)
- drakconnect (blino):
  o use a higher timeout for modem dialing (#10814)
  o make wpa_supplicant.conf readable by root only

* Wed Mar  9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-3mdk
- drakconnect:
  o workaround buggy sk98lin kernel driver (#14163)
  o write selected dhcp client in ifcfg files (blino)
- draksec: fix setting null values (#14364)

* Tue Mar  8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-2mdk
- drakconnect (oblin):
  o scan hidden ssid
  o manage interface:
    * handle more DHCP options
    * move DHCP settings in a notebook page
- XFdrake: choose a 4/3 resolution by default (pixel)
- XBox support (stew)

* Mon Mar  7 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-1mdk
- diskdrake: allow live resizing of reiserfs on lvm (pixel)
- drakboot: fix detecting yaboot (pixel)
- drakconnet (blino):
  o configure CMV for sagem modems
  o delete gateway:
    * if reconfiguring the gateway interface to dhcp
    * if gateway device is invalid (#11761)
    * if needed when configuring DSL devices (#13978)
  o manage interface:
    * detect all ethernet interfaces
    * allow to modify DHCP settings
- localedrake: let's be able to setup gcin (funda wang)
- printerdrake: detect if the user has manually edited
  /etc/cups/client.conf (till)
- XFdrake: still improving monitors support (pixel)

* Wed Mar  2 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.35mdk
- drakboot (pixel):
  o fix corrupted "Precise RAM size" field (#13874)
  o handle boot-as and master-boot (#13846)
- drakconnect: workaround buggy kernel (#12609)
- net_applet: refresh every second, and do not reread network conf on
  each refresh (blino, #11467)
- printerdrake (till):
  o add possibility to add a remote LPD printer in beginner's mode (#13734)
  o fix incorrect display of accentuated characters in PPD options
    also for boolean options (#13928)
  o let detected LPD printer model be shown in a pop-up window and not
    in the add printer wizard
  o let detected socket printer model be shown if the IP/port was
    manually entered
  o fix selection of test pages
  o ensure that recommended driver is preselected in expert mode, even
    if the recommended driver is a manufacturer-supplied PPD with
    language tag
- ugtk2 layer: misc fixes
- XFdrake (pixel):
  o add a ratio choice, and restrict the resolutions to this choice
  o add 1280x600 for VAIO PCG-C1M (#5192)
  o fix section with only comments
  o "keyboard" InputDevice can also be called "kbd"
  o do not only add modelines not defined in xorg, otherwise xorg will
    prefer the modelines we provide (eg: it will use 1024x768@50
    whereas it could have used 1024x768@60)
- configure iocharset and codepage option for hal (pixel, #13833)

* Tue Mar  1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.34mdk
- diskdrake: allow to choose encryption algorithm (blino, #13472)
- drakhelp, drakbug: use www-browser (daouda)
- printerdrake: fix "add printer" wizard chen embedded in the MCC (#13929)
- XFdrake: further monitor fixes (pixel)

* Tue Mar  1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.33mdk
- drakconnect: enhance "wrong network mask format" message (blino, #10712)
- drakTermServ: sort list of nbis (stew, #13998)
- keyboardrake: set compose key as "rwin" if not set (pablo)
- XFdrake (pixel):
  o replaced by use monitor-edid instead of ddcxinfos
  o add many resolutions
  o set the "Monitor preferred modeline" from EDID in xorg.conf
  o handle lower than 640 resolutions
  o set better resolution

* Mon Feb 28 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.32mdk
- drakboot: make sure /boot/grub/install.sh is 755 (pixel)
- drakconnect (blino):
  o allow to alter DHCP timeout (# 11435)
  o add support for PEERDNS, PEERYP and PEERNTPD (#9982)
  o workaround broken ethtool from hostap drivers (#13979)
  o handle USERCTL settings for modems too
- net_applet (blino):
  o add menu entry (#11898)
  o netprofile support (#12094)
  o allow to select watched interface
- printerdrake: let country and not language decide about default
  paper size (till)

* Fri Feb 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.31mdk
- drakconnect (blino):
  o allow users to start the connection (#12837)
  o pre-detect modem device
- keyboarddrake: new default keyboard is "us" for Chinese (pablo)
- printerdrake: driver "oki4w" was renamed to "oki4drv" (till)

* Fri Feb 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.30mdk
- drakconnect :allow to select "unlisted" provider in adsl provider
  list (blino)
- drakfont: fix uninstalling fonts (#9324)
- drakproxy: do not update kde config file if kde isn't installed (blino)

* Thu Feb 24 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.29mdk
- drakconnect:
  o add norwegian ADSL providers (Eskild Hustvedt)
  o remove all non-digit characters in phone number (blino, #10813)
  o minimal WPA support (blino)
- drakxtv: scan TV channels for TV cards that do not require any
  driver configuration (#13865)
- drakups:
  o fix crash due to latest perl-Libconf 
  o fix reading UPS db
- net_applet: fix name of mcc tool (blino & me, #13896)
- printerdrake:
  o enable to alter options of a not set up non-Foomatic queu
  o fix accentuated characters in PPDs not correctly reproduced in the
   printer options dialog
- GUI layers:
  o fix displaying "Advanced" instead of "Basic" in advanced_state by
    default (pixel, #13944)
  o force to open file selector as a modal window (rafael, #13942)

* Tue Feb 22 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.28mdk
- drakfont: allow to select multiple files (blino)
- localedrake:
  o adapt to new uim splitting (UTUMI Hirosi)
  o adapt to new scim packages splitting (Funda Wang)
  o fix koi8-u font size (Funda Wang, #13809)
- keyboardrake: handle lb locale (pablo)
- printerdrake: if a printer is set up with HPLIP and has still an old
  HPOJ configuration, it will be automatically removed (till)
- scannerdrake (till):
  o display unsupported scanners as such in the scanners list (#12049)
  o load kernel modules (and make them loaded on boot) if specified in
    ScannerDB
  o tell user if his scanner requires manual editing of config files
    to work (the appropriate scanner models are marked in ScannerDB)

* Wed Feb 16 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.27mdk
- drakboot: make it more robust (pixel)
- drakproxy: set up KDE too (blino)
- harddrake: list usb mice that are not listed in usbtable (#13575)
- interactive layer: use the new gtk+ file chooser (pixel)
- keyboarddrake: make keyboard layout more user friendly
- printerdrake (till):
  o force only ASCII letters, numbers, and underscores being used in
    print queue names
  o wait for CUPS being ready before querying the printer states for
    the printer list in the main window
- reduce drakxtools-backend's requires (pixel)

* Mon Feb 14 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.26mdk
- draksound, service_harddrake: handle more sound cards
- localedrake: alter font settings for zh_CN and zh_TW (funda wang)
- printerdrake (till):
  o allow HPLIP setup also when setting up the print queue manually
  o fix undetection of network printers without DNS hostname entry
  o longer timeouts for "ping", as some network printers were missed
- service_harddrake: handle removal of cards (#7049)

* Fri Feb 11 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.25mdk
- harddrake service: fix removing PCMCIA controller
- hardware support: detect & load modules for RNG (crypto hw)

* Thu Feb 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.24mdk
- drakxtv:
  o only offer to configure tv cards that (may) need to be configured
  o do not complain about no tv cards when there're but they do not
    require any configuration beyond loading proper module (#7443,
    #11270, ...)
- harddrake:
  o detect more webcams
  o do not detect speakers as keyboards
- printerdrake: misc fixes (till)

* Thu Feb 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.23mdk
- printerdrake (till):
  o add automatic setup of HP printers with HPLIP
  o fixes for embedded mode
- drakconnect:
  o add support for ACP (Mwave) modems
  o fix stepping back from lan interface step with ndiswrapper
  o fix ndiswrapper installing
- interactive layer: fix selecting a file (eg: ndiswrapper's drivers)
- hardware support:
  o detect & load modules for:
    * toshiba driver for some laptops
    * some multiport serial cards
    * DVB
    * joysticks
  o add support for multiple different AGP controllers
  o handle a few more special serial port cards

* Wed Feb  9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.22mdk
- localedrake: switch arabic font for KDE from "Roya" to "Terafik"
  that supports ascii glyphs (pablo)
- ugtk2: API changes for rpmdrake (rafael)

* Wed Feb  9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.21mdk
- drakboot: fix ACPI checkbox (pixel, #13335)
- drakkeyboard: synchronized keyboards with X11 (pablo)
- harddrake service: prevent adding spurious empty lines at end of
  /etc/hotplub/blacklist on stop
- printerdrake: updates

* Tue Feb  8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.20mdk
- drakconnect (blino):
  o add basic ndiswrapper support
  o select manual adsl connection type if the network interface was
    static
  o add missing protocol for Free and Telecom Italia in ISB DB
- drakproxy: support gnome proxy (blino)
- printerdrake (till):
  o adapt to new printer drivers packages
  o limit automatically generated print queue names to 12 characters
    and warn user if he manually enters longer names (which will make
    the printer unaccessible for some Windows clients) (#12674).
- allow upper case letters in users' real names (rafael)
- net_applet: automatically start in fluxbox and XFce4 too (blino)

* Fri Feb  4 2005 Olivier Blin <blino@mandrake.org> 10.2-0.19mdk
- drakconnect: add bpalogin support for cable connections

* Thu Feb  3 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.18mdk
- drakconnect: fix CAPI kernel drivers installation (blino)
- drakfirewall: port 445 is used for Samba (w/o NetBios) (blino)

* Fri Jan 28 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.17mdk
- diskdrake: fix autocheck flag in /etc/fstab for / (pixel, #13283)
- drakbackup: Wizard, System Backup configuration problems (stew, #13235)
- harddrake service:
  o fix PCMCIA autoconfig
  o make --force force harddrake to reconfigure everything

* Wed Jan 26 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.16mdk
- diskdrake: use the new option auto=dev instead of auto=yes when
  configuring mdadm (pixel)
- drakTermServ (stew):
  o drop quasi-pxe setup in dhcp.conf as we can use real pxe now
  o portmap check, dhcpd.conf.pxe.include (#13138 & #13139)
- package installation: use the new --gui option to urpmi for the
  drakxtools to ask for media change (rafael)
- mygtk2 related fixes (pixel)

* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.15mdk
- fix mygtk2 for drakloop (pixel)
- printerdrake: fix main loop (daouda)

* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.14mdk
- drakconnect: update ISP db (baud)
- harddrake: fix pcmcia controllers detection

* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.13mdk
- keyboarddrake: minimal XkbModel support (pixel)
- diskdrake (pixel):
  o don't write /etc/mdadm.conf when no raid
  o use option "auto=yes" in mdadm.conf to ensure mdadm will create
    /dev/mdX devices when needed
- printerdrake:
  o fix subdialogs when embedded in mcc
  o fix banner's title by initializing l10n domains before ugtk2

* Wed Jan 19 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.12mdk
- diskdrake: progress bar when formatting ext3 (pixel)
- drakauth: fix switching back nsswitch.conf to local authentication
  (pixel, #13024)
- drakbackup: custom cron configuration (stew, #13056)
- drakboot: do not create a maping table when uneeded (#12307)
- drakconnect: fix bug introduced by mygtk2 (pixel)
- drakfirewall: fix ethernet card detection (pixel, #12996)
- harddrake2: fix crash on opening help windows
- interactive layer: separate alignement for basic and advanced
  entries (pixel)
- XFdrake (pixel):
  o when reading an existing X config file, ensure it is not too bad,
    otherwise propose to start from scratch (#8548)
  o set up framebuffer in standalone mode too
  o for fbdev, advise to reboot instead of restarting X server

* Wed Jan 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.11mdk
- harddrake2: display the menubar and the banner when embedded

* Wed Jan 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.10mdk
- drakbackup, drakTermServ: silent install of terminal-server (urpmi
  --X is deprecated) (rafael)
- localedrake (Funda Wang):
  o install scim-chewing for zh locale
  o fix font setting for zh_CN
- printerdrake: show banner when embedded
- write in lilo.conf the global root= (pixel, #12312)

* Thu Jan  6 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.9mdk
- diskdrake: display a progress bar while formating (pixel)
- localedrake: fix UIM config b/c of new UIM-0.4.5

* Wed Jan  5 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.8mdk
- drakauth: "Administrator (root)" is more user-friendly than "root"
- drakbackup (stew):
  o directories with spaces Mandrakeclub
  o perms on tarballs too (#12861)
- drakconnect: update ADSL ISPs list (baud)
- drakfirewall: "Samba server" is better named "Windows Files Sharing
  (SMB)" (pixel, #10585)
- draksound, harddrake service: handle a couple of new ALSA drivers
- handle handle spaces in SMB username (pixel)
- keyboardrake: handle various new keyboard layouts (pablo)
- localedrake: do not localize console in japanese (Funda Wang)
- remove codepage= option for fs types which don't handle it (eg:
  ntfs) (pixel)

* Thu Dec 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.7mdk
- detect more floppies when dmidecode is supported (pixel)
- drakconnect:
  o do not crash when configuring a modem
  o fix NETMASK autofilling
- localedrake: do not localize console when using jp (Funda Wang)
- XFdrake: make "XFdrake --auto" fully automatic (pixel)

* Wed Dec 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.6mdk
- handle more PCMCIA/CardBus cards
- do not try to load floppy module if there's no floppy drive (#8211)
- drakTermServ: misc GUI enhancements (pixel, stew)
- harddrake service: configure PCMCIA host controller if needed
- new package drakx-finish-install (pixel)
- new mygtk2 layer

* Fri Nov 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.5mdk
- diskdrake: handle common geometry XXX/240/63 is quite common thus
  fixing yet another infamous "XP doesn't boot" (though it should
  already be fixed via EDD) (pixel)
- XFdrake: don't write X config when there is none (otherwise we write
  a partial and broken X config)

* Thu Nov 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.4mdk
- diskdrake: more intelligent sort of fstab to handle loopback files
  or bind directory (pixel, bug anthil #1198)
- drakboot: detect on lilo on floppy (pixel, #12213)
- drakconnect: in "ADSL provider" step, reset the protocol on provider
  switch
- draksound: handle new sound drivers from kernel-tmb and kernel-multimedia
- drakupdate_fstab: fix /dev//dev/foobar in /etc/fstab (pixel, #12224)
- harddrake service:
  o fix setting scsi and usb probell in live CD (thus fixing
    mousedrake --auto with USB mice on live CD)
  o do not die if sound never was configured (aka on first boot from a
    live CD)

* Wed Nov 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.3mdk
- bootloader: let be kernel-i686-up-64GB aware (pixel)
- diskdrake: LVM/DM/MD fixes (pixel)
- drakupdate_fstab: use the right encoding when creating an entry for
  /etc/fstab (pixel, #12387)
- PPC fixes (Christiaan Welvaart, pixel)
- service_harddrake: on startup, redo ethX aliases

* Fri Nov 12 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 10.2-0.2mdk
- Rebuild for new perl
- drakauth (pixel):
  o correctly restore pam.d/system-auth when setting "local" authentication 
  o no use_first_pass on "auth sufficient pam_unix.so" line for pam_castella
- localedrake: switch zh_CN to GBK (Funda Wang)
- logdrake: speed it up

* Wed Nov 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.1mdk
- drakauth: add SmartCard authentication (pixel)
- drakbackup: advise user about anacron (stew, anthill #1134)
- drakconnect:
  o add support for Philips Semiconductors DSL card (blino)
  o security fix: let ifcfg files be readable only by root when a WEP
    key is set (blino, #12177)
  o update/add ADSL ISP entries (baud)
- drakTermServ (stew):
  o create cfg dir if needed
  o use xorg.conf
  o touch /etc/dhcpd.conf.etherboot.kernel if missing
  o ignore vmnet for broadcast address
  o start reworking PXE support.
- harddrake2: display more information about memory
- localedrake: fix configuring fcitx IM (Funda Wang)
- XFdrake: do not detect smartcards (pixel)

* Thu Oct 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-27mdk
- bootloader: run grub chrooted (gwenole)
- diskdrake:
  o show older partition types (eg: ntfs) on x86_64 (gwenole)
  o newly created raids must have a fs_type (pixel)
- drakconnect:
  o add support for freebox v4 ADSL modem with USB link
  o show correct strings for freebox and n9box ADSL modems
- drakups: fix again MGE USB UPSes

* Tue Oct 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-26mdk
- bootloader-config: in grub menu.lst, keep previous "serial ..." and
  "terminal ..." lines (pixel, #12054)
- drakconnect:
  o fix crash in delete wizard
  o workaround more buggy drivers that returns a bogus driver name for
    the GDRVINFO command of the ETHTOOL ioctl

* Mon Oct 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-25mdk
- drakconnect: workaround buggy prism2_usb that returns a bogus driver
  name for the GDRVINFO command of the ETHTOOL ioctl

* Mon Oct 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-24mdk
- drakconnect (blino):
  o delete wizard: remove /etc/sysconfig/network-scripts/ethX files
  o ADSL configuration:
    * remove /etc/sysconfig/network-scripts/ethX files that may have
      been created by sagem scripts
    * don't write ifcfg-ppp0 for static/dhcp connections

* Fri Oct  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-23mdk
- drakconnect:
  o fix encapsulation for chinese ISPs (Funda Wang, #10965)
  o fix H[CS]F modems configuration (adapt to new kernel packages
    names)
  o start slmodemd when installing it (thus preventing the average
    user to have to restart his machine in order to get a working
    connection)
  o try /dev/ttyS14 too for serial modems (ie internal PCI modems that
    don't need any driver but export a serial port instead)

* Fri Oct  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-22mdk
- bootloader-config: on a recent kernel, remove any existing devfs=
  kernel option in order to enable udev (pixel)
- drakconnect: add chinese ISPs (Funda Wang, #10965)
- XFdrake: fix parsing fully commented Section (pixel)

* Wed Oct  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-21mdk
- bootloader-config: fix installing kernel-2.6.8.1-12.1mdk (pixel)
- drakups: fix brown paper bug in USB detection

* Tue Oct  5 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-20mdk
- drakups:
  o fix port for MGE's USB UPSes
  o fix drivers for MGE UPSes
  o fix installing nut
  o add support for "American Power Conversion" UPSes
  o restart upsd daemon once nut config is written
  o write config in pure wizard mode
  o when manual adding an UPS:
   * fix reading driver DB
   * fix reading driver from the list
- diskdrake: do not fail with c0d0p* devices (pixel)
- drakconnect: applying changes can be quite time expensive,
  especially with ppp and wifi connections thus let's show a "wait"
  message
- drakfont: fix closing import dialog (#11052)

* Tue Oct  5 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-19mdk
- drakconnect: 
  o ADSL DB (baud):
    * add a few new ADSL ISPs
    * fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
  o manage interface (blino:
    * recompute NETWORK and BROADCAST fiels
    * use both type and device name in non-ethernet interfaces list
    * do not crash if BOOTPROTO is empty, use 'none' by default (#11899)

* Mon Oct  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-18mdk
- drakconnect: do not lose GATEWAYDEV if it is a non wireless one and
  a static wireless card is configured (and vice versa) (blino)

* Mon Oct  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-17mdk
- 64-bit fixes (gwenole)
- drakconnect: write wlan-ng config files for prism2 drivers (blino)
- harddrake service: 
  o do not disable glx when switching from nvidia driver to nv
    (indirect support, #11285)
  o do not fail when hw db is corrupted

* Mon Oct  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-16mdk
- drakconnect (blino):
  o only write TYPE field in ifcfg files for xDSL connection
  o do not lose ONBOOT setting for manual/DHCP DSL connections
  o fix the "IP %s address is usually reserved" warning
  o sagem modems:
    * fix again DHCP/static connections with sagem
    * write static IP in eagle-usb.conf if needed
    * load specific modules/programs before config is written
    * do not reset IP address when configuring
    * automatically guess gateway for static connections

* Fri Oct  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-15mdk
- fix serial UPS detection

* Fri Oct  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-14mdk
- mousedrake, harddrake service: do not crash with touchpads (blino)
- harddrake service: on stop, blacklist snd-usb-audio (#8004)

* Fri Oct  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-13mdk
- diskdrake: don't die when device-mapper is missing (eg on 2.4
  kernel) (pixel, #11834)
- drakconnect : call the scripts in
  /etc/sysconfig/network-scripts/hostname.d like the network scripts
  are doing when changing the hostname (fredl)
- drakups:
  o add --wizard option in order to directly run the wizard
  o do not show banner when embedded
- harddrake:
  o list tablets with mice
  o fix UPS devices listed in both "UPS" and "unknown" classes
  o provide more data on UPS
- localedrake:
  o set KDE in m17n emvironment if needed
  o split its menu entry in two (one for user config, one for system
    embedded in mcc)

* Thu Sep 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-12mdk
- disable the new gtk smart search which display an entry box (pixel)
- preload nvram on laptops
- print translated usage message (#5657)
- bootloader-config, drakboot: add raid-extra-boot=mbr when installing
  on mdX (pixel, #11699)
- diskdrake (pixel):
  o fix LVM2 support
  o fix "Illegal division by zero" when installing lilo (#11738)
  o skip unopenable devices when looking for device geometry
- drakperm: list users rather than groups when requested for (anthill #1161)
- drakroam: specify device to iwconfig when applying settings (blino,
  #11279)
- localedrake:
  o fix KDE font names to match currently shiped Xfs font names (pablo)
  o fix setting fonts at install time
- drakconnect (blino):
  o all linmodems (including Hsf and Hcf ones) are now supported with
    2.6 kernels
  o ask to connect for modem/isdn connections again
  o better default connection detection
  o check if IP address is already used for static interfaces
  o handle madwifi (fredl)
  o try to detect default connection in adsl > isdn > modem > ethernet
    order
- drakups: really fix refreshing UPS list when adding a new UPS though
  the add wizard
- harddrake: list all mice and keyboards (thus lowering unknown
  hardware in hwdb-clients)
- mousedrake, XFdrake: use input/mice instead of psaux for synaptics
  touchpads with 2.6 kernels (blino, #11771)
- net_applet (blino):
  o do not destroy/re-create menu if state hasn't changed, or else the
    menu may disappear without any reason
  o fix again running processes detection
- net_monitor (blino):
  o fix start/stop
  o check every 5 seconds (instead of 20) for new or disconnected
    interfaces (#11780)
- printerdrake: misc fixes (pixel)
- XFdrake: use driver "keyboard" instead of "Keyboard" (fix Xorg-6.8
  support) (pixel)

* Fri Sep 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-11mdk
- handle aes-i586 instead of aes (pixel, #11588)
- bootloader-config: fix typos in usage (pixel)
- diskdrake (pixel):
  o get geometry from EDD
  o don't add /dev/pts line in fstab anymore (already done in initrd
    and by udev)
  o log more explanations
  o remove every PVs when destroying a VG (#11579)
  o handle renamed devices (eg: hde->hda or hda->sda)
  o silently ignore encrypted filesystems with no encrypt_key
- drakconnect (blino):
  o zeroconf:
    * really enable zeroconf if zeroconf is requested
    * write blank zeroconf hostname if zeroconf is disabled
    * fix disabling zeroconf
    * do not disable not installed (prevent warnings in console)
    * zcip isn't a service,
    * stop tmdns service if zeroconf is disabled,
  o move "Start at boot" step for lan-like adsl/cable connections
  o do not disable ifplugd support for wireless cards
  o do not let speedtouch-start launch connection
  o fix installing kernel packages for winmodems
  o fix /dev/modem symlink on ttySL0 (#8947 again)
  o use avmadsl option for capi cards to use settings generated by
    drdsl
  o PPPoA: fix reseting vpi and vci if vpi equals zero
  o ADSL provider DB: rename "Télé2 128k " as "Télé2"
- drakupdate_fstab: allow SYNC=no option in /etc/sysconfig/dynamic
  (blino)
- drakups:
  o refresh UPS list when adding a new UPS though the add wizard
  o fix automatically detect/add an UPS
  o default to automatic detection
- localedrake:
  o add support for SKIM IM
  o install x-unikey when switching to vietnamese
  o always use "Sazanami Gothic" font in japanese
- mousedrake: prevent a broken X configuration to break mouse
  configuration (pixel)
- net_monitor: remove connection time timer if connection fails (#11590)
- XFdrake: allow ignoring X config file when it contains errors (pixel)

* Fri Sep 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-10mdk
- drakbackup: use radio buttons in media selection (wildman)
- drakconnect (blino):
  o better looking description list in drivers list (me)
  o remove the "speedtch off" alias (fix mdk10.0 upgrade)
  o don't write aliases for pcmcia cards, thus fixing the pcmcia
    service startup
  o stop capi service before new config is written so that capiinit
    can unload the old driver
  o make isdn over capi work again
  o do not ask which driver to use when only capidrv is supported
  o install unicorn-kernel package for Bewan modems if available
  o add "Unlisted - edit manually" entry in modem provider list (#11549)
- harddrake service (blino):
  o probe firewire and pcmcia network devices too
  o update iftab when new ethernet devices are detected

* Wed Sep 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-9mdk
- drakconnect:
  o don't create empty pppoe.conf if the package isn't installed
  o load modules and run start programs
- bootloader-config: fix crash when when removing some break entries (pixel)
- keyboarddrake, XFdrake: better turkish support (pablo)

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-8mdk
- localedrake: offer to select IM if language has one preselected
  (eg: CJKV, else option is only availlable in advanced mode)
- harddrake service: adapt to new nvidia driver location

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-7mdk
- add man pages for drakbackup and drakconnect
- drakauth: misc fixes (stew)
- drakconnect:
  o misc cleanups (blino)
  o setup slmodem (blino)
  o workaround buggy eth1394 that returns a bogus driver name for the
    GDRVINFO command of the ETHTOOL ioctl (so that we set a
    sensible name for firewire network adapters in GUIes)

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-6mdk
- drakconnect: install firmware if needed for CAPI devices (blino)
- harddrake:
  o detect not yet supported ethernet cards too
  o detect more bridges and the like
- scannerdrake: try harder not to detect non scanner USB devices (#7057)

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-5mdk
- drakbackup:
  o fix crashes in CD/Tape setup (stew)
  o fix wizard's UI behavior (Nicolas Adenis-Lamarre)
- drakconnect (blino):
  o handle CAPI drivers
  o add support for xDSL over CAPI (eg: AVM cards)
  o fix pppoe configuration
- draksec: move help from tooltips into separate page (#9894)
- scannerdrake: fix "dynamic()" in scannerdrake to do not contain
  anything interactive (till)

* Mon Sep 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-4mdk
- drakbug_report: fix crash
- XFdrake: adapt to new proprietary package naming (pixel)

* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-3mdk
- net_applet (blino):
  o fix crash on connect/disconnect (#11389)
  o refresh status on every 5 second

* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-2mdk
- description
  o split drakxtools description in drakxtools and drakxtools-newt
  o describe missing tools
  o sanitize tool names
- drakconnect: do not ask twice if network should be started on boot
  for ADSL modem (blino)
- keyboarddrake, XFdrake (pablo):
  o fix compose:rwin
  o fix some keyboard layout on xorg in order to match to match x.org

* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-1mdk
- fix console UIs (pixel)
- drakboot: do not kill the whole bootsplash wizard when embedded (blino)
- drakconnect: fix cnx status in "internet" interface (blino)
- harddrake service: autoconfigure mice if needed
- localedrake: fix ENC setting when IM is disabled

* Thu Sep  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.27mdk
- localedrake:
  o really reset IM on language switch
  o set ENC and locale specific stuff even when IM is disabled
  o fix thai IM

* Thu Sep  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.26mdk
- bootloader-config: handle raid-extra-boot (pixel, #11350)
- drakboot: handles more cases where lilo wants to assign a new Volume
  ID (pixel)
- localedrake:
  o install miniChinput when configuring chinput
  o fix miniChinput configuration for Singapore 
  o handle languages with default IM w/o any configured IM (aka keep
    "none" user choice) but default to per locale default IM when
    switching between locales
  o fix configuration of IM when altering depending on encoding (eg:
    miniChinput)

* Thu Sep  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.25mdk
- bootloader-config (pixel):
  o fix regexp to work with "linux-2.6.8.1-10mdk"
  o handle lilo "static-bios-codes" option
  o prevent LILO from reading from tty
  o only expand symlinks when renaming "linux" into the kernel version
    based label (eg: "2681-10")
- drakboot:
  o ensure ~/.dmrc is owned by user else GDM complains about
  o handles the lilo case where it wants to assign a new Volume ID (pixel)
- drakconnect: 
  o ignore rpm's backups (#10816)
  o always update iftab when config is written (blino)
  o detect slamr, slusb and ltmodem modules for modems (fredl)
- drakupdate_fstab: handle options in any order (fix harddrake service
  regarding amove media as well as regarding cdroms, burners and dvds)
- harddrake service: log which tools are runned

* Wed Sep  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.24mdk
- drakboot (blino, #11282):
  o update splash when removed too
  o use Mandrakelinux theme by default
  o don't give theme name to remove-theme
- drakconnect: fix empty "manage interface" (blino, #11287)
- drakperm: fix freeze (#11274)
- harddrake service: fix X11 autoconfiguration

* Tue Sep  7 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.23mdk
- bootloader-config: take care of symlink based bootloader entries (pixel)
- diskdrake (pixel):
  o ignore first line of /proc/swaps
  o partially handle /udev/xxx device names in fstab
  o ignore rootfs "device"
  o don't warn for loopback files
- drakbug: fix --report and --incident (daouda)
- drakconnect (blino):
  o "delete network interface" wizard:
    * use long device names
    * be aware of internet service -> regular ifcfg files
  o misc fixes (especially regarding sagem ADSL modems)
- harddrake service: really autoconf TV cards
- more synaptics fixes (blino)
- use "users" options for removable devices (so that users can unmount
  them if the devices were mounted by root) (blino)

* Mon Sep  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.22mdk
- diskdrake (pixel):
  o detect linux software raid magic
  o detect LVM2
  o misc fixes
  o fix displaying "mdmd0" instead of "md0"
- drakboot: ensure we do not enable autologin w/o any user
- drakconnect (blino):
  o fix detection in 2.4 kernel for net devices with high traffic
  o only complain about kernel-2.4.x for h[cs]f modems
  o fix kppp config reread
  o read kppp config when user dir is configured
  o use /dev/modem if no modem was detected (do not crash when we edit
    a connection whose modem is unplugged)
- harddrake service: everything should be done automagically now
- localedrake:
  o list specific packages to install for japanese when using SCIM
  o install scim-m17n as well for generic SCIM configuration (more
    input methods)
  o log more explanations
  o set QT_IM_MODULE too since it's needed by Qt-immodule-20040819
    (UTUMI Hirosi)
  o disable translations on console for kn, pa, ug too (pablo)

* Mon Sep  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.21mdk
- misc GUI enhancements
- diskdrake: be more failsafe with half broken existing raids (pixel)
- drakconnect: fix crashes (#11100)
- harddrake service: really add module for storage controllers, AGP
  controllers, TV cards
- mousedrake, XFdrake: fix synaptics configuration (blino)

* Fri Sep  3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.20mdk
- detect more devices
- misc GUI cleanups
- netconnect: support DHCP and static for sagem devices (blino)

* Thu Sep  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.19mdk
- add icons to most tools' windows
- drakboot: do not crash if default autologin or default desktop
  doesn't exist (blino)
- drakupdate_fstab: do not use supermount by default for removable
  devices (blino)
- localedrake:
  o enable SCIM for Amharic language
  o fix missing banner title
- net_applet: tell when internet connection is not configured (blino)
- printerdrake: misc enhancements (till)
- service_harddrake: add modules to conf files if a tv card is detected (blino)

* Tue Aug 31 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.18mdk
- drakclock (warly):
  o check if the ntpdate command succeed or not
  o do not perform a date command when we use ntpdate
  o fix hour setting though mouse on the clock
  o make the hour tick shorter
  o repaint the calendar (especially when the day changed)
- drakconnect:
  o fix crashes (#11100)
  o misc fixes (blino)
- drakfirewall: use the loc zone in sharewall policy only if the loc
  interface exists (florin, #10539)
- harddrake2:
  o add UPS class (fredl)
  o be more enable friendly regarding themes (eg font size properly
    adapt to theme changes)
- net_applet: make it start again

* Mon Aug 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.17mdk
- drakclock: fix layout so that NTP frame is not badly cut on small
  resolution (#10971)
- net_applet:
  o allow to connect/disconnect from net_applet
  o launch net_monitor once
  o launch net_monitor in background
- printerdrake:
  o add column to show whether the printers are enabled or disabled to
    the list of available print queues in the main window
  o add command to the edit-printer window to enable and disable print
    queues
  o fix managment of "--expert" command line option

* Sun Aug 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.16mdk
- drakconnect: add metric support according to connection type (blino)
- drakroam (Austin):
  o fix "Add" button behavior
  o don't show channel 0 for auto mode
  o move DHCP column to left for better sizing
- drakupdate_fstab: do not mount and add/delete in fstab when many
  partitions (blino, #11005)
- logdrake: fix displaying only last parsed file
- printerdrake (till):
  o add support for daemon-less CUPS client
  o fix graying out of buttons/menu entries in the main window
  o fix unrecognized local queues when the spooler daemon is not
    running during printerdrake startup
- XFdrake: fix crash on resolution change

* Fri Aug 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.15mdk
- GUI cleanups:
  o drakboot: fix canceling first step
  o localedrake: let's look & behave like a wizard (fix cancel on
    country choice)
- drakconnect: detect Intel & ATI PCI modems
- localedrake: really install proper packages depending on (locale,
  input method) tuple (and not just those depending on IM)
- XFdrake: add dell D800 specific modeline and resolution (Olivier
  Thauvin)

* Thu Aug 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.14mdk
- fix ddcprobe for other archictectures
- drakconnect: restart network for non ethernet adsl devices (blino)
- harddrake service:
  o add --force parameter (#9613)
  o do run configurator
  o restore bootsplash (blino)
- printerdrake: prepare support for daemonless CUPS client (till)
- XFdrake: fix synaptics configuration (blino)

* Wed Aug 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.13mdk
- fix modules conf parsing (blino)
- ddcxinfos: extensive rewrite and cleanups to use the new int10
  interface and a last-resort means to get VBE/EDID information from
  special -BOOT kernel during early boot (gwenole)
- drakconnect (blino):
  o add Siol (the bigest ADSL provider in Slovenia) in ADSL providers
    DB (Gregor Pirnaver)
  o allow multiple aliases per host
  o always add an hostname alias and add it on the loopback device
    (#10345)
  o do not ask the user to do an inifinite looping in MCC ...
  o prevent recognize ppp0 as both modem and adsl (#10772)
- drakroam: fix crash when config directory does not exist (#10935)
- listsupportedprinters (till): introduce it for auto-generation of
  Mandrakelinux hardware support DB
- localedrake: 
  o fix country selection (blino, #10938)
  o install proper packages depending on (locale, input method) tuple
- mousedrake, XFdrake (blino):
  o synaptics touchpad support
  o fix wacom support
- printerdrake:
  o fix crash
  o handle print queues with the "lbp660" and "ml85p" drivers (which
    directly communicate with the printer instead of sending the
    output to a CUPS backend) (till)
  o prevent queues using "lbp660" and "ml85p" from opening message
    windows when the print queues are auto-generated by
    dynamic/hotplug (till)
  o if the user gets an error/warning message during setup of a
    lbp660/ml85p queue, he is automatically put back to the previous
    step in the add-printer wizard (till)
  o do not embedd warning messages in the add-printer wizard, as they
    have no "Previous" button (till)

* Mon Aug 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.12mdk
- really fix drakxtools build for ppc & sparc
- use sysfs to detect firewire devices thus fixing eth1394 detection
  (blino)
- drakconnect (blino):
  o ensure iftab is always up-to-date
  o fix spurious ifcfg-ippp0 creation
- net_monitor (blino):
  o do not assume internet isn't configured if obsoleted cnx scripts
    do not exist
  o fix connect button sensitivity
  o watch connection time, not disconnection time
- printerdrake:
  o added fully automatic, non-interactive, X-less print queue set up
    by the "autosetupprintqueues" command, preferrably to be started
    by hotplug
  o fix file check for package installation
  o fix problem of Brother laser printer on parallel port not showing
    its name in auto-detection result.
  o let printer name, description, location be entered after
    determining the model in the add printer wizard
  o let default print queue name be derived from the model instead of
    being "Printer", "Printer1", ...
  o simplify print queue name generation in non-interactive printer
    setup
  o fix "Previous" button in the test page step of the add printer
    wizard
- XFdrake: do not set DRI mode anymore which is not needed anymore
  with latest PAM

* Thu Aug 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.11mdk
- drakconnect: use mac_ieee1394 descriptor in iftab for firewire links
  (WIP) (oblin)
- fix drakxtools build for ppc & sparc
- keyboarddrake: fix it not modifying xkb (pixel)
- printerdrake:
  o fix crash
  o prevent potential crashes (blino)
  o do not ignore some internal errors (blino)
  o fix unloaded "usblp" kernel module before local printer
    auto-detection (blino)
  o do not install anymore gimpprint (included in gimp2_0) (till) 
  o do not configure GIMP and OpenOffice.org which were patched so
    that they do not need anymore to be configured regarding print
    queues (till)
  o text fix for scanners in HP's multi-function devices (till)
- service_harddrake: check usb controllers on boot (oblin, #9613)

* Wed Aug 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.10mdk
- drakconnect (oblin):
  o do not write 'ifcfg-Manually load a driver' file
  o fix sagem pty in pppd config
  o prevent boot from timeoutingforever if modem can't be synchronized
- localedrake: fix default IM setting when switching language (#10831)
- net_applet: fix tooltip's messages
- harddrake: add a PCMCIA controllers class

* Tue Aug 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.9mdk
- drakboot:
  o install acpi and acpid if needed (pixel, #10760)
  o allow to choose net profile in advanced mode (oblin)
  o enable to allow to choose a video mode if boot is not graphical
    while configuring bootsplash (oblin)
- drakbug: better wrapping
- drakconnect (oblin):
  o do not use noipdefault pppd option for pptp connections
  o fix pppoe with sagem ADSL modem
  o write MAC addresses into /etc/iftab
  o pppoe/pptp fixes
- drakroam: support multiple roaming daemons support (oblin)
- drakupdate_fstab: fix adding usb medias (oblin, #10399)
- drakvpn: do not assume drakvpn is already configured if the tunnel
  file is made of comments only (oblin)
- localedrake: handle turkmen and tatar (pablo)
- net_monitor:
  o let's be more l10n-friendly
  o fix default connection time (Fabrice FACORAT)
- XFdrake (pixel):
  o do not use XF86Config-4 anymore
  o handle /etc/X11/xorg.conf
- typo fixes (#10713, ...)

* Wed Aug 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.8mdk
- bootloader-config: log command on mkinitrd faillure
- drakbug (olivier):
  o update product list and fix case (bugzilla is case sensitive)
  o fix product, component and version for bugzilla
  o fix bugzilla url
- drakhelp (daouda):
  o use webclient-kde instead of konqueror
  o add epiphany browser
- drakroam:
  o initial import of wlandetect version, from Austin Action
- mousedrake, diskdrake: create /etc/udev/conf.d/xxx.conf as well as
  devfsd rules (pixel)
- net_monitor:
  o add a horizontal separator in stats to prevent visual disguts
    between supposed non aligned labels
  o fix looking aka vertical alignment of labels (Fabrice FACORAT, #10300)
  o fix resizing (Fabrice FACORAT, #10300)
- XFdrake: s/XFree/Xorg/ (pixel)

* Mon Aug  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.7mdk
- diskdrake: switch from raidtools to mdadm (pixel)
- drakboot: sort themes, users and WMs lists
- drakupdate_fstab: do not complain about ips in /etc/fstab (pixel)
- localedrake:
  o changed default font for gb2312 (Funda Wang)
  o rename the "More" button as "Other Countries" (pixel)
- net_applet:
  o do not die when gateway canot be guessed (Joe Bolin)
  o fix status toolip
  o allow multiple instances, but only one per user (Joe Bolin)

* Fri Aug  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.6mdk
- add a 6px border around scrolled TextViews (Fabrice FACORAT, #10561)
- drakbackup: fix crash when selecting an entry in pull down menus
- localedrake:
  o fix configuring IM
  o fix x-unikey support (Larry Nguyen)

* Fri Aug  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.5mdk
- drakclock: if ntp is used, get the new time before updating the
  hwclock (Emmanuel Blindauer, #10537)
- drakconnect (oblin):
  o install kdenetwork-kppp-provider when configuring a modem
  o fix external ISDN modem configuration (Anthill #1033)
  o use ifup/ifdown rather than restarting the network service for
    ADSL & ISDN
- draksound:
  o add support for ALSA on PPC and SPARC
  o update sound drivers list
  o map dmasound_pmac <=> snd-powermac (Christiaan Welvaart)
- fix autologin somewhat (pixel)
- localedrake:
  o add x-unikey support for Vietnamese
  o switch korean to scim-hangul IM by default
- update ppc support (Christiaan Welvaart, pixel)
- XFdrake: replaced XFree86 and XFree with Xorg (pixel, #10531)

* Wed Aug  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.4mdk
- don't set /etc/sysconfig/desktop anymore, configure ~/.wmrc,
  ~/.gnome2/gdm and ~/.desktop instead (pixel)

* Tue Aug  3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.3mdk
- bootloader-config (pixel):
  o try to keep the order of kernel options
  o don't allow unknown kernel names to mess everything
  o handle win4lin kernels
- draksec: sanitize GUI:
  o upcase fields values
  o fix spacing issues
- localedrake:
  o fix current IM setting reading
  o reset IM setting when switching to a new IM
  o support nabi input method too
- net_applet: automatic launch for KDE, GNOME and IceWM (daouda)
- misc typo fixes
- diskdrake: fix LMV resizing (anthill #994) (pixel)
- service_harddrake: fix nuking x.org config on 2.4.x <-> 2.6.x kernel
  switch (#10487) (pixel)

* Fri Jul 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.2mdk
- drakbackup (stew):
  o fixes Anthill #1009 and #1010 (DVD recording, disk quota)
  o direct-to-tape enahancement
- drakconnect:
  o do not restart the network service if ethernet modem
  o only restart network for ADSL if we use an ethernet modem
  o fix sagem ADLS modem support (olivier)
- draksec: sync with msec-0.44
- draksplash:
  o do not crash when the image format is unknown
  o fix preview refresh
- localedrake:
  o enable to choose input method in advanced mode
  o support im-ja input method too
- service_harddrake: do not offer to configure mouse if we've already
  automatically reconfigure it b/c of 2.4.x vs 2.6.x switch

* Thu Jul 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.1mdk
- diskdrake: fix Compaq Smart Array support (pixel)
- drakauth: misc (vincent)
- drakbackup, drakTermServ: fix crashes on append_set (stew)
- drakbug: (daouda)
  o scroll down text while typing
  o many cleanups
  o stable releases are 'Official' and 'Community'
- explanations: only log succesfull renamings
- harddrake GUI: do not automatically configure removable media but
  use diskdrake
- modules: read modutils or module-init-tools config depending on
  which kernel is run (pixel)
- net_monitor: save/restore options

* Wed Jul 21 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-57mdk
- drakauth (vincent):
  o restart services if needed
  o describe authentification kinds
  o modify nss_path one to sub config winbind for AD
- drakconnect: misc bug fixes (olivier)
- localedrake: fix xmodifiers setting which is broken since
  perl-MDK-Common-1.1.13-1mdk
- net_monitor:
  o fix GraphicalContext memory leak (olivier)
  o translate connection type (Fabrice Facorat)
  o fix spacing (from Fabrice Facorat, #10300)

* Mon Jul 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-56mdk
- bootloader-config (pixel):
  o save prior boot loader config file (#10072)
  o don't unset prompt when timeout is undefined (and don't care when
    timeout is 0)
  o also add long name when adding add short name
- net_monitor:
  o add a border spacing of 5 pixel (Fabrice Facorat, #10299)
  o disable the connect button if up interface is found (there is
    currently no reliable way to find the gateway interface)
    (olivier blin)
  o use ifup/ifdown to connect/disconnect (olivier blin)
  o no need to be root to monitor connection (olivier blin)
- drakconnect (olivier blin):
  o make connection status check work as non root
  o do not write wireless encryption key if empty
  o use blacklist too for adsl connections

* Sat Jul 17 2004 Daouda LO <daouda@mandrakesoft.com> 10-55mdk
- remove historical consolehelper files (pam.d and console.apps)

* Thu Jul 15 2004 Olivier Blin <blino@mandrake.org> 10-54mdk
- drakboot: use bootloader and Xconfig instead of detect-resolution
- net_applet:
  o use drakconnect to configure network
  o use 'ip route show' to find the gateway device when no GATEWAYDEV
    is defined
- drakauth: add "Active Directory" through winbind (pixel)
- bootloader-config: fix installation on floppy (#10260) (pixel)
- drakedm: typo fix (lost -> lose) (rvojta)

* Thu Jul  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-53mdk
- bootloader-config (pixel):
  o nicer "usage: ..." 
  o add actions "add-entry" and "remove-entry"
  o add option --label
  o add option --chainload
  o rename --vmlinuz to --image
  o remove unneeded spaces in append=" foo"
  o handles "optional" in LILO
- drakbackup: fixes for Anthill #927 & #929 (filenames with spaces,
  .backupignore, gui behavior)
- drakboot: update bootsplash even if framebuffer was disabled (oblin)
- XFdrake: add 1024x480 (pixel, #5192)
- redo modules managment (prepare for reading either modprobe.conf or
  modules.conf based on the running kernel version) (pixel)
- fix build with new glibc

* Mon Jul  5 2004 Pixel <pixel@mandrakesoft.com> 10-53mdk
- drakxtools-backend needs ldetect-lst (for complete_usb_storage_info())

* Mon Jul  5 2004 Pixel <pixel@mandrakesoft.com> 10-52mdk
- ensure proper upgrade: explictly tell urpmi that old drakxtools-newt
  conflicts with drakxtools-backend
- drakauth: more features (vincent guardiola)
- drakconnect: pptp support (#6515) (olivier blin)
- localedrake: configure menu-method's language too so that altering
  language is done for KDE menu entries too (instead of just programs'
  messages) (Thierry Vignaud)

* Thu Jul  1 2004 Pixel <pixel@mandrakesoft.com> 10-51mdk
- create package drakxtools-backend
- bootloader configuration: misc fixes (pixel)
- XFdrake: fix typo causing multiple "Keyboard" entries in XF86Config
  (pixel, #10163)

* Thu Jul  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-50mdk
- drakupdate_fstab (oblin): fix moving mount point (#6982, #10175)
- drakauth: for Active Directory, allow: Kerberos, SSL/TLS, simple and
  anonymous (pixel)
- net_monitor (oblin):
  o always display a speed label for transmitted graph
  o allow the user to use different scales for received and
    transmitted (#10177)
  o always draw an arrow next to transmitted amount

* Tue Jun 29 2004 Pixel <pixel@mandrakesoft.com> 10-49mdk
- add bootloader-config (used by bootloader-utils and bootsplash scripts)
- drakboot (pixel):
  o major backend rewrite b/c of code sharing with new installkernel
  o when adding a new kernel, have a nicer new name for conflicting
    entry
  o when modifying kernel parameters in all entries, skip the
    "failsafe" entry (#10143)
  o when modifying a symlink, ensure we also use the long name for the
    old symlink in the existing entries
- drakconnect (Olivier Blin):
  o never disable "DHCP host name" entry box, it shouldn't be linked
    with "Assign host name from DHCP address" checkbox (#2759, #9981)
  o unblacklist sis900 since its link beat detection works with latest
    kernels
- draksound: remove unneeded "above" lines in modules::write_conf
  (Olivier Blin) (#8288)
- ugtk2 layer: catch missing wizard pixmap, otherwise we end up with
  unshown windows and error messages can't pop up (pixel)
- don't require mkbootdisk

* Wed Jun 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-48mdk
- drakboot (oblin):
  o ask for bootloader choice when framebuffer isn't configured (#9925)
  o do not update bootsplash in autologin wizard
- drakclock: be mouse wheel aware (oblin, #9926)
- drakconnect (olivier blin):
  o blacklists the sis900 driver (#9233) for network hotplugging
  o properly handle ascii WEP keys (#9884)
  o rephrase zeroconf dialog (cybercfo)
- drakxtv: fix tv driver not loaded on boot (oblin, #9112)
- localedrake: new default IM for CKJ
  o set up SCIM for chinese
  o set uo SCIM+UIM for japanese
- mousedrake: load usbhid instead of hid is now named (pixel, svetljo)
- XFdrake (pixel):
  o better auto monitor config
  o sync with bootsplash's detect-resolution

* Tue Jun 22 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-47mdk
- add net_applet (daouda)
- drakconnect: update ADSL ISP database (baud <baud123@tuxfamily.org>):
  o default to pppoa method whenever encapsulation is 6 (PPPoA VCmux),
  o default to pppoe method whenever encapsulation is 1 (PPPoE LLC)
  o add new ISP entries : Belgium ADSL Office, Brasil (4 ISP),
    Bulgaria ISDN/POTS, Greece, Switzerland BlueWin / Swisscom Telecom
    Italia/Office Users, Turboline Austria Telstra,
- harddrake2: do not display version number in title bar
- shorewall configuration: accept from fw to loc (florin)

* Mon Jun 21 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-46mdk
- harddrake service:
  o do not uselessy fork shells
  o faster auto mouse reconfiguration on major kernel switch
  o fix logs of newly added hardware
  o fix mouse autoconfiguration done on every boot instead of on 2.4.x/2.6.x
    switches
  o handle newly added wireless network card (broken since early 2004/02)
  o log error when we cannot run the config tool or when it isn't executable
  o only log about nv <-> nvidia swtich only if we do have to perform it
- harddrake GUI:
  o display media type for mass storage devices
  o enhanced data for mice and hard disks
  o fix undisplayed fields
  o show disk ID if we cannot guess its vendor string from it
  o show splited vendor and description fields for USB hard disks too
  o really ensure that "identification" section is displayed first
 
* Fri Jun 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-45mdk
- authentication: more LDAP work (pixel)
- drakbackup: fix .backupignore issue (stew)
- drakupdate_fstab: add support for floppies
- harddrake service:
  o mouse: autoreconfigure it when switching between 2.4.x and 2.6.x kernels
  o network: automatic config with DHCP of new cards
  o removable media: automatically config
  o x11:
    * do not automatically swtich from nv to nvidia driver (b/c the
      nvidia driver is buggy on some machines)
    * automatic configuration of new card
  o only stop the boot progress bar if we've a non automatic tool to run
- harddrake GUI:
  o show more data on SCSI disks
  o do not display USB disks in both harddisks and unknown sections
  o fix cpu and SCSI hd help
  o show right driver for USB devices (from /proc/bus/usb/devices)
  o enhanced help
  o show detailled data on bus connection
- interactive layer: display "cancel" button instead of "previous" in
  wizards' first step

* Mon Jun 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-44mdk
- diskdrake: fix hde devfs link (pixel)
- drakconnect: start to make strings more helpfull
- drakperm: enable drag 'n drop (only when looking at customized settings)
- draksec: do not show empty pages in notebook if security level is not set
- draksplash: make it work again...
- harddrake2:
  o do not list usb hard disk as unknown (fix doble entries)
  o fix misdetection of nvidia nforce ethernet cards (broken since forcedeth
    replaced nvnet on 2004-01-21 in MDK10's ldetect-lst)
  o ethernet card detection: only rely on driver for matching ethernet cards,
    thus preventing mislisting of other/unwanted devices and enableing to catch
    ldetect/ldetect-lst/detect_devices bugs where some devices are *not* seen by
    drakx and drakconnect.
  o display more data about hard disks (geometry, number of primary/extended
    partitions)

* Wed Jun  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-43mdk
- drakauth: add "Active Directory" authentication (WIP) (pixel)
- drakbackup: (stew)
  o deal with kernel ring buffer that is flooded with msgs for tape
    device detection (#9877)
  o GUI fixes
  o enforce binary ftp transfers
- drakconnect: (poulpy)
  o switch ONBOOT to on/off for isdn and adsl connections
  o new way to specify how to up connection for pppoe(xDSL) and
    others(ADSL)
  o rename /etc/ppp/peers/adsl as /etc/ppp/peers/ppp0 as we now use
    ifup-ppp for adsl, it will look for ppp0
- drakservices: add descriptions for NFS and SMB (#9940) (pixel)
- harddrake service: run it earlier (aka before network service)
- XFdrake: add resolution 1920x1200 called WUXGA (used by Dell Laptops
  Inspiron 8500, 8600 and Latitude D800) (#6795) (pixel)
- XFdrake, drakedm: switch to x.org  (pixel)

* Tue Jun  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-42mdk
- handle the nfs/smb service disabled (Olivier Blin)
- drakconnect:
  o handle interface w/o ip addresses
  o make LAN wizard more user friendly: move "manual choice" after 
    detected interfaces
  o detect again ethernet interfaces that are down (got broken in 10-38mdk)
- drakboot:
  o do not write partial GRUB config file (thus garbaging previous config) if an
    error occured
  o fix "two windows appears on canceling after an exception" bug

* Fri May 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-41mdk
- drakconnect:
  o fix protocol switching from manual to DHCP when stepping back in
    wizard
  o read VLAN and IP aliased interfaces config too
- drakbackup: fix typo in tape restore (Federico Belvisi).

* Fri May 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-40mdk
- drakconnect:
  o blacklist loopback interface in new detection scheme
  o switch from internet service to regular ifcfg files (poulpy) (WIP)
  o fallback on sysfs in order to get driver and card description when
    ethtool is not supported (eg: ipw2100 driver for intel centrino)

* Thu May 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-39mdk
- diskdrake (pixel):
  o allow /home on nfs (#7460)
  o disable package instead of removing nfs-utils or samba-server
    (when "diskdrake --fileshare" disables a export kind) (#9804)

* Thu May 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-38mdk
- detect aliased network interfaces too
- drakfirewall: handle BitTorrent (robert vojta)
- keyboardrake (pablo):
  o support more keyboards
  o Nepali uses devanagari script
- localedrake: handle Latgalian language (pablo)
- net_monitor: ignore sit0
- switch Japanese input method to "uim" (pablo)

* Tue May 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-37mdk
- drakbackup: fix dropped .txt files when running mkisofs (stew)
  (Anthill #799)
- drakconnect (#9669):
  o prevent identification mismatch on ethtool results
  o fix card name lookup when driver does not support GDRVINFO command
    from ETHTOOL ioctl and there's only one card managed by this
    driver
- switch from deprecated OptionMenu into new ComboBox widget

* Mon May 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-36mdk
- ugtk2:: still provide compat stuff for OptionMenu widget (#9826)
- drakTermServ: add /etc/modprobe* mount points for client hardware
  config (stew)

* Wed May 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-35mdk
- authentication:
  o fix winbind configuration and do the same for LDAP
    and NIS (vincent guardiola, pixel)
  o install autofs for nis authentication (florin & fcrozat)
- diskdrake: handle LABEL=foobar in /etc/fstab (pixel)
  (ex2/3 only for now, no xfs)
- drakclock: do saner check for ntp package (Robert Vojta)
- drakconnect:
  o fix speedtouch ADSL model (using kernel mode) (poulpy)
  o better LAN vs wireless filtering by using SIOCGIWNAME ioctl)
  o handle ipw2100 wireless driver
  o do not offer to set DOMAINNAME2 since it is never saved nor read
    (#9580)
  o kill "speedtouch and ISDN only work under 2.4 kernel" warnings
    (poulpy)
- drakfirewall: open more ports for samba
- harddrake service: do not run XFdrake in automatic mode
- misc cleanups & bug fixes (pixel)
- scannerdrake: fix firmware installation (till)
- XFdrake (pixel):
  o can now configure monitors on heads > 1
  o do not succeed automatic configuration (not auto_install) when
    there is many cards (as requested by Joe Bolin)
  o speed-up monitor choosing dialog when {VendorName} is undef
  o vmware doesn't like 24bpp (#9755)
  o defaults to the greatest depth rather than 24
- do not prefer devfs names when reading /proc/mounts (which uses
  devfs names) (pixel)
- ugtk2 layer: transparently replace obsolete OptionMenu widget by the
  new ComboBox widget

* Tue May  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-34mdk
- drakconnect:
  o fix last step of interface destruction wizard
  o wizard: take ISDN protocol into account for people outside Europe
    to use it (poulpy)
- drakupdate_fstab: fix adding twice an entry in fstab, one with the
  old name, one with the devfs name (pixel)
- XFdrake: kill XFree86 3.x support (pixel)

* Fri Apr 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-33mdk
- create ~/tmp if needed when running a program
- device managment: fix sdX <=> scsi devices mapping (especially for
  USB devices) (pixel)
- drakclock: time is displayed as HH:MM:SS with RTL languages
- drakconnect (poulpy):
  o manage interface: more gui layout fixes
  o try harder to locate firmware on windows partition (#3793)
  o no need to up ippp0 in net_cnx_up, it's been up'ed at startup
- harddrake gui: list SATA controllers in their own category (anthill
  #741)
- harddrake service: log removed/added hw
- localedrake: use utf8 if any of the languages chosen is utf8, not
  only the main one (pixel)

* Fri Apr 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-32mdk
- diskdrake, XFdrake: make --auto really not interactive
- drakconnect:
  o wizard: fix ISDN support (poulpy)
  o manage interface: smoother layout
- drakxtv:
  o fix brown paper bag bug regarding tv cards detection
  o sync card and tuner lists with 2.6.6-rc2
- harddrake GUI: split USB sontrollers and ports
  o new data structure
- harddrake service: autoconfigure X11, sound and removable media
- log more actions regarding modules managment in explanations

* Tue Apr 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-31mdk
- drakbackup: some drives don't return "ATIP info from disk" (stew)
- drakclock: check /etc/init.d/ntpd instead of /etc/ntp.conf for ntp
  installation (daouda)
- drakfont: fix font importing (#9423) (dam's)
- drakconnect (manage interface): fix insensitive IPADDR, NETMASK and
  GATEWAY fields by default are not sensitive by default in DHCP
  (broken by #8498 fix) (poulpyà

* Thu Apr  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-30mdk
- fix inverted translations in french catalog (#8217)
- fix drakxtools postuninstall script
- drakbackup (stew):
  o remove config-info (will be in a man page)
  o reuse more code from ugtk2 layer regarding cursors managment
  o combine/rework restore code
- drakTermServ (stew):
  o do not move existing dhcpd.conf
  o add an include for terminal-server instead
- drakups: update to new libconf-0.32 API (dam's)
- harddrake service: log nv<=>nvidia switches
- localedrake: set default font to use in KDE for devanagari and
  malayalam scripts
- ugtk2: fix faillure with perl-Gtk+-1.04x (#9411)

* Mon Mar 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-29mdk
- harddrake service: skip nv/nvidia test when there's no nvidia card

* Mon Mar 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-28mdk
- harddrake service: fix disabling nvidia driver (#9300)

* Fri Mar 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-27mdk
- drakconnect:
  o fix some bugs in ISDN configuration
  o warn than speedtouch only works with 2.4.x kernels for now
  o fix "manage interface" that broke speedtouch configuration
  o blacklist b44 for ifplugd
- drakboot blacklist again Savage gfx cards, they're broken again with
  lilo

* Wed Mar 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-26mdk
- diskdrake: tag removable medias as noauto in fstab file (pixel, #9076)
- drakboot: add nolapic support option (planel)
- drakclock (Robert Vojta, #9141):
  o display current timezone
  o sort servers
- drakclock, drakperm: GUI fixes (Robert Vojta: #9141, #9153)
- drakconnect:
  o complain louder about supported kernels for ISDN cards
  o enable to delete ADSL and ISDN connections
  o do not complain anymore about kernel when using bewan adsl modems
    since they works now with 2.6.x kernels
  o do write drakconnect config file when there's only one configured
    interface (#8998)
  o fix speedtouch support: use kernel mode on 2.6.x kernels
- drakgw: fix drakgw removing MII_NOT_SUPPORTED parameter from ifcfg
- drakTermServ: fix button layout
- drakxtv:
  o read current configuration (Scott Mazur)
  o fix setting options for bttv instead of saa7134 (#5612)
  o fix saa7134 detection (#5612)
  o fix wiping out /etc/modules.conf (Scott Mazur)
  o default canada-cable to NTSC (Scott Mazur)
  o handle tv cards managed by cx88 and saa7134 (#9112)
  o use right device (#3193)
  o offer to set the user to config (#3193)
  o sync with 2.6.3-4mdk
- firewall: do not write the REDIRECT squid rules if one has only one
  NIC connected to the net zone (florin)
- harddrake service: switch between nv and nvidia driver if commercial driver
  isn't installed
- keyboarddrake: az, tr and tr_f needs XkbOptions 'caps:shift' (pixel)
- logdrake: fix non first searches (#9115)

* Fri Mar 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-25mdk
- add missing icons for localedrake menu entry (dadou)
- diskdrake: fix compaq smart array support (pixel, #9029)
- drakboot: reread current bootsplash config (olivier blin, #8888)
- drakconnect:
  o always offer to restart adsl connections
  o fix bewan adsl modem support by providing an ad-how
    /etc/ppp/options
  o only warn about the fact we need 2.4.x kernel
    * when we're under 2.6.x
    * for bewan modem (not for other adsl modems) and pci rtc modems
  o only kill pppoa for sagem modem (fix bewan modem shutdown)
- draksound: install alsa-utils if needed (#6288)
- include drakups again

* Wed Mar 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-24mdk
- set window icon
- diskdrake: (pixel)
  o fix "xp does not boot anymore" (#7302, #7959, #8891)
  o add --change-geometry=<device>=[<cylinders>,]<heads>,<sectors>
  option in order to allow forcing the geometry used in the partition
  table. This allows helping poor Windows booting using old int13
  function 2.  This should work when Windows has not been resized.
- drakclock: fix server lookup (#8846)
- drakconnect:
  o do not pass eth interface and user to adsl-start, they're already
    provided in pppoe.conf (#2004)
  o fix pci modem support
  o fix SmartLink modem managment (#8959)
  o really fix modem symlink (#7967)
  o try harder to get a name (in wizard) and information (in manage
    interface) for cards whose driver do not support ethtool ioctl
  o update wanadoo dns servers ip addresses
  o wizard:
    * bewan support
    * fix adsl stop on pppoa links
    * preselect pppoa for bewan modems
    * for ADSL Bewan, ISDN and PCI modems, warn that only 2.4.x
      kernels are supported
    * only show encapsulation parameter for sagem modem
  o "internet access" window:
    * enable to alter hostname
    * do not offer to alter domain name since this is achievable
      through FQDN
- drakfont: make subdialogs be transcient for main window when not
  embedded
- drakedm: fix dm restart
- draksound (olivier blin, #8501):
   o do not alter oss<->alsa drivers mapping table
   o when current driver doesn't match current sound card, list
     alternatives for both current driver and the default driver
- drakTermServ: fix misnamed inittab (stew)
- drakupdate_fstab: choose wether to use supermount is now based on
  variable SUPERMOUNT in /etc/sysconfig/dynamic (pixel)
- harddrake2:
  o show module for system bridges if it's not unknown (aka not
    managed by kernel core)
  o update icons
- localedrake: list Filipino, Low-Saxon and Kyrgyz (pablo)
- logdrake: fix wizard
- service_harddrake:
  o remove /etc/asound.state *before* restarting sound service
  o add agpgart modules to modprobe.preload if needed

* Mon Mar 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-23mdk
- drakbackup: (stew)
  o install extra packages when using wizard too
  o report error on key transfer in GUI if needed
- drakboot:
  o list yes/no for autologin in a more intuitive way, that is yes is
    grouped with user and wm pull down menus (robert.vojta@qcm.cz,
    anthill #390)
  o always generate a precise entry using the precise version and
    remove the linux-2.4 or linux-2.6 (but keep the "linux" entry)
    (pixel)
- drakclock: make the ntpdate after stopping the ntpd (manu@agat.net,
  #8141)
- drakfont: make "install" button be insensitive when there's no
  selected fonts
- drakconnect:
  o fix misdetection of some network cards (aka do not try to match a
    physical device when SIOCETHTOOL ioctl is not supported) (#8010)
  o fix missing quotes around wireless encryption key (#8887)
  o wizard:
    * do not list anymore wireless cards in LAN connection, only in
      wireless connections
    * fix unlisted ADSL modems when there's no network card (#8611)
    * handle orinoco_pci and orinoco_plx driven card as wireless ones
    * skip "start on boot" step for LAN (already managed by network
      scripts)
    * write ether conf later on QA request
  o renew "internet access" window:
    * sanitize buttons layout (#8637)
    * sanitize fields layout
    * fix config reading/writing
    * fix connection status (#7800)
    * fix unlisted first dns server
  o manage interface:
    * do not write IPADDR, NETMASK and NETWORK fields in ifcfg-ethX
      when using DHCP (fix writing "no ip"/"no netmask" in config file)
    * default protocol is dhcp (fix fields checking when an interface
      isn't yet configured)
    * fix gateway setting (#6527)
- drakfirewall, drakgw: add ppp+ and ippp+ at the interfaces list
  (florin) (#8419)
- localedrake: always define KDM fonts dependending on encoding
  (pablo, #8714)
- logdrake: fix explanations in mcc that got broken by #8412 speedup
- printerdrake: install "scanner-gui" instead of "xsane" when it sets
  up an HP multi-function device (till)
- scannerdrake: install "scanner-gui" instead of "xsane", so that
  scanning GUI actually used can be determined by the system
  environment (till)

* Thu Mar 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-22mdk
- fix imm & ppa managment on kernel 2.6 (pixel)
- no entry in fstab for zips (now cleanly done by hotplug) (pixel)
- drakbackup (stew):
  o fix crash on first wizard run (#8654)
  o deal with mixture of formats on restore
  o do not save host passwd when user requests not to (#8700)
  o fix issue with first incremental pass not using base as
    comparison
  o support for plain tar (#8676)
- drakconnect wizard:
  o start to handle bewan ADSL modems
  o port old ISDN wizard upon new wizard layer
- drakfirewall, drakgw: network card name rather than just ethX in device list
  (florin and me)
- drakgw (florin):
  o add some tests for the REDIRECT squid rules
  o fix previous button on first step (anthill #386)
  o fix "sharing already configured" #8669 (florin)
  o fix the proxy REDIRECT shorewall rule,
  o fix the disable, enable functions
  o fix the shorewall interfaces configuration
  o really enable the proxy squid
- draksplash: make it works again
- drakTermServ (stew):
  o add gdm user if needed
  o autologin warning
  o copy server X keyboard config to client
  o default kernel version
  o default thin client setup
  o do not destroy "fat" client inittab
  o use std banner
- drakgw: fix previous button on first step (anthill #387)
- harddrake2: fix ISDN cards detection
- keyboardrake: list jp106 keyboard too (pablo)
- logdrake: searching speedup (#8412)
- printerdrake (till):
  o let URIs listed by "lpinfo -v" be shown in the dialog for entering
    a URI manually
  o make first dialog be somewhat clearer
- XFdrake: catch exception (#8726) (pixel)

* Wed Mar  3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-21mdk
- drakconnect: add australia in adsl providers db (#5056)
- support cryptoloop and aes when using encryption on kernel 2.6 (pixel)

* Wed Mar  3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-20mdk
- drakbackup: use preferred conf file read/write method (stew)
- drakconnect: hide dns settings by default when using dhcp
- drakupdate_fstab (pixel):
  o fix device removal
  o log calls
- printerdrake: fix HPOJ configuration when manually setting up a
  device (till)

* Tue Mar  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-19mdk
- fix doble ISDN detection (#6535)
- drakconnect: fix modem symlink (#7967)
- drakboot --boot is now a wizard
- printerdrake: fix missing "default settings" option in the printer
  options dialog (till)

* Tue Mar  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-18mdk
- drakboot (pixel):
  o if the default bootloader entry is invalid, choose another one
  o remove "VT8751 [ProSavageDDR P4M266] VGA Controller" (0x5333,
    0x8d04) from graphical lilo blacklist (#8133)
- drakconnect:
  o fix pci modem type matching
  o list pump in dhcp clients list (synced with ifup one)
  o preselect first availlable dhcp client (according to ifup priority
    list)

* Tue Mar  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-17mdk
- logdrake mail alert: fix crash due to icon renaming

* Mon Mar  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-16mdk
- adduserdrake: default to "man" icon (pixel)
- drakconnect manage interface: fix bootproto filling (#8498)
- harddrake2: update icons
- printerdrake (till):
  o do not configure the GIMP-Print plug-in on more than 50 users (#6423)
  o fix no "ptal:/..." in manual device URI list (#8483)
- scannerdrake (till): fix firmware not found by "gt68xx" SANE backend
  (#7242)

* Mon Mar  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-15mdk
- left align labels
- drakfirewall: remove the masq zone and add policies, rules only if
  there is an interface in loc (florin)
- draksec:
  o sanitize main explanation text
  o prevent pull-down menus to fill availlable space in packtables
- printerdrake (till):
  o fix HPOJ config
  o support new HP multi-function devices
  o better Lexmark X125 printer support

* Fri Feb 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-14mdk
- drakautoinst: support two-floppies boot style for replay_install
  disk as well (gc)
- drakbackup: fix tape backup/restore (#8284) (stew)
- drakconnect: fix crash on manually choosing modem again
- printerdrake: better layout for about dialog box (dadou)

* Thu Feb 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-13mdk
- drakconnect wizard:
  o never delete up/down scripts
  o only write internet service if start at boot requested
- banners: prevent shadow to be darker on theme switches

* Thu Feb 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-12mdk
- drakbackup: use ATAPI:/dev/hdX for both 2.4/2.6 compatibility (stew)
- drakconnect wizard:
  o do not ask for apply settings since most just have been written
  o only write ether config for lan...
  o install needed packages for pppoa, pppoe, pptp
- drakTermServ (stew):
  o really filter symlinked kernels. nohup the dm restart
  o don't let any kernel symlinks be visible for making NBIs
- harddrake-ui package: requires sane-backends so that scanner
  detection works smoothly (#8305)
- localedrake: use xim by default for CJK languages for which we don't
  ship good enough native gtk2 input methods (pablo)

* Wed Feb 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-11mdk
- harddrake service: 
  o look at sound cards changes on bootstrapping
  o when sound card is added/removed, delete current sound levels so
    that sound service reset it to sg sane

* Wed Feb 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-10mdk
- drakbackup: rework CD recording for ATA device setup (stew)
- drakconnect manage interface (poulpy):
  o modem configuration has been completed
  o write /root/.kde/share/config/kppprc for any local change

* Tue Feb 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-9mdk
- drakconnect: alter both /etc/analog/adiusbadsl.conf and
  /etc/eagle-usb/eagle-usb.conf when configuring sagemXXX

* Tue Feb 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-8mdk
- drakconnect wizard:
  o ethernet: fix module lookup for pcmcia cards
  o adsl ISP db (Benoit Audouard):
    * set default protocol to pppoa for various ISPs
    * update 9telecom entry
    * add encapsulation method for "tiscali 512k.fr"
    * fix wrongly inverted encapsulation methods for "Free" isp cnx
      offers
- drakTermServ (stew):
  o mknbi-set always wants a kernel version now
  o deal with conflicts with msec > 3 and exporting / (use
    no_root_squash).
  o always pass a kernel to mkinitrd-net (#8216)
  o add --restart option for terminal-server.
- printerdrake, scannerdrake: misc gui fixes (till)
- printerdrake (till):
  o give clear warning/error messages if a package installation fails
  o let printer model in first-time dialog also be shown if there is
    no description field in the device ID of the printer
- scannerdrake: ask user before installing packages (till)
 
* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-7mdk
- drakconnect
  o add wizard:
    * always write up/down scripts
    * only write initscript when starting at boot was choosen
    * write ethX aliases and ifup/ifdown scripts when configuring a LAN
    connection
  o remove wizard:
    * when no network configuration is configured, just report it
    * only list configured interfaces when offering to delete them
    * keep ethX aliases b/c in order to prevent ethX be renumbered on
      next boot
    * down the network interface when deleting it

* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-6mdk
- drakconnect: fix sagem8xx && speedtouch adsl modem scripts

* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-5mdk
- drakconnect: write vci and vpi parameters in decimal base when
  configuring speedtouch

* Mon Feb 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-4mdk
- drakbackup (stew):
  o verify user has selected a cron interval and media (#8138)
  o tweak wizard setup
- drakconnect:
  o misc santizing in manual module loading
  o adsl provider db: fix vci number for Belgium and France (poulpy)
  o wizard:
    * modem:
      + enable one to manually choose the serial port to use while
        configuring modem
      + really default to dynamic dns, gateway and ip (really fix #7705)
      + do not overwrite current kppp settings with provider db ones
        but on provider switch
    * adsl: prevent having to choose between '' and 'adsl' connections
    * ethernet: enable one to manually load a driver like expert mode
      in old pre-10.0 wizard
  o manage interface:
    * modem:
      + read kppp authentication method
      + handle new PAP/CHAP method
    * ethernet:
      + handle and translate BOOTPROTO
      + do not complain about gateway format when it's not set
    * fix untranslated strings

* Fri Feb 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-3mdk
- drakconnect: fix empty vci/vpi paremeters when speetouch firmware
  wasn't provided
- logdrake: fix title when run from mcc (#8111)

* Fri Feb 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-2mdk
- drakboot/diskdrake updates regarding partition renumbering (pixel)
- drakconnect:
  o do not overwrite provider vpi/vci settings (poulpy)
  o detect more sagem 8xx modems
  o enable to refuse network restarting
  o add "Free non degroupe 1024/256" in adsl provider db
- drakperm: fix "current" checkbox vs "group" and "user" pull-down
  menus
- localedrake: better uim support (pablo)
- modules configuration: fix some agpgart aliases issues regarding
  2.4.x/2.6.x kernels (pixel)

* Fri Feb 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-1mdk
- drakconnect: fix writing modules aliases (fix broken speedtouch)
- drakbackup: use Gnome icon order (stew)

* Thu Feb 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.21mdk
- drakboot: fix theme displaying under console (Olivier Blin)
- drakconnect: since no PCMCIA cards support link status notification,
  ifplugd should be disabled for all pcmcia cards by default (#8031)
- XFdrake: kill spurious icons (pixel)
- fix some wrapping (pixel)
- do not use global scrolled window but many local scrolled windows
  instead (pixel)
- fix uim-xim input method (pablo)

* Thu Feb 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.20mdk
- fix broken "advanced" and "help" buttons (pixel)
- switch japanese from kinput2 to uim input method
- fix file dialog when embedded (#7984) (pixel)
- drakbackup (stew):
  o fix issue with multisession CDs (Anthill #349)
  o encourage user to finish configuring media before leaving wizard.
- drakvpn (florin):
  o add plenty of help files, add anonymous support for sainfo
  o add quite much help explanations
  o add anonymous support in sainfo
- harddrake2: sanitize buttons layout when embedded

* Wed Feb 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.19mdk
- diskdrake: type 0x17 can be ntfs
- drakbackup: rework backupignore behavior (Anthill #306) (stew)
- drakconnect
  o wizard:
    * do not use ifplugd on wireless connections by default
    * fix "network needs to be restarted" step
    * do not overwrite current wireless parameters with default
      values
    * tag some wireless options as advanced ones
  o manage interface:
    * update adsl (poulpy)
    * sanitize buttons layout

* Tue Feb 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.18mdk
- new default icon for wizards banner
- drakconnect
  o wizard:
    * handle atmel_cs wireless driver
    * sort lan protocols
  o manage interface: update (poulpy)
- drakvpn: one can now start from scratch with ipsec.conf (florin)
- enforce gnome button order everywhere
- harddrake: really fix doble blanked ISDN detection
- mousedrake (pixel):
  o detection defaults on automatic choices
  o fix mouse detection on kernel 2.4
- printerdrake: fix problem that not used parallel ports were detected
  as printers (till)

* Tue Feb 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.17mdk
- drakboot: remove bad entries after reading existing conf file (pixel)
- drakclock: let's look better when embedded
- drakconnect:
  o wizard:
    * explain about DNS (#7908)
    * fix automatically found "...2" dns when network is done
  o manage interface: check gateway entry (poulpy)
- drakfont: new banner style
- drakvpn:
  o fix drakvpn logic when translated
  o fix steps skiped b/c of translations
  o start to sanitize gui (more user friendly labels, pull-down menus, ...)
  o fix the ";" mark in the "Security Policies" section (florin)
- interactive layer: don't have a scroll inside a scroll which causes
  display pbs (#7433) (pixel)
- printerdrake (till):
  o recognize parallel printers also when they miss the
    "CLASS:PRINTER;" in their device ID string (ex: Brother HL-720,
    bug #7753)
  o warn when there's no network access
  o remove printer list button when there's no network also in expert
    mode.

* Sun Feb 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.16mdk
- fix harddrake crash (#7897)
- printerdrake (till):
  o handle weird printer ID strings, as the one of the Brother HL-720
    with empty manufacturer and description fields (#7753).
  o recognize also "SN:" as serial number field in printer ID string
    (HP PhotoSmart 7760, bug #6534).
  o load the "usblp" module instead of the "printer" one on kernel
    2.6.x

* Sat Feb 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.15mdk
- drakbackup: (stew)
  o FTP restore failure feedback
  o allow multiple catalog/file restore selection
- drakconnect:
  o fix automatically found "...2" dns server
  o fix crash on canceling "already configured net device"
    configuration (#7679)
  o by default do not start connection at boot for modems (#7705)
  o prevent displaying dummy empty fields in text mode (#7593)
- harddrake:
  o fix ISDN detection (#6535)
  o prevent detecting twice the same devices (#4906)
  o workaround sane-find-scanner detecting too much usb scanners
- center popup windows (pixel)
- don't have a wait_message above another empty wait_message when
  probing hardware (pixel)
- add support for embedding rpmdrake

* Fri Feb 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.14mdk
- drakboot: better grub support, esp. when /boot is a separate
  partition (pixel)
- diskdrake: reconfigure boot loader on partition renumbering
- wizards: add relief around trees and lists

* Fri Feb 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.13mdk
- all tools: new banner style
- add drakvpn (florin)
- drakbackup: fix crash on file search, failure to report ftp error
  (stew)
- drakconnect:
  o wizard:
    * fix wireless network interfaces detection
    * ask isp for ip and gateway by default (#7705)
  o manage interface: (poulpy)
    * fix adsl/eth confusion
    * fix apply button
- harddrake service: only probe for local printers
- harddrake2:
  o remove statusbar on interface team request
  o do not force black color for fields values which badly conflict
    with inverted accessibility themes
- fix module dependancies problem because of 2.4/2.6 mappings, better
  support 2.4 and 2.6 alltogether by keeping 2.4 names in modules.conf
  (gc)
- XFdrake: handle packages not found (#7786)

* Thu Feb 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.12mdk
- drakconnect:
  o preselect right protocol for ethernet though connections
  o only offer to connect now for ppp connections
  o fix module retrieving when configuring an adsl connection over
    ethernet
- authentication: (pixel)
  o install ldap packages *before* doing ldapsearch
  o pam*.so modules do not have /lib/security/ prefix anymore

* Thu Feb 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.11mdk
- drakconnect wizard:
  o fix choosing dhcp as adsl protocol
  o do not allow to step forward if no network card was found
    (workaround #7672)
- keyboardrake: support 2.6.x kernel (pixel)
- drakbackup: misc changes (stew)
- draksec: fix unable to save checks when config file is empty
- harddrake: support more webcams

* Tue Feb 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.10mdk
- fix poped dialogs when embedded (#7246) (pixel)
- drakbackup/drakTermServ: misc updates (stew)

* Mon Feb  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.9mdk
- drakconnect wizard:
  o fix unability to select gateway (#7585)
  o detect athX interfaces too (#7531)
- drakfont: fix crash on option toggling (#7248)

* Mon Feb  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.8mdk
- drakconnect wizard:
  o blacklist forcedeth for network hotplug (#7389)
  o fix ethernet devices description matching
  o fix unwritten ethernet interface config
  o fix empty list in "multiple internet_connexions" step
- fix vendor/description for some Lite-On drives
- ugtk2 layer: fix some layout (spurious space at window bottom)
  (pixel)

* Sun Feb  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.7mdk
- drakx11: make XFdrake startup be instantenous for non nv|ati cards
- drakTermServ: add PXE image support (Venantius Kumar)

* Fri Feb  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.6mdk
- move drakbug, drakclock, drakperm, draksec, drakTermServ,
  net_monitor in drakxtools since they require ugtk2 (#7413)
- workaround gtk+ bug #133489 (behaviour on click when in scrolled
  window) (pixel)
- drakboot: do not try anymore to set global video mode and compat
  option
- drakfirewall: handle ip ranges (#7172) (pixel)
- draksound: advertize alsaconf too since sndconfig failled for cards
  only managed by ALSA (#7456)
- logdrake: do not fail when disabling twice the alert mail cron
- mousedrake: allow changing protocol in standalone (pixel)

* Fri Feb  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.5mdk
- fix embedded apps

* Fri Feb  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.4mdk
- print --help on stdout rather than stderr (gc according to gnu std) 
- diskdrake: (pixel)
  o fix lvm support when devfs is not mounted
  o fix lvm extent sizing (fix illegal division by 0)
  o fix getting the output of pvs vgs lvs commands
  o fix get_lvs() (and use lvs instead of vgdisplay)
  o don't display start sector and cylinders used for LVs
  o display "Number of logical extents" of LVs
- drakbackup: provide more detailed info on files backed
  up/ignored. (Anthill #306) (stew)
- drakboot: write fstab for /tmp using tmpfs when "clean /tmp" is
  chosen (pixel)
- drakboot, drakconnect: fix some layouts
- drakconnect wizard:
  o fix pcmcia card config (#7401, #7431)
  o fix wireless settings (#7432, faillure to set parameters)
  o split wireless step into two steps since there way too much
    options
- draktermserv: fix user list in mdkkdm (stew)
- harddrake: fix module parameters with kernel-2.6.x
- keyboardrake, localedrake: fix some locales (pablo)
- mousedrake: use protocol "ExplorerPS/2" instead of "auto" for kernel
  2.6 (pixel)
- XFdrake: (pixel)
  o do not test X config under vmware (#5346)
  o allow 24bpp for DRI (since all drivers now support it)

* Mon Feb  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.3mdk
- drakconnect wizard:
  o support more wireless cards
  o split out "wireless connection" configuration out of "lan
    connections" path
- logdrake: (arnaud)
  o make cron script be able to use either local smtp server or a
    remote one
  o add "remove cron entry" on arnaud request

* Mon Feb  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.2mdk
- draconnect: preselect pppoa for speetouch again

* Mon Feb  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-0.1mdk
- harddrake: fix adsl modem detection
- draksound: handle new aureal drivers
- do not user ide-scsi emulation for ide ZIPs (pixel)
- do no ide-scsi emulation for cd burners with kernel-2.6.x (pixel)

* Mon Feb  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-28mdk
- drakconnect:
  o enable to set hostname even when using DHCP (#7230)
  o handle not loaded drivers (#7273)

* Fri Jan 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-27mdk
- drakconnect:
  o wizard:
    * fix configuring unconfigured eth interfaces
    * ignore spurious .directory entries when loading kppp provider db
    * do not offer to select dhcp client for static interfaces
  o manage: only show gateway for eth devices (poulpy)
- diskdrake (pixel):
  o fix overflows at 4GB when adding partitions
  o tell kernel to remove the extended partition
  o replace iocharset= with nls= for ntfs in /etc/fstab

* Thu Jan 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-26mdk
- drakconnect: use somewhat nicer interfaces name (eg: "eth0: 3com
  905") in manage interface (poulpy)
- drakTermServ: configure clients with defined IPs to set hostname so
  gnome works (stew)
- fix accentued characters with fr and ru locales (pablo)

* Thu Jan 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-25mdk
- drakconnect:
  o wizard:
    * fix ethernet network card list
    * fix interface config file writing
    * fix DHCP client installation
    * fix static/dhcp step branching
  o manage interface: (poulpy)
	* fix modem login fetching
	* use somewhat nicer interfaces name (eg: ethernet0 rather than
	  eth0)
     * fix adsl loading and saving
- draksec:
  o add help for newly introduced MAIL_EMPTY_CONTENT item
  o notify that shell timeout is in seconds
  o fix parsing of default values for multi argument msec functions
- net_monitor: do not force switch to last page on network interface
  reload

* Wed Jan 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-23mdk
- drakbackup: (stew)
  o another cron issue reported on Anthill
  o fix broken sys, other restore
- drakconnect:
  o new drakconnect wizard:
    * remaining issues: isdn and zeroconf config, bewan modem, isapnp
      cards, X11 behavior on name change
    * provider database for modem and adsl connections
    * renewed steps
    * show device name rather than ethX
    * modem:
      + handle CHAP/PAP
      + enable to use dynamic ip/dns/gateway
    * adsl:
      + update for eagle package replacing adiusb
      + detect eci modems and explain why we cannot handle them
  o manage part: update (poulpy)
- draksound: fix unwriten sound aliases when configuring not yet
  configured cards (#6988)
- printerdrake: kill stupid userdrake dependancy (gc)
- ugtk2 / interactive layers:
  o make trees and lists take all availlable space
  o pack/align checkboxes to left
  o rework window sizing: size all windows and add a scrollbar for the
    whole window if needed (not just around advanced settings) (pixel)
- misc fixes for 2.6.x kernels (gc, pixel & planel)

* Tue Jan 20 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-22mdk
- drakboot: add a warning telling to run lilo after modifying
  lilo.conf (#6924)
- drakconnect: enhanced "manage" part (poulpy)
- drakfirewall: add icmp support and "Echo request (ping)" choice
  (pixel)
- drakgw: transparent proxy support (florin)
- more kernel 2.6.x support (pixel)
- fix subdialogs when embedded (#6899)

* Thu Jan 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-21mdk
- prevent spurious top windows to appears when embedded in mcc

* Thu Jan 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-20mdk
- diskdrake:
  o more lvm2 support (pixel / Luca Berra)
  o update partition reread on kernel side and rebooting if needed (pixel)
- drakboot:
  o boot loader config: do not complain on canceling
  o graphical boot theme config:
    * handle grub too (bootsplash being independant of boot loader)
    * fix layout when embedded
- drakconnect: update manage interfaces (poulpy)
- drakTermServ: first time wizard (stew)

* Wed Jan 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-19mdk
- diskdrake: updated lvm2 support (pixel)
- drakboot: boot theme configuration is back (warly)
- drakboot, drakclock, drakconnect, drakfloppy, drakfont, drakperm,
  draksec: sanitize buttons bar
- drakedm: fix dm list
- printerdrake: sort printer models list

* Mon Jan 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-18mdk
- drakedm: when offering to restart dm, offer yes/no as choice rather
  than ok/cancel (#6810)
- drakdisk: sanitize buttons when working on mount points (smb,
  webdav, ...)
- drakfloppy: handle both kernel 2.4.x and 2.6.x (before size field
  was not properly when switching between threes b/c we looked for
  module.ko instead of module.o.gz and the like)
- drakfont: renew GUI through subdialogs
- localedrake: update languages list (pablo)
- printerdrake: do not push anymore help menu at right

* Mon Jan 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-17mdk
- drakfirewall: allow a range of ports (anthill bug #267) (pixel)
- drakfont:
  o fix unstalling fonts
  o sanitize application options, about, font import and font removeal
    layouts
- fix behavior when embedded in interactive layer:
  o prevent subwindows being too small
  o prevent subwindows breaking when canceled
- run_program layer: don't print refs in log when output is redirected
  (blino)
- wizards layer: only complain if a problem actually happened
- drakconnect:
  o first snapshot of new manage wizard (poulpy)
  o "delete network interface" wizard:
    * show a finish button on last step
    * exit once delete interface wizard has ended instead of then
      running the std add wizard...
    * list ppp interfaces too

* Fri Jan  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-16mdk
- support newer gtk2 bindings
- fix drakboot --boot embedding
- fix logdrake wizard when embedded

* Fri Jan  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-15mdk
- alias scannerdrake => drakscanner
- drakauth: integrate chkauth (which is now deprecated) (pixel)
- drakbackup: (stew)
  o DVD+RW support,
  o fix bogus cron message
- drakboot:
  o split it into bootloader and autologin configuration
  o drop no more handled keytable line in grub config file  (pixel)
  o simplify lilo boot message. Not mentioning the timeout parameter
    (#5429)  (pixel)
  o remove /boot/grub/messages and don't use the i18n command which
    are obsolete since grub doesn't handle it anymore (pixel)
- drakconnect: fix sagem800 configuration (poulpy)
- drakdisk: basic lvm2 support (pixel)
- drakfloppy must not be in drakxtools-newt, must now require mkbootdisk
  (which is not installed by default anymore)
- drakperm: do not discard 0 when perms are 0xx like
- drakTermServ: support new etherboot floppy image syntax and file
  locations (stew)
- drakxservices: fix descriptions (#1704) (pixel)
- enable other packages to override libDrakx translations with those
  from their own domains
- handle /etc/modprobe.preload
- harddrake: detect megaraid controllers as scsi ones
- harddrake service:
  o for removable devices, we've to remove/add them one by one, so
    when several devices of the same class are removed/added, we ask
    if we should handle them several time.
  o let ask confirmation once per class instead (olivier blin, #6649)
  o do no ask several times the kernel to switch into verbose mode
    (olivier blin)
  o really display which devices were removed
- misc cleanups
- tool layout:
  o add a separator below buttons
  o really pack the two button sets at edges
  o try to have a better layout when embedded: let's have only one
    scrollbar that scroll the whole window

* Tue Dec 30 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.3-14mdk
- ugtk2.pm: fix ask_dir dialog (#6152)

* Mon Dec 22 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-13mdk
- do not show useless "ignore" button when requesting root password
  through kdesu
- drakperm: keep changes when switching view moed
- drakclock:
  o prevent one to open zillions of sub dialogs
  o reuse std dialogs
  o remove stock icons
- fix buttons layouts and text wrapping in in drakboot, drakfloppy and
  drakperm
- logdrake's mail alert wizard: 
  o properly handle faillure
  o accept local user names as well as emails
- printerdrake, harddrake2: push help menu at right
- scannerdrake: (till)
  o add upload firmware feature 
  o configure non-root access to parallel port scanners automatically.

* Tue Dec  9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-12mdk
- net_monitor:
  o properly handle multiple interfaces (each one having its own pixmap)
  o make it fit when embedded
  o kill icons on button
  o kill profile managment (duplicated features already availlable
    within mcc)
- drakconnect:
  o split in multiples pieces
  o move profile support into mcc
  o fix writing spurious "WIRELESS_NWID=HASH(0x8e93758)" in ifcfg-<intf>
  o add "delete an interface" wizard
- draksound: handle new snd-bt87x driver 

* Fri Nov 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-11mdk
- improve buttons layout in interactive written tools
- drakconnect:
  o fix sagem configuration
  o do not silently ignore internal errors
- drakgw:
  o make --testing somewhat more useful
  o log more explanations
  o really support embedding
- wizards: do not show up anymore banners when embeeded

* Tue Nov 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-10mdk
- detect serial MGE ups
- drakconnect:
  o fix #5664: list ppp0 for modem and adsl connections too and ippp0
    too for isdn ones
  o fix #6184: read back "Connection Name" and "Domain Name" fields
    when configuring modem
  o fix adsl configuration steps that were hidden
  o configure all isdn cards, not only the first one
  o fix "kid exited -1" warnings
  o handle zaurus connected through USB cables resulting in usbnet
    driver creating usbX interfaces
- mousedrake: default to "PS/2|Automatic" for ps/2 mice (automagically
  use IMPS/2 when needed)
- XFdrake: misc fixes

* Wed Nov 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-9mdk
- resync serial_probe with kudzu
- fix some untranslated strings

* Mon Nov 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-8mdk
- rebuild for reupload

* Sat Nov 15 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-7mdk
- fix links

* Fri Nov 14 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-6mdk
- drakconnect: fix speedtouch start/stop scripts when firmware is
  already there or when firmware installation is canceled
- harddrake2: do not show module if unknow for system bridges since
  it's normal
- harddrake service: remove net aliases if needed
- move clock.pl from mcc into drakxtools package
- provide drakclock, drakdisk, drakhardware, drakkeyboard, draklocale,
  draklog, drakmouse, draknet_monitor, drakprinter, drakx11 new names
- XFdrake: choose a not-to-bad default when X auto config fails in
  auto install

* Sat Nov  8 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-5mdk
- drakconnect:
  o fix lan always marked as detected even when no detection was performed or
    when there's no ethernet devices
  o list acx100_pci as a wireless network cards driver so that one can
    set wireless parameters for it (#6312)
- harddrake2: 
  o do not display "unknown module" in red for modems known to not
    need any module (#3047)
  o enumerate cpus from 1 instead of 0 (#4704)
  o typo fix #6134: (JAZ drives are nothing to do with jazz music)

* Fri Nov  7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-4mdk
- drakconnect:
  o mcc view: fix network interfaces list update (really remove from
    the Gtk+ list lost interfaces)
  o prevent droping wireless parameters for modules not listed in
    wireless modules list
  o more usb wireless detection fix

* Thu Nov  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-3mdk
- drakconnect:
  o fix wireless cards detection (#3690, #4181, #5143, #5814, ...)
  o always list sagem_dhcp in list, showing it only in expert mode is
    confusing
- drakconnect/localedrake: fix a few unstranslated strings

* Wed Nov  5 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-2mdk
- drakbackup: enable bz2 compression option (stew)
- drakconnect: detect again unconfigured network interfaces

* Tue Nov  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.3-1mdk
- overall misc cleanups
- diskdrake: check both nfs servers version 2 and version 3, and
  remove duplicates (bug #6055) (pixel)
- drakconnect:
  o fix going back in some places (isdn, ...)
  o fix #6159: fix detection when a local name server is faking the
    connection because of its cache by checking at least a packet is
    ack-ed
  o translate a few strings (part of #5670)
  o handle more than 4 ethernet cards
- drakconnect, drakfirewall, drakgw: show up a combo box with detected
  network interfaces (but still let the user manually type it sg like
  ppp0 if needed) instead of letting the user guessing the network
  interface
- drakfont: support getting fonts from samba (Salane KIng)
- harddrake:
  o show isdn & adsl adapters too (adsl adapters were previously
    classed as modems)
  o use drakconnect to configure modems
- drakfirewall: translate services names
- "mail alert" wizard from logdrake:
  o save options into /etc/sysconfig/mail_alert instead of hardcoding
    them in the cron task and restore them when configuring it again
  o ensure services are always listed in the same order
  o send the mail only if there's really sg to warn about (aka do not
    sent empty mails)
  o generate perl_checker compliant cron tasks
- translations: updates, breakages

* Tue Nov  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-19mdk
- drakboot: disable lun detections for ide burners
- drakconnect:
  o fix empty fields in expert mode
  o fix anthill bug #50: ensure /etc/ppp/pap-secrets is not world
    readable since it contains password/user mapping for dialup
- net_monitor: handle multiple network interfaces

* Mon Oct 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-18mdk
- drakconnect:
  o do not blacklist anymore bcm4400 for network hotplugging
  o support ISDN usb adapters
- drakperm:
  o force user|group|other rights order in edit dialog
  o one was able to alter system rules in memory wheareas this is not
    supported since they're enforced by msec.
    disable "ok" button for system rules to prevent confusion.
- harddrake service: workaround anthill bug #18 (do not overwrite sound
  aliases when no hardware change occured)
- misc amd64 fixes (gwenole)
- net_monitor:
  o fix connection status detection
  o fix profile managment switch

* Thu Oct 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-17mdk
- drakbackup: all users overrides individual selection in wizard
  (#5916) (stew)
- drakconnect:
  o fix #425, #1881: wireless adapters settings were lost when
    altering network configuration when not from wizard mode
  o when steping back in wizard, do not overwrite first card
    parameters with last one's (#3276)
  o fix expert mode (lost checkboxes states when "expert mode" option
    is checked)
  o blacklist bcm4400 for network hotplugging
- drakfont:
  o fix ttf conversion (#5088)
  o log more explanations
- draksec: fix unsaved security administrator setting (#6103)
- misc chinese fixes (arnaud, pablo)
- printerdrake: fix lpd call (pablo)
- translations updates (pablo)
- misc amd64 fixes (gwenole)

* Fri Sep 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-16mdk
- drakconnect: fix #5825 (hostname set as ARRAY(0x...))

* Thu Sep 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-15mdk
- drakboot: (pixel)
  o fix switching from grub to lilo
  o fix drakboot crashing once bootloader has been altered in text
    mode
- printerdrake: further fix cups configuration (till)
- update translations

* Wed Sep 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-14mdk
- printerdrake: fix cups configuration regarding commented out rules

* Wed Sep 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-13mdk
- diskdrake: (pixel)
  o fix writting wrong types in fstab
  o fix handling of mount points with underscoresb (#5728)
  o do not check current partition for already used mount point
- drakauth : fix NIS managment (#5668) (pixel)
- drakhelp: load online drakbug help (daouda)
- draksound: (#5403)
  o make sure to use OptionMenu instead of Combo boxes
  o move help into a tooltip
- upate translations

* Tue Sep 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-12mdk
- diskdrake: (pixel)
  o fix growing ext2/ext3 partitions
  o handle beos partitions with filesystem befs (#5523)
- drakbackup:
  o use hd as default daemon media (stew)
  o fix translation issues (Arpad Biro)
  o fix user cron misbehavior (Keld Jørn Simonsen)
- drakTermServ:
  o fix translation issues (Arpad Biro)
  o fix help text format (stew)
- drakboot: when "Back" is pressed, restore the list of entries in
  bootloader (#5680) (pixel)
- drakbug: add support for bug submission about stable releases into
  anthill (stew)
- drakconnect: (poulpy)
  o fix adsl support regarding ppoe.conf (#5674)
  o fix speedtouch (#5056)
- draksound:
  o do not overwrite current driver if it's a viable driver for the
    current sound card (#5488)
  o show the current driver too (being preselected) so that users do
    not get confused
- drakupdate_fstab: fix supermount handling (pixel)
- fix hidden or cutted buttons (#1919, #2364, #2705, #3667, ...)
- fix expert mode resulting in advanced setting being displayed by
  default but label still being "advanced" instead of "basic" (#4353)
- harddrake service: switch to verbose mode when using bootsplash
  (warly)
- localedrake: fix chinese input (#4408)
- printerdrake: (till)
  o fix LIDIL devices management
  o really handle PSC 1xxx and OfficeJet 4xxx
  o added support for user-mode-only HPOJ devices (HP PSC 1xxx and
    OfficeJet 4xxx) (#5641)
- standalone tools: speedup startup by invoking "rpm -qa" only once (fpons)
- XFdrake:
  o use 24bit for fglrx in automatic mode (fpons)
  o prevent lost Xauth access (pixel)
  o fix logout from gnome (pixel)
  o fix not translated test page (pixel)

* Thu Sep 11 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-11mdk
- drakboot: misc fixes (pixel, fpons)
- drakconnect:
  o do not set hostname if there's a dynamic interface
  o fix firmware loading (poulpy)
  o fix profiles with spaces in name (#5586)
- drakfont: fix faillure to install fonts (#5571)
- drakfirewall: make it work with dialup connexion (#4424) (florin)
- drakgw: fix canceling info steps (florin)
- harddrake2:
  o fix freeze while configuring modules (infamous #4136)
  o warn about no module parameters instead of not showing the dialog
- localedrake: configure kdmrc too (pixel)
- logdrake: always display the log domain names in the same order
- printerdrake: help making printerdrake icon bar be shorter (#5282)
- update wizard banners (davod beidebs)
- XFdrake: handle ati drivers (nplanel, fpons)

* Tue Sep  9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-10mdk
- disdrake: fix userdrake not runnable (#5447) (pixel)
- drakboot:
  o fix too small kernels window width (#5040)
  o fix too big main window
- drakconnect:
  o when no profile is set, use default one (poulpy)
  o add support for sagem dhcp (francois)
- drakperm: do not complain about saving on view change
- drakxtv: install xawtv if needed (#5130)
- logdrake: fix infinite entries (#5448)
- printerdrake: fix options saving (#5423) (till)

* Mon Sep  8 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-9mdk
- drakfont: fix not being able to select directories (#4964)
- drakconnect:
  o fix profiles managment (poulpy & tv)
  o fix firmware loading (#5307, poulpy)
- fix net_monitor not working as root
- printerdrake:
  o use new help scheme (daouda)
  o reread database when switching between normal and expert mode
    (till)
- scannerdrake: complain if saned could not be installed
- XFdrake: use OptionMenu's rather than Combo's (more consistent gui
  and better behavior when embedded)

* Sun Sep  7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-8mdk
- localedrake: configuration fixes (gc)
- drakgw: fix #2120 & #2405 (florin)
- drakconnect: (poulpy)
  o workaround messed up ppp0 configration
  o fix profiles

* Thu Sep  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-7mdk
- diskdrake: fix #5204 (pixel)
- drakbackup: fix untranslatable strings, ... (stew)
- drakconnect:
  o fix #5242: loop on winmodem connection if no windomem but winmodem
    is selected
  o offer to select modem device
- fix buildrequires for 64bits ports
- fix lsnetdrake on AMD64 (gwenole)

* Sun Aug 31 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-6mdk
 - drakboot: default parameters are those of the default target (pixel)
 - drakedm: in non expert mode, only display the list of *installed* display
   managers
 - drakfloppy, drakconnect: fix more dialogs height
 - fix requires

* Thu Aug 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-5mdk
- drakhelp: add support for contextual help (daouda)
- explanations are back (pixel)
- fix autologin for xdm (pixel)
- drakconnect:
  o fix dialogs height
  o fix #4372 (poulpy)
  o profiles are back
- printerdrake: new GUI (till)

* Wed Aug 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-4mdk
- drakconnect:
  o non wizard gui
    * fix hostname setting
    * set hostname at the same time we apply dns changes (on apply
      button press)
  o both wizard and non wizard modes: (poulpy)
    * fix #4363
    * fix speedtouch firmware file name
- drakxtv: resync with kernel's bttv
- printerdrake: misc fixes (till)

* Tue Aug 26 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-3mdk
- drakconnect (non wizard gui):
  o add --skip-wizard option to get into non wizard mode
  o hide profile in "internet config" dialog if profiles are disabled
  o "Configure hostname..." button: offer to configure DNS too
  o only allow to run one wizard at once
  o reload the configuration once the wizard exited
  o prevent one to do concurrent config changes from the gui while the
    wizard is run
  o only write conf & install packages on exit if something really has
    been altered so that we do not write the config twice if the
    "apply" button was already pressed

* Tue Aug 26 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-2mdk
- diskdrake: (pixel)
  o fix WebDAV configuration embedding (#4703)
  o use fs=ext2:vfat or fs=udf:iso9600 for supermount-ng
- printerdrake: misc fixes (till)
- service_harddrake: prevent depmod to be runned everytime
- XFdrake: more fixes for multilayout keyboards

* Mon Aug 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-1mdk
- drakfloppy: make it CJK aware
- drakTermServ: add /etc/modules for local hardware config (stew)
- fix #4579: drakconnect not working on console (poulpy)
- printerdrake: misc fixes (till)

* Sat Aug 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.35mdk
- drakperm:
  o add new rules at top
  o always display editable rules before non editable ones
  o disable up button when selected rule is the first one
  o disable down button when selected rule is the latest one or when
    next rule is non editable
  o fix moving up/down rules
  o fix no saving if we've sort rules

* Sat Aug 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.34mdk
- disdrake: explain why ntfs resizing had failled (pixel)
- drakbackup: (stew)
  o fix crash on file select of "Other" finish custom cron
    configuration
  o normal users can now do cron backups
- drakconnect:
  o fix no detection in expert mode
  o better firmware load from floppy managment (poulpy)
  o fix pppoa use for speedtouch USB (poulpy)
- drakfirewall: add samba in services list
- drakperm: make security level menu be more understandable & usuable
- draksec: translate default value in help tooltips too
- fix CJK wrapping in more places (#3670 and the like)
- make interactive button order be the same as gtk dialogs one and our
  dialogs but only in standalone mode
- misc fixes from pixel

* Thu Aug 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.33mdk
- fix CJK wrapping in interactive tools (#4642)
- remove ugly border around standalone tools
- wizards: increase height to prevent some hidden or cutted buttons
- diskdrake: fix small unallocated area at the end of the drive
  (pixel)
- drakconnect: (poulpy)
  o allow user to copy firmware from a floppy
  o fix another back step
  o fix wrong url
- drakxtv: only offer to configure xawtv if bttv was configured
- XFdrake: fix #3976 (francois)
- update keyboards list & translations (pablo)

* Tue Aug 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.32mdk
- pci hardware discovery: do full-probe by default
- show advanced options by default if --expert was passed or if expect
  checkbox was checked (#4353)
- drakconnect: fix internet reconnection (poulpy)

* Tue Aug 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.31mdk
- drakbackup: user definable crontab entry (stew)

- drakconnect:
  o fix up/down interface detection (poulpy)
  o fix some more previous buttons in drakconnect wizard mode
  o fix crash on interface enabling/disabling
  o fix lan changes (#4088)

- drakfloppy:
  o fix long-standing broken mkbootdisk call bug
  o sort modules and directories in treeview
  o save the options & modules list on exit and them restore it on
    load
  o try to be more user friendly:
    * if no error, display a success message, then exit
    * on error, instead of displaying the raw exit code that has no
      meaning for the end user, display in red the log message of mkbootdisk
    * remove insane expert button and so called expert frame

- drakpxe: match new pxe dhcp.conf configuration file (francois)

- harddrake2:
  o display the right fields description when no device is selected
  o make dialogs be modals and transcient

- diskdrake: (pixel)
  o fix lvm managment(#4239)
  o fix underscores being underlines (#4678)
  o fix interaction with mcc

- fix misc issues with shadow passwords and package managment
  (francois/pixel)
* Sun Aug 17 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.2-0.30mdk

- drakconnect mcc: 
  - allow hostname change
  - dhcp to static fixes

* Tue Aug 12 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.2-0.29mdk
- drakconnect: fix message (#4564)
- drakbackup: (stew)
  o fix #4381
  o search for files to restore
  o fix looping in catalog restore
  o gui enhancements (fabrice facorat)
  o deal with users that are deleted from the system (#4541)
- drakxtools depends on gurpmi
- lot of misc bug fixes

* Thu Aug  7 2003 Pixel <pixel@mandrakesoft.com> 9.2-0.28mdk
- drakxservices: xinetd services have a special treatment
- localedrake: fix the "zh_TW with country China" case
- no more stock icons 

* Mon Aug  4 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.2-0.27mdk
- ugtk2.pm:
  - revert "use checkboxes instead of icons"
  - fix not possible to select with mouse anymore (rpmdrake etc)

* Mon Aug  4 2003 Pixel <pixel@mandrakesoft.com> 9.2-0.26mdk
- various fixes
- clean tarball with no Makefile_c (thanks to Christiaan Welvaart)

* Sat Aug  2 2003 Pixel <pixel@mandrakesoft.com> 9.2-0.25mdk
- drakauth first appearance
- diskdrake --nfs and --smb:
  o instead of removing the "Search servers" button when the search is over,
    keep it to allow searching for new servers
    (the label is changed from "Search servers" to "Search new servers") (bug #4297)
- XFdrake
  o use something like """Virtual 1280 960""" instead of """Modes "1280x960" "1024x768" "800x600" "640x480""""
  o fix test dialog box
- drakbackup (various changes)
- drakboot
  o allow to choose /dev/fd0 for the boot device
  
* Thu Jul 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.24mdk
- drakbug:
  o use option menus instead of combos
  o use std button layout
- drakconnect:
  o double click on ethernet interface list lines run lan config
    dialog
  o remove nonsense expert button
- drakperm: fix crash on adding new permission
- harddrake: fix #4258
- mousedrake: use std button layout
- ugtk2:
  o add infrastucture for rpmlint toggle (semi-selected state mis-functionnal)
  o restore mouse selection

* Thu Jul 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.23mdk
- drakperm:
  o main window:
    * "ok" button should exit after having saved the preferences
    * localize levels in option menu
  o preferences dialog :
    * fix preferences saving on  exit
    * fix tips
- draksec:
  o restore help for msec checks
  o enhanced help in tooltips

* Thu Jul 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.22mdk
- drakautoinst, drakper, draksound, and many other tools: use option
  menus instead of combo boxes when the user is selecting from a fixed
  set of options
- drakboot: hide non working splash stuff
- drakperm:
  o sanitize gui (upcased labels, understandable labels, ...)
  o settings dialog:
    * localize all fields
    * add tips for all check boxes
    * use std button layout
    * use stock icons
  o rules toolbar: use stock icons
- net_monitor: fix crash on profile change due to netconnect api
  change

* Wed Jul 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.21mdk
- drakbackup: misc fixes (stew)
- drakboot: directly configure gdm & kdm
- drakconnect: fix #4050
- drakfont: fix #1679 & #3673
- drakgw:
  o fix not being able to step backward
  o fix canceling resulting in broken dhcp config
  o make --testing option being usefull
- drakhelp: fix no help for de/it/ru locales (daouda)

* Tue Jul 22 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.20mdk
- drakconnect: fix "lan config" dialog where fields were not filled
- draksec: vertically align OptionMenus

* Mon Jul 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.19mdk
- diskdrake, drakconnect: add an help button in standalone mode
- draksec
  o describe all security levels
  o make it clear that security admin is not a security level
  o colorize security levels names
  o do not offer to set syadmin when reports are disabled
  o fix infamous "when embedded draksec can be enlarged but never shrink back"
  o make 1st tab title somewhat clearer
- harddrake2: workaround buggy gtk+-2.x that do not enable wrapping textviews when
  realized
- renew drakconnect wizard gui (2/x):
  o make previous button always be availlable when configuring lan
  o keep user changes when going back to main connection types menu
  o do not loop if one refuse to save changes, just skip the save step
  o fix final success message
  o really translate type connection to be translated
  o try to get more space on screen
  o dhcp host name cannot be set if one want to get it from dhcp server

* Sat Jul 19 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.18mdk
- draksec:
  o sort functions & checks when writing configuration
  o really fix config load

* Fri Jul 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.17mdk
- draksec:
  o fix preferences loading & saving
  o sort again functions & checks

* Thu Jul 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.16mdk
- do not exit the whole application when one destroy a dialog
- drop gtk+1 requires
- renew drakconnect gui (1/x):
  o embedded mode:
    * remove ugly icon
    * fix internet gateway buttons layout
    * smaller dialogs
    * correctly align fields in "lan configuration" dialog
    * run wizard in background (no more main window freeze until
      wizard exit)
  o wizard mode:
    * proxy configuration step: do not go back two steps back on
      "previous" click, but only one back
    * properly use checkboxes (do not put extra labels before when
      checkbox's label is empty)
- wizard mode:
  o stock items in wizards for previous/next
  o do not force permanent center of wizard windows, which is not
    user-friendly
  o always use s/TextView/Label/ 

* Tue Jul 15 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.15mdk
- drakbackup, drakperm: fix button layout
- drakboot, drakfloppy: use option menus rather than non editable
  combo
- drakboot:
  o grey theme config instead of hiding it
  o describe user and desktop lists
- drakfloppy: grey remove button if no module to remove in modules
  list
- draksec: wrap labels
- fix interactive apps on X11 (eg diskdrake)
- fix error and warning dialogs
- logdrake: ensure we got a valied email in "email alert"
- printerdrake: make printerdrake runable
- xfdrake: make it use stock items too

* Mon Jul 14 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.14mdk
- drakboot: fix /etc/lilo.conf generation when reading grub config by setting
  valid "boot=" parameter
- drakconnect, drakfloppy: make checkboxes out of ugly "expert <-> normal modes"
  buttons (saner gui)
- drakconnect:
  o kill duplicated code, share it with drakfloppy and others
  o renew GUI:
    * make sub windows be modal, centered on parent and trancient dialogs
      instead of toplevel windows
    * fix "Internet connection configuration" dialog
    * fix layout of main window:
      + pack together expert mode toggle and wizard button
      + merge wizard label and button
- drakfloppy:
  o fix warning on menu building
  o fix module browsing after gtk2-perl-xs switch
  o support new 2.5.x kernels' kbuild
  o fix old brown paper bug (mdk8.2/9.0 :-() not passing extra selected modules
    to mkinitrd
  o fix unable to pick a module again after having removed it from selection
  o renew GUI:
    * window with enabled expert options is too big when embedded: let's move
      expert options into a sub dialog
    * use stock dialogs
- draksec:
  o translate msec options' default values
  o display descriptions rather than raw function names
- drakTermserv: fix entry filling
- logdrake: fix crash when called from net_monitor
- net_monitor: switch from gtk+-1.2.x to gtk+-2.2.x (fix #3998 btw)
- sanitize guis, especially button layouts:
  o use std layout (ButtonBoxes) for buttons everywhere
  o use stock items everywhere
  o let interactive apps using stock items on x11 and old drak translated items
    in other backends
  o pack buttons always in the same order and places
  o use OptionMenu instead of Combo Boxes when the user is selecting from a
    fixed set of options

* Thu Jul 10 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.13mdk
- drakfloppy: one cannot edit output buffer
- drakperm: fix crash when moving lines around sorted columns
- draksec: more stock icons
- logdrake: fixes

* Thu Jul 10 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.12mdk
- drakboot, drakfont: use stock button
- drakconnect, drakfloppy: grey widgest instead of hiding them when
  not in expert mode
- drakconnect, draksec: fix crash
- drakbackup: misc fixes (stew)

* Wed Jul  9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.11mdk
- more work on new perl binding for gtk+-2, especially for drakbug and
  rpmdrake

* Wed Jul  9 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.10mdk
- switch from gtk2-perl to gtk2-perl-xs
- a few more stock items

* Sun Jul  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.9mdk
- increase gui coherency of drakxtools vs other gtk+ apps: use stock icons
- drakbackup: (stew)
  o show units for hard-drive allocation
  o add "View Configuration" 1st screen.
  o honor user defined limits for backup disk consumption
  o log last backup and to enable view last backup log
  o fix gui crash on restore. (Keld Jorn Simonsen/Cooker list)
- drakconnect, drakfloppy, drakperm: let columns be sortable
- drakconnect (isdn): virtual interface ippp0 is started at boot
  (dam's)
- harddrake2: colorize help
- keyboard managment: added various new keyboard layouts (pablo)

* Tue Jul  1 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.8mdk
- drakbackup: try to better fit gui when embedded (fix #4111) (stew)
- drakTermServ: enable local client hardware configuration (stew)
- harddrake2: let gui behave better when embedded
- ugtk2: locales setting fix for rpmdrake (gc)

* Tue Jun 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.7mdk
- drakboot: more work on grub conf reread
- drakedm: fix crash on service restart
- drakfont: fix crash when trying to remove empty font list (#1944)

* Tue Jun 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.6mdk
- autoinstall: (pixel)
  o fix regarding LVMs
  o support encrypted partitions
- draconnect: misc fixes (poulpy)
- drakboot: reread grub config file if grub is the current boot loader
  (#3965)
- diskdrake: fix for nfs mount points (pixel)
- drakgw: reread current network conf (florin) (#468)
- i18n fixes (#3647 and co)
- mousedrake: add mouse test in non-embedded mode (#2049) (gc)

* Tue May 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.5mdk
- keyboardrake: resync with XFree86-4.3 (pablo)

* Tue May 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.4mdk
- drakconnect: fix #3628 (ensure 644 perms on /etc/resolv.conf)

* Wed May 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.3mdk
- drakbackup: fixes regarding file names in differntial mode (stew)
- drakboot, drakconnect, harddrake2, printerdrake: misc cleaning
- drakconnect:
  o workaround #3341 (display "Bad ip" instead of a blank field if we
    failled to parse the ip)
  o fix #853 (check ip) (poulpy)
- printerdrake: fix #1342 (english rephrasing)
- requires: fix #3485

* Tue May 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.2mdk
- printerdrake: misc bug fixes
- drakconnect: fix #763, #2336 (ethX aliases on network card changes)
  (poulpy)

* Tue May 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.2-0.1mdk
- drakconnect: fix #2530 (extraneous vindow on wizard error) (poulpy)
- drakedm: fix #1743 (offer to restart the dm service)
- drakfont: fix #3960 (divide by zero execption)
- draksec: fix #3616 (draksec discarding changes)
- my_gtk: fix #3952 (non working drakcronat)

* Fri May 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-38mdk
- drakboot:
  o do not install both lilo and grub when grub is choosen
  o further fix #2826: replace spaces by underscores in labels
  o further fix #3560: update main bootloader label after the
    bootloader switch
  o raise a wait message window so that the user can figure out what
    occurs (lilo installation being quite long)
- harddrake: localize drive capabilites (aka burning, dvd managment, ...)
- drakconnect: fix #852: add a step to warn user before writing
  settings (poulpy)

* Thu May 15 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-37mdk
- drakfont: fix #1352 (do not add font directory with dummy messages)
- harddrake2: fix #3487 (invalid charset in help windows)
- drakconnect: fix "isdn modem choice step is skipped" bug (poulpy)

* Mon May 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-36mdk
- drakboot:
  o do not loop on console (part of #3560) (pixel)
  o do not log localized messages
  o if the bootsplash is missing, just go back to main config window

* Wed Apr 30 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-35mdk
- draksec: fix #3618 (let one pick any security level)
- harddrake service: display all removed devices

* Tue Apr 29 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-34mdk
- drakedm: fix #3701 (return back to the display managers menu if one
  cancel the installation of the required packages)
- drakfont: empty the font queue when step back (poulpy)

* Thu Apr 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-33mdk
- fix provides

* Wed Apr 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-32mdk
- translation snapshot

* Mon Apr  7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-31mdk
- harddrake gui: fix menu entry description
- drakbtoot: fix #2826 (aka crash when one enter space in lilo label)
- ugtk2: fix #3633
- drakconnect:
  o fix #1675: swap the text and button widgets
  o typo fix (dam's)
- new perl_checker compliance (pixel)
- xfdrake: better keyboard managment (pixel)
- update translations (pablo)
- build fix for 64bits arch (gwenole)

* Fri Apr  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-30mdk
- fix drakfloppy crash on boot floppy creation
- ugtk2.pm: fix slight pb with gtktext_insert (#3633) (gc)

* Fri Mar 28 2003 Pixel <pixel@mandrakesoft.com> 9.1-29mdk
- use ServerFlags DontVTSwitch for i845, i865 and i85x

* Mon Mar 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-28mdk
- drakconnect: add support for ltpmodem

* Fri Mar 21 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-27mdk
- harddrake service: increase default timeout from 5 to 25 seconds

* Sun Mar 16 2003 Warly <warly@mandrakesoft.com> 9.1-26mdk
- do a correct cvs up of all gi before (me sux)

* Sat Mar 15 2003 Warly <warly@mandrakesoft.com> 9.1-25mdk
- fix drakperm fatal error in editable mode

* Fri Mar 14 2003 Pixel <pixel@mandrakesoft.com> 9.1-24mdk
- fix XFdrake handling NVidia proprietary drivers

* Thu Mar 13 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-23mdk
- printerdrake: Fixed bug #417: '$' character in printer URI was not
  correctly handled.
- Desktop group simplification (francois).
- Translation updates (pablo, fabian).

* Thu Mar 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-22mdk
- drakboot/drakx: fix #3161 (ensure right permissions on
  /etc/sysconfig/autologin for bad root umask case)
- enable smooth sound configuration update from mdk9.0 (new unified
  via sound driver) and from mdk8.x
- scannerdrake detection fixes (till)
- drakTermServ: Fix IP pool range (stew)

* Wed Mar 12 2003 Pixel <pixel@mandrakesoft.com> 9.1-21mdk
- diskdrake: have a default mount point for newly added removables
- drakupdate_fstab: allow --del to remove fd0 & fd1