summaryrefslogtreecommitdiffstats
path: root/perl-install/install/NEWS
blob: b2b1ce3dc7fc8a225294e0bcbece153ab2d8f7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
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
- add online media at installation end (mga#8819)

Version 16.99 - 20 May 2015

- bootloader:
  o do not detect grub2 on UEFI when there's no bootloader
  o fix default grub2 kernel parameters (mga#15984)
- partitioning:
  o display cosmetics when reading back GPT partitions
  o fix mnt point for FAT partitions on GTP (mga#15987)
  o set the proper GUID for FAT partitions on GPT
- don't try to install non existant scim-googlepinyin (mga#6681)

Version 16.97 - 18 May 2015

(just to be sure draklive-install fix for mga15257 doesn't break anything)

Version 16.96 - 17 May 2015

- partitioning:
  o fix regression refusing FAT for ESP (mga#15962)

Version 16.95 - 14 May 2015

- better dialog title (mga#9648)
- partitioning:
  o fix a crash after "insufficient space" error (mga#15919)

Version 16.93 - 9 May 2015

- bootloader:
  o do use vga value for grub2
  o fix setting default grub2 entry

Version 16.92 - 9 May 2015

- bootloader:
  o add a dedicate step for grub2 (mga#9627)
  o always log update-grub2 output (mga#15857)
  o backup grub2 files before configuring
- log grub2 install.sh in report.bug like for grub (mga#15857)
- networking:
  o recognize r8723bs (mga#15874)
- partitioning:
  o do not set noauto for /boot/EFI (mga#15627)

Version 16.91 - 3 May 2015

- final left-background

Version 16.90 - 28 April 2015

- localedrake:
  o write input methods to /etc/locale.conf (mga#15464)
- run vgchange before updating the list of LVMs, not after, and even if not
  in install (should help with mga#7578).

Version 16.89 - 25 April 2015

- Ignore special partitions on mmc (mga#15759)

Version 16.87 - 21 April 2015

- partitioning:
  o improve the display box (mga#15728)

Version 16.86 - 20 April 2015

- bootloader:
  o dont override 'splash' and/or 'quiet' when adding 'noiswmd' (mga#15666)
- partitioning:
  o use the windows partition with the most available space on current
    disk, not the last one across all disks (mga#15589)
  o suggest up to 20GB/20% of the windows partition (whichever is larger),
    previously 6GB/10% (mga#15589)
  o hide empty space < 2MB, we have such holes due to alignment (mga#15733)
- speed up reading of flags from GPT partition table (mga#15621).

Version 16.84 - 14 April 2015

- bootloader config:
  o do not pass useless parameters to grub2 under UEFI (mga#15692)
  o fix kernel booting in blind mode (mga#15291)

Version 16.83 - 13 April 2015

- enable firmware raids with dmraid/kpartx like we do on
  live medias and on fully installed systems

Version 16.82 - 13 April 2015

- partionning:
  o detect Lenovo recovery & 'SYSTEM_DRV' as such (mga#1371)
  o do add a ESP if it was removed by "Clear All"
  o ignore ESP for "use free space on MS"
- bootloader config:
  o default to GRUB_DISABLE_RECOVERY=falss for 'failsafe' entry (mga#15675)

Version 16.81 - 12 April 2015

- add kpartx for dmraid activation
- fix upgrade when package's in several media (mga#15350)
  (need URPM-5.06 too)
- support loading patches from NTFS USB keys
- partionning:
  o don't guess a drive letter for ESP partitions

Version 16.80 - 9 April 2015

- bootloader config:
  o check there's still some place on /boot with grub2 too
  o generate core.img for UEFI
  o fix detecting grub2 on UEFI
  o write /boot/grub2/install.sh like for grub instead of drakboot.conf
- log grub2 config in report.bug like for grub/lilo
- partitionning:
  o don't guess a drive letter for recovery partitions (mga15636)

Version 16.79 - 7 April 2015

- bootloader config:
  o keep vga= parameter when switching to grub2 (mga#9888)

Version 16.78 - 7 April 2015

- bootloader:
  o fix installing grub2 on MBR (mga#15640)
    (regression introduced in 16.76)

Version 16.77 - 7 April 2015

- bootloader:
  o add 'noiswmd' to kernel command line to manage isw_ bios
    fakeraids with dmraid for now (instead of mdadm) (mga#11289, mga#14330)
  o allow btrfs for / without separate /boot with grub2 (mga#15374)
- partitioning wizard:
  o do not offer to select RAID as it result in a crash (mga#5800)

Version 16.76 - 3 April 2015

- bootloader config:
  o log grub2-install failures (mga#15439)
- partitionning:
  o log fdisk -l output before/after partitionning
  o really try to detect recovery partitions on GPT

Version 16.75 - 30 March 2015

- partitionning:
  o better fix for fail to read too corrupted partition table
  o fix getting ESP with "use free space":
    make sure to not override /boot/EFI mount point with /media/win_X
  o make sure to check for existing ESP on all disks
  o relax checks for ESP
  o try to detect recovery partitions on GPT

Version 16.74 - 27 March 2015

- GPT partitionning:
  o fix retrieving ntfs partitions as ntfs-3g instead of ntfs
  o really fix retrieving swap partition type

Version 16.73 - 27 March 2015

- GPT partitionning:
  o fix creating RAID devices (mga#15400)
    (regression from 16.33)
  o fix "I cannot read the partition table of device XXX, it is too corrupted"
  o fix retrieving LVM/RAID/swap partition type
  o fix retrieving ntfs partitions as ntfs-3g instead of ntfs
  o fix tagging lvm/raid as "linux filesystem"
  o fix tagging ntfs-3g as "linux filesystem"
  o fix tagging swap as "linux filesystem"
- tell users to ignore Gtk3 warnings

Version 16.72 - 26 March 2015

- fix a crash in auto install (mga#15573)

Version 16.71 - 25 March 2015

- bump max_nb() to 131 to cover mdadm managed imsm and ddf1 bios
  fakeraids (containers defaults to >= 127 and partitions <=126)
- partitionning:
  o fix retrieving ESP partition type on GPT (mga#15366)
  o log which GPT partition we fail to add/del
  o set proper GUID to ESP partitions with GPT layout
- pre-install grub2-efi on UEFI

Version 16.69 - 20 March 2015

- efi partitioning fixes from tv
- diskdrake & package install gtk fixes from Martin Whitaker

Version 16.68 - 17 March 2015

- fix mis-detecting some mobile broadband modems (mga#12492)
- add 'deploops' option for debugging (mga#15350)
- log mkinitrd faillures (mga#9201)

Version 16.67 - 5 March 2015

- auto_install:
  o ignore firmwares within draklive
  o log step errors
- drakx-in-chroot:
  o unbreak draklive

Version 16.66 - 5 March 2015

- diskdrake:
  o add "nofail" option to "foreign" mountpoints to avoid unwanted recovery mode (#10179)

Version 16.65 - 27 February 2015

- Mageia 5 RC
- include udev rule for Synaptics

Version 16.64 - 27 February 2015

- partitioning:
  o add missing button icons (mga#15264)

Version 16.63 - 27 February 2015

- partitioning:
  o fix too wide buttons (mga#12422, mga#13471, mga#14839, mga#15379)

Version 16.62 - 19 February 2015

- partitioning (mga#12422, mga#11988, mga#14839, mga#15272, mga#15264):
  o use an horizontal scrolling bar when needed
  o use a vertical scrolling bar when needed (mga#15272)
  o workaround too wide togglebuttons with empty label with gtk+3 and/or Adwaita

Version 16.61 - 18 February 2015

- ensure we install radeon-firmware too if needed (mga#15203)

Version 16.60 - 18 February 2015

- ensure we install kernel-firmware-nonfree if needed (mga#15203)

Version 16.59 - 18 February 2015

- bug:
  o display a nicer message when no removable medium is found (mga#14435)

Version 16.57 - 11 February 2015

- fix taking screenshots on UEFI 24bit bpp framebuffer (mga#13684)

Version 16.55 - 9 February 2015

- drakclock: Ensure that /etc/localtime is a symlink (mga#14888)
- users: Make sure to restart accounts-daemon after adding users (mga#15113)
- finish-install: Ensure i18n settings are loaded
- Create a symlink instead a hard copy to localtime see issue #14888
- i18n: Write the desired console font to /etc/vconsole.conf
- i18n: Use the x-distro /etc/locale.conf file instead of /etc/sysconfig/i18n
- drakedm: Don't run ancient dm init script (which no longer exists)
- Update traslations

Version 16.54 - 6 February 2015

- fix left background size

Version 16.53 - 6 February 2015

- switch from oxygen-gtk to Adwaita theme
  o remove oxygen-gtk
  o add missing icons (mga#13673, mga#14355, mga#14840, mga#14844)
  o add libpixbufloader-svg.so for Adwaita svg icons
  o add gtk.css

Version 16.52 - 5 February 2015

- default to GPT on disks larger than 4TB, not LVM
- fix GPT initialization on empty disk
- fix failure to delete partitions after switching to GPT
- fix stage2 loading graphical installer in efi mode

Version 16.51 - 3 February 2015

- Mageia 5 beta 3 
- recognize new kernel-3.19 drivers

Version 16.50 - 9 January 2015

- initial uefi support

Version 16.49 - 31 December 2014

- translation updates
- refer to MageiaWelcome instead of to something we do not have (mga#10901)
- drakx-in-chroot:
  o pre-create /dev/null & co before mounting devtmpfs
- recognize new kernel-3.18 drivers (mga#14799)

Version 16.48 - 16 December 2014

- Mageia 5 artwork integration (with beta2 mention on left-background)
- do not load hyper-v modules (already done by udev in stage1)

Version 16.47 - 5 December 2014

- do not crash loading stage2 in Virtual PC (mga#14117)
- bootloader config:
  o do not crash if fstab contains a bind mount on a file (mga#14657)

Version 16.45 - 26 October 2014

- drakx-in-chroot:
  o pre-create /dev/null & co again (for draklive)
- fix selecting of uneeded locales (mga#3723)

Version 16.44 - 23 October 2014

- drakx-in-chroot:
  o document --stage2-update in --help
  o mount /dev -o ro
  o try harder to umount everything when sg went havroc

Version 16.43 - 20 October 2014

- drakx-in-chroot:
  o adapt to the fact that stage2 expects a /dev fully populated by udev
- package installation:
  o adapt to URPM-5
  o rename "no_suggests" option as "no_recommends"

Version 16.42 - 18 September 2014

- only allow GRUB2 when booting on btrfs

Version 16.41 - 31 August 2014

- adapt to latest systemd
- allow /boot on btrfs
- recognize new kernel-3.17 drivers

Version 16.40 - 22 August 2014

- adwaita-gtk3-theme no longer provides a settings.ini file
- log X.org server logs when it fails to start up (mga#13471, ...)
- recognize hyper-v paravirtual network driver

Version 16.39 - 17 August 2014

- recognize new kernel-3.16 drivers

Version 16.38 - 22 July 2014

- Mageia 5 alpha 2 left background

Version 16.37 - 3 July 2014

- fix /etc/fstab writing (mga#13114, also reported by Joseph Wang)
- partitioning:
  o improve fs sorting in combo box (mga#13640)

Version 16.36 - 1 July 2014

- hide /boot/efi check for now (mga#13638)

Version 16.35 - 29 June 2014

- Mageia 5 alpha 1 left  background
- let udev handle floppies

Version 16.33 - 18 June 2014

- stop creating some /dev entries that are managed by udev

Version 16.32 - 15 June 2014

- include platform driver autoload udev rules
- recognize new kernel-3.15 drivers

Version 16.31.1 - 6 June 2014

- include udev rule for VMmouse

Version 16.31 - 6 June 2014

- xorg config:
  o rely on evdev/udev for input devices
  o Wacom tablets should work better
    (we now load the wacom driver again)
  o Synaptics touchpads should now work during install (mga#11524)

Version 16.30 - 4 June 2014

- adapt to perl-5.20
- add some POD documentation
- do not unavailable kernel-xbox
- drop (broken) support for Alpha, PPC, Sparc & IA64
- locale setting
  o stop configuring HAL
  o update locales list

Version 16.29 -  3 May 2014

- gnome-icon-theme is now adwaita-icon-theme

Version 16.28 - 28 April 2014

- recognize new kernel-3.14 drivers

Version 16.27 - 18 February 2014

- fix crash when choosing a RTL language (mga#12793)
- Ensure uid/gid extraction works when adding users via summary page
  (fixes chown'ing user to root when adding existing user on upgrade mga#12375)

Version 16.26.6 - 23 January 2014

- fix hidden icon in individual package selection (mga#12397)

Version 16.26.5 - 22 January 2014

- release notes dialog:
  o fix untranslated button

Version 16.26.4 - 22 January 2014

- debug image:
  o add a warning about QWERTY keyboard
- help dialogs:
  o do warn on first screenshot (mga#11176)
  o fix lost help screenshots (mga#11176)

Version 16.26.3 - 21 January 2014

- help dialogs:
  o do not warn if a screenshot already has been taked (mga#11176)

Version 16.26.2 - 20 January 2014

- left background for final release of Mageia 4

Version 16.26.1 - 20 January 2014

- partitioning:
  o increase back minimum partition width for Oxygen (mga#11977)

Version 16.26 - 20 January 2014

- fix detecting if basesystem is installed (mga#10722)
  thus fixing "basesystem package not selected"
- partitioning:
  o fix sizing partition widgets
  o fix not moving window (mga#11790, mga#11988, mga#11977)
  o revert minimum partition width to its pre-gtk3 value
  o show labels on partition buttons

Version 16.25 - 19 January 2014

- add Mageia 4 desktop images

Version 16.24 - 18 January 2014

- help dialogs:
  o make screenshots work (mga#11176)
  o fix untranslated button & title (mga#9828)

Version 16.23 - 16 January 2014

- partitioning:
  o do not show labels on partition buttons (mga#11988)

Version 16.22 - 15 January 2014

- partitioning:
  o fix "No GSettings schemas are installed on the system" error when
    inspecting partitions (mga#12279)
- services:
  o use --no-block with chkconfig and systemctl enable to prevent systemd reload
    and potential crash (especially during first/live boot)

Version 16.21 - 13 January 2014

- partitioning:
  o do not propose check bad blocks for btrfs (Manuel Hiebel, mga#10116)
  o increase minimum partition width for Oxygen (mga#11977)
    (if not enough, we will disable labels on partitions buttons again)
- revert back to matchbox instead of mutter as it doesn't fix
  diskdrake issues (mga#11977)
  (thus fixing missing window decorations (mga#12218))

Version 16.20 - 6 January 2014

- Mageia 4 artwork

Version 16.19 - 4 January 2014

- Mageia 4 RC left background

Version 16.17 - 20 December 2013

- media step:
  o hint that nonfree is needed if a CPU needs a microcode
- install:
  o fix pausing installing while displaying release notes
- drakx-in-chroot:
  o advise to install xephyr if missing
- use mutter instead of matchbox in order to try to workaround
  diskdrake issues (mga#11790, mga#11988, ...)
  as a side effect, stage2 shrinks by 3Mb...

Version 16.14 - 10 December 2013

- Mageia 4 beta 2 left background

Version 16.13 - 10 December 2013

- fix crash when selecting an input method (mga#11939)

Version 16.10 - 6 December 2013

- package group selection:
  o make bottom buttons always available
    (by puting the scrolling window only around the package group check boxes)

Version 16.9 - 6 December 2013

- fix retrieving network info from stage2 after dracut migration (mga#11504)

Version 16.7 - 5 December 2013

- partitioning:
  o fix a crash when creating partitions (mga#11876)

Version 16.6 - 4 December 2013

- fix blue background behind left panel text (mga#11866)

Version 16.5 - 3 December 2013

- partitioning:
  o detect eMMc block devices (Luc Menut, mga#11812)
  o fix a crash in partitioning wizard (mga#11820)
  o show labels on partition buttons again but ellipsized (mga#11858)

Version 16.4 - 2 December 2013

- fix partitioning wizard moving the main window to left (mga#11790)
- fix titles not being blue anymore

Version 16.2 - 29 November 2013

- no more run urpmi.update when adding media
  (uneeded with urpmi-7.27+)

Version 16.1 - 28 November 2013

- fix a warning: include dialog-warning-symbolic
- fix left panel text being black instead of white (mga#11792)
- fix calling "child1_shrink" via package "Gtk3::HPaned" (mga#11797)
- fix using old toolbar API that is no more available (mga#11791)
- wrap too big labels in summary dialog (mga#11793)

Version 16.0 - 23 November 2013

- switch from Gtk+-2 to Gtk+-3:
  o Banners: most themes work OK but Oxygen-gtk3...
  o diskdrake: most themes work OK but Oxygen-gtk3...
- detect_devices:
  fix ids to be numeric
- drakx-in-chroot:
  o add --depth in order to force 16bit colors mode

Version 15.73.1 - 19 November 2013

- debug image:
  o include enough python in order to generate a stack trace from within stage2
  o fix passing arguments from drakx-in-chroot
- do not compile/include xhost+ anymore (unused for years)
- log why updates were not applied

Version 15.73 - 12 November 2013

- polkit: fix wrappers to properly escape arguments when calling the binary

Version 15.72.2 - 11 November 2013

- properly escape $$UID
- use $$UID instead of $$(id -u)

Version 15.72.1 - 9 November 2013

- fix typo in last Makefile change

Version 15.72 - 9 November 2013

- use /usr/libexec/drakrpm-addmedia directly in stage2 (colin, #11319)
- debug image:
  o add missing python modules for latest gdb
  o fix building with latest gdb

Version 15.71 - 8 November 2013

- do not use automatically gdm for xfce
- do not include anymore packdrake module

Version 15.70 - 3 November 2013

- Mageia 4 beta 1 left background

Version 15.69 - 29 October 2013

- adapt to a dracut based stage1

Version 15.68.1 - 14 October 2013

- adapt to latest mdadm

Version 15.68 - 14 October 2013

- drop /etc/termcap as it's no longer part of our build
- make urpmi install check more reliable (polkit related path change mga#11125)
- recognize new kernel-3.12 drivers

Version 15.67 - 10 October 2013

- log when user reject applying updates (mga#11319)
- recognize new kernel-3.11 drivers

Version 15.66 - 3 October 2013

- include another network interface name udev rule (mga#10947)
- diskdrake:
  o enable to format already formated btrfs partitions (mga#11256)

Version 15.65 - 28 September 2013

- mageia 4 alpha 3 left background
- fix detecting some soft RAID (mga#11139 and the like)

Version 15.64 - 4 September 2013

- rebuild

Version 15.63 - 4 September 2013

- revert multi selection for desktops

Version 15.62 - 3 September 2013

- Mageia 4 alpha 2 left background
- updated translations for desktop install
- add Independently install Desktop environments
- install open-vm-tools on VMware hypervisor

Version 15.61 - 8 August 2013

- include network interface name udev rule (mga#10947)

Version 15.60 - 4 August 2013

- Mageia 4 alpha 1 left background

Version 15.59 - 4 August 2013

- add missing re.so for utf8_heavy.pl (mga#10893)
- detect wifi cards managed by ssb driver (mga#9378)

Version 15.58 - 19 July 2013

- fix a lang pixmap (mga#10795)

Version 15.57 - 16 July 2013

- adapt to latest btrfs utils for resizing

Version 15.56 - 16 July 2013

- bootloader:
  o fix displaying need to install acpi* packages when they're already installed
  o read/save choosen default entry
- detect wifi cards managed by bcma driver (mga#9378)
- detect new kernel-3.10 drivers

Version 15.54 - 17 May 2013

- do not enable legacy sysvinit scripts that no longer exist (mga#10084)
- do not enable to pick xguest (mga#9750)
- fix offering to install shorewall & shorewall-ipv6 when already installed
- media step:
  o hint that nonfree is needed if a driver needs a nonfree firmware
  o preselect nonfree if needed

Version 15.52 - 15 May 2013

- fix displaying release notes while installing (mga#10087)

Version 15.51 - 13 May 2013

- drop support for fetching release-notes.ARCH.html
- enable Nonfree/Tainted repositories when adding update media if a
  package having a matching name is installed (similar to #8379)
- detect_devices: check for phy80211 sysfs directory as well to detect
  wireless devices

Version 15.49 - 2 May 2013

- fix displaying ads (mga#9939)

Version 15.48 - 1 May 2013

- include mount options in auto_inst.pl
- install 'basesystem-minimal' instead of 'basesystem' prior to add extra media
  thus fixing "basesystem package not selected" (mga#9611)
- make xdm installation automatic in auto_inst mode (mga#9875)

Version 15.47 - 30 April 2013

- include more partition fields in auto_inst.pl (mga#9784)
- skip comments in /etc/crypttab (Colin, mga#9905)
- services:
  o list 'shorewall-ipv6' along 'shorewall'

Version 15.45 - 27 april 2013

- fix doble logging of 'filesystem' installation (mga#7758)
- install shorewall-ipv6 along shorewall (mga#9401)
- bootloader:
  o try harder to get a label for other OSes (mga#9849,9681)
- partionning:
  o only allow 'acl' option for extX & reiserfs (mga#9884)

Version 15.44 - 23 april 2013

- partionning:
  o fix a crash when reloading partition table (mga#9838)
  o fix a crash when trying to create a encrypted LVM partition (mga#9837)

Version 15.43 - 22 april 2013

- prepare final release: left background

Version 15.42 - 21 April 2013

- partionning (mga#5661):
  o ensure LVMs on top of dmcrypt are activated after unlocking
  o fix UI redraw issue after unlocking dmcrypt partition

Version 15.41 - 21 April 2013

- add support for new help
- updated translations

Version 15.40 - 19 April 2013

- authentication:
  o 'nss-pam-ldapd' obsoletes 'pam_ldap' (mga#9769)
- partionning (mga#5661):
  o fix losing crypt key when detecting LVMs on top of dmcrypt
  o fix losing crypt key when re-reading partition tables

Version 15.39 - 15 April 2013

- bump min size for spliting /home fs (Eugeni, mga#3189):
  o from 8 to 12Gb if simple partionning
  o from 7 to 10Gb if /usr is split or for servers

Version 15.38 - 14 April 2013

- Mageia 3 RC banner

Version 15.37 - 9 April 2013

- library:
  o fix detecting some USB devices due to not reporting their class (mga#9674)
- partitioning:
  o allow to choose btrfs in normal mode (mga#65)

Version 15.36 - 6 April 2013

- bind mount /run in chroot, thus fixing dracut runs (Dave Hodgins, mga#9213)
- bootloader:
  o fix other Mga OS names in menu (mga#8710)

Version 15.35 - 5 April 2013

- bootloader:
  o assume grub2.cfg is UTF-8 encoded
  o read back more conf from grub2
  o set entries type when reading back grub2 conf, thus fixing
    switching back to grub-legacy (mga#9563)
- fix finding translated help (mga#9619)

Version 15.34 - 4 April 2013

- force loading NSS modules (mga#9326)
- log ignored dmraid devices (might help mga#9467)
- drakx-in-chroot:
  o always copy /etc/resolv.conf again

Version 15.33 - 4 April 2013

- drakx-in-chroot:
  o do not copy /etc/resolv.conf in chroot if not using either remote
    display or remote repository (thus fixing goup lookups, mga#9326)

Version 15.32 - 31 March 2013

- fix detecting Xen hard disks (mga#9546)

Version 15.31 - 25 March 2013

- recognize more webcam & bluetooth devices (might help mga#5841)

Version 15.30 - 25 March 2013

- Mageia 3 new design

Version 15.29 - 22 March 2013

- Mageia 3 beta 4 background

Version 15.28 - 21 March 2013

- do not disable module autoloading (mga#9428)
- bootloader-config:
  o do not build initrd if no bootloader is detected and
    --no-initd argument is supplied
- authentication:
  o install nss-pam-ldapd instead of nss_ldap (mga#9375)
- partitioning:
  o actually preserve UUID when formatting (mga#9428)

Version 15.27 - 12 March 2013

- bootloader:
  o install grub2-efi instead of grub2 if using UEFI (mga#8886)
- fix permissions of help displayer (mga#9340)
- fix dialogs popup with drakx-in-chroot

Version 15.26 - 5 March 2013

- include display_installer_help
- show all errors at once at end of installation

Version 15.25 - 5 March 2013

- fork displaying help, thus workarounding a webkit segfault (mga#9124)
- prevent displaying twice release notes

Version 15.24.1 - 2 March 2013

- rebuild with updated list_modules

Version 15.24 - 28 February 2013

- bootloader:
  o allow installing grub2 on a partition (mga#8742)
  o try harder not to have duplicate stuff on grub2 cmd line
- do not put entry for CD/DVD in /etc/fstab (mga#7657)

Version 15.23 - 27 February 2013

- bootloader:
  o fix detecting grub2 if there's a remaining grub-legacy signature
  o read more of grub2 config
  o read & save timeout value (mga#8850)
  o set default parameters in grub2 config (mga#9177)
- do not attempt to use gurpmi.addmedia or gurpmi if in text mode

Version 15.22 - 26 February 2013

- Mageia 3 beta 3 left background

Version 15.21 - 26 February 2013

- summary:
  o prevent installing grub2 somewhere else than MBR
  o read & write /boot/grub2/drakboot.conf
  o suggests MBR by default for grub2 too (Manuel Hiebel, #8851)
- always bypass blkid cache (the cache only includes a subset of the data we need)

Version 15.20 - 21 January 2013

- use modprobe instead of insmod (mga#8676)

Version 15.19 - 14 January 2013

- Mageia 3 beta 2 left background

Version 15.18 - 5 January 2013

- include more utils for raid (mga#8484)

Version 15.17 - 28 December 2012

- do not bypass blkid cache
- include kmod's modprobe
- drakx-in-chroot:
  o export blkid cache

Version 15.16 - 28 December 2012

- adapt to new help layout (mga#5634)

Version 15.15 - 24 December 2012

- drakx-in-chroot:
  o add --strace option, enabling to pinpoint missing modules
- include missing module for upcasing UTF-8 characters (mga#8475)
- media step:
  o prevent selecting an update medium without its parent medium

Version 15.14 - 17 December 2012

- ugtk2: use new exceptions management
- fix installing grub2 from live session (blino)

Version 15.13 - 15 December 2012

- fix checking grub2 installation (mga#8390)

Version 15.12 - 14 December 2012

- "enhance" fake grub2 conf reading (mga#8366)
- time steps in logs
- media step:
  o fix dialogs title
  o show which media are disabled when offering to pick supplementary ones

Version 15.11 - 13 December 2012

- install grub2 if needed
- media choice step:
  o display tooltips describing media

Version 15.10 - 11 December 2012

- revert rosa crap that breaks generating initrd (mga#8357)

Version 15.9 - 11 December 2012

- fix network set up for adding network media if not up by stage1
  (aka DVD/CD case, mga#8282)
- partitioning:
  o if a partition has been manually formated, don't offer to format
    it again (mga#7822)

Version 15.8 - 11 December 2012

- fix installing basesystem prior to adding a supplementary network
  medium

Version 15.7 - 10 December 2012

- media choice step:
  o blacklist unwanted media instead  of whitelisting wanted ones
    (fix dual cd where media names are not the regular ones)
  o no media is a critical error
- updates step:
  o add all media instead of only update ones (mga#7959)

Version 15.6 - 10 December 2012

- language choise:
  o change title of of "Multiple languages" dialog box from "Please Choose A
    Language To Use" to "Select Additional Languages" (mga#7648)
- set font familly & size system wide, thus fixing font size in gurpmi
  & release notes (mga#67)

Version 15.5 - 10 December 2012

- recognize new drivers:
  o input: hid-sensor-hub
  o PHY: at803x

Version 15.4 - 9 December 2012

- put grub-legacy before grub2

Version 15.2 - 7 December 2012

- add fake gru2 conf reading
- skip media screen in auto install

Version 15.1 - 7 December 2012

- add basic support for grub2 (mga#416)
  (based on rosa work but fixed and completed)

Version 15.0 - 6 December 2012

- enable to skip keyboard step with keyboard option
- enable to enable other media
  (such as 'nonfree', 'tainted' which are disabled by default)

Version 14.52 - 4 December 2012

- Mageia 3 beta 1 left background
- fix missing command links (mga#8289)
- fix initializing urpm object (mga#8160)
- fix offering "selecting individual packages" when pressing "previous" after
  selecting package groups

Version 14.51 - 16 November 2012

- retrieve package descriptions from XML meta-data instead of from huge hdlists
  (fix not displaying packages description in network installs) (mga#549)
- fix a crash when pressing "previous" after selecting package groups

Version 14.50.1 - 15 November 2012

- include Parse::EDID for monitor-parse-edid (mga#8076)

Version 14.50 - 6 November 2012

- prevent a horizontal scrollbar to appear in some dialogs (mga#7374)

Version 14.49 - 3 November 2012

- Mageia 3 alpha 3 banner
- prefer real binaries over the lightweight perl wrappers
- convert filesystem for usrmove during upgrades
- show a 'please wait' dialog while processing usrmove

Version 14.48 - 22 October 2012

- fix detecting if udev is already running
- include FIRMWARE packages from Cards+ in detected graphical drivers,
  to install radeon-firmware during install (#6438, #7641)
- properly generate stage2 with a usrmove-esque fs layout

Version 14.47 - 12 October 2012

- offer resizing NTFS again (broken by ntfsprogs -> ntfs-3g switch)

Version 14.46.3 - 5 October 2012

- load 'microcode' asynchronously, preventing big wait when not supported
  (mga#7671)

Version 14.46.2 - 3 October 2012

- adapt to latest dash-static
- fix comment in license text

Version 14.46.1 - 2 October 2012

- fix build with latest pango

Version 14.46 - 27 September 2012

- left background for Mageia 3 alpha 2

Version 14.45 - 20 September 2012

- load fuse module automatically when trying to mount NTFS-3G (mga#5685)

Version 14.44.1 - 16 September 2012

- add spacing between license paragraphs

Version 14.44 - 14 September 2012

- adapt to xserver 1.13
- advertize new doc license & licenser (mga#7347)
- install cpupower instead of cpufreq
- package group selection:
  o remove "select all" button (not as usefull as "unselect all" & it
    takes too much place when translated)

Version 14.43 - 4 September 2012

- compress report with xz instead of gzip
- fix crash when clicking previous in minimal install step (mga#7345)
- include swaplabel (mga#7334)

Version 14.42 - 4 September 2012

- load 'aesni_intel' crypto module for newer Intel CPUs (mga#7333)
- recognize new drivers:
  o input: hid-aureal synaptics_usb
  o wifi: qmi_wwan, mwifiex_usb

Version 14.41 - 3 September 2012

- include back Ia Ora files for matchbox (mga#6451)

Version 14.40 - 3 September 2012

- prevent going further if some transactions failed (mga#7016)
- summary: fix displayed network type (mga#4959)

Version 14.39 - 3 September 2012

- rely on stage1 for mounting /dev

Version 14.38 - 2 September 2012

- Mageia 3 alpha 1 banner

Version 14.37 - 1 September 2012

- Fix prefix checking in foreign partition check (mkinitrd)
- More logging on why initrd generation is skipped 

Version 14.36 - 30 August 2012

- adapt to urpmi-7.5

Version 14.35 - 30 August 2012

- adapt to usbfs death

Version 14.34 - 30 August 2012

- adapt to perl-5.16.1
- services:
  o fix checking systemd presence after systemd merge of subpackages

Version 14.32 - 28 July 2012

- package group selection:
  o add a scrollbar
    (due to Oxygen theme eating more space than Ia Ora one)
  o add "select all" & "unselect all" buttons
- stop fixing the raid udev rule now that it has been fixed

Version 14.31 - 24 July 2012

- adapt to latest GDB
- adapt to latest systemd/udevd
- adapt to /usr move
- nfs install: install nfs-utils instead of nfs-utils-clients
  (#6570, merged back in nfs-utils)

Version 14.30 - 23 June 2012

- show all errors at once when setting media
- fix settings 'suggests' properly according to 'no_suggests'
  (aka default to suggests enabled)
  regression intoduced in 14.23

Version 14.29 - 17 June 2012

- adapt to perl-URPM >= 4.2

Version 14.28 - 11 June 2012

- fix upgrade with rpm-4.10.0
- really fix build with brltty-4.3

Version 14.27 - 7 June 2012

- debug mode:
  o do not start udev twice
  o just start the installer if one quits the shell
  o spawn a shell like in regular mode
- fix build with brltty-4.3

Version 14.26 - 5 June 2012

- fix detecting if Xorg started successfully

Version 14.25 - 4 June 2012

- fix fallbacking on curses install aka abort gtk install startup if X
  failed to start
- switch from Ia Ora to Oxygen Gtk theme
- use proper design from original author

Version 14.24 - 31 May 2012

- adapt to latest xkb
- fix build with perl-5.16.0

Version 14.23.1 - 29 May 2012

- include newly needed module

Version 14.23 - 28 May 2012

- do not create /dev/ entries created by udev
- kill last remanents of kernel-2.4.x support
- package group selection:
  o remember minimal install values when clicking "previous"
- packages installation:
  o add support for 'justdb' option
  o enable to go fast with 'tune-rpm'...
- partitioning:
  o first attempt at supporting XenBlk discs
  o reduce blkid timeout to 30 seconds (mga#5979)
- refactoring

Version 14.22 - 15 May 2012

- final banner
- fix detecting if adding update media succeeded
- authentication:
  o don't update UsePAM option in sshd configuration

Version 14.21 - 11 May 2012

- export res_init function to perl lib

Version 14.20.1 - 10 May 2012

- drakx-in-chroot: unmount /dev in chroot

Version 14.20 - 6 May 2012

- bind mount /dev inside chroot rather than copy nodes (mga#5730)

Version 14.19 - 3 May 2012

- fix displaying urpmi fatal errors (mga#5725)

Version 14.18 - 2 May 2012

- add missing libfuse.so.2 for mount.ntfs-3g (#5685)

Version 14.17 - 30 April 2012

- fix noarch handling/search on 64bit as they're in 32 and 64 bit
  media and in some cases it may return the not-installed rpm while the other is.
- autoinstall:
  o fix rebooting on autoinstall by using a "wider" regexp (otherwise udevd was
    not found by fuzzy_pidofs) and gives some time to udevd process to disappear.
  o don't try to unmount /dev as it's still used by other processes
  o allow to set urpm curl options in order to be able to make curl quiet
    when running an autoinstall in text mode. This can be set throught
    the new option "curl_options" in the auto_inst file.
  o use quiet mode by default when downloading VERSION and auto_inst file
- partitioning:
  o drop support for reiser4 (mga#5680)

Version 14.16 - 29 April 2012

- add btrfsck
- partitioning:
  o forbid having /boot as btrfs (mga#5627)

Version 14.15 - 27 april 2012

- partitioning:
  o fix partitions not being shown after clicking on "Reload partition table"
    (mga#3260)
  o run udevadm in installer too
    (might fix unnecessary reboot (mga#4439))

Version 14.14 - 26 april 2012

- Mageia 2 RC banner

Version 14.13 - 25 April 2012

- include needed symlinks for ndiswrapper (mdv#44416)

Version 14.12 - 25 April 2012

- update desktops images

Version 14.11 - 25 April 2012

- fix offering desktop choice (DVD has task-kde4-minimal instead of task-kde4)
  (mga#5574)
- partitioning:
  o do not set fs_type to ext4 for raw LVM/RAID/LUKS
  o detect LVM on top on Encrypted partitions (mga#5330)
- services:
  o systemd support (mga#3253, mga#3740, mga#4910, mga#5122)
- partitioning wizard:
  o fix removing several notebook pages
  o reuse code from hd_gtk, fixes display of "Use free space" solution

Version 14.10 - 23 April 2012

- do not offer to upgrade mdv 201[1-9] (mga#5004)
- do not try to update KDE3 to KDE4 anymore
- individual package selection:
  o fix a crash
  o honor "no suggests" option (mga#3467)

Version 14.9 - 23 April 2012

- include missing perl modules (mga#5528)

Version 14.8 - 20 April 2012

- partitioning wizard:
  o do not crash on selecting a RAID device
  o fix displaying empty info about RAID devices
  o fix listing RAID devices

Version 14.7 - 19 April 2012

- fix a crash when package state is empty (mga#5487)
- fix not offering to upgrade RAID installs (mga#4902)
  (udev was enabling RAIDs early but leaved them in inactive mode
  due to not yet loaded personality modules)
- when selecting where ro install bootloader, display mountpoint if
  available, and size+fs_type if we have nothing (mga#5460)

Version 14.6 - 18 April 2012

- individual package selection:
  o fix "invisible" lock icon (mga#5424)
  o show again package descriptions (mga#549)
- package installation:
  o fix assuming "no" to continue on bad signatures once "do not ask
    again" has been checked in
  o offer to not ask again about missing packages
  o unselect already suggested packages when performing a minimal
    install if "no suggests" option was chosen (mga#5209)

Version 14.5 - 12 April 2012

- fix color for menu categories
- add missing udev programs needed for persistant storage rules.

Version 14.4 - 12 April 2012

- fix quiet option for bootloader
- install btrfs-progs if needed (mga#5274)
- make sure ranges are always within limits in text mode (mga#646)
- allow generation of host-only initrd during install
- include persistant storage udev rules needed to see new uuids during install

Version 14.3 - 7 April 2012

- Mageia 2 beta 3 banner
- diskdrake:
  o fix partition numbering on GPT (mga#3091)

Version 14.2 - 5 April 2012

- add boot splash to initrd only once
- log install settings (mga#3467 & mga#5209)
- do not set security level to its own value on upgrade (mga#5147)
- do not crash if msec isn't installed
- do not offer to select the security level in summary if msec is not installed
- text installer:
  o include "screen" terminfo (mga#4894)

Version 14.1 - 23 March 2012

- better "bootloader" message (mga#484)
- fix displaying "Mageia" in some messages

Version 14.0 - 13 March 2012

- disk install: handle bogus ISOs when looking for install image (mga#4919)
- step column: hide so called "bootlader" step since we do _not_ actually
  install bootloader at this stage but later in summary (mga#484)
- make "Preparing bootloader" less intimidating (mga#484)

Version 13.95 - 13 March 2012

- recognize more HID drivers (mga#4905)

Version 13.94 - 13 March 2012

- actually use new installer help

Version 13.93 - 12 March 2012

- recognize c67x00, imx21-hcd, fhci, isp1362-hcd, oxu210hp-hcd & renesas-usbhs
  USB host drivers (mga#4905)
- use lxdm for LXDE

Version 13.92 - 11 March 2012

- explain why acpi, acpid & mageia-gfxboot-theme packages are selected 
- install more packages earlier (shorewall & mandi), preventing useless
  installing steps later at summary stage
- partitioning:
  o fix error on removing LVs
  o fix resizing LVs (mga#4666)

Version 13.91.1 - 08 March 2012

- add a wrapper for running GDB in installer a simpler way

Version 13.91 - 08 March 2012

- Mageia 2 beta 2 banner
- summary: 
  o list mandi with iptables* & shorewall in services
  o list dm, mdadm, messagebus, microcode_ctl, netconsole & partmon services in system
  o list network, network-auth, network-up & resolvconf into new 'networking' category
- debug build:
  o don't run directly stage2
  o include busybox
  o include needed python files for GDB
  o start udev since we fork a shell prior to running stage2

Version 13.90 - 06 March 2012

- fix crashing if we failed to initialize Curses
- fix double segfault when text installer fails to init
- fix stopping udev
- set geometry for text installer

Version 13.89 - 02 March 2012

- fix RAID udev rule

Version 13.88 - 02 March 2012

- install mdadm for fake RAID too (mga#4750)

Version 13.87 - 01 March 2012

- include more udev rules for RAID (mga#4750)

Version 13.86 - 01 March 2012

- include libdmraid-events-isw.so for dmraid (mga#4750)
- tty stty are needed for text mode installer (mga#2038)

Version 13.85 - 26 February 2012

- load 'xts' module for crypted fses (Dave Hodgins, mga#3749)

Version 13.84 - 24 February 2012

- recognize more HID drivers (mga#4129)

Version 13.83 - 19 February 2012

- log more stuff regarding packages installation (mga#4565)

Version 13.82 - 14 February 2012

- Mageia 2 beta 1 banner

Version 13.81 - 13 February 2012

- diskdrake:
  o use better cipher for encrypted fses (mga#3092)

Version 13.80 - 26 January 2012

- kill old gtk+ warnings that confuse people
- include back urpmi translations
- do not display errors when loading a driver that is already loaded (mga#1146)

Version 13.78 - 24 January 2012

- log packages selected b/c of HW, fs, install method, ...
- summary: 
  o list shorewall with iptables* in services
- diskdrake:
  o better default name for new VG (vg-mga, vg-mga1, ...
    instead of vg-0, vg-1, ...)

Version 13.77 - 23 January 2012

- diskdrake:
  o allow using nilfs2 during install
  o enable to set label on btrfs & nilfs fses as well as on swap
  o preserve UUID when reformating a nilfs fs
- do not install shorewall & mandi if firefwall is not configured

Version 13.76 - 20 January 2012

- add support for XZ modules
- faster & safer waiting for end of USB modules
- include gtk20 translations (caps lock & the like)
- diskdrake:
  o enable to set LV names when not in expert mode
  o report back error from lvm2
  o suggest better LV names based on the mount point rather than numbers

Version 13.75.1 - 19 January 2012

- fix mounting /dev/pts & /dev/shm
- include DM/MD udev rules so that install on LVM works again
- drakx-in-chroot:
  o add support for --gdb

Version 13.75 - 29 December 2011

- stop udev at end of install
- Mageia 2 Alpha 3 banner

Version 13.74.1 - 29 December 2011

- rebuild with updated list_modules.pm for kernel-3.2.0-0.rc7.2.mga2 

Version 13.74 - 24 December 2011

- use udev
- call udevadm in installer too
- do not hardcode systemd default through kernel command line, it
  should be easily overridable by just picking the proper init package
- include xfs_freeze (needed for setup grub on XFS, mga#1536)
- interactive::curses: default to 80x25 (fixes serial)

Version 13.73 - 11 December 2011

- Mageia 2 Alpha 2 banner

Version 13.69 - 14 November 2011

- fix testing network (missing Net::Ping)

Version 13.68 - 10 November 2011

- Mageia 2 Alpha 1 banner

Version 13.67 - 07 November 2011

- Add initial systemd support

Version 13.66 - 20 October 2011

- fix missing "Mageia" instances
- include png loader from gdk_pixbuf2.0_0-loaders-png15

Version 13.65 - 19 September 2011

- only favor packages with mga extension, we don't have packages with mdv or
  mnb in release tag
- always favor packages with 'mga' extension when upgrading anything else
  than Mageia
- install perl-Hal-Cdroms for urpmi when needed
- default to systemd (through "init=/bin/systemd")
- offer not to ask again about bad signatures

Version 13.64 - 08 September 2011

- install more packages earlier (acpi{,d}, dhcp client, firewall & bootloader
  stuff), preventing useless installing steps later at summary stage & also
  fixing "program not found: grub-gfxmenu" error message while installing
- only retrieve release notes once during installation
- util-linux-ng was renamed util-linux (fix installation error)

Version 13.63 - 07 September 2011

- better microcode_ctl management
- fix cpufreq detection corrupting other types
- install cpufreq on more cases

Version 13.62 - 22 August 2011

- always align partitions to start at megabyte boundaries to avoid
  performance issues with drives with 4k physical sectors (mga#1215)
- add support to detect if CPU microcode is upgradable in order to
  install microcode_ctl

Version 13.61.1 - 05 August 2011

- do not crash if there's no mirror cache to erase
- "Multi languages" => "Multiple languages" (mga#1011)

Version 13.61 - 01 August 2011

- clear the mirror cache before upgrading (#1557)
- fix bootloader entries names
- fix build with perl-5.14.x
- detect (at least some (eg: Compaq USB numpad) (#1099)
- detect machines needing cpufreq
- spaces are not allowed between options in /etc/fstab (#2271)

Version 13.58 - 27 May 2011

- fix default level being 'standard' when /etc/security/msec/security.conf
  doesn't containt BASE_LEVEL
  (broken since msec config file format was gratuitously changed)

Version 13.57 - 25 May 2011

- update translations
- update design for final release

Version 13.56 - 24 May 2011

- forbid selecting kernel-server if not having PAE since PAE support is
  mandatory for kernel-server (#1414)

Version 13.54 - 19 May 2011

- advertize LibreOffice instead of OpenOffice.org (mga#1323)
- fix build with brltty-4.2-1.mga1
- fix reading security level with new msec (mga#332)

Version 13.53 - 16 May 2011

- left background for RC

Version 13.52 - 14 May 2011

- disable encryption option for /boot
- match partitions when one of them as device_alias to the device of the other one

Version 13.50 - 06 May 2011

- use proper locales-XX packages for Albanian (#1036)

Version 13.49 - 25 May 2011
- add nokmsboot boot option also if the bootloader is installed after setting
  up a conflicting display driver (e.g. draklive-install)
- embed more of unicore, fixes \d on strings collected from Gtk2 (#39)
- add sdhci-pci to card-reader list
- add xhci-hcd (usb3 support)

Version 13.47
- update modules list needed for md raid456 and dm-raid 4/5/6 target

Version 13.46

- new design for beta1
- update temporary piece of design

Version 13.45

- fix incorrect meta-task directory, it should be an svn:externals
- switch from scim to ibus

Version 13.44

- clean installer design for Mageia

Version 13.43

- handle new drivers: 
  o ethernet: cx82310_eth
  o 10g ethernet: bna, pch_gbe, stmmac 
  o modem: ft1000
  o usb storage: keucr, uas
  o wifi: ath6kl, bcm_wimax, brcm80211, carl9170, r8712u

Version 13.42

- alpha1 banner

Version 13.41

- correct licence management and remove Google one

Version 13.40

- new version for Mageia
- fix building with new libX11
- fix building with xserver-1.9
- include missing perl modules (#60720)

Version 13.39 - 5 August 2010

- adapt to gtk and gdk change in 2.22
- adapt to perl-5.12

Version 13.38 - 2 July 2010

- create symlink for /etc/pki to have it usable in stage2

Version 13.37 - 2 July 2010

- accept https URL in install::http
- include ca-bundle.crt

Version 13.36 - 30 June 2010

- final banner

Version 13.35 - 22 June 2010

- user management: focus on first entry in dialog, root password if
  superuser is asked, user real name otherwise (#54910)
- auto_install: when distrib media contains selected_names list, apply
  it only to the concerned media, and not to previously added media

Version 13.33 - 4 June 2010

- lookup major:minor of devices outside $::prefix
- display lock icon for not enabled dmcrypt too
- disable dmcrypt before deleting partition, evin if inside lvm/raid
- don't crash when starting stage2 with an RTL locale
- fix loading of btrfs module

Version 13.32 - 2 June 2010

- copy all devices to target

Version 13.31 - 28 May 2010

- update banner to RC2
- don't lose mountpoint if suggested partition was swap (#59510)

Version 13.30 - 26 May 2010

- final banner

Version 13.29 - 24 June 2010

- fix detection of /var partition
- force raid metadata to be 0.90 if /boot is on raid 1
- fix raid 0 to be handled as raid

Version 13.27 - 18 May 2010

- always set resume= when a swap is available, regardless of its size (#34681)
- update banner

Version 13.26 - 17 May 2010

- enable acl by default on ext2/3/4 fs
- enable user_xattr on home for ext2 too
- allow setting acl option in diskdrake
- default to defaultFS in LVM, not ext2
- don't ask to reboot after resize if not needed
- do not ask to reboot after resizing LUKS if not mounted
- workaround mapper/* being symlinks in dmraid support

Version 13.24 -  9 May 2010

- include btrfs and crc32c modules in install (#59068)
- include /etc/netconfig (needed by mount.nfs)
- diskdrake:
  o fix the crypto mountpoint checks for the create case
  o fix resize of active encrypted volumes

Version 13.22 - 29 April 2010

- diskdrake:
  o correctly set mountpoint on included partition, not encrypted one
  o refuse to have /boot encrypted
  o enable gtk-button-images to have the lock displayed during install

Version 13.21 - 27 April 2010

- diskdrake:
  o allow resizing empty FAT (#58770)
  o offer encryption in a more visible way when creating a partition
  o remove cryptoloop from diskdrake interface and transparently use dm-crypt
  o support having dm-crypt partition with non default FS
  o do not display dm-crypt partitions in separate tab, display included
    partition directly in-place
  o do not warn about data loss when changing type of unformatted partition
  o display lock icon on encrypted partitions
  o fix loading of dmcrypt info now that /dev/mapper/* are symlinks
  o fix creating encrypted LVM
- install plymouth if / is encrypted, to ask for password
- beta2 banner

Version 13.19 - 14 April 2010

- detect "Rack Mount" Chassis as server
- diskdrake:
  o use device label even if it was not changed (#47456)
  o allow creating and resizing btrfs

Version 13.18 - 2 April 2010

- compute dependencies on full list of packages from rpmsrate levels instead
  of doing it individually. This avoids getting kdm in GNOME install.

Version 13.17 - 31 March 2010

- services management:
  o translate more service descriptions (#46640)
- detect "Rack Mount" Chassis as server
- use device label even if it was not changed (#47456)

Version 13.16 - 19 March 2010

- bootloader:
  o do not apply bootloader settings before giving user the option to change
    them (#57471)

Version 13.15 - 17 March 2010

- summary:
  o enhanced services status message (#58194)

Version 13.14 - 3 March 2010

- devices:
  o handle creation of mmcblk devices (useful on Efika MX)
- alpha3

Version 13.13 - 28 February 2010

- handle new SCSI driver: mpt2sas (#57833)
- detect_devices:
  o fix merging PCI devices info from sysfs which resulted in
    ill-informed devices matching (#57711)

Version 13.11 - 10 February 2010

- add support for asturian (#56990)
- partitioning wizard:
  o display lvm/dmraid name in combo box
  o allow reusing existing partitions in lvm
  o fix a crash on empty disk
  o fix using empty dmraid
- drakboot:
  o fix crypted password detection
  o fix invocation of grub-md5-crypt from within installer (#57461)

Version 13.10 - 4 February 2010

- handle new drivers: 
  o ATA: pata_atp867x, pata_piccolo, pata_rdc
  o DVB: dvb-usb-ec168, dvb-usb-friio, earth-pt1
  o ISDN: avmfritz, mISDNinfineon, netjet, speedfax, w6692
  o network: vmxnet3
  o radio: radio-miropcm20, radio-usb-si470x
  o RAID: 3w-sas, hpsa, pmcraid
  o SCSI: be2iscsi, bfa, pm8001, vmw_pvscsi
  o TV: cx25821, saa7164
  o wifi: r8187se, r8192_pci, r8192u_usb, rt2800pci, vt6655_stage, vt6656_stage
- bootloader configuration:
  o add support for crypted grub passwords
  o always display security settings
  o allow timeout to be '0'
  o default to always crypt grub passwords
  o ensure /boot/grub/menu.lst permissions are 0600 since it can
    contains a password
- partitioning wizard:
  o offer to install on dmraid (instead of crashing if no other disk)
  o offer to install on existing lvm

Version 13.8 - 3 February 2010

- fixed logo

Version 13.7 - 2 February 2010

- alpha2 logo

Version 13.6 - 1 February 2010

- do not ask for bootloader location (still available in summary)
- try to get better initial estimation of install time
- fix bootloader entry name for rc kernels
- remove mnb from bootloader entry name like we do for mdv
- support ddf1 dmraid

Version 13.4 - 7 January 2010

- alpha1 logo
- detect_devices:
  o fix detecting pcmcia serial devices

Version 13.3 - 21 December 2009

- mount points: reset unknown partitions types to default
  fs (ext4) instead of hardcoded ext3
- diskdrake: show Ext4 instead of Ext3 in the gtk filesystems button box
- include /usr/share/X11/xkb/rules/base.lst (do we need xorg.* ?)

Version 13.2 - 14 December 2009

- fix creating devices
  (really "fix handling hdX/sdX devices (#53107)")

Version 13.1 - 10 December 2009

- fix crash introduced by 'do not stay chdired in /mnt/var/cache/urpmi'
- locale setting
  o drop support for configuring KDE3
  o fix configuring ibus (#56130, #56311)
  o install 'ibus-qt4' if configuring ibus under KDE4 (#56311)
- partitioning wizard:
  o fix setting volume label instead of MBR's one for FAT fses (#52853)

Version 13.0 - 1 December 2009

- do not offer to upgrade/install in restore mode
- fix detecting hidden partitions as recovery
- allow to convert ext2/3 to ext4 but do not enable flags
- fix using stdin and stdout in builtin dd command
- devices detection:
  o fix reading USB details (#55690)
  o fix SCSI driver module name
- partitioning wizard:
  o unmount swap too when unmounting all partitions
  o do not suggest Windows mountpoint for mounted partitions
    (breaks install if the Win partition is the installer media)
  o suggest non-removable disks first
- do not stay chdired in /mnt/var/cache/urpmi when download fails
  (workaround urpmi bug)
- bootloader:
  o do not add removable drives as "Windows" entry in bootloader
- fix adding additional media with type media_cfg (for auto_install)

Version 12.77 - 30 October 2009

- fallback on most generic kernel if the suitable one is not available
  (only kernel-desktop586-latest is available on Dual ISO for i586)

Version 12.76 - 30 October 2009

- test existence of /usr/share/bootsplash/scripts/make-boot-splash
  file instead of install status of bootsplash package to enable vga
  in bootloader
  (package check is not working during upgrade on x86_64)

Version 12.75 - 30 October 2009

- bootloader suggestion fixes (to fix removal of vga= option when
  updating with the installer):
  o make sure we use long name when adding second kernel with same
    extension than preferred one
  o do not add again kernels that are already in bootloader config file
  o add vga= option for kernels that are not the preferred one as well
  o remove previous linux-nonfb entries (like done for failsafe),
    not to add them twice or more

Version 12.74.1 - 29 October 2009

- disable X11 support for dpms

Version 12.74 - 28 October 2009

- partitioning wizard (Windows resize):
  o fix partition size computing (fixing pixel/sectors ratio)
  o improve default resizing suggestion:
    * try to keep at least 1GB free for Windows
    * try to use from 6GB to 10% free space for Linux
  o use same windows partition size suggestion for gtk and text installs
  o really ensure keeping free space for Linux partition
  o really ensure keeping free space for Windows partition

Version 12.73 - 28 October 2009

- final banner for 2010

Version 12.72 - 27 October 2009

- fix ftp URL parsing when using user + pass (#49898)

Version 12.71 - 23 October 2009

- minimal install: install packages with higher rpmsrate level only
  (level 5, and not level 4 + 5) when suggests are disabled
  (it was only done for truly minimal install before)
- cpufreq: load e_powersaver for VIA C7 (#41377)

Version 12.70 - 22 October 2009

- curses backend: do not crash when resuming interface
- minimal install: install packages with higher rpmsrate level only
  (level 5, and not level 4 + 5)

Version 12.69 - 21 October 2009

- user management:
  o enable to install/deinstall xguest

Version 12.68 - 19 October 2009

- fix raid initialisation during install (#54706)
- fix raid detection during install (#54706)
- allow to set preferred packages list in auto_install
  (comma-separated list in $o->{preferred_packages})
- partitioning wizard:
  o use mandriva logo on blue background for mandriva partition
  o fix option selection when using keyboard

Version 12.67 - 18 October 2009

- partitioning wizard:
  o use a different color for newly created partition
  o add legend for the colors
  o display mount point if known
  o display ext2 like ext3/4
  o allow setting new windows size with keyboard (#54691)
  o use available space

Version 12.66 - 15 October 2009

- mount windows partitions under /media instead of /mnt (#53392)
- partitioning wizard:
  o initialize correctly labels for windows resizing
  o fix labels for windows resizing when getting back to the screen
  o offer to resize last big enough windows partition instead 
    of the first one, until user can chose

Version 12.65 - 14 October 2009

- do not call obsolete Xconfig::default::config_keyboard function (#54541)
- improve button layout while installing
- partitioning wizard:
  o allow using existing partition on all disks (#54478)
  o reduce drawings height
  o fix windows resize width
- make sure suggests are disabled in truly minimal install
- do not attempt to configure autologin if CAT_X is not selected
- use UTF-8 for zh_TW (#53976)
- enable using newly created raid devices (#54295)

Version 12.64 - 12 October 2009

- partitioning wizard:
  o put back "previous" button on actions (#54475)
  o fix typo in message
  o fix testing interactive::gtk in standalone mode
  o fix displaying help

Version 12.63 - 9 October 2009

- bootloader configuration:
  o fix displaying arrows

Version 12.62 - 9 October 2009

- autologin/desktop configuration (shared code):
  o fix guessing dm name from lookupdm
  o abort configuration if dm install fails

Version 12.61 - 8 October 2009

- partitioning_wizard:
  o do not fail when a windows partition is corrupted
  o add separator between solutions
  o give more space between header and solutions
  o prevent cursor to go under needed size because of rounding
  o chose windows resizing when clicking on the resize handle (not perfect)
  o improve resizing captions layout
- autologin/desktop configuration (shared code):
  o fix /etc/X11/lookupdm usage during install (for default dm selection)
  o use gdm for xfce4 and LXDE

Version 12.60.1 - 7 October 2009

- use FileHandle before XML::Parser, else XML::Parser breaks if 
  File::Sync is used...
- include File::Sync in install

Version 12.60 - 7 October 2009

- RC2 banner 

Version 12.59 - 07 October 2009

- do not set mountpoints for rescue partitions (#53504)
- switch to ext4 by default

Version 12.58 - 05 October 2009

- better describe what usernames we allow (#44783)
- rewrite partitioning wizard to look better in gtk (not perfect yet)

Version 12.54 - 23 September 2009

- autologin/desktop configuration (shared code):
  o when detecting default desktop, use first session
    (instead of using hacks with dm config files)
  o guess display manager from /etc/sysconfig/desktop,
    or default session, or /etc/X11/lookupdm
  o read autologin settings from /etc/sysconfig/autologin as fallback
  o read kdm config file only if kdm is to be used
  o always ensure dm is installed before configuring autologin/desktop
  o test display manager instead of desktop when configuring autologin
  o always write /etc/sysconfig/desktop
  o write DISPLAYMANAGER in /etc/sysconfig/desktop too
  o only write dm conf files if they exist before
- autologin/desktop configuration (installer specific):
  o allow to specify display manager in $o->{dm}
  o use shared code to read autologin settings (and thus get default dm)

Version 12.53 - 22 September 2009

- include usb.ids
- don't consider lvm named md* as raid (#53767)
- allow resizing ext4

Version 12.52 - 15 September 2009

- RC1 logo
- allow to set preferred kernel extension in $o->{kernel_extension}

Version 12.49 - 8 September 2009

- mygtk2:
  o created 'WeaknessCheckEntry' widget
- adduserdrake:
  o added tooltip text to weakness icon
  o now use 'WeaknessCheckEntry' widget

Version 12.48 - 7 September 2009

- mygtk2: 
  o HScale widget: added digits and ref_value options
  o HScale widget: fix for value option
- adduserdrake:
  o use icons to display password weakness
- added security-{low,medium,strong}.png pixmaps used for 
  password weakness display
- authentication:
  o reduced password weakness check level
- allow minimal install without suggests (#45665)
- install the right kernel-XXX-devel-latest flavor instead of
  hardcoding 'kernel-desktop-devel-latest'
- fix existing raid detection during install (#53159)
- enable to see release notes while installing packages (#34576) 

Version 12.47 -  1 September 2009

- use https to grab mirrorlist from api.mandriva.com
- fix stage2 image files for perl 5.10.1 (#53266)

Version 12.46 - 28 August 2009

- handle new drivers: 
  o DVB: dvb-usb-ce6230
  o sound: snd-indigodjx, snd-indigoiox, snd-lx6464es
  o wireless: ar9170usb, mwl8k, r8192s_usb, rt2800usb, rt3070sta
- adduserdrake
  o added weakness check for root password
- drakboot
  o fix crash bug #52997
- detect_devices:
  o fix VirtIO devices support

Version 12.45 - 18 August 2009 

- added the ability to add up/down buttons in add_modify_remove list 
  of interactive
- drakboot :
  o user is now able to re-order bootloader entries
- 2010.1 logo
- adduserdrake
  o now use password weakness display
- added password weakness display feature in interactive
- handle new drivers: 
  o sound: snd_ctxfi
- set virtio/xen block modules in a section actually offered

Version 12.44 - 13 August 2009 

- fix parsing dmidecode output (broken since we use dmidecode-2.10,
  aka since November 24 2008)
- prevent urpmi messages from garbaging text installer (#50776)
- locales
  o add "English (South Africa)" (#51057)
  o fix sorting South Africa languages (#51055)
  o fix displayed names of some South Africa languages (#51055)

Version 12.43 - 10 August 2009

- do not write /etc/fstab in local_install mode
- fix two crashes on handling devices

Version 12.42 -  7 Aug 2009

- use gtk instead of X to focus window and revert workaround 

Version 12.41 -  7 Aug 2009

- do not crash when trying to create a partition on a device with 
  no cylinder_size
- workaround gtk crashes by running in sync mode

Version 12.39 - 12 Jun 2009

- use Hal list of recovery partitions (#51532)
- use blkid instead of vol_id which we no longer ship
- properly handle hidden variables

Version 12.36 - 29 May 2009

- ide-disk module is now named ide-gd_mod
- add new 'touchpad' TYPE to rpmsrate
- add support for ElanTech touchpads (found on EEEPCs)
- don't ignore FB-DIMM memory

Version 12.35 - 24 April 2009

- remove unused parameter in installPackages
  (fix passing interactive setting)

Version 12.34 - 24 April 2009

- do not set urpmi in automatic mode for gtk installs
  (was set correctly for plain interactive installs only)

Version 12.33 - 23 April 2009

- fix not offering to upgrade 32 bit installations
  (regression introduced in 12.22 on 2009-03-31)
- handle virtio block devices

Version 12.32 - 23 April 2009

- fix cdrom path in urpmi.cfg for dual arch ISOs
- advanced partitioning step:
  o fix displaying help at install time

Version 12.31 - 22 April 2009

- fix final banner
- handle partition starting after 1To
- package installation:
  o use --force like older installer
- set mouse driver as 'vmmouse' for vmware (#49654)
- update XFCE preview

Version 12.30 - 21 April 2009

- final banner
- add a basic testsuite (ensuring it compiles) in order to prevent
  future crashes like #50009
- do not offer to stop the install when kde3 is installed since kde3
  to kde4 upgrade is now done
- fix checking for kde3 (which is now in /opt)
- diskdrake:
  o display a progress bar while formating an ext4 partition
  o do not run udevadm in install mode
  o render ext4 partition as red like ext3 ones

Version 12.29 - 21 April 2009

- do not log perl warnings about missing/not-yet-installed locales
  while installing and while probing EDID
- updated translations

Version 12.28.1 - 16 April 2009

- diskdrake:
  o fix crash
- windows boot partition is the active one (#49483)

Version 12.28 - 15 April 2009

- include mount.ntfs-3g in install 
- display an error when mount fails during View action
- do not crash when encountering bad signatures in automatic install

Version 12.27 - 14 April 2009

- handle firmware loading in stage2 too

Version 12.26.2 - 08 April 2009

- media management:
  o be more compatible with older http code for error management
  o fix crashing when using urpmi early to download stuff for network installs

Version 12.26.1 - 08 April 2009

- media management:
  o handle supplementary NFS & CDROM media with arched directory (aka 'i586/')

Version 12.26 - 08 April 2009

- include vmmouse driver (#49654)
- media management:
  o just use curl instead of using our own http stack to retrieve
    files from network (thus fixing #48887)
  o fix mount point for NFS & disk media for both main & suppl media
  o tell urpmi to read synthesis before adding supplementary network
    media in order to be able to install the 'basesystem' package
- log where we segfaulted

Version 12.25.1 - 07 April 2009

- fix mount point for CD-ROM media (#49613)

Version 12.25 - 06 April 2009

- media management:
  o fix path of NFS media after installation
  o use urpmi in order to add supplementary media
- put distro version after release because release contains "Mandriva Linux"

Version 12.24.1 - 05 April 2009

- ensure login is lowercase when transliterating from real name
  (#49573)

Version 12.24 - 03 April 2009

- handle new drivers:
  o gigabit: be2net, slicoss
  o wireless: agnx, arusb_lnx
  o dvb: dvb-usb-dtv5100
- include draksnapshot translations (for restore option)
- theming:
  o include all Ia Ora themes
  o drop metacity images

Version 12.23 - 02 April 2009

- RC2 banner
- fix crypto module names when arch is not i586 (#46814)

Version 12.22 - 31 March 2009

- don't list installed distros with other archs as upgrading between
  archs is not supported
- display the version of the distro in the install/upgrade screen (#44602)
- log (g|)urpmi.addmedia and (g|)urpmi output into
  /root/drakx/updates.log (#47107)
- make button name match text when inserting a CD ("cancel" rather
  than "previous")
- rotate /root/drakx/install1.log too
- tell urpmi to stop transactions when clicking on "cancel" (needs
  urpmi >= 6.25)

Version 12.21 - 30 March 2009

- fix writing urpmi.cfg as cdrom:// for NFS (#49316)
- in order to guess the login name, just transliterate the real name into
  ascii rather than truncate it on first non ascii character (#47322)

Version 12.20 - 30 March 2009

- media management:
  o always trust stage1 (fix ISO on NFS installation as well as NFS
    installation from cooker/ instead of eg cooker/i586 (#48874)
  o fix not ejecting DVD at end of installation (#48779)
- diskdrake:
  o always display label in partition info
  o display label of partitions in the graphical view when no mountpoint
    is set
  o update list of filesystems not handling bad blocks checking

Version 12.19 - 26 March 2009

- adjust partition size suggestion
  o increase / size to 12GB (instead of 8)
  o create separate /home starting at 13GB drives (instead of 7)
- fix support for disk installation
- include & use urpmi translations
- when setting update media, make gurpmi.addmedia auto close instead
  of waiting for user pressing "close" button on "media added with
  success" dialogs

Version 12.18 - 24 March 2009

- log packages' scripts output (perl-URPM/urpmi aren't fixed regarding
  script fd leak but older installer was leaking one fd per
  transaction too)

Version 12.17.3 - 23 March 2009

- fix empty tree at "Individual package selection" step (#48672)

Version 12.17.2 - 23 March 2009

- fix buid due to to broken Estonian translation
- unbreak installer due to new X.org server using alternatives
- diskdrake: 
  o allow LVM in non expert mode
  o allow Encrypted partition inside LVM

Version 12.16 - 18 March 2009

- fix doble clicking on 'accept' on license screen

Version 12.15 - 17 March 2009

- fix support for iso-on-disk installation (#48661)
  (regression introduced when installer switched to urpmi)
- drakx-in-chroot:
  o enable to emulate iso-on-disk installation

Version 12.14 - 11 March 2009

- fix displaying help (same webkit regression that affected mcc (#47840))
- include virtio modules (#45518)

Version 12.13 - 10 March 2009

- fix selecting packages on cdroms
- don't crash when creating a partition in LVM with the partition type
  buttons (#38078)

Version 12.12 - 9 March 2009

- use new urpmi API in order to fix detecting whether installing
  packages succedded or not

Version 12.11 - 9 March 2009

- fix accessing CD-ROM based media on x86_64

Version 12.10 - 9 March 2009

- fix CD-ROM based media path for post-installation usage (for 32bit)

Version 12.9 - 9 March 2009

- adjust media path for 32 bit DVD/CD installations
- package installation:
  o ask for retry
  o log bogus signatures
  o log failed transactions summary

Version 12.8 - 6 March 2009

- RC1 banner

Version 12.7 - 6 March 2009

- fix setting urpmi media for CDROM installation whose tree differ
  from other types of installation

Version 12.6 - 6 March 2009

- make sure to popup errors

Version 12.5 - 5 March 2009

- handle new drivers
  o dvb: dm1105, dvb-usb-af9015, dvb-usb-cinergyT2, firedtv
  o ethernet: smsc9420
  o gigabit: atl1c
  o pata: cs5536, it8172, it821x
  o ISDN: hfcpci, hfcmulti, hfcsusb, solos-pci
  o USB controllers: hwa-hc, whci-hcd
  o wireless: ath9k, i2400m-usb

Version 12.4 - 5 March 2009

- check package signatures like urpmi does (new feature)
- log extra debugging messages if passing the 'debug_urpmi' option

Version 12.3 - 4 March 2009

- honor 'selected_names' for auto_install
- make sure we don't try to reslect already selected packages

Version 12.2 - 4 March 2009

- only warn if a transaction failed (no more a fata error for auto
  installs)
- prevent urpmi from leaking a log file descriptor per transaction
- really set urpmi in automatic mode for non-interactive installs
  (and not vice-versa)
- use package summary translations once 'mdv-rpm-summary' is installed

Version 12.1 - 3 March 2009

- set urpmi in automatic mode for non-interactive installs
- media management & package installation:
  o do not try to install again already installed packages
  o fix progress bar

Version 12.0 - 3 March 2009

- media management & package installation:
  o drop support for parsing the "media_info/hdlists" file
  o do not download and use hdlists anymore ; only use smaller synthesis files
  o make install uses urpmi code to set up media & install packages
    * FTP/HTTP/cdroms tested OK
    * temporary issues:
      + /etc/urpmi.cfg may look strange (eg: after CD-ROM installation)
      + isos-on-disk installations are broken
      + media deselection is not offered
      + package browsing doesn't work
      + progress bar has issues
      + signature checking are not performed

Version 11.89 - 17 February 2009

- enable having /boot as ext4
- don't set extents option for ext4

Version 11.88.1 - 16 February 2009

- correctly handle new msec-based settings during installation (#47822)
- fix crash

Version 11.88 - 16 February 2009

- don't crash on invalid partition table
- fix paths for installer (#47871)
- limit partition type list to 2 colmuns instead of 4
- don't offer to format LVM

Version 11.86 - 12 February 2009

- upload a fully updated version

Version 11.85 - 12 February 2009

- fix a crash when boot device is not removable

Version 11.84 - 12 February 2009

- handle newer module-init-tools which can put relative path in modules.dep
- when installing to a removable device, put boot sector there, else
  put it into first non removable drive (#47106)
- fix preserving UUID when formatting ext* and swap, and handle more FS (#39913)
- load cbc module for encrypted loop

Version 11.83 - 6 February 2009

- update banner for Beta 1
- set scim-thai as default IM for Thai

Version 11.82 - 5 February 2009

- include /usr/share/mime/mime.cache in stage2
  (gdk-pixbuf does not guess anymore image format from file extension,
   which makes it check MIME cache now)

Version 11.81 - 3 February 2009

- allow browsing partitions content to easily select the ones to destroy
- do not warn about "servers which open ports on outside by default"
  (the list of servers is not maintained, and the policy for those servers has changed)
- use a file selector in text mode too
- include mke2fs.conf from e2fsprogs-1.41.3-3mdb
- media management:
  o better layout for DVD/CD copy & media selection

Version 11.80.1 - 21 January 2008

- include perl-Pango

Version 11.80 - 21 January 2008

- use "ComboBoxEntry" gtk2 widget instead of "Combo" (which is deprecated),
  this also workarounds gtk2 bug with "hidden" Entry + "Combo"

Version 11.79 - 16 January 2008

- disable resizing ext4 since resize2fs is known to be broken regarding extents

Version 11.78 - 15 January 2008

- alpha2 logo

Version 11.77 - 15 January 2008

- do not install kernel-server on x86_64 when there's more than 4Gb of
  RAM (#44709) ; use better heuristics
- propose ext4 filesystem during install now that it is stable
- include tools to edit partition labels

Version 11.76 - 18 December 2008

- partitioning:
  o use sysfs in order to discover major/minor for SCSI like devices
    since they're dynamic with kernel-2.6.28+
- adapt to cooker: librpm4.6 uses libnss3 which needs its modules

Version 11.75 - 17 December 2008

- force to use static input devices again
  (since the default in xorg has changed)
- handle new driver:
  o network: sxg, w35und
- partitioning:
  o kernel-2.6.28+ supports more than 15 partitions on SATA & SCSI devices

Version 11.74 - 16 December 2008

- fix build with latest X.org

Version 11.72 - 9 December 2008

- do allow to upgrade Mandrakelinux (regression introduced in 10.14)
- handle new driver:
  o network: et131x, smsc95xx
- fix detecting SMP (was broken we relied on install kernel being non-smp) (#44825)
- fix reading compssUsers.pl if rpmsrate is forced (for example with drakx-in-chroot)

Version 11.69 - 11 October 2008

- really fix setting lilo when needed (#39878)
- handle new driver:
  o ide: tx4939ide
- drakx-in-chroot:
  o do not start an X server if using --text
- text mode installer:
  o display a separator before step name
  o properly handle big text in list such as security level
    descriptions (#43561)
- continue installing if an advertising image is corrupted (#37674)
- warn that "preparing bootloader" can take some time (eg: under vbox) (#43036)

Version 11.68 - 3 October 2008

- final logo

Version 11.67 - 2 October 2008

- when upgrading a kde3 box, force installation of task-kde4
- adjust some help IDs
- log activation of light desktop mode
- gtk and interactive install:
  o find default desktop choice according to compssUsers.pl
    (useful for netbook/nettop systems)
  o preselect proper default desktop choice

Version 11.66.1 - 2 October 2008

- fix typo in rpmsrate level setting

Version 11.66 - 2 October 2008

- detect_devices: allow detection of low resources systems (extracted
  from compssUsers.pl) and netbooks/nettops
- use a minimum rpmsrate level of 5 when netbook/nettop/low_resources
  systems are detected
- set LIGHT rpmsrate flag for netbook/nettop/low_resources systems

Version 11.65 - 2 October 2008

- add help button to desktop selection & minimal installation steps
- keep soft links in HTML help directory
- handle anchors in HTML help IDs

Version 11.64 - 1 October 2008

- when upgrading a kde3 box and task-kde3 is not on the CDs, propose to reboot
  and upgrade through Mandriva update applet
- add help button for media selection step
- ensure proper centering of popped windows
- fix/adjust some help pages (#42986)
- fix dithering regression (introduced on 2008-09-29)
- install apmd if /proc/apm exists
  (rpmsrate does not list apmd anymore, and apm is a kernel builtin)
- use HTML help for RPM group selection
- when mounting cdrom fails, retry a few times since mount will now fail
  instead of waiting for the drive to recognise the CD (cf #43230)

Version 11.58 - 29 September 2008

- ask_deselect_media__copy_on_disk: 
  o do not select all media by default (eg: debug media)
    (nb: this dialog occurs when user chooses "Go back to media and packages
    selection" on pkg install error)
  o replace scrolled window around everything
    with a scrolled window around the list of checkboxes
- adapt to fonts-ttf-gurmukhi => fonts-ttf-lohit switch
- add spacing between radio buttons for readability (#44332)
- better positionning of sidepanel's selection bar
- render background of sidepanel with dithering (looks better on 16bit
  displays)

Version 11.56 - 26 September 2008

- dmraid devices: use isw_xxxxp1 instead of isw_xxxx1 (see #42542, #44182)
- disable contextual menu on release notes

Version 11.55 - 26 September 2008

- never add usb-storage to scsi_hostadapter 
  (never needed, and when wrongly added, it slows the boot)
- ensure DPMS screensaver is not triggered during install
  (it interacts badly with matchbox/compositing) (#44021)
- generate /root/drakx/package_list.pl at end of install 
  (since we don't propose "Save packages selection" at end of install)
- generate /var/lib/rpm/installed-through-deps.list
  (to initialize urpmi orphans)
- drakx-in-chroot: do not require running kernel to be installed,
  generate empty modules.dep and modules.alias files instead
  (useful when running drakx-in-chroot from a chroot)

Version 11.53.2 - 25 September 2008

- actually use better rendering for background gradient

Version 11.53 - 25 September 2008

- better rendering for background gradient

Version 11.52.2 - 24 September 2008

- clean_rpmdb_shared_regions before and after calling gurpmi.addmedia/gurpmi2
  in chroot

Version 11.52 - 23 September 2008

- auto-configure floppies (in /etc/modprobe.preload.d/floppy)
- allow setting compssListLevel from command line
- install cpufreq (defaulting to ondemand governor) instead of
  powernowd (#43769)

Version 11.50.3 - 22 September 2008

- fix/workaround crash when setting banner background
  (Can't call method "get_width" on an undefined value)

Version 11.50.2 - 22 September 2008

- RC2 logo

Version 11.50.1 - 22 September 2008

- fix 1024x768 background

Version 11.50 - 22 September 2008

- handle new driver:
  o ethernet: enic, qlge
- i18n:
  o add support for ibus
- new sidepanel style
- restore support for right alignement for simple widgets
  (regression introduced in 11.46 - 17 September 2008)

Version 11.48 - 18 September 2008

- add a special license for google programs (only for "Powerpack" product)
- install "cryptsetup" when needed

Version 11.47.1 - 17 September 2008

- bug fix: add mandatory new modules for dm-crypt

Version 11.47 - 17 September 2008

- handle new driver:
  o ethernet: jme
- partitioning step
  o handle partitions encrypted with cryptsetup
  o fix file system type drop down list showing most types as "..." in
    "Change partition type" dialog in expert mode due to ellipsizing
- list btusb instead of hci_usb in bus/bluetooth (renamed in 2.6.27)

Version 11.46 - 17 September 2008

- libdrakX:
  o better layout for right aligned widgets
- license: put focus back on Refuse button by default

Version 11.45 - 16 September 2008

- allow to prefer kernel-server on x86_64 too
- enable relative links in HTML help
- enhanced 'desktop' & 'package selection' steps
- switch from perl-Gtk2-Html2 to perl-Gtk2-WebKit in order to display release
  notes & help
- use HTML help for package selection, services & summary step

Version 11.43 - 16 September 2008

- enhanced 'desktop' & 'package selection' steps
- fix berber language image's transparency
- fix displaying current security level in GUI
  (regression introduced on 2008-08-29)
- increase default window height b/c of package selection step
- refresh partitioning step
- size most labels (workaround infamous 6 years old gnome bug #101968)
  (eg: in advanced language selection)
- update icons for packages/services selection

Version 11.42 - 12 September 2008

- increase default window height
- stop claim selecting LSB group will install 2.4.x kernel (#39220)
- desktop step
  o move progress bar on its own line
  o add a separator between buttons & progress bar
  o pack together time label & value

Version 11.41 - 11 September 2008

- bump titles' size by 1 (eg: from 12 to 13 for default font settings)
- do not render "Advanced" & "Help" buttons as blue
- fix default spacing between GUI elements
- fix parsing error messages ar markups
- "Help" dialogs:
  o add a separator before "Close" button
  o fix displaying "Help" Button for HTML help (#42986)
  o put "Close" button of help at right end
- small improvements in many steps (desktop, ...)
- services (thanks to spuk):
  o list ip6tables in "Internet" category
  o list nfs-common and nfs-server in "File sharing" category
  o list rpcbind in "System" category

Version 11.40 - 10 September 2008

- libdrakX:
  o fix position of cancel button in popups
  o make advanced popup display the same title as their parents
  o make all popup titles be upcase
- drakboot
  o fix nolapic/lapic logic due to altered kernel settings
- fix input devices detection in rpmsrate (broken for 3 years, #43721)

Version 11.39 - 9 September 2008

- do not use UUID for software raid, only for hdx and sdx
- keep current UUID when formatting ext2/ext3 (was already done for swap), 
  so that fstab on other distros continue to work (#39913)
  (requires e2fsprogs-1.41.1-2mnb2)
- drop the ability to set mem=xxx in bootloader configuration

Version 11.38 - 8 September 2008

- do not size radio button that have a label thus preventing uneeded horizontal
  scrollbars to appear
- partitioning step
  o fix file system type drop down list showing most types as "..." in expert
    mode due to ellipsizing (#43611)
  o fix too large partition bar (#43073)
  o improved GUI

Version 11.34 - 2 September 2008

- fix buggy blocking wait_message occuring in diskdrake
  (using a more powerful strategy to ensure such blocking wait_message won't
  bother us anymore) (#43527)
- fix sizing some label (workarounding infamous 6 years old gnome bug #101968)
- increase help popup size when browsing services or packages

Version 11.33.1 - 2 September 2008

- make "ask_warn" dialogs be centered

Version 11.33 - 2 September 2008

- further improve layout of media selection step
- "media selection" step: fix position of button (#29367)
- refresh "Summary" step

Version 11.32 - 2 September 2008

- fix buggy blocking wait_message occuring in summary (#42062)
- fix layout of media selection step (#29367)

Version 11.31.2 - 2 September 2008

- adjust sizing in order to prevent horizontal scrollbar to appear
- do not size right aligned radio buttons

Version 11.31 - 2 September 2008

- fix "INTERNAL ERROR: ask_from_normalize" at end of installation

Version 11.30 - 1 September 2008

- keep in $o->{previous_release} the info about upgraded /etc/release,
  and pass "reason" and version to urpmi.addmedia
- 2009.0 RC 1 logo
- hack /tmp/.X11-unix to allow accessing X in chroot
- if network access, configure urpmi with --mirrorlist --distrib,
  and install updates. This replaces the previous "Install Updates" step.
- fix alignment of check buttons
- fix size of right aligned labels
- fix sizing radio buttons' labels (infamous 6 years old gnome bug #101968)
- further improvements to the "bootloader", "desktop" & "partitioning" steps
- prevent big combo boxes to cause an horizontall scrollbar to appear by
  using the "ellipsize" property
- remove "Generate auto install floppy" & "Save packages selection"
  options at end of installation
- update package managment icons
- use pcmcia-socket-startup from /lib/udev for latest pcmciautils

Version 11.29 - 29 August 2008

- do not try starting graphical installer on early i810 (which is is
  not supported), thus prevent waiting several minutes needlessly 
- refresh "Individual package selection" step
- refresh "Security" step

Version 11.28 - 28 August 2008

- fix buggy blocking wait_message occuring in summary (#42062)
- diskdrake: use udevadm settle instead of udevsettle
- refresh "Package Group Selection" step

Version 11.27 - 28 August 2008

- configure vga=785 (640x480) when vga=788 (800x600) fails during install
  (useful on 800x480 netbooks)
- text mode:
  o fix displaying release notes (#43263)

Version 11.26.1 - 28 August 2008

- fix asterisk in titles

Version 11.26 - 27 August 2008

- better layout in 640x480 (#43231)
- fix "probe floppies only once" (#43216)
- misc GUI improvements
  o misc changes
  o properly size some labels (infamous 6 years old gnome bug #101968)
  o refresh "user management" step
  o render some titles as blue
  o set some wait messages' titles

Version 11.25 - 25 August 2008

- left sidepanel:
  o align category titles like step ones

Version 11.24 - 25 August 2008

- handle blowfish password encryption and use it by default (#42426)
- allow to install bootloader on md0 (#42999)
  (regression introduced on 2004-08-05)
- minor GUI tweaks

Version 11.23 - 22 August 2008

- pop wait_messages and ensure same window is used for next wait_messages
  (to ensure the background is not greyed,ungreyed,greyed,...)
- improved license step
- install lilo when needed (#39878)
- render some message titles as blue

Version 11.21 - 21 August 2008

- ensure we don't default on the first keyboard layout when upgrading french
  box in english lang (#41103)
- do not set $HOME while installing packages (#18088)
- install proper qtX package for gcin
- partitioning step
  o ensure we initialize only once but at least one, thus fixing crash
    when embedded or in installer (#43011)

Version 11.20 - 20 August 2008

- do not uselessly install kernel-server on x86_64 if more than 3.8Gb
  are availlable
- diskdrake
  o fix sizing partitions bar (#24410)

Version 11.19 - 20 August 2008

- usbkbd is dead, using usbhid instead
- allow passing suppl=0 to disable "additional installation media" question
- drakx-in-chroot:
  o fix using remote repositories
- set title for advanced dialogs
- small GUI improvements

Version 11.18 - 19 August 2008

- center sub dialogs
- prevent flickering of big windows by:
  o ignoring bogus size-allocate events
  o properly computing window position
- stop reducing help & release notes dialogs' size

Version 11.17 - 19 August 2008

- drakx-in-chroot:
  o enable to choose resolution of Xvfb
  o enable to use a package repository different from installer one
- use new style popup button for 'help' & 'release notes' buttons

Version 11.15 - 19 August 2008

- fix crash with advanced widgets
- fix crashing on some buttons
- fix bogus popup of 'desktop choice' dialog
- authentication: enable network-auth meta-service if auth is not local

Version 11.13 - 18 August 2008

- move hardware packages detection code from installer to drakxtools

Version 11.12 - 18 August 2008

- align titles to the left
- display a separator below titles
- justify big texts
- popup advanced settings in dialogs
- refresh:
  o language step
  o license step

Version 11.11 - 18 August 2008

- 2009.0 beta 2 logo
- l10n:
  o fix selecting locales-XX for locales that specify scripting (#42663)
  o update list of locales
  o update list of KDE languages for KDE4

Version 11.9.1 - 13 August 2008

- fix left panel in 1024x768

Version 11.9 - 13 August 2008

- new title style
- partition wizard:
  o refreshed GUI

Version 11.8.1 - 13 August 2008

- really add deskop images

Version 11.8 - 12 August 2008

- default to UTF-8 for chinese simplified (#42137)
- new desktop choice screen

Version 11.7 - 11 August 2008

- handle new drivers:
  o ethernet: r6040
  o gigabit: atl1e, bnx2x, sfc
  o PATA: pata_ninja32, pata_ns87415
  o SCSI: mvsas
  o USB host controller: isp1760
  o WAN: lapbether
  o wireless: rndis_wlan, rtl8180
- add product type to URL when fetching mirror list

Version 11.3 - 4 August 2008

- fix spacing around buttons

Version 11.2 - 31 July 2008

- include extmod Xorg module (for SHAPE extension)

Version 11.1 - 31 July 2008

- do not require matchbox gconf schema (not provided by drakx-installer-matchbox)

Version 11.0 - 30 July 2008

- first steps toward new installer style

Version 10.48 - 28 July 2008

- 2009.0 beta 1 logo
- drakx-in-chroot: prefer Xephyr over Xnest since Xnest lacks many
  extensions needed by matchbox-window-manager

Version 10.47 - 10 July 2008

- load disk/scsi before disk/ide since libata is now the default
  (to prevent modules::load_category from loading ide-generic too early)
- fix reading and setting kdmrc (by resolving alternative in chroot)

Version 10.46 - 10 July 2008

- authentication:
  o add back fix to force the password to be utf8 (#23273)
  o fix reading md5/shadow options in /etc/pam.d/system-auth

Version 10.45 - 9 July 2008

- update autologin file path for kdm4
- default to KDE4 (instead of KDE) if kdm config exists when reading
  autologin configuration
- change default authentication to local (instead of ldap)

Version 10.44 - 8 July 2008

- 2009.0 alpha 2 logo

Version 10.43 - 4 July 2008

- detect KDE4 when configuring autologin

Version 10.42 - 26 June 2008

- fix reading rpm macros from /etc/macros.d/ (esp. %_filetriggers_dir)

Version 10.41 - 26 June 2008

- 2009.0 alpha 1 logo

Version 10.40 - 25 June 2008

- add support for dm-raid4-5 (tmb)
- add back desktop choice window (by checking task-kde4 instead of task-kde)

Version 10.38 - 20 June 2008

- force back 75dpi to get back previous font sizes
- adapt to cooker file changes
- do not let authentication module (used for ask_user_and_root) mess window size

Version 10.36 - 12 June 2008

- fix authentication configuration

Version 10.35 - 12 June 2008

- adapt to xserver/SecurityPolicy being in /usr

Version 10.34 - 12 June 2008

- partitioning wizard:
  o do not propose to resize "hidden" fat partitions
  o do not say "the Windows partition" when there can be more than one
- use UUID for resume= kernel parameter
- handle new drivers:
  o pata: pata_sch 
- handle renamed drivers:
  o ide-cd is now named ide-cd_mod
  o generic is now named ide-pci-generic
- kernel-laptop is no more
- authentication:
  o add Kerberos Support
  o add disconnected mode for Ldap, Kerberos, Windows auth
  o add more options in Ldap configuration: Fetch DN, TLS
  o remove Active Directory SFU
  o change Winbind authentification to enable domain model choice (NT4 or AD)

Version 10.30 - 23 April 2008

- /sbin/usb_id is needed by mouse.pm to generate /dev/input/by-id/xxx (#39868)
  (and not /LIB/udev/usb_id since drakx-kbd-mouse-x11 0.42)
- list generic module in disk/ide

Version 10.29 - 3 April 2008

- time: write UTC setting in /etc/adjtime (#36522)

Version 10.28 - 3 April 2008

- fix computed install size in group selection (#39303)
  (it didn't take suggests into account)

Version 10.27 - 3 April 2008

- 2008.1 logo (the good one)
- enable to restore the system through rsnapshot if giving "restore"
  on cmdline
- fix broken help because of s/pt_BR/pt_br/ change in file names (#36774)

Version 10.26 - 2 April 2008

- 2008.1 logo
- fix crash when detecting network connection with supplementary media

Version 10.23 - 31 March 2008

- ensure umount on loopback-mounted-file doesn't leak /dev/loop
  (otherwise it breaks install from isos on disk) (#36992)
- warn the user and propose to install/quit-install before upgrading from a
  partition where "/" is ext3 with block-size 1KB to avoid kernel bug (#37583)
- detect as laptop systems with ACPI lid button
  (i.e. if /sys/bus/acpi/devices/PNP0C0D:* exists)
- fix computing time according to timezone in local/UTC dialog
  (by using zoneinfo files from the installed prefix)

Version 10.21 - 25 March 2008

- partitioning wizard: allow "Use free space" if there is an extended
  partition even if all primary partitions are used (#38804)
  (*old* bug!)
- fix errors while setting PA preferences (#39270)
- use umask=0 by default on vfat (#39315)
- root/user password:
  o force the password to be utf8 (#23273)

Version 10.19 - 21 March 2008

- diskdrake:
  o fix setting mount point of a /dev/mdX (#39142)
    (regression introduced in 10.8)
- when skipping bootloader installation, correctly say "None" in summary 
  (#39101)
- correctly set country when given lang=xxx on /proc/cmdline
  (regression introduced in 10.16) (#39104)

Version 10.18 - 21 March 2008

- when reformatting swap, keep existing UUID (#38877)
- ask which drive to install bootloader if we don't really know which is first
  bios drive (cf #38829)
- fix reading alternatives in install
- add Xorg.0.log to report.bug.gz (to help diagnose why X failed)

Version 10.17 - 20 March 2008

- do not unconfigure timezone if timezone screen is canceled (#33565)
- update OpenOffice/BrOffice alternative according to selected lang (#37820)

Version 10.16 - 18 March 2008

- adduserdrake:
  o display kdm/gdm icon again (was disabled on year ago)
- do not write aliases for asus_acpi and thinkpad_acpi in
  modprobe.preload, the modules are now handled by coldplug
- fix setting default lang (which is given by gfxboot)

Version 10.15 - 14 March 2008

- 2008.1 RC2 logo

Version 10.14 - 14 March 2008

- adapt to cooker:
  o brltty libraries are now correctly in /lib64 on x86_64
- mount ntfs-3g as ntfs during install
  (fixes adding "windows" entry in bootloader)
- really fix partition device name for some dmraid (missing "p", cf #38363)
- cpufreq: fix gsx-suspmod probe
- do not propose to upgrade non-mandriva and non-conectiva distros (#38408)

Version 10.10 - 6 March 2008

- fix resizing/formatting ntfs, and create "Windows" entry in bootloader
  (broken because of ntfs-3g switch in previous release)
- install kernel586 on Transmeta Crusoe TM5800 (#37866)
- do not load i810fb, rely on vesa xorg drive instead (it may help #37772)
- restore correct configuration of nfs/hd media in urpmi.cfg
  (regression introduced in 10.8)
- fix partition device name for some dmraid (missing "p", cf #38363)
- do not timeout after 10 minutes when resizing NTFS partition

Version 10.8 - 4 March 2008

- adapt code to upgrade from redhat for mdv extensions (& for Manbo
  Core by the way)
- auto allocate: do not create /home if drive is smaller than 7GB
- do not propose to deselect media if none can be deselected
- no more /media/cdrom in fstab by default (#35055)
  (not needed anymore by urpmi)
- use cdrom:// instead of removable:// in urpmi.cfg (urpmi 5.7)
- use and install ntfs-3g by default for ntfs partitions (#37823)

Version 10.6.25 - 28 February 2008

- API changes for draklive-install

Version 10.6.24 - 28 February 2008

- do not assign a mount point to partitions of type "Compaq diagnostics"
- 2008.1 RC1 logo

Version 10.6.23 - 25 February 2008

- adapt to cooker:
  o jfsprogs is now jfsutils
- change background color

Version 10.6.21 - 19 February 2008

- adapt to cooker rpm macros new locations

Version 10.6.20 - 18 February 2008

- do not create alt_windows unless needed 
  (regression introduced on 2007-11-26) (#37722)
- install linuxwacom if needed
- load disk/ide before disk/scsi, or else sata_sis may be loaded for a
  SATA controller and trigger pata_sis loading before sis5513 is loaded,
  which would defeat an eventual alias to sis5513 for a PATA controller
- cpufreq:
  o use acpi-cpufreq for Mobile PIII/Celeron
    (family 6 model 11, for example Toshiba Portégé 3500)
  o use speedstep-centrino only for supported models
    and prefer acpi-cpufreq (patch from Herton, #30208)
  o use p4-clockmod for some Intel family 6 processors not supporting EST

Version 10.6.19 - 12 February 2008

- do not propose "KDE, GNOME or Custom" profiles if the partition is small 
  (< 2.5GB) otherwise the installer will not be able to install the full profile
- auto partitioning: ensure the "/" is bigger on small drives

Version 10.6.18 - 12 February 2008

- adapt to modules being in /lib/modules/`uname -r`

Version 10.6.16 - 11 February 2008

- Xorg needs xkb/rules/base, otherwise it can go crazy (#35912)
- add mkntfs (#37462)
- detect systems with C7-M processor as laptop (like Belinea s.book)

Version 10.6.13 - 5 February 2008

- add "vesa" X driver to use when framebuffer fails
  (useful for boxes which work with vga=785 which is not the default, in that
  case "vesa" should work)

Version 10.6.12 - 28 January 2008

- 2008.1 beta2 logo
- set $::isInstall soon enough for fs::type data-structure creation:
  fixes reiser4 appearing in diskdrake during install (#36999)
- add grub entries to allow booting other installed distros
  (using grub "configfile") (see #16604)

Version 10.6.10 - 28 January 2008

- handle new drivers: 
  o ethernet: cpmac
  o gigabit: ipg
  o pata/sata: pata_bf54x, sata_fsl
  o sound: snd-at73c213 
  o tv cards: cx23885
  o webcams: tcm825x
- fix detecting existing LVMs (#31228)
  (regression introduced in 10.4.204 (?))
- fix ensuring X is launched on tty7 (cf #37087)
- fix handling LVM VGs with "-" in the name (#37267)
- call X with -nolisten tcp to avoid "security" issues (#18320)
  (nb: this implies "xhost+" helper prog is not useful anymore)
- do not propose ext4dev filesystem during install (#37157)

Version 10.6.8 - 24 January 2008

- 2008.1 beta1 logo
- look for LVM PV on non partitioned disk before looking for DOS
  partition_table (esp. for lilo which puts the DOS magic)

Version 10.6.7 - 22 January 2008

- add xkb/symbols/inet (which is now needed by default for pc105)
- adapt to perl 5.10.0
- create /dev/cdrom symlink for installer (#36703)
- do not put "windows" entry in bootloader for partitions where Windows is not
  present (#8086)

Version 10.6.5 - 14 January 2008

- do not sort languages in "choose language" step in graphical mode, since the
  sort is done on the non-translated strings (eg: we display "Espanol" but we
  sort on Spanish )

Version 10.6.3 - 9 January 2008, by Pascal "Pixel" Rigaux

- 2008.1 alpha2 logo
- adapt to cooker:
  o DejaVuSans-Bold*.ttf instead of DejaVuSansBold*.ttf (again!)
  o /usr/lib/gconv/KOI8-K.so is no more, take KOI8-*.so
  o no more /etc/rpm/platform (for rpm 4.4.2.2)
- install SMP packages when "match_all_hardware" option is set

Version 10.6.1 - 12 December 2007, by Pascal "Pixel" Rigaux

- ensure failing to build mdkinst.sqfs is a fatal error
- drakx-in-chroot:
  o just like stage1, handle <root of distrib> ending with current arch() so
  that we can access main32 on x86_64
- do not rebuild rpmdb if it is ok 
  (will workaround #32547) (need perl-URPM 3.01)
- adapt to perl-URPM 3.00 API to parse pubkey files
- adjust Uzbek locale (cf locales-uz change)
- sort languages in "choose language" step in text mode
- diskdrake:
  o drop "Undo", "Restore partition table", "Save partition table"
    (preparing to switch to libparted)
- don't check /proc/partitions for a partition_table::lvm 
  (ie PV on non partitioned drive)

Version 10.5.6 - 30 November 2007, by Pascal "Pixel" Rigaux

- restrict the proposed input-methods for each language
- /dev/<vg> may not exist if LVs have not been created, it must not be an error (#31478)
- use xkb instead of xmodmap 
- save bootloader on MBR when calling grub/install.sh, and restore it before
  calling it again (#35255) (ie implement "lilo -u" for grub)
- ensure /etc/sysconfig/console/default.kmap is generated with installed
  keymaps, not installer simplified (?) .bkmap (#35376)
- fix wrongly detecting some devices as laptop specific (#35759)
- add /etc/mke2fs.conf symlink so that mke2fs can use it (cf #27377)

Version 10.5.5 - 14 November 2007, by Pascal "Pixel" Rigaux

- adapt to cooker: 
  o kbd_drv.so instead of keyboard_drv.so
  o DejaVuSansBold*.ttf instead of DejaVuSans-Bold*.ttf

Version 10.5.4 - 13 November 2007, by Pascal "Pixel" Rigaux

- use UUID by default (in fstab, bootloader)
- localedrake:
  o fix handling variant together with charset (eg: uz.UTF-8@Latn) (#35090)
- partitioning wizard: ensure existing_part and resize_fat are proposed before
  wipe_drive
- in case of ftp/http media, we select basesystem before doing
  bestKernelPackage so we must ensure the choice callback selects the good
  kernel (reported by Thomas Spuhler on cooker mailing list)
- do propose "Suisse" after selecting french language (#34675)
- use time() to know when to timeout (when launching installer X server)
  since the loop may be slower than 1 second (xf86misc::main::Xtest takes time
  on a failing X server on i810). Also print a message telling user to wait
  after 8 seconds.

Version 10.4.238 - 5 October 2007, by Pascal "Pixel" Rigaux

- do not use pseudo Protocol "vboxmouse" during install, use "IMPS/2" instead

Version 10.4.236 - 4 October 2007, by Pascal "Pixel" Rigaux

- fix copying of ../../i586/media/main medium 
  (for dual_arch CDs sharing the i586 medium)
- fix configuring kdeglobals (was broken because of /etc/kderc using
  udpate-alternatives which use absolute symlinks)

Version 10.4.233 - 4 October 2007, by Pascal "Pixel" Rigaux

- use /dev/cdrom in fstab, but do not write corresponding udev rule
  (the rules will be generated at boot time otherwise it won't catch the
  hdX/srX switch)

Version 10.4.232 - 4 October 2007, by Olivier "blino" Blin

- add helper to get kernel module path (to be used in draklive)

Version 10.4.228 - 3 October 2007, by Pascal "Pixel" Rigaux

- use /dev/cdrom in fstab, and write corresponding udev rule
  (the rules were generated at boot time but here we ensure consistent naming)
- 2008 logo
- bootloader:
  o if there is a /boot, check /boot instead of "/" to allow grub or not

Version 10.4.227 - 2 October 2007, by Thierry Vignaud

- diskdrake:
  o improved wrapping of mount option descriptions (#19848)
- add ath5k module in wireless category

Version 10.4.224 - 1 October 2007, by Pascal "Pixel" Rigaux

- don't keep noarch pkgs symlinked (to ../../../i586/media/main/xxx.rpm)
  when copying packages on disk

Version 10.4.223 - 1 October 2007, by Pascal "Pixel" Rigaux

- diskdrake:
  o bugfix 10.4.162: allow "LVM" on RAID (#34359)
- add acpi-cpufreq support for some Intel CPUs (family 6 model 15)
  (from Herton Ronaldo Krzesinski, #30208)

Version 10.4.220 - 28 September 2007, by Pascal "Pixel" Rigaux

- log_sizes: cleanup __db* files
- ensure the rpmdb is closed

Version 10.4.218 - 28 September 2007, by Pascal "Pixel" Rigaux

- add /etc/rpm/macros.cdb

Version 10.4.217 - 27 September 2007, by Thierry Vignaud

- help:
  o do not segfault on #foobar like anchors
  o try translated links first (#33679)

Version 10.4.216 - 27 September 2007, by Pascal "Pixel" Rigaux

- allow to choose countries like "Angola" which have no locale (en_AO) in the
  "best" countries (alas it won't be remembered, will only be used in kde
  settings for now)

Version 10.4.215 - 26 September 2007, by Thierry Vignaud

- display nicer HTML release notes rather than raw text version
- fix using iso CD2 on disk (#33022):
  o remove " from medium name when reading media.cfg
  o handle "Volume id" ending with -CD[123] instead of -Disc[123]
- handle @::auto_steps in patch-oem.pl

Version 10.4.214 - 26 September 2007, by Thierry Vignaud

- do not ask desktop choice in upgrade (#34025)
- fix displaying help in custom partition (#33994)

Version 10.4.212 - 24 September 2007, by Thierry Vignaud

- don't crash install when mounting CD fails (#33421)
- don't ask for desktop and go directly to choose groups if kde and gnome are
  not available on media (useful for mini iso)
- add mount.nfs binary (since mount doesn't handle nfs fs anymore)

Version 10.4.211 - 24 September 2007, by Pascal "Pixel" Rigaux

- on upgrade, don't add resume=xxx if noresume is there (#33953)
- diskdrake
  o fix "Add to LVM"
- do not display any message when user screenshot when chrooted during install
  of pkgs (#33752)
- don't add resume=xxx to bootloader configuration if there is noresume (#33953)
- ignore /proc/partitions when "solaris" extended partition is present (#33866)
- translate the pkg summary when mdv-rpm-summary info is available
  (for the "Details" mode when installing packages)
- ensure mdv-rpm-summary is installed first (if selected)

Version 10.4.207 - 21 September 2007, by Thierry Vignaud

- localization:
  o default input method is now scim-bridge (#32138)

Version 10.4.206 - 20 September 2007, by Thierry Vignaud

- fix some banner icons (#33802)

Version 10.4.205 - 20 September 2007, by Olivier "blino" Blin

- stop configuring TV cards in summary since kernel do a better job now
- fix passing module options when module name contains a '-' character
- add dkms-modules.alias and ldetect-lst-modules.alias files in stage2

Version 10.4.204 - 19 September 2007, by Pascal "Pixel" Rigaux

- individual package selection: make the package "Info" non editable
- diskdrake:
  o "Clear All" defaults to LVM on full disk if drive is >4TB
  o do not allow partitions bigger than 2TB-1 on DOS MBR, nor partitions
    starting above 2TB-1
- restore banner on pop up messages (#33753)
- handle /boot/xxx files on linux raid1
- when basesystem can't be selected, display the reason
- also load dm-zero for dmraid
- add RC2 banner

Version 10.4.201 - 17 September 2007, by Pascal "Pixel" Rigaux

- fix loading dependencies of kernel module "xxx-yyy" (instead of "xxx_yyy")
  (eg: dm-mirror)
- report_bug: hide grub password (#33634)
- fix blocking wait_message (when they pop) (#33676, #33670)
- advertising: restore support for $title in .pl files (wrongly dropped in 10.4.195)
- localization:
  o fix installing packages according to desktop
- boot loader config:
  o boot entrie list uses ellipsis rather than scroll bar

Version 10.4.199 - 17 September 2007, by Olivier "blino" Blin

- fix loading of tifm_sd module

Version 10.4.198 - 16 September 2007, by Thierry Vignaud

- fix a crash
- localization:
  o install scim-bridge-qt4 if KDE4 is installed

Version 10.4.197 - 15 September 2007, by Thierry Vignaud

- localization:
  o enable to select 'scim-bridge' as IM
  o install needed packages for skim
  o install scim-qtimm for scim default config
  o remove extra SCIM combinations (simpler)

Version 10.4.196 - 14 September 2007, by Olivier "blino" Blin

- fix typo breaking reading fstab with UUID= entries
- don't set $o->{security} until accepted (#33567)
- packageCallbackChoices: use prefered packages given by perl-URPM 2.00 

Version 10.4.195 - 14 September 2007, by Olivier "blino" Blin

- fix loading of tifm_sd module (#18237)

Version 10.4.194 - 13 September 2007, by Thierry Vignaud

- do not allow to upgrade i586->x86_64 or x86_64->i586 (#33370)
- do not configure "windows" bootloader entries for "hidden" partitions
- fix unwrapped label (#33243)
- fix grub hanging if /boot on xfs (#33267)
- use user_xattr by default on reiserfs (#15068)
- for wait_message, display a banner and move "Please Wait" in the banner

Version 10.4.191 - 5 September 2007, by Thierry Vignaud

- "choose desktop" step:
  o put images along labels in RadioButtons (HIG)
- summary screen:
  o add spacing around separators
  o fix not displaying the security group
- drop support for iiimf
- update bootloader & updates banner icons

Version 10.4.190 - 5 September 2007, by Thierry Vignaud

- display a warning when capslock is enabled and entering a password (#33028)
- fix insmoding raid0 (#33172)

Version 10.4.189 - 4 September 2007, by Thierry Vignaud

- summary screen:
  o add spacing between elements
  o add an horizontal bar between elements

Version 10.4.188 - 4 September 2007, by Thierry Vignaud

- hardware detection layer:
  o add support for tape device again (#31073)
  o enumerate generic SCSI devices again
- enumerate generic SCSI devices again

Version 10.4.187 - 4 September 2007, by Pascal "Pixel" Rigaux

- bugfix: add desktop-Custom.png to tarball
- add global variable settable via "use_uuid" on kernel cmdline

Version 10.4.185 - 4 September 2007, by Pascal "Pixel" Rigaux

- fix gnome choice in "choose desktop" step (#33101)

Version 10.4.184 - 3 September 2007, by Thierry Vignaud

- support for UUID (including UUID=xxx in fstab)
- do not set relatime option for mounting nfs
- nicely adjust mtime of fontconfig cache files
- steps window: do not underline categories (Installation, Configuration)
- nicer "choose desktop" step with icons

Version 10.4.183 - 31 August 2007, by Pascal "Pixel" Rigaux

- add new step "choose desktop", before or hiding "choose groups"
- bootloader-config
  o handle new naming of vmlinuz flavors: vmlinuz-<version>-<flavor>-Xmdv
    instead of vmlinuz-<version>-Xmdv<flavor>
  o always use "linux" short name instead of "linux-<flavor>"
    (since the long name is quite nice nowadays)

Version 10.4.182 - 30 August 2007, by Thierry Vignaud

- enable snd-ac97-codec power_save=1 option if installed on laptop (#32213)
- set specific icons for summary steps (#32923)
- assume system is a laptop if it contains some "Intel Corporation|Mobile" devices
  (fix Samsung Q1U detection, #32967)

Version 10.4.181 - 29 August 2007, by Thierry Vignaud

- fix translating steps titles
- ugtk2: use given title if available instead of default step title (#32923)

Version 10.4.180 - 27 August 2007, by Thierry Vignaud

- bug command: fix choosing the usb-key/floppy drive
  (ie adapting interactive::stdio to new interactive callbacks)
- add /usr/share/ldetect-lst/fallback-modules.alias for 
  drakx-in-chroot on old kernels
- fallback to kernel-desktop
- fix summary in text mode (#32858)
- fix loading linux software raid (mdadm) kernel modules
  (after rename raid5&raid6 -> raid456)
- diskdrake
  o fix action "Type" on a software raid (eg: dm0)
  o fix coloring "Other" partitions (#32845)
- update banner for RC1

Version 10.4.179 - 24 August 2007, by Thierry Vignaud

- install kernel-desktop-devel-latest instead of
  kernel-source-stripped-latest on upgrade

Version 10.4.178 - 24 August 2007, by Thierry Vignaud

- adapt to new kernel flavors

Version 10.4.177 - 24 August 2007, by Pascal "Pixel" Rigaux

- fix typo in banner name (otherwise internal_error)

Version 10.4.176 - 24 August 2007, by Olivier "blino" Blin

- fix resolving category from module (mainly fix usbhid loading)

Version 10.4.175 - 23 August 2007, by Pascal "Pixel" Rigaux

- fix typo making selectKeyboard step not called
- diskdrake:
  o change the legend and the colors per partition
- drop /etc/sysconfig/usb configuration (not used anymore in initscripts)
- update banner for beta2

Version 10.4.174 - 21 August 2007, by Olivier "blino" Blin

- set default per step banner title & icon for all steps
- fallback on module name if the filename can't be found
  (in the rare case the caller uses '-' in the module name)
- use '_' in module names when explicitely loading them (cosmetics only)
- kill old usb-storage code, mkinitrd now loads it when necessary

Version 10.4.173 - 21 August 2007, by Olivier "blino" Blin

- convert module names to module filenames

Version 10.4.172 - 21 August 2007, by Olivier "blino" Blin

- ignore wmaster* devices when detecting wireless interfaces

Version 10.4.171 - 20 August 2007, by Olivier "blino" Blin

- really use '_' in modules names

Version 10.4.170 - 20 August 2007, by Olivier "blino" Blin

- use '_' in modules names

Version 10.4.169 - 14 August 2007, by Thierry Vignaud

- use better default title & icon for banners
- diskdrake:
  o add support for 'relatime' mount option
  o default all machines to 'relatime' mount option
    (except laptops which use the stronger noatime)
  o kill support for 'nodiratime' mount option

Version 10.4.168 - 13 August 2007, by Pascal "Pixel" Rigaux

- merge root password step and create user step
- fix checking user creation info (#32517)
- allow to create only one user per default, but add an entry in summary to
  create more users
- authentication method is not configurable anymore for now. 
  should we add it to summary?
- 'ibm_acpi' driver was replaced by 'thinkpad_acpi (#31606)
- internal
  o use urpm::select::get_preferred to choose preferred packages
    (need urpmi library >= 4.10.1)
  o computeGroupSize: do direct requires before choices
    (eg for epiphany: require libmozilla-firefox2.0.0.6 before choosing
    package providing libmozjs.so)

Version 10.4.165 - 10 August 2007, by Thierry Vignaud

- fix detecting sound cards

Version 10.4.164 - 9 August 2007, by Pascal "Pixel" Rigaux

- cache PCI probe results
- use Xconfig::proprietary::pkgs_for_Driver2 from drakx-kbd-mouse-X11 0.21

Version 10.4.162 - 8 August 2007, by Thierry Vignaud

- drakboot:
  o allow choosing another bootloader method when a package cannot be
  installed (occurs on 2008.0 beta1 where mandriva-gfxboot-theme is missing)
- diskdrake:
  o do not show partition types which have no associated filesystem
    for LVM LV (#32326)
- allow using diskdrake even if there is only a lvm PV on full disk available
- fix range max value >2TB when creating a partition (useful for LVs >2TB)
- kill security level step (only reachable from summary now)
- restore progress bar when formatting ext3
- summary screen:
  o warn if the security level will prevent accessing windows partitions
  o reorder steps according to specs
  o render titles in bold

Version 10.4.158 - 3 August 2007, by Pascal "Pixel" Rigaux

- configure removable writable media to use "flush" option instead of "sync" (#23042)

Version 10.4.155 - 2 August 2007, by Pascal "Pixel" Rigaux

- use kbd (setfont) instead of console-tools (consolechars)
- drop supermount support
- diskdrake: drop "Rescue partition table" feature 
  (was based on rescuept which has been dropped in util-linux, but was quite
  bad compared to testdisk anyway)

Version 10.4.150 - 24 July 2007, by Olivier "blino" Blin
- update banner for 2008 beta 1 (from Anne)

Version 10.4.149 - 17 July 2007, by Olivier "blino" Blin
- fix build of wireless binding with latest kernel headers

Version 10.4.148 - 17 July 2007, by Olivier "blino" Blin

- add ide-disk module in disk/raw
- load ide-disk module when loading disk/ide category

Version 10.4.147 - 12 July 2007, by Pascal "Pixel" Rigaux

- allow using sqlite for rpmdb when using option rpm_dbapi=4
- add /LIB/udev/usb_id which is needed by mouse.pm to generate /dev/input/by-id/xxx

Version 10.4.142 - 2 July 2007, by Pascal "Pixel" Rigaux

- brown paper bag fix (stage1 can't create symlink /etc/rpm/platform)

Version 10.4.141 - 29 June 2007, by Pascal "Pixel" Rigaux

- bundle /etc/rpm/platform for rpm 4.4.8
- use modularized ide drivers and configure ide-controller in modprobe.conf
- auto_install:
  o allow "automatic=met:http,ser:server,dir:/pub/dir
    kickstart=/pub/auto_inst.cfg" to get http://server/pub/auto_inst.cfg (#31474)
  o ensure /etc/resolv.conf is configured in /mnt for network installs
- add /etc/mke2fs.conf in order to format ext3fs with 4k blocks (#27377)
- diskdrake
  o fix 1.9TB displayed as 1TB
- do not ask for updates at end of installation when updates are already
  available (network installs) (#30344)
- do not try to configure dvd devices since /dev is wiped out at
  reboot
- fix detecting usb drives (#13395)
  (need a perl-MDK-Common 1.2.5)
- hw support:
  o handle snd-cs5530 driver
- install fonts-ttf-dejavu & fonts-ttf-liberation by default
- allow umounting cdrom during a transaction
- really allow having name with "/" in media.cfg
- use "mkfs.ext3" instead of "mkfs.ext2 -J"
  (to have dir_index & resize_inode features)
  (cf Frederik Himpe 23 Apr 2007 mail on cooker)

Version 10.4.129 - 4 April 2007, by Pascal "Pixel" Rigaux

- move advertising out of drakx-installer-stage2 into drakx-installer-advertising

Version 10.4.128 - 3 April 2007, by Pascal "Pixel" Rigaux

- don't configure /etc/kde/kdm/kdmrc if it doesn't exist
  (other kdmrc.rpmnew will be created, many important values will be missing)
- fix ext3 formatting with label and progress bar (#30032)
- fix taking screenshot
- prefering libkdebase4-kmenuedit over libkdebase46-kmenuedit to ensure
  kdebase-kmenuedit is chosen instead of kdebase4-kmenuedit

Version 10.4.126 - 29 March 2007, by Olivier "blino" Blin

- use pci_domain when matching sysfs device and computing
  sysfs device path

Version 10.4.124 - 29 March 2007, by Olivier "blino" Blin

- correctly mark "update" media in urpmi.cfg
- fix multiple detection of PCI network cards with the same driver (#29688)
- rename o->{build_live_system} as more generic o->{match_all_hardware} name
- automatically install network drivers when matching all hardware

Version 10.4.122 - 29 March 2007, by Thierry Vignaud

- final banner image
- fix installing kernel-source-stripped
- include mmc_block for card readers

Version 10.4.120 - 23 March 2007, by Pascal "Pixel" Rigaux

- allow having name with "/" in media.cfg
- interactive::curses: 
  o handle multi-line labels, and wrap too long labels (#29060)
- do not use bold&big for advanced_messages
  (fixes authentication choice being big & ugly, #28676)

Version 10.4.119 - 22 March 2007, by Pascal "Pixel" Rigaux

- use concat_symlink to get rid of ../../ in urpmi.cfg on x86_64 for main32 medium
- don't complain about missing pata drivers
- do not install nspluginwrapper on ia32 (#29808)
- use http://api.mandriva.com/mirrors/$type.$version.$arch instead of simply
  $version.$arch (useful to differentiate CorpoDesktop4)
- fix ati/nvidia drivers installation on One

Version 10.4.116 - 19 March 2007, by Thierry Vignaud

- do not fallback on english HTML help but on on old translated help
- handle more drivers (dvb, ethernet, gigabit, ide, pcmcia, sata,
  sound, tv, usb hosts, wan, webcam, wireless)
- 2007 RC logo
- diskdrake: handle mkntfs

Version 10.4.115 - 16 March 2007, by Pascal "Pixel" Rigaux

- use kernel-*latest to select the kernel, 
  and also kernel-source-stripped-latest when dkms is installed on upgrade
- add some nice code selecting the various kernel-source-stripped (or
  kernel-.*-devel) corresponding to the chosen kernels
- allow having rpmsrate on CD0 overriding rpmsrate on CD1 
  (bugged introduced in rev 37253)
- when using 2 media_cfg in auto_inst, 
  allow specifying which rpmsrate will be used
- for locales with fallback (eg: br:fr), try main language before
  english

Version 10.4.114 - 16 March 2007, by Pascal "Pixel" Rigaux

- use grub-gfxmenu command to configure /boot/gfxmenu for grub

Version 10.4.111 - 15 March 2007, by Olivier "blino" Blin

- correctly translate Driver2 to package name (fix ati packages installation on One)

Version 10.4.109 - 15 March 2007, by Thierry Vignaud

- display HTML help if availlable
- load tifm_sd if needed (#25133)

Version 10.4.107 - 13 March 2007, by Pascal "Pixel" Rigaux

- prefer kde3 packages over kde4 packages

Version 10.4.106 - 12 March 2007, by Pascal "Pixel" Rigaux

- move the lib64 symlink in share/symlinks (to fix drakx-in-chroot),
  this will leave a harmless dangling symlink in most cases though
- configure "tifm_7xx1" driven card_reader (#25133)
- do not bother configure old modutils
- fix PCI descriptions returned from pci_probe()
- enhance wrapping in wizards

Version 10.4.103 - 6 March 2007, by Pascal "Pixel" Rigaux

- add icons needed by xorg configuration (#29069)

Version 10.4.98 - 22 February 2007, by Thierry Vignaud

- do not install athcool on ia32, it freeze at least some nforce2 machines
- fix regexp for kernel-2.6.17.10mdv for autoinstall install & liveCD building
- include fsck.jfs on x86_64 too (#28821)
- update kernel/list_modules.pm

Version 10.4.96 - 16 February 2007, by Pascal "Pixel" Rigaux

- handle vga=0x3.. instead of vga=7..
- prefer free-kde-config (otherwise one-kde-config is chosen)
- use system-wide raghu.ttf (pablo)
- fix rights on files
- fix automatic selection of proprietary video kernel packages (blino)
- modify custom.conf instead of gdm.conf (blino)

10.4.93
- really fix command bug
220'>7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 32492 32493 32494 32495 32496 32497 32498 32499 32500 32501 32502 32503 32504 32505 32506 32507 32508 32509 32510 32511 32512 32513 32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 32530 32531 32532 32533 32534 32535 32536 32537 32538 32539 32540 32541 32542 32543 32544 32545 32546 32547 32548 32549 32550 32551 32552 32553 32554 32555 32556 32557 32558 32559 32560 32561 32562 32563 32564 32565 32566 32567 32568 32569 32570 32571 32572 32573 32574 32575 32576 32577 32578 32579 32580 32581 32582 32583 32584 32585 32586 32587 32588 32589 32590 32591 32592 32593 32594 32595 32596 32597 32598 32599 32600 32601 32602 32603 32604 32605 32606 32607 32608 32609 32610 32611 32612 32613 32614 32615 32616 32617 32618 32619 32620 32621 32622 32623 32624 32625 32626 32627 32628 32629 32630 32631 32632 32633 32634 32635 32636 32637 32638 32639 32640 32641 32642 32643 32644 32645 32646 32647 32648 32649 32650 32651 32652 32653 32654 32655 32656 32657 32658 32659 32660 32661 32662 32663 32664 32665 32666 32667 32668 32669 32670 32671 32672 32673 32674 32675 32676 32677 32678 32679 32680 32681 32682 32683 32684 32685 32686 32687 32688 32689 32690 32691 32692 32693 32694 32695 32696 32697 32698 32699 32700 32701 32702 32703 32704 32705 32706 32707 32708 32709 32710 32711 32712 32713 32714 32715 32716 32717 32718 32719 32720 32721 32722 32723 32724 32725 32726 32727 32728 32729 32730 32731 32732 32733 32734 32735 32736 32737 32738 32739 32740 32741 32742 32743 32744 32745 32746 32747 32748 32749 32750 32751 32752 32753 32754 32755 32756 32757 32758 32759 32760 32761 32762 32763 32764 32765 32766 32767 32768 32769 32770 32771 32772 32773 32774 32775 32776 32777 32778 32779 32780 32781 32782 32783 32784 32785 32786 32787 32788 32789 32790 32791 32792 32793 32794 32795 32796 32797 32798 32799 32800 32801 32802 32803 32804 32805 32806 32807 32808 32809 32810 32811 32812 32813 32814 32815 32816 32817 32818 32819 32820 32821 32822 32823 32824 32825 32826 32827 32828 32829 32830 32831 32832 32833 32834 32835 32836 32837 32838 32839 32840 32841 32842 32843 32844 32845 32846 32847 32848 32849 32850 32851 32852 32853 32854 32855 32856 32857 32858 32859 32860 32861 32862 32863 32864 32865 32866 32867 32868 32869 32870 32871 32872 32873 32874 32875 32876 32877 32878 32879 32880 32881 32882 32883 32884 32885 32886 32887 32888 32889 32890 32891 32892 32893 32894 32895 32896 32897 32898 32899 32900 32901 32902 32903 32904 32905 32906 32907 32908 32909 32910 32911 32912 32913 32914 32915 32916 32917 32918 32919 32920 32921 32922 32923 32924 32925 32926 32927 32928 32929 32930 32931 32932 32933 32934 32935 32936 32937 32938 32939 32940 32941 32942 32943 32944 32945 32946 32947 32948 32949 32950 32951 32952 32953 32954 32955 32956 32957 32958 32959 32960 32961 32962 32963 32964 32965 32966 32967 32968 32969 32970 32971 32972 32973 32974 32975 32976 32977 32978 32979 32980 32981 32982 32983 32984 32985 32986 32987 32988 32989 32990 32991 32992 32993 32994 32995 32996 32997 32998 32999 33000 33001 33002 33003 33004 33005 33006 33007 33008 33009 33010 33011 33012 33013 33014 33015 33016 33017 33018 33019 33020 33021 33022 33023 33024 33025 33026 33027 33028 33029 33030 33031 33032 33033 33034 33035 33036 33037 33038 33039 33040 33041 33042 33043 33044 33045 33046 33047 33048 33049 33050 33051 33052 33053 33054 33055 33056 33057 33058 33059 33060 33061 33062 33063 33064 33065 33066 33067 33068 33069 33070 33071 33072 33073 33074 33075 33076 33077 33078 33079 33080 33081 33082 33083 33084 33085 33086 33087 33088 33089 33090 33091 33092 33093 33094 33095 33096 33097 33098 33099 33100 33101 33102 33103 33104 33105 33106 33107 33108 33109 33110 33111 33112 33113 33114 33115 33116 33117 33118 33119 33120 33121 33122 33123 33124 33125 33126 33127 33128 33129 33130 33131 33132 33133 33134 33135 33136 33137 33138 33139 33140 33141 33142 33143 33144 33145 33146 33147 33148 33149 33150 33151 33152 33153 33154 33155 33156 33157 33158 33159 33160 33161 33162 33163 33164 33165 33166 33167 33168 33169 33170 33171 33172 33173 33174 33175 33176 33177 33178 33179 33180 33181 33182 33183 33184 33185 33186 33187 33188 33189 33190 33191 33192 33193 33194 33195 33196 33197 33198 33199 33200 33201 33202 33203 33204 33205 33206 33207 33208 33209 33210 33211 33212 33213 33214 33215 33216 33217 33218 33219 33220 33221 33222 33223 33224 33225 33226 33227 33228 33229 33230 33231 33232 33233 33234 33235 33236 33237 33238 33239 33240 33241 33242 33243 33244 33245 33246 33247 33248 33249 33250 33251 33252 33253 33254 33255 33256 33257 33258 33259 33260 33261 33262 33263 33264 33265 33266 33267 33268 33269 33270 33271 33272 33273 33274 33275 33276 33277 33278 33279 33280 33281 33282 33283 33284 33285 33286 33287 33288 33289 33290 33291 33292 33293 33294 33295 33296 33297 33298 33299 33300 33301 33302 33303 33304 33305 33306 33307 33308 33309 33310 33311 33312 33313 33314 33315 33316 33317 33318 33319 33320 33321 33322 33323 33324 33325 33326 33327 33328 33329 33330 33331 33332 33333 33334 33335 33336 33337 33338 33339 33340 33341 33342 33343 33344 33345 33346 33347 33348 33349 33350 33351 33352 33353 33354 33355 33356 33357 33358 33359 33360 33361 33362 33363 33364 33365 33366 33367 33368 33369 33370 33371 33372 33373 33374 33375 33376 33377 33378 33379 33380 33381 33382 33383 33384 33385 33386 33387 33388 33389 33390 33391 33392 33393 33394 33395 33396 33397 33398 33399 33400 33401 33402 33403 33404 33405 33406 33407 33408 33409 33410 33411 33412 33413 33414 33415 33416 33417 33418 33419 33420 33421 33422 33423 33424 33425 33426 33427 33428 33429 33430 33431 33432 33433 33434 33435 33436 33437 33438 33439 33440 33441 33442 33443 33444 33445 33446 33447 33448 33449 33450 33451 33452 33453 33454 33455 33456 33457 33458 33459 33460 33461 33462 33463 33464 33465 33466 33467 33468 33469 33470 33471 33472 33473 33474 33475 33476 33477 33478 33479 33480 33481 33482 33483 33484 33485 33486 33487 33488 33489 33490 33491 33492 33493 33494 33495 33496 33497 33498 33499 33500 33501 33502 33503 33504 33505 33506 33507 33508 33509 33510 33511 33512 33513 33514 33515 33516 33517 33518 33519 33520 33521 33522 33523 33524 33525 33526 33527 33528 33529 33530 33531 33532 33533 33534 33535 33536 33537 33538 33539 33540 33541 33542 33543 33544 33545 33546 33547 33548 33549 33550 33551 33552 33553 33554 33555 33556 33557 33558 33559 33560 33561 33562 33563 33564 33565 33566 33567 33568 33569 33570 33571 33572 33573 33574 33575 33576 33577 33578 33579 33580 33581 33582 33583 33584 33585 33586 33587 33588 33589 33590 33591 33592 33593 33594 33595 33596 33597 33598 33599 33600 33601 33602 33603 33604 33605 33606 33607 33608 33609 33610 33611 33612 33613 33614 33615 33616 33617 33618 33619 33620 33621 33622 33623 33624 33625 33626 33627 33628 33629 33630 33631 33632 33633 33634 33635 33636 33637 33638 33639 33640 33641 33642 33643 33644 33645 33646 33647 33648 33649 33650 33651 33652 33653 33654 33655 33656 33657 33658 33659 33660 33661 33662 33663 33664 33665 33666 33667 33668 33669 33670 33671 33672 33673 33674 33675 33676 33677 33678 33679 33680 33681 33682 33683 33684 33685 33686 33687 33688 33689 33690 33691 33692 33693 33694 33695 33696 33697 33698 33699 33700 33701 33702 33703 33704 33705 33706 33707 33708 33709 33710 33711 33712 33713 33714 33715 33716 33717 33718 33719 33720 33721 33722 33723 33724 33725 33726 33727 33728 33729 33730 33731 33732 33733 33734 33735 33736 33737 33738 33739 33740 33741 33742 33743 33744 33745 33746 33747 33748 33749 33750 33751 33752 33753 33754 33755 33756 33757 33758 33759 33760 33761 33762 33763 33764 33765 33766 33767 33768 33769 33770 33771 33772 33773 33774 33775 33776 33777 33778 33779 33780 33781 33782 33783 33784 33785 33786 33787 33788 33789 33790 33791 33792 33793 33794 33795 33796 33797 33798 33799 33800 33801 33802 33803 33804 33805 33806 33807 33808 33809 33810 33811 33812 33813 33814 33815 33816 33817 33818 33819 33820 33821 33822 33823 33824 33825 33826 33827 33828 33829 33830 33831 33832 33833 33834 33835 33836 33837 33838 33839 33840 33841 33842 33843 33844 33845 33846 33847 33848 33849 33850 33851 33852 33853 33854 33855 33856 33857 33858 33859 33860 33861 33862 33863 33864 33865 33866 33867 33868 33869 33870 33871 33872 33873 33874 33875 33876 33877 33878 33879 33880 33881 33882 33883 33884 33885 33886 33887 33888 33889 33890 33891 33892 33893 33894 33895 33896 33897 33898 33899 33900 33901 33902 33903 33904 33905 33906 33907 33908 33909 33910 33911 33912 33913 33914 33915 33916 33917 33918 33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 33929 33930 33931 33932 33933 33934 33935 33936 33937 33938 33939 33940 33941 33942 33943 33944 33945 33946 33947 33948 33949 33950 33951 33952 33953 33954 33955 33956 33957 33958 33959 33960 33961 33962 33963 33964 33965 33966 33967 33968 33969 33970 33971 33972 33973 33974 33975 33976 33977 33978 33979 33980 33981 33982 33983 33984 33985 33986 33987 33988 33989 33990 33991 33992 33993 33994 33995 33996 33997 33998 33999 34000 34001 34002 34003 34004 34005 34006 34007 34008 34009 34010 34011 34012 34013 34014 34015 34016 34017 34018 34019 34020 34021 34022 34023 34024 34025 34026 34027 34028 34029 34030 34031 34032 34033 34034 34035 34036 34037 34038 34039 34040 34041 34042 34043 34044 34045 34046 34047 34048 34049 34050 34051 34052 34053 34054 34055 34056 34057 34058 34059 34060 34061 34062 34063 34064 34065 34066 34067 34068 34069 34070 34071 34072 34073 34074 34075 34076 34077 34078 34079 34080 34081 34082 34083 34084 34085 34086 34087 34088 34089 34090 34091 34092 34093 34094 34095 34096 34097 34098 34099 34100 34101 34102 34103 34104 34105 34106 34107 34108 34109 34110 34111 34112 34113 34114 34115 34116 34117 34118 34119 34120 34121 34122 34123 34124 34125 34126 34127 34128 34129 34130 34131 34132 34133 34134 34135 34136 34137 34138 34139 34140 34141 34142 34143 34144 34145 34146 34147 34148 34149 34150 34151 34152 34153 34154 34155 34156 34157 34158 34159 34160 34161 34162 34163 34164 34165 34166 34167 34168 34169 34170 34171 34172 34173 34174 34175 34176 34177 34178 34179 34180 34181 34182 34183 34184 34185 34186 34187 34188 34189 34190 34191 34192 34193 34194 34195 34196 34197 34198 34199 34200 34201 34202 34203 34204 34205 34206 34207 34208 34209 34210 34211 34212 34213 34214 34215 34216 34217 34218 34219 34220 34221 34222 34223 34224 34225 34226 34227 34228 34229 34230 34231 34232 34233 34234 34235 34236 34237 34238 34239 34240 34241 34242 34243 34244 34245 34246 34247 34248 34249 34250 34251 34252 34253 34254 34255 34256 34257 34258 34259 34260 34261 34262 34263 34264 34265 34266 34267 34268 34269 34270 34271 34272 34273 34274 34275 34276 34277 34278 34279 34280 34281 34282 34283 34284 34285 34286 34287 34288 34289 34290 34291 34292 34293 34294 34295 34296 34297 34298 34299 34300 34301 34302 34303 34304 34305 34306 34307 34308 34309 34310 34311 34312 34313 34314 34315 34316 34317 34318 34319 34320 34321 34322 34323 34324 34325 34326 34327 34328 34329 34330 34331 34332 34333 34334 34335 34336 34337 34338 34339 34340 34341 34342 34343 34344 34345 34346 34347 34348 34349 34350 34351 34352 34353 34354 34355 34356 34357 34358 34359 34360 34361 34362 34363 34364 34365 34366 34367 34368 34369 34370 34371 34372 34373 34374 34375 34376 34377 34378 34379 34380 34381 34382 34383 34384 34385 34386 34387 34388 34389 34390 34391 34392 34393 34394 34395 34396 34397 34398 34399 34400 34401 34402 34403 34404 34405 34406 34407 34408 34409 34410 34411 34412 34413 34414 34415 34416 34417 34418 34419 34420 34421 34422 34423 34424 34425 34426 34427 34428 34429 34430 34431 34432 34433 34434 34435 34436 34437 34438 34439 34440 34441 34442 34443 34444 34445 34446 34447 34448 34449 34450 34451 34452 34453 34454 34455 34456 34457 34458 34459 34460 34461 34462 34463 34464 34465 34466 34467 34468 34469 34470 34471 34472 34473 34474 34475 34476 34477 34478 34479 34480 34481 34482 34483 34484 34485 34486 34487 34488 34489 34490 34491 34492 34493 34494 34495 34496 34497 34498 34499 34500 34501 34502 34503 34504 34505 34506 34507 34508 34509 34510 34511 34512 34513 34514 34515 34516 34517 34518 34519 34520 34521 34522 34523 34524 34525 34526 34527 34528 34529 34530 34531 34532 34533 34534 34535 34536 34537 34538 34539 34540 34541 34542 34543 34544 34545 34546 34547 34548 34549 34550 34551 34552 34553 34554 34555 34556 34557 34558 34559 34560 34561 34562 34563 34564 34565 34566 34567 34568 34569 34570 34571 34572 34573 34574 34575 34576 34577 34578 34579 34580 34581 34582 34583 34584 34585 34586 34587 34588 34589 34590 34591 34592 34593 34594 34595 34596 34597 34598 34599 34600 34601 34602 34603 34604 34605 34606 34607 34608 34609 34610 34611 34612 34613 34614 34615 34616 34617 34618 34619 34620 34621 34622 34623 34624 34625 34626 34627 34628 34629 34630 34631 34632 34633 34634 34635 34636 34637 34638 34639 34640 34641 34642 34643 34644 34645 34646 34647 34648 34649 34650 34651 34652 34653 34654 34655 34656 34657 34658 34659 34660 34661 34662 34663 34664 34665 34666 34667 34668 34669 34670 34671 34672 34673 34674 34675 34676 34677 34678 34679 34680 34681 34682 34683 34684 34685 34686 34687 34688 34689 34690 34691 34692 34693 34694 34695 34696 34697 34698 34699 34700 34701 34702 34703 34704 34705 34706 34707 34708 34709 34710 34711 34712 34713 34714 34715 34716 34717 34718 34719 34720 34721 34722 34723 34724 34725 34726 34727 34728 34729 34730 34731 34732 34733 34734 34735 34736 34737 34738 34739 34740 34741 34742 34743 34744 34745 34746 34747 34748 34749 34750 34751 34752 34753 34754 34755 34756 34757 34758 34759 34760 34761 34762 34763 34764 34765 34766 34767 34768 34769 34770 34771 34772 34773 34774 34775 34776 34777 34778 34779 34780 34781 34782 34783 34784 34785 34786 34787 34788 34789 34790 34791 34792 34793 34794 34795 34796 34797 34798 34799 34800 34801 34802 34803 34804 34805 34806 34807 34808 34809 34810 34811 34812 34813 34814 34815 34816 34817 34818 34819 34820 34821 34822 34823 34824 34825 34826 34827 34828 34829 34830 34831 34832 34833 34834 34835 34836 34837 34838 34839 34840 34841 34842 34843 34844 34845 34846 34847 34848 34849 34850 34851 34852 34853 34854 34855 34856 34857 34858 34859 34860 34861 34862 34863 34864 34865 34866 34867 34868 34869 34870 34871 34872 34873 34874 34875 34876 34877 34878 34879 34880 34881 34882 34883 34884 34885 34886 34887 34888 34889 34890 34891 34892 34893 34894 34895 34896 34897 34898 34899 34900 34901 34902 34903 34904 34905 34906 34907 34908 34909 34910 34911 34912 34913 34914 34915 34916 34917 34918 34919 34920 34921 34922 34923 34924 34925 34926 34927 34928 34929 34930 34931 34932 34933 34934 34935 34936 34937 34938 34939 34940 34941 34942 34943 34944 34945 34946 34947 34948 34949 34950 34951 34952 34953 34954 34955 34956 34957 34958 34959 34960 34961 34962 34963 34964 34965 34966 34967 34968 34969 34970 34971 34972 34973 34974 34975 34976 34977 34978 34979 34980 34981 34982 34983 34984 34985 34986 34987 34988 34989 34990 34991 34992 34993 34994 34995 34996 34997 34998 34999 35000 35001 35002 35003 35004 35005 35006 35007 35008 35009 35010 35011 35012 35013 35014 35015 35016 35017 35018 35019 35020 35021 35022 35023 35024 35025 35026 35027 35028 35029 35030 35031 35032 35033 35034 35035 35036 35037 35038 35039 35040 35041 35042 35043 35044 35045 35046 35047 35048 35049 35050 35051 35052 35053 35054 35055 35056 35057 35058 35059 35060 35061 35062 35063 35064 35065 35066 35067 35068 35069 35070 35071 35072 35073 35074 35075 35076 35077 35078 35079 35080 35081 35082 35083 35084 35085 35086 35087 35088 35089 35090 35091 35092 35093 35094 35095 35096 35097 35098 35099 35100 35101 35102 35103 35104 35105 35106 35107 35108 35109 35110 35111 35112 35113 35114 35115 35116 35117 35118 35119 35120 35121 35122 35123 35124 35125 35126 35127 35128 35129 35130 35131 35132 35133 35134 35135 35136 35137 35138 35139 35140 35141 35142 35143 35144 35145 35146 35147 35148 35149 35150 35151 35152 35153 35154 35155 35156 35157 35158 35159 35160 35161 35162 35163 35164 35165 35166 35167 35168 35169 35170 35171 35172 35173 35174 35175 35176 35177 35178 35179 35180 35181 35182 35183 35184 35185 35186 35187 35188 35189 35190 35191 35192 35193 35194 35195 35196 35197 35198 35199 35200 35201 35202 35203 35204 35205 35206 35207 35208 35209 35210 35211 35212 35213 35214 35215 35216 35217 35218 35219 35220 35221 35222 35223 35224 35225 35226 35227 35228 35229 35230 35231 35232 35233 35234 35235 35236 35237 35238 35239 35240 35241 35242 35243 35244 35245 35246 35247 35248 35249 35250 35251 35252 35253 35254 35255 35256 35257 35258 35259 35260 35261 35262 35263 35264 35265 35266 35267 35268 35269 35270 35271 35272 35273 35274 35275 35276 35277 35278 35279 35280 35281 35282 35283 35284 35285 35286 35287 35288 35289 35290 35291 35292 35293 35294 35295 35296 35297 35298 35299 35300 35301 35302 35303 35304 35305 35306 35307 35308 35309 35310 35311 35312 35313 35314 35315 35316 35317 35318 35319 35320 35321 35322 35323 35324 35325 35326 35327 35328 35329 35330 35331 35332 35333 35334 35335 35336 35337 35338 35339 35340 35341 35342 35343 35344 35345 35346 35347 35348 35349 35350 35351 35352 35353 35354 35355 35356 35357 35358 35359 35360 35361 35362 35363 35364 35365 35366 35367 35368 35369 35370 35371 35372 35373 35374 35375 35376 35377 35378 35379 35380 35381 35382 35383 35384 35385 35386 35387 35388 35389 35390 35391 35392 35393 35394 35395 35396 35397 35398 35399 35400 35401 35402 35403 35404 35405 35406 35407 35408 35409 35410 35411 35412 35413 35414 35415 35416 35417 35418 35419 35420 35421 35422 35423 35424 35425 35426 35427 35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 35497 35498 35499 35500 35501 35502 35503 35504 35505 35506 35507 35508 35509 35510 35511 35512 35513 35514 35515 35516 35517 35518 35519 35520 35521 35522 35523 35524 35525 35526 35527 35528 35529 35530 35531 35532 35533 35534 35535 35536 35537 35538 35539 35540 35541 35542 35543 35544 35545 35546 35547 35548 35549 35550 35551 35552 35553 35554 35555 35556 35557 35558 35559 35560 35561 35562 35563 35564 35565 35566 35567 35568 35569 35570 35571 35572 35573 35574 35575 35576 35577 35578 35579 35580 35581 35582 35583 35584 35585 35586 35587 35588 35589 35590 35591 35592 35593 35594 35595 35596 35597 35598 35599 35600 35601 35602 35603 35604 35605 35606 35607 35608 35609 35610 35611 35612 35613 35614 35615 35616 35617 35618 35619 35620 35621 35622 35623 35624 35625 35626 35627 35628 35629 35630 35631 35632 35633 35634 35635 35636 35637 35638 35639 35640 35641 35642 35643 35644 35645 35646 35647 35648 35649 35650 35651 35652 35653 35654 35655 35656 35657 35658 35659 35660 35661 35662 35663 35664 35665 35666 35667 35668 35669 35670 35671 35672 35673 35674 35675 35676 35677 35678 35679 35680 35681 35682 35683 35684 35685 35686 35687 35688 35689 35690 35691 35692 35693 35694 35695 35696 35697 35698 35699 35700 35701 35702 35703 35704 35705 35706 35707 35708 35709 35710 35711 35712 35713 35714 35715 35716 35717 35718 35719 35720 35721 35722 35723 35724 35725 35726 35727 35728 35729 35730 35731 35732 35733 35734 35735 35736 35737 35738 35739 35740 35741 35742 35743 35744 35745 35746 35747 35748 35749 35750 35751 35752 35753 35754 35755 35756 35757 35758 35759 35760 35761 35762 35763 35764 35765 35766 35767 35768 35769 35770 35771 35772 35773 35774 35775 35776 35777 35778 35779 35780 35781 35782 35783 35784 35785 35786 35787 35788 35789 35790 35791 35792 35793 35794 35795 35796 35797 35798 35799 35800 35801 35802 35803 35804 35805 35806 35807 35808 35809 35810 35811 35812 35813 35814 35815 35816 35817 35818 35819 35820 35821 35822 35823 35824 35825 35826 35827 35828 35829 35830 35831 35832 35833 35834 35835 35836 35837 35838 35839 35840 35841 35842 35843 35844 35845 35846 35847 35848 35849 35850 35851 35852 35853 35854 35855 35856 35857 35858 35859 35860 35861 35862 35863 35864 35865 35866 35867 35868 35869 35870 35871 35872 35873 35874 35875 35876 35877 35878 35879 35880 35881 35882 35883 35884 35885 35886 35887 35888 35889 35890 35891 35892 35893 35894 35895 35896 35897 35898 35899 35900 35901 35902 35903 35904 35905 35906 35907 35908 35909 35910 35911 35912 35913 35914 35915 35916 35917 35918 35919 35920 35921 35922 35923 35924 35925 35926 35927 35928 35929 35930 35931 35932 35933 35934 35935 35936 35937 35938 35939 35940 35941 35942 35943 35944 35945 35946 35947 35948 35949 35950 35951 35952 35953 35954 35955 35956 35957 35958 35959 35960 35961 35962 35963 35964 35965 35966 35967 35968 35969 35970 35971 35972 35973 35974 35975 35976 35977 35978 35979 35980 35981 35982 35983 35984 35985 35986 35987 35988 35989 35990 35991 35992 35993 35994 35995 35996 35997 35998 35999 36000 36001 36002 36003 36004 36005 36006 36007 36008 36009 36010 36011 36012 36013 36014 36015 36016 36017 36018 36019 36020 36021 36022 36023 36024 36025 36026 36027 36028 36029 36030 36031 36032 36033 36034 36035 36036 36037 36038 36039 36040 36041 36042 36043 36044 36045 36046 36047 36048 36049 36050 36051 36052 36053 36054 36055 36056 36057 36058 36059 36060 36061 36062 36063 36064 36065 36066 36067 36068 36069 36070 36071 36072 36073 36074 36075 36076 36077 36078 36079 36080 36081 36082 36083 36084 36085 36086 36087 36088 36089 36090 36091 36092 36093 36094 36095 36096 36097 36098 36099 36100 36101 36102 36103 36104 36105 36106 36107 36108 36109 36110 36111 36112 36113 36114 36115 36116 36117 36118 36119 36120 36121 36122 36123 36124 36125 36126 36127 36128 36129 36130 36131 36132 36133 36134 36135 36136 36137 36138 36139 36140 36141 36142 36143 36144 36145 36146 36147 36148 36149 36150 36151 36152 36153 36154 36155 36156 36157 36158 36159 36160 36161 36162 36163 36164 36165 36166 36167 36168 36169 36170 36171 36172 36173 36174 36175 36176 36177 36178 36179 36180 36181 36182 36183 36184 36185 36186 36187 36188 36189 36190 36191 36192 36193 36194 36195 36196 36197 36198 36199 36200 36201 36202 36203 36204 36205 36206 36207 36208 36209 36210 36211 36212 36213 36214 36215 36216 36217 36218 36219 36220 36221 36222 36223 36224 36225 36226 36227 36228 36229 36230 36231 36232 36233 36234 36235 36236 36237 36238 36239 36240 36241 36242 36243 36244 36245 36246 36247 36248 36249 36250 36251 36252 36253 36254 36255 36256 36257 36258 36259 36260 36261 36262 36263 36264 36265 36266 36267 36268 36269 36270 36271 36272 36273 36274 36275 36276 36277 36278 36279 36280 36281 36282 36283 36284 36285 36286 36287 36288 36289 36290 36291 36292 36293 36294 36295 36296 36297 36298 36299 36300 36301 36302 36303 36304 36305 36306 36307 36308 36309 36310 36311 36312 36313 36314 36315 36316 36317 36318 36319 36320 36321 36322 36323 36324 36325 36326 36327 36328 36329 36330 36331 36332 36333 36334 36335 36336 36337 36338 36339 36340 36341 36342 36343 36344 36345 36346 36347 36348 36349 36350 36351 36352 36353 36354 36355 36356 36357 36358 36359 36360 36361 36362 36363 36364 36365 36366 36367 36368 36369 36370 36371 36372 36373 36374 36375 36376 36377 36378 36379 36380 36381 36382 36383 36384 36385 36386 36387 36388 36389 36390 36391 36392 36393 36394 36395 36396 36397 36398 36399 36400 36401 36402 36403 36404 36405 36406 36407 36408 36409 36410 36411 36412 36413 36414 36415 36416 36417 36418 36419 36420 36421 36422 36423 36424 36425 36426 36427 36428 36429 36430 36431 36432 36433 36434 36435 36436 36437 36438 36439 36440 36441 36442 36443 36444 36445 36446 36447 36448 36449 36450 36451 36452 36453 36454 36455 36456 36457 36458 36459 36460 36461 36462 36463 36464 36465 36466 36467 36468 36469 36470 36471 36472 36473 36474 36475 36476 36477 36478 36479 36480 36481 36482 36483 36484 36485 36486 36487 36488 36489 36490 36491 36492 36493 36494 36495 36496 36497 36498 36499 36500 36501 36502 36503 36504 36505 36506 36507 36508 36509 36510 36511 36512 36513 36514 36515 36516 36517 36518 36519 36520 36521 36522 36523 36524 36525 36526 36527 36528 36529 36530 36531 36532 36533 36534 36535 36536 36537 36538 36539 36540 36541 36542 36543 36544 36545 36546 36547 36548 36549 36550 36551 36552 36553 36554 36555 36556 36557 36558 36559 36560 36561 36562 36563 36564 36565 36566 36567 36568 36569 36570 36571 36572 36573 36574 36575 36576 36577 36578 36579 36580 36581 36582 36583 36584 36585 36586 36587 36588 36589 36590 36591 36592 36593 36594 36595 36596 36597 36598 36599 36600 36601 36602 36603 36604 36605 36606 36607 36608 36609 36610 36611 36612 36613 36614 36615 36616 36617 36618 36619 36620 36621 36622 36623 36624 36625 36626 36627 36628 36629 36630 36631 36632 36633 36634 36635 36636 36637 36638 36639 36640 36641 36642 36643 36644 36645 36646 36647 36648 36649 36650 36651 36652 36653 36654 36655 36656 36657 36658 36659 36660 36661 36662 36663 36664 36665 36666 36667 36668 36669 36670 36671 36672 36673 36674 36675 36676 36677 36678 36679 36680 36681 36682 36683 36684 36685 36686 36687 36688 36689 36690 36691 36692 36693 36694 36695 36696 36697 36698 36699 36700 36701 36702 36703 36704 36705 36706 36707 36708 36709 36710 36711 36712 36713 36714 36715 36716 36717 36718 36719 36720 36721 36722 36723 36724 36725 36726 36727 36728 36729 36730 36731 36732 36733 36734 36735 36736 36737 36738 36739 36740 36741 36742 36743 36744 36745 36746 36747 36748 36749 36750 36751 36752 36753 36754 36755 36756 36757 36758 36759 36760 36761 36762 36763 36764 36765 36766 36767 36768 36769 36770 36771 36772 36773 36774 36775 36776 36777 36778 36779 36780 36781 36782 36783 36784 36785 36786 36787 36788 36789 36790 36791 36792 36793 36794 36795 36796 36797 36798 36799 36800 36801 36802 36803 36804 36805 36806 36807 36808 36809 36810 36811 36812 36813 36814 36815 36816 36817 36818 36819 36820 36821 36822 36823 36824 36825 36826 36827 36828 36829 36830 36831 36832 36833 36834 36835 36836 36837 36838 36839 36840 36841 36842 36843 36844 36845 36846 36847 36848 36849 36850 36851 36852 36853 36854 36855 36856 36857 36858 36859 36860 36861 36862 36863 36864 36865 36866 36867 36868 36869 36870 36871 36872 36873 36874 36875 36876 36877 36878 36879 36880 36881 36882 36883 36884 36885 36886 36887 36888 36889 36890 36891 36892 36893 36894 36895 36896 36897 36898 36899 36900 36901 36902 36903 36904 36905 36906 36907 36908 36909 36910 36911 36912 36913 36914 36915 36916 36917 36918 36919 36920 36921 36922 36923 36924 36925 36926 36927 36928 36929 36930 36931 36932 36933 36934 36935 36936 36937 36938 36939 36940 36941 36942 36943 36944 36945 36946 36947 36948 36949 36950 36951 36952 36953 36954 36955 36956 36957 36958 36959 36960 36961 36962 36963 36964 36965 36966 36967 36968 36969 36970 36971 36972 36973 36974 36975 36976 36977 36978 36979 36980 36981 36982 36983 36984 36985 36986 36987 36988 36989 36990 36991 36992 36993 36994 36995 36996 36997 36998 36999 37000 37001 37002 37003 37004 37005 37006 37007 37008 37009 37010 37011 37012 37013 37014 37015 37016 37017 37018 37019 37020 37021 37022 37023 37024 37025 37026 37027 37028 37029 37030 37031 37032 37033 37034 37035 37036 37037 37038 37039 37040 37041 37042 37043 37044 37045 37046 37047 37048 37049 37050 37051 37052 37053 37054 37055 37056 37057 37058 37059 37060 37061 37062 37063 37064 37065 37066 37067 37068 37069 37070 37071 37072 37073 37074 37075 37076 37077 37078 37079 37080 37081 37082 37083 37084 37085 37086 37087 37088 37089 37090 37091 37092 37093 37094 37095 37096 37097 37098 37099 37100 37101 37102 37103 37104 37105 37106 37107 37108 37109 37110 37111 37112 37113 37114 37115 37116 37117 37118 37119 37120 37121 37122 37123 37124 37125 37126 37127 37128 37129 37130 37131 37132 37133 37134 37135 37136 37137 37138 37139 37140 37141 37142 37143 37144 37145 37146 37147 37148 37149 37150 37151 37152 37153 37154 37155 37156 37157 37158 37159 37160 37161 37162 37163 37164 37165 37166 37167 37168 37169 37170 37171 37172 37173 37174 37175 37176 37177 37178 37179 37180 37181 37182 37183 37184 37185 37186 37187 37188 37189 37190 37191 37192 37193 37194 37195 37196 37197 37198 37199 37200 37201 37202 37203 37204 37205 37206 37207 37208 37209 37210 37211 37212 37213 37214 37215 37216 37217 37218 37219 37220 37221 37222 37223 37224 37225 37226 37227 37228 37229 37230 37231 37232 37233 37234 37235 37236 37237 37238 37239 37240 37241 37242 37243 37244 37245 37246 37247 37248 37249 37250 37251 37252 37253 37254 37255 37256 37257 37258 37259 37260 37261 37262 37263 37264 37265 37266 37267 37268 37269 37270 37271 37272 37273 37274 37275 37276 37277 37278 37279 37280 37281 37282 37283 37284 37285 37286 37287 37288 37289 37290 37291 37292 37293 37294 37295 37296 37297 37298 37299 37300 37301 37302 37303 37304 37305 37306 37307 37308 37309 37310 37311 37312 37313 37314 37315 37316 37317 37318 37319 37320 37321 37322 37323 37324 37325 37326 37327 37328 37329 37330 37331 37332 37333 37334 37335 37336 37337 37338 37339 37340 37341 37342 37343 37344 37345 37346 37347 37348 37349 37350 37351 37352 37353 37354 37355 37356 37357 37358 37359 37360 37361 37362 37363 37364 37365 37366 37367 37368 37369 37370 37371 37372 37373 37374 37375 37376 37377 37378 37379 37380 37381 37382 37383 37384 37385 37386 37387 37388 37389 37390 37391 37392 37393 37394 37395 37396 37397 37398 37399 37400 37401 37402 37403 37404 37405 37406 37407 37408 37409 37410 37411 37412 37413 37414 37415 37416 37417 37418 37419 37420 37421 37422 37423 37424 37425 37426 37427 37428 37429 37430 37431 37432 37433 37434 37435 37436 37437 37438 37439 37440 37441 37442 37443 37444 37445 37446 37447 37448 37449 37450 37451 37452 37453 37454 37455 37456 37457 37458 37459 37460 37461 37462 37463 37464 37465 37466 37467 37468 37469 37470 37471 37472 37473 37474 37475 37476 37477 37478 37479 37480 37481 37482 37483 37484 37485 37486 37487 37488 37489 37490 37491 37492 37493 37494 37495 37496 37497 37498 37499 37500 37501 37502 37503 37504 37505 37506 37507 37508 37509 37510 37511 37512 37513 37514 37515 37516 37517 37518 37519 37520 37521 37522 37523 37524 37525 37526 37527 37528 37529 37530 37531 37532 37533 37534 37535 37536 37537 37538 37539 37540 37541 37542 37543 37544 37545 37546 37547 37548 37549 37550 37551 37552 37553 37554 37555 37556 37557 37558 37559 37560 37561 37562 37563 37564 37565 37566 37567 37568 37569 37570 37571 37572 37573 37574 37575 37576 37577 37578 37579 37580 37581 37582 37583 37584 37585 37586 37587 37588 37589 37590 37591 37592 37593 37594 37595 37596 37597 37598 37599 37600 37601 37602 37603 37604 37605 37606 37607 37608 37609 37610 37611 37612 37613 37614 37615 37616 37617 37618 37619 37620 37621 37622 37623 37624 37625 37626 37627 37628 37629 37630 37631 37632 37633 37634 37635 37636 37637 37638 37639 37640 37641 37642 37643 37644 37645 37646 37647 37648 37649 37650 37651 37652 37653 37654 37655 37656 37657 37658 37659 37660 37661 37662 37663 37664 37665 37666 37667 37668 37669 37670 37671 37672 37673 37674 37675 37676 37677 37678 37679 37680 37681 37682 37683 37684 37685 37686 37687 37688 37689 37690 37691 37692 37693 37694 37695 37696 37697 37698 37699 37700 37701 37702 37703 37704 37705 37706 37707 37708 37709 37710 37711 37712 37713 37714 37715 37716 37717 37718 37719 37720 37721 37722 37723 37724 37725 37726 37727 37728 37729 37730 37731 37732 37733 37734 37735 37736 37737 37738 37739 37740 37741 37742 37743 37744 37745 37746 37747 37748 37749 37750 37751 37752 37753 37754 37755 37756 37757 37758 37759 37760 37761 37762 37763 37764 37765 37766 37767 37768 37769 37770 37771 37772 37773 37774 37775 37776 37777 37778 37779 37780 37781 37782 37783 37784 37785 37786 37787 37788 37789 37790 37791 37792 37793 37794 37795 37796 37797 37798 37799 37800 37801 37802 37803 37804 37805 37806 37807 37808 37809 37810 37811 37812 37813 37814 37815 37816 37817 37818 37819 37820 37821 37822 37823 37824 37825 37826 37827 37828 37829 37830 37831 37832 37833 37834 37835 37836 37837 37838 37839 37840 37841 37842 37843 37844 37845 37846 37847 37848 37849 37850 37851 37852 37853 37854 37855 37856 37857 37858 37859 37860 37861 37862 37863 37864 37865 37866 37867 37868 37869 37870 37871 37872 37873 37874 37875 37876 37877 37878 37879 37880 37881 37882 37883 37884 37885 37886 37887 37888 37889 37890 37891 37892 37893 37894 37895 37896 37897 37898 37899 37900 37901 37902 37903 37904 37905 37906 37907 37908 37909 37910 37911 37912 37913 37914 37915 37916 37917 37918 37919 37920 37921 37922 37923 37924 37925 37926 37927 37928 37929 37930 37931 37932 37933 37934 37935 37936 37937 37938 37939 37940 37941 37942 37943 37944 37945 37946 37947 37948 37949 37950 37951 37952 37953 37954 37955 37956 37957 37958 37959 37960 37961 37962 37963 37964 37965 37966 37967 37968 37969 37970 37971 37972 37973 37974 37975 37976 37977 37978 37979 37980 37981 37982 37983 37984 37985 37986 37987 37988 37989 37990 37991 37992 37993 37994 37995 37996 37997 37998 37999 38000 38001 38002 38003 38004 38005 38006 38007 38008 38009 38010 38011 38012 38013 38014 38015 38016 38017 38018 38019 38020 38021 38022 38023 38024 38025 38026 38027 38028 38029 38030 38031 38032 38033 38034 38035 38036 38037 38038 38039 38040 38041 38042 38043 38044 38045 38046 38047 38048 38049 38050 38051 38052 38053 38054 38055 38056 38057 38058 38059 38060 38061 38062 38063 38064 38065 38066 38067 38068 38069 38070 38071 38072 38073 38074 38075 38076 38077 38078 38079 38080 38081 38082 38083 38084 38085 38086 38087 38088 38089 38090 38091 38092 38093 38094 38095 38096 38097 38098 38099 38100 38101 38102 38103 38104 38105 38106 38107 38108 38109 38110 38111 38112 38113 38114 38115 38116 38117 38118 38119 38120 38121 38122 38123 38124 38125 38126 38127 38128 38129 38130 38131 38132 38133 38134 38135 38136 38137 38138 38139 38140 38141 38142 38143 38144 38145 38146 38147 38148 38149 38150 38151 38152 38153 38154 38155 38156 38157 38158 38159 38160 38161 38162 38163 38164 38165 38166 38167 38168 38169 38170 38171 38172 38173 38174 38175 38176 38177 38178 38179 38180 38181 38182 38183 38184 38185 38186 38187 38188 38189 38190 38191 38192 38193 38194 38195 38196 38197 38198 38199 38200 38201 38202 38203 38204 38205 38206 38207 38208 38209 38210 38211 38212 38213 38214 38215 38216 38217 38218 38219 38220 38221 38222 38223 38224 38225 38226 38227 38228 38229 38230 38231 38232 38233 38234 38235 38236 38237 38238 38239 38240 38241 38242 38243 38244 38245 38246 38247 38248 38249 38250 38251 38252 38253 38254 38255 38256 38257 38258 38259 38260 38261 38262 38263 38264 38265 38266 38267 38268 38269 38270 38271 38272 38273 38274 38275 38276 38277 38278 38279 38280 38281 38282 38283 38284 38285 38286 38287 38288 38289 38290 38291 38292 38293 38294 38295 38296 38297 38298 38299 38300 38301 38302 38303 38304 38305 38306 38307 38308 38309 38310 38311 38312 38313 38314 38315 38316 38317 38318 38319 38320 38321 38322 38323 38324 38325 38326 38327 38328 38329 38330 38331 38332 38333 38334 38335 38336 38337 38338 38339 38340 38341 38342 38343 38344 38345 38346 38347 38348 38349 38350 38351 38352 38353 38354 38355 38356 38357 38358 38359 38360 38361 38362 38363 38364 38365 38366 38367 38368 38369 38370 38371 38372 38373 38374 38375 38376 38377 38378 38379 38380 38381 38382 38383 38384 38385 38386 38387 38388 38389 38390 38391 38392 38393 38394 38395 38396 38397 38398 38399 38400 38401 38402 38403 38404 38405 38406 38407 38408 38409 38410 38411 38412 38413 38414 38415 38416 38417 38418 38419 38420 38421 38422 38423 38424 38425 38426 38427 38428 38429 38430 38431 38432 38433 38434 38435 38436 38437 38438 38439 38440 38441 38442 38443 38444 38445 38446 38447 38448 38449 38450 38451 38452 38453 38454 38455 38456 38457 38458 38459 38460 38461 38462 38463 38464 38465 38466 38467 38468 38469 38470 38471 38472 38473 38474 38475 38476 38477 38478 38479 38480 38481 38482 38483 38484 38485 38486 38487 38488 38489 38490 38491 38492 38493 38494 38495 38496 38497 38498 38499 38500 38501 38502 38503 38504 38505 38506 38507 38508 38509 38510 38511 38512 38513 38514 38515 38516 38517 38518 38519 38520 38521 38522 38523 38524 38525 38526 38527 38528 38529 38530 38531 38532 38533 38534 38535 38536 38537 38538 38539 38540 38541 38542 38543 38544 38545 38546 38547 38548 38549 38550 38551 38552 38553 38554 38555 38556 38557 38558 38559 38560 38561 38562 38563 38564 38565 38566 38567 38568 38569 38570 38571 38572 38573 38574 38575 38576 38577 38578 38579 38580 38581 38582 38583 38584 38585 38586 38587 38588 38589 38590 38591 38592 38593 38594 38595 38596 38597 38598 38599 38600 38601 38602 38603 38604 38605 38606 38607 38608 38609 38610 38611 38612 38613 38614 38615 38616 38617 38618 38619 38620 38621 38622 38623 38624 38625 38626 38627 38628 38629 38630 38631 38632 38633 38634 38635 38636 38637 38638 38639 38640 38641 38642 38643 38644 38645 38646 38647 38648 38649 38650 38651 38652 38653 38654 38655 38656 38657 38658 38659 38660 38661 38662 38663 38664 38665 38666 38667 38668 38669 38670 38671 38672 38673 38674 38675 38676 38677 38678 38679 38680 38681 38682 38683 38684 38685 38686 38687 38688 38689 38690 38691 38692 38693 38694 38695 38696 38697 38698 38699 38700 38701 38702 38703 38704 38705 38706 38707 38708 38709 38710 38711 38712 38713 38714 38715 38716 38717 38718 38719 38720 38721 38722 38723 38724 38725 38726 38727 38728 38729 38730 38731 38732 38733 38734 38735 38736 38737 38738 38739 38740 38741 38742 38743 38744 38745 38746 38747 38748 38749 38750 38751 38752 38753 38754 38755 38756 38757 38758 38759 38760 38761 38762 38763 38764 38765 38766 38767 38768 38769 38770 38771 38772 38773 38774 38775 38776 38777 38778 38779 38780 38781 38782 38783 38784 38785 38786 38787 38788 38789 38790 38791 38792 38793 38794 38795 38796 38797 38798 38799 38800 38801 38802 38803 38804 38805 38806 38807 38808 38809 38810 38811 38812 38813 38814 38815 38816 38817 38818 38819 38820 38821 38822 38823 38824 38825 38826 38827 38828 38829 38830 38831 38832 38833 38834 38835 38836 38837 38838 38839 38840 38841 38842 38843 38844 38845 38846 38847 38848 38849 38850 38851 38852 38853 38854 38855 38856 38857 38858 38859 38860 38861 38862 38863 38864 38865 38866 38867 38868 38869 38870 38871 38872 38873 38874 38875 38876 38877 38878 38879 38880 38881 38882 38883 38884 38885 38886 38887 38888 38889 38890 38891 38892 38893 38894 38895 38896 38897 38898 38899 38900 38901 38902 38903 38904 38905 38906 38907 38908 38909 38910 38911 38912 38913 38914 38915 38916 38917 38918 38919 38920 38921 38922 38923 38924 38925 38926 38927 38928 38929 38930 38931 38932 38933 38934 38935 38936 38937 38938 38939 38940 38941 38942 38943 38944 38945 38946 38947 38948 38949 38950 38951 38952 38953 38954 38955 38956 38957 38958 38959 38960 38961 38962 38963 38964 38965 38966 38967 38968 38969 38970 38971 38972 38973 38974 38975 38976 38977 38978 38979 38980 38981 38982 38983 38984 38985 38986 38987 38988 38989 38990 38991 38992 38993 38994 38995 38996 38997 38998 38999 39000 39001 39002 39003 39004 39005 39006 39007 39008 39009 39010 39011 39012 39013 39014 39015 39016 39017 39018 39019 39020 39021 39022 39023 39024 39025 39026 39027 39028 39029 39030 39031 39032 39033 39034 39035 39036 39037 39038 39039 39040 39041 39042 39043 39044 39045 39046 39047 39048 39049 39050 39051 39052 39053 39054 39055 39056 39057 39058 39059 39060 39061 39062 39063 39064 39065 39066 39067 39068 39069 39070 39071 39072 39073 39074 39075 39076 39077 39078 39079 39080 39081 39082 39083 39084 39085 39086 39087 39088 39089 39090 39091 39092 39093 39094 39095 39096 39097 39098 39099 39100 39101 39102 39103 39104 39105 39106 39107 39108 39109 39110 39111 39112 39113 39114 39115 39116 39117 39118 39119 39120 39121 39122 39123 39124 39125 39126 39127 39128 39129 39130 39131 39132 39133 39134 39135 39136 39137 39138 39139 39140 39141 39142 39143 39144 39145 39146 39147 39148 39149 39150 39151 39152 39153 39154 39155 39156 39157 39158 39159 39160 39161 39162 39163 39164 39165 39166 39167 39168 39169 39170 39171 39172 39173 39174 39175 39176 39177 39178 39179 39180 39181 39182 39183 39184 39185 39186 39187 39188 39189 39190 39191 39192 39193 39194 39195 39196 39197 39198 39199 39200 39201 39202 39203 39204 39205 39206 39207 39208 39209 39210 39211 39212 39213 39214 39215 39216 39217 39218 39219 39220 39221 39222 39223 39224 39225 39226 39227 39228 39229 39230 39231 39232 39233 39234 39235 39236 39237 39238 39239 39240 39241 39242 39243 39244 39245 39246 39247 39248 39249 39250 39251 39252 39253 39254 39255 39256 39257 39258 39259 39260 39261 39262 39263 39264 39265 39266 39267 39268 39269 39270 39271 39272 39273 39274 39275 39276 39277 39278 39279 39280 39281 39282 39283 39284 39285 39286 39287 39288 39289 39290 39291 39292 39293 39294 39295 39296 39297 39298 39299 39300 39301 39302 39303 39304 39305 39306 39307 39308 39309 39310 39311 39312 39313 39314 39315 39316 39317 39318 39319 39320 39321 39322 39323 39324 39325 39326 39327 39328 39329 39330 39331 39332 39333 39334 39335 39336 39337 39338 39339 39340 39341 39342 39343 39344 39345 39346 39347 39348 39349 39350 39351 39352 39353 39354 39355 39356 39357 39358 39359 39360 39361 39362 39363 39364 39365 39366 39367 39368 39369 39370 39371 39372 39373 39374 39375 39376 39377 39378 39379 39380 39381 39382 39383 39384 39385 39386 39387 39388 39389 39390 39391 39392 39393 39394 39395 39396 39397 39398 39399 39400 39401 39402 39403 39404 39405 39406 39407 39408 39409 39410 39411 39412 39413 39414 39415 39416 39417 39418 39419 39420 39421 39422 39423 39424 39425 39426 39427 39428 39429 39430 39431 39432 39433 39434 39435 39436 39437 39438 39439 39440 39441 39442 39443 39444 39445 39446 39447 39448 39449 39450 39451 39452 39453 39454 39455 39456 39457 39458 39459 39460 39461 39462 39463 39464 39465 39466 39467 39468 39469 39470 39471 39472 39473 39474 39475 39476 39477 39478 39479 39480 39481 39482 39483 39484 39485 39486 39487 39488 39489 39490 39491 39492 39493 39494 39495 39496 39497 39498 39499 39500 39501 39502 39503 39504 39505 39506 39507 39508 39509 39510 39511 39512 39513 39514 39515 39516 39517 39518 39519 39520 39521 39522 39523 39524 39525 39526 39527 39528 39529 39530 39531 39532 39533 39534 39535 39536 39537 39538 39539 39540 39541 39542 39543 39544 39545 39546 39547 39548 39549 39550 39551 39552 39553 39554 39555 39556 39557 39558 39559 39560 39561 39562 39563 39564 39565 39566 39567 39568 39569 39570 39571 39572 39573 39574 39575 39576 39577 39578 39579 39580 39581 39582 39583 39584 39585 39586 39587 39588 39589 39590 39591 39592 39593 39594 39595 39596 39597 39598 39599 39600 39601 39602 39603 39604 39605 39606 39607 39608 39609 39610 39611 39612 39613 39614 39615 39616 39617 39618 39619 39620 39621 39622 39623 39624 39625 39626 39627 39628 39629 39630 39631 39632 39633 39634 39635 39636 39637 39638 39639 39640 39641 39642 39643 39644 39645 39646 39647 39648 39649 39650 39651 39652 39653 39654 39655 39656 39657 39658 39659 39660 39661 39662 39663 39664 39665 39666 39667 39668 39669 39670 39671 39672 39673 39674 39675 39676 39677 39678 39679 39680 39681 39682 39683 39684 39685 39686 39687 39688 39689 39690 39691 39692 39693 39694 39695 39696 39697 39698 39699 39700 39701 39702 39703 39704 39705 39706 39707 39708 39709 39710 39711 39712 39713 39714 39715 39716 39717 39718 39719 39720 39721 39722 39723 39724 39725 39726 39727 39728 39729 39730 39731 39732 39733 39734 39735 39736 39737 39738 39739 39740 39741 39742 39743 39744 39745 39746 39747 39748 39749 39750 39751 39752 39753 39754 39755 39756 39757 39758 39759 39760 39761 39762 39763 39764 39765 39766 39767 39768 39769 39770 39771 39772 39773 39774 39775 39776 39777 39778 39779 39780 39781 39782 39783 39784 39785 39786 39787 39788 39789 39790 39791 39792 39793 39794 39795 39796 39797 39798 39799 39800 39801 39802 39803 39804 39805 39806 39807 39808 39809 39810 39811 39812 39813 39814 39815 39816 39817 39818 39819 39820 39821 39822 39823 39824 39825 39826 39827 39828 39829 39830 39831 39832 39833 39834 39835 39836 39837 39838 39839 39840 39841 39842 39843 39844 39845 39846 39847 39848 39849 39850 39851 39852 39853 39854 39855 39856 39857 39858 39859 39860 39861 39862 39863 39864 39865 39866 39867 39868 39869 39870 39871 39872 39873 39874 39875 39876 39877 39878 39879 39880 39881 39882 39883 39884 39885 39886 39887 39888 39889 39890 39891 39892 39893 39894 39895 39896 39897 39898 39899 39900 39901 39902 39903 39904 39905 39906 39907 39908 39909 39910 39911 39912 39913 39914 39915 39916 39917 39918 39919 39920 39921 39922 39923 39924 39925 39926 39927 39928 39929 39930 39931 39932 39933 39934 39935 39936 39937 39938 39939 39940 39941 39942 39943 39944 39945 39946 39947 39948 39949 39950 39951 39952 39953 39954 39955 39956 39957 39958 39959 39960 39961 39962 39963 39964 39965 39966 39967 39968 39969 39970 39971 39972 39973 39974 39975 39976 39977 39978 39979 39980 39981 39982 39983 39984 39985 39986 39987 39988 39989 39990 39991 39992 39993 39994 39995 39996 39997 39998 39999 40000 40001 40002 40003 40004 40005 40006 40007 40008 40009 40010 40011 40012 40013 40014 40015 40016 40017 40018 40019 40020 40021 40022 40023 40024 40025 40026 40027 40028 40029 40030 40031 40032 40033 40034 40035 40036 40037 40038 40039 40040 40041 40042 40043 40044 40045 40046 40047 40048 40049 40050 40051 40052 40053 40054 40055 40056 40057 40058 40059 40060 40061 40062 40063 40064 40065 40066 40067 40068 40069 40070 40071 40072 40073 40074 40075 40076 40077 40078 40079 40080 40081 40082 40083 40084 40085 40086 40087 40088 40089 40090 40091 40092 40093 40094 40095 40096 40097 40098 40099 40100 40101 40102 40103 40104 40105 40106 40107 40108 40109 40110 40111 40112 40113 40114 40115 40116 40117 40118 40119 40120 40121 40122 40123 40124 40125 40126 40127 40128 40129 40130 40131 40132 40133 40134 40135 40136 40137 40138 40139 40140 40141 40142 40143 40144 40145 40146 40147 40148 40149 40150 40151 40152 40153 40154 40155 40156 40157 40158 40159 40160 40161 40162 40163 40164 40165 40166 40167 40168 40169 40170 40171 40172 40173 40174 40175 40176 40177 40178 40179 40180 40181 40182 40183 40184 40185 40186 40187 40188 40189 40190 40191 40192 40193 40194 40195 40196 40197 40198 40199 40200 40201 40202 40203 40204 40205 40206 40207 40208 40209 40210 40211 40212 40213 40214 40215 40216 40217 40218 40219 40220 40221 40222 40223 40224 40225 40226 40227 40228 40229 40230 40231 40232 40233 40234 40235 40236 40237 40238 40239 40240 40241 40242 40243 40244 40245 40246 40247 40248 40249 40250 40251 40252 40253 40254 40255 40256 40257 40258 40259 40260 40261 40262 40263 40264 40265 40266 40267 40268 40269 40270 40271 40272 40273 40274 40275 40276 40277 40278 40279 40280 40281 40282 40283 40284 40285 40286 40287 40288 40289 40290 40291 40292 40293 40294 40295 40296 40297 40298 40299 40300 40301 40302 40303 40304 40305 40306 40307 40308 40309 40310 40311 40312 40313 40314 40315 40316 40317 40318 40319 40320 40321 40322 40323 40324 40325 40326 40327 40328 40329 40330 40331 40332 40333 40334 40335 40336 40337 40338 40339 40340 40341 40342 40343 40344 40345 40346 40347 40348 40349 40350 40351 40352 40353 40354 40355 40356 40357 40358 40359 40360 40361 40362 40363 40364 40365 40366 40367 40368 40369 40370 40371 40372 40373 40374 40375 40376 40377 40378 40379 40380 40381 40382 40383 40384 40385 40386 40387 40388 40389 40390 40391 40392 40393 40394 40395 40396 40397 40398 40399 40400 40401 40402 40403 40404 40405 40406 40407 40408 40409 40410 40411 40412 40413 40414 40415 40416 40417 40418 40419 40420 40421 40422 40423 40424 40425 40426 40427 40428 40429 40430 40431 40432 40433 40434 40435 40436 40437 40438 40439 40440 40441 40442 40443 40444 40445 40446 40447 40448 40449 40450 40451 40452 40453 40454 40455 40456 40457 40458 40459 40460 40461 40462 40463 40464 40465 40466 40467 40468 40469 40470 40471 40472 40473 40474 40475 40476 40477 40478 40479 40480 40481 40482 40483 40484 40485 40486 40487 40488 40489 40490 40491 40492 40493 40494 40495 40496 40497 40498 40499 40500 40501 40502 40503 40504 40505 40506 40507 40508 40509 40510 40511 40512 40513 40514 40515 40516 40517 40518 40519 40520 40521 40522 40523 40524 40525 40526 40527 40528 40529 40530 40531 40532 40533 40534 40535 40536 40537 40538 40539 40540 40541 40542 40543 40544 40545 40546 40547 40548 40549 40550 40551 40552 40553 40554 40555 40556 40557 40558 40559 40560 40561 40562 40563 40564 40565 40566 40567 40568 40569 40570 40571 40572 40573 40574 40575 40576 40577 40578 40579 40580 40581 40582 40583 40584 40585 40586 40587 40588 40589 40590 40591 40592 40593 40594 40595 40596 40597 40598 40599 40600 40601 40602 40603 40604 40605 40606 40607 40608 40609 40610 40611 40612 40613 40614 40615 40616 40617 40618 40619 40620 40621 40622 40623 40624 40625 40626 40627 40628 40629 40630 40631 40632 40633 40634 40635 40636 40637 40638 40639 40640 40641 40642 40643 40644 40645 40646 40647 40648 40649 40650 40651 40652 40653 40654 40655 40656 40657 40658 40659 40660 40661 40662 40663 40664 40665 40666 40667 40668 40669 40670 40671 40672 40673 40674 40675 40676 40677 40678 40679 40680 40681 40682 40683 40684 40685 40686 40687 40688 40689 40690 40691 40692 40693 40694 40695 40696 40697 40698 40699 40700 40701 40702 40703 40704 40705 40706 40707 40708 40709 40710 40711 40712 40713 40714 40715 40716 40717 40718 40719 40720 40721 40722 40723 40724 40725 40726 40727 40728 40729 40730 40731 40732 40733 40734 40735 40736 40737 40738 40739 40740 40741 40742 40743 40744 40745 40746 40747 40748 40749 40750 40751 40752 40753 40754 40755 40756 40757 40758 40759 40760 40761 40762 40763 40764 40765 40766 40767 40768 40769 40770 40771 40772 40773 40774 40775 40776 40777 40778 40779 40780 40781 40782 40783 40784 40785 40786 40787 40788 40789 40790 40791 40792 40793 40794 40795 40796 40797 40798 40799 40800 40801 40802 40803 40804 40805 40806 40807 40808 40809 40810 40811 40812 40813 40814 40815 40816 40817 40818 40819 40820 40821 40822 40823 40824 40825 40826 40827 40828 40829 40830 40831 40832 40833 40834 40835 40836 40837 40838 40839 40840 40841 40842 40843 40844 40845 40846 40847 40848 40849 40850 40851 40852 40853 40854 40855 40856 40857 40858 40859 40860 40861 40862 40863 40864 40865 40866 40867 40868 40869 40870 40871 40872 40873 40874 40875 40876 40877 40878 40879 40880 40881 40882 40883 40884 40885 40886 40887 40888 40889 40890 40891 40892 40893 40894 40895 40896 40897 40898 40899 40900 40901 40902 40903 40904 40905 40906 40907 40908 40909 40910 40911 40912 40913 40914 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 40926 40927 40928 40929 40930 40931 40932 40933 40934 40935 40936 40937 40938 40939 40940 40941 40942 40943 40944 40945 40946 40947 40948 40949 40950 40951 40952 40953 40954 40955 40956 40957 40958 40959 40960 40961 40962 40963 40964 40965 40966 40967 40968 40969 40970 40971 40972 40973 40974 40975 40976 40977 40978 40979 40980 40981 40982 40983 40984 40985 40986 40987 40988 40989 40990 40991 40992 40993 40994 40995 40996 40997 40998 40999 41000 41001 41002 41003 41004 41005 41006 41007 41008 41009 41010 41011 41012 41013 41014 41015 41016 41017 41018 41019 41020 41021 41022 41023 41024 41025 41026 41027 41028 41029 41030 41031 41032 41033 41034 41035 41036 41037 41038 41039 41040 41041 41042 41043 41044 41045 41046 41047 41048 41049 41050 41051 41052 41053 41054 41055 41056 41057 41058 41059 41060 41061 41062 41063 41064 41065 41066 41067 41068 41069 41070 41071 41072 41073 41074 41075 41076 41077 41078 41079 41080 41081 41082 41083 41084 41085 41086 41087 41088 41089 41090 41091 41092 41093 41094 41095 41096 41097 41098 41099 41100 41101 41102 41103 41104 41105 41106 41107 41108 41109 41110 41111 41112 41113 41114 41115 41116 41117 41118 41119 41120 41121 41122 41123 41124 41125 41126 41127 41128 41129 41130 41131 41132 41133 41134 41135 41136 41137 41138 41139 41140 41141 41142 41143 41144 41145 41146 41147 41148 41149 41150 41151 41152 41153 41154 41155 41156 41157 41158 41159 41160 41161 41162 41163 41164 41165 41166 41167 41168 41169 41170 41171 41172 41173 41174 41175 41176 41177 41178 41179 41180 41181 41182 41183 41184 41185 41186 41187 41188 41189 41190 41191 41192 41193 41194 41195 41196 41197 41198 41199 41200 41201 41202 41203 41204 41205 41206 41207 41208 41209 41210 41211 41212 41213 41214 41215 41216 41217 41218 41219 41220 41221 41222 41223 41224 41225 41226 41227 41228 41229 41230 41231 41232 41233 41234 41235 41236 41237 41238 41239 41240 41241 41242 41243 41244 41245 41246 41247 41248 41249 41250 41251 41252 41253 41254 41255 41256 41257 41258 41259 41260 41261 41262 41263 41264 41265 41266 41267 41268 41269 41270 41271 41272 41273 41274 41275 41276 41277 41278 41279 41280 41281 41282 41283 41284 41285 41286 41287 41288 41289 41290 41291 41292 41293 41294 41295 41296 41297 41298 41299 41300 41301 41302 41303 41304 41305 41306 41307 41308 41309 41310 41311 41312 41313 41314 41315 41316 41317 41318 41319 41320 41321 41322 41323 41324 41325 41326 41327 41328 41329 41330 41331 41332 41333 41334 41335 41336 41337 41338 41339 41340 41341 41342 41343 41344 41345 41346 41347 41348 41349 41350 41351 41352 41353 41354 41355 41356 41357 41358 41359 41360 41361 41362 41363 41364 41365 41366 41367 41368 41369 41370 41371 41372 41373 41374 41375 41376 41377 41378 41379 41380 41381 41382 41383 41384 41385 41386 41387 41388 41389 41390 41391 41392 41393 41394 41395 41396 41397 41398 41399 41400 41401 41402 41403 41404 41405 41406 41407 41408 41409 41410 41411 41412 41413 41414 41415 41416 41417 41418 41419 41420 41421 41422 41423 41424 41425 41426 41427 41428 41429 41430 41431 41432 41433 41434 41435 41436 41437 41438 41439 41440 41441 41442 41443 41444 41445 41446 41447 41448 41449 41450 41451 41452 41453 41454 41455 41456 41457 41458 41459 41460 41461 41462 41463 41464 41465 41466 41467 41468 41469 41470 41471 41472 41473 41474 41475 41476 41477 41478 41479 41480 41481 41482 41483 41484 41485 41486 41487 41488 41489 41490 41491 41492 41493 41494 41495 41496 41497 41498 41499 41500 41501 41502 41503 41504 41505 41506 41507 41508 41509 41510 41511 41512 41513 41514 41515 41516 41517 41518 41519 41520 41521 41522 41523 41524 41525 41526 41527 41528 41529 41530 41531 41532 41533 41534 41535 41536 41537 41538 41539 41540 41541 41542 41543 41544 41545 41546 41547 41548 41549 41550 41551 41552 41553 41554 41555 41556 41557 41558 41559 41560 41561 41562 41563 41564 41565 41566 41567 41568 41569 41570 41571 41572 41573 41574 41575 41576 41577 41578 41579 41580 41581 41582 41583 41584 41585 41586 41587 41588 41589 41590 41591 41592 41593 41594 41595 41596 41597 41598 41599 41600 41601 41602 41603 41604 41605 41606 41607 41608 41609 41610 41611 41612 41613 41614 41615 41616 41617 41618 41619 41620 41621 41622 41623 41624 41625 41626 41627 41628 41629 41630 41631 41632 41633 41634 41635 41636 41637 41638 41639 41640 41641 41642 41643 41644 41645 41646 41647 41648 41649 41650 41651 41652 41653 41654 41655 41656 41657 41658 41659 41660 41661 41662 41663 41664 41665 41666 41667 41668 41669 41670 41671 41672 41673 41674 41675 41676 41677 41678 41679 41680 41681 41682 41683 41684 41685 41686 41687 41688 41689 41690 41691 41692 41693 41694 41695 41696 41697 41698 41699 41700 41701 41702 41703 41704 41705 41706 41707 41708 41709 41710 41711 41712 41713 41714 41715 41716 41717 41718 41719 41720 41721 41722 41723 41724 41725 41726 41727 41728 41729 41730 41731 41732 41733 41734 41735 41736 41737 41738 41739 41740 41741 41742 41743 41744 41745 41746 41747 41748 41749 41750 41751 41752 41753 41754 41755 41756 41757 41758 41759 41760 41761 41762 41763 41764 41765 41766 41767 41768 41769 41770 41771 41772 41773 41774 41775 41776 41777 41778 41779 41780 41781 41782 41783 41784 41785 41786 41787 41788 41789 41790 41791 41792 41793 41794 41795 41796 41797 41798 41799 41800 41801 41802 41803 41804 41805 41806 41807 41808 41809 41810 41811 41812 41813 41814 41815 41816 41817 41818 41819 41820 41821 41822 41823 41824 41825 41826 41827 41828 41829 41830 41831 41832 41833 41834 41835 41836 41837 41838 41839 41840 41841 41842 41843 41844 41845 41846 41847 41848 41849 41850 41851 41852 41853 41854 41855 41856 41857 41858 41859 41860 41861 41862 41863 41864 41865 41866 41867 41868 41869 41870 41871 41872 41873 41874 41875 41876 41877 41878 41879 41880 41881 41882 41883 41884 41885 41886 41887 41888 41889 41890 41891 41892 41893 41894 41895 41896 41897 41898 41899 41900 41901 41902 41903 41904 41905 41906 41907 41908 41909 41910 41911 41912 41913 41914 41915 41916 41917 41918 41919 41920 41921 41922 41923 41924 41925 41926 41927 41928 41929 41930 41931 41932 41933 41934 41935 41936 41937 41938 41939 41940 41941 41942 41943 41944 41945 41946 41947 41948 41949 41950 41951 41952 41953 41954 41955 41956 41957 41958 41959 41960 41961 41962 41963 41964 41965 41966 41967 41968 41969 41970 41971 41972 41973 41974 41975 41976 41977 41978 41979 41980 41981 41982 41983 41984 41985 41986 41987 41988 41989 41990 41991 41992 41993 41994 41995 41996 41997 41998 41999 42000 42001 42002 42003 42004 42005 42006 42007 42008 42009 42010 42011 42012 42013 42014 42015 42016 42017 42018 42019 42020 42021 42022 42023 42024 42025 42026 42027 42028 42029 42030 42031 42032 42033 42034 42035 42036 42037 42038 42039 42040 42041 42042 42043 42044 42045 42046 42047 42048 42049 42050 42051 42052 42053 42054 42055 42056 42057 42058 42059 42060 42061 42062 42063 42064 42065 42066 42067 42068 42069 42070 42071 42072 42073 42074 42075 42076 42077 42078 42079 42080 42081 42082 42083 42084 42085 42086 42087 42088 42089 42090 42091 42092 42093 42094 42095 42096 42097 42098 42099 42100 42101 42102 42103 42104 42105 42106 42107 42108 42109 42110 42111 42112 42113 42114 42115 42116 42117 42118 42119 42120 42121 42122 42123 42124 42125 42126 42127 42128 42129 42130 42131 42132 42133 42134 42135 42136 42137 42138 42139 42140 42141 42142 42143 42144 42145 42146 42147 42148 42149 42150 42151 42152 42153 42154 42155 42156 42157 42158 42159 42160 42161 42162 42163 42164 42165 42166 42167 42168 42169 42170 42171 42172 42173 42174 42175 42176 42177 42178 42179 42180 42181 42182 42183 42184 42185 42186 42187 42188 42189 42190 42191 42192 42193 42194 42195 42196 42197 42198 42199 42200 42201 42202 42203 42204 42205 42206 42207 42208 42209 42210 42211 42212 42213 42214 42215 42216 42217 42218 42219 42220 42221 42222 42223 42224 42225 42226 42227 42228 42229 42230 42231 42232 42233 42234 42235 42236 42237 42238 42239 42240 42241 42242 42243 42244 42245 42246 42247 42248 42249 42250 42251 42252 42253 42254 42255 42256 42257 42258 42259 42260 42261 42262 42263 42264 42265 42266 42267 42268 42269 42270 42271 42272 42273 42274 42275 42276 42277 42278 42279 42280 42281 42282 42283 42284 42285 42286 42287 42288 42289 42290 42291 42292 42293 42294 42295 42296 42297 42298 42299 42300 42301 42302 42303 42304 42305 42306 42307 42308 42309 42310 42311 42312 42313 42314 42315 42316 42317 42318 42319 42320 42321 42322 42323 42324 42325 42326 42327 42328 42329 42330 42331 42332 42333 42334 42335 42336 42337 42338 42339 42340 42341 42342 42343 42344 42345 42346 42347 42348 42349 42350 42351 42352 42353 42354 42355 42356 42357 42358 42359 42360 42361 42362 42363 42364 42365 42366 42367 42368 42369 42370 42371 42372 42373 42374 42375 42376 42377 42378 42379 42380 42381 42382 42383 42384 42385 42386 42387 42388 42389 42390 42391 42392 42393 42394 42395 42396 42397 42398 42399 42400 42401 42402 42403 42404 42405 42406 42407 42408 42409 42410 42411 42412 42413 42414 42415 42416 42417 42418 42419 42420 42421 42422 42423 42424 42425 42426 42427 42428 42429 42430 42431 42432 42433 42434 42435 42436 42437 42438 42439 42440 42441 42442 42443 42444 42445 42446 42447 42448 42449 42450 42451 42452 42453 42454 42455 42456 42457 42458 42459 42460 42461 42462 42463 42464 42465 42466 42467 42468 42469 42470 42471 42472 42473 42474 42475 42476 42477 42478 42479 42480 42481 42482 42483 42484 42485 42486 42487 42488 42489 42490 42491 42492 42493 42494 42495 42496 42497 42498 42499 42500 42501 42502 42503 42504 42505 42506 42507 42508 42509 42510 42511 42512 42513 42514 42515 42516 42517 42518 42519 42520 42521 42522 42523 42524 42525 42526 42527 42528 42529 42530 42531 42532 42533 42534 42535 42536 42537 42538 42539 42540 42541 42542 42543 42544 42545 42546 42547 42548 42549 42550 42551 42552 42553 42554 42555 42556 42557 42558 42559 42560 42561 42562 42563 42564 42565 42566 42567 42568 42569 42570 42571 42572 42573 42574 42575 42576 42577 42578 42579 42580 42581 42582 42583 42584 42585 42586 42587 42588 42589 42590 42591 42592 42593 42594 42595 42596 42597 42598 42599 42600 42601 42602 42603 42604 42605 42606 42607 42608 42609 42610 42611 42612 42613 42614 42615 42616 42617 42618 42619 42620 42621 42622 42623 42624 42625 42626 42627 42628 42629 42630 42631 42632 42633 42634 42635 42636 42637 42638 42639 42640 42641 42642 42643 42644 42645 42646 42647 42648 42649 42650 42651 42652 42653 42654 42655 42656 42657 42658 42659 42660 42661 42662 42663 42664 42665 42666 42667 42668 42669 42670 42671 42672 42673 42674 42675 42676 42677 42678 42679 42680 42681 42682 42683 42684 42685 42686 42687 42688 42689 42690 42691 42692 42693 42694 42695 42696 42697 42698 42699 42700 42701 42702 42703 42704 42705 42706 42707 42708 42709 42710 42711 42712 42713 42714 42715 42716 42717 42718 42719 42720 42721 42722 42723 42724 42725 42726 42727 42728 42729 42730 42731 42732 42733 42734 42735 42736 42737 42738 42739 42740 42741 42742 42743 42744 42745 42746 42747 42748 42749 42750 42751 42752 42753 42754 42755 42756 42757 42758 42759 42760 42761 42762 42763 42764 42765 42766 42767 42768 42769 42770 42771 42772 42773 42774 42775 42776 42777 42778 42779 42780 42781 42782 42783 42784 42785 42786 42787 42788 42789 42790 42791 42792 42793 42794 42795 42796 42797 42798 42799 42800 42801 42802 42803 42804 42805 42806 42807 42808 42809 42810 42811 42812 42813 42814 42815 42816 42817 42818 42819 42820 42821 42822 42823 42824 42825 42826 42827 42828 42829 42830 42831 42832 42833 42834 42835 42836 42837 42838 42839 42840 42841 42842 42843 42844 42845 42846 42847 42848 42849 42850 42851 42852 42853 42854 42855 42856 42857 42858 42859 42860 42861 42862 42863 42864 42865 42866 42867 42868 42869 42870 42871 42872 42873 42874 42875 42876 42877 42878 42879 42880 42881 42882 42883 42884 42885 42886 42887 42888 42889 42890 42891 42892 42893 42894 42895 42896 42897 42898 42899 42900 42901 42902 42903 42904 42905 42906 42907 42908 42909 42910 42911 42912 42913 42914 42915 42916 42917 42918 42919 42920 42921 42922 42923 42924 42925 42926 42927 42928 42929 42930 42931 42932 42933 42934 42935 42936 42937 42938 42939 42940 42941 42942 42943 42944 42945 42946 42947 42948 42949 42950 42951 42952 42953 42954 42955 42956 42957 42958 42959 42960 42961 42962 42963 42964 42965 42966 42967 42968 42969 42970 42971 42972 42973 42974 42975 42976 42977 42978 42979 42980 42981 42982 42983 42984 42985 42986 42987 42988 42989 42990 42991 42992 42993 42994 42995 42996 42997 42998 42999 43000 43001 43002 43003 43004 43005 43006 43007 43008 43009 43010 43011 43012 43013 43014 43015 43016 43017 43018 43019 43020 43021 43022 43023 43024 43025 43026 43027 43028 43029 43030 43031 43032 43033 43034 43035 43036 43037 43038 43039 43040 43041 43042 43043 43044 43045 43046 43047 43048 43049 43050 43051 43052 43053 43054 43055 43056 43057 43058 43059 43060 43061 43062 43063 43064 43065 43066 43067 43068 43069 43070 43071 43072 43073 43074 43075 43076 43077 43078 43079 43080 43081 43082 43083 43084 43085 43086 43087 43088 43089 43090 43091 43092 43093 43094 43095 43096 43097 43098 43099 43100 43101 43102 43103 43104 43105 43106 43107 43108 43109 43110 43111 43112 43113 43114 43115 43116 43117 43118 43119 43120 43121 43122 43123 43124 43125 43126 43127 43128 43129 43130 43131 43132 43133 43134 43135 43136 43137 43138 43139 43140 43141 43142 43143 43144 43145 43146 43147 43148 43149 43150 43151 43152 43153 43154 43155 43156 43157 43158 43159 43160 43161 43162 43163 43164 43165 43166 43167 43168 43169 43170 43171 43172 43173 43174 43175 43176 43177 43178 43179 43180 43181 43182 43183 43184 43185 43186 43187 43188 43189 43190 43191 43192 43193 43194 43195 43196 43197 43198 43199 43200 43201 43202 43203 43204 43205 43206 43207 43208 43209 43210 43211 43212 43213 43214 43215 43216 43217 43218 43219 43220 43221 43222 43223 43224 43225 43226 43227 43228 43229 43230 43231 43232 43233 43234 43235 43236 43237 43238 43239 43240 43241 43242 43243 43244 43245 43246 43247 43248 43249 43250 43251 43252 43253 43254 43255 43256 43257 43258 43259 43260 43261 43262 43263 43264 43265 43266 43267 43268 43269 43270 43271 43272 43273 43274 43275 43276 43277 43278 43279 43280 43281 43282 43283 43284 43285 43286 43287 43288 43289 43290 43291 43292 43293 43294 43295 43296 43297 43298 43299 43300 43301 43302 43303 43304 43305 43306 43307 43308 43309 43310 43311 43312 43313 43314 43315 43316 43317 43318 43319 43320 43321 43322 43323 43324 43325 43326 43327 43328 43329 43330 43331 43332 43333 43334 43335 43336 43337 43338 43339 43340 43341 43342 43343 43344 43345 43346 43347 43348 43349 43350 43351 43352 43353 43354 43355 43356 43357 43358 43359 43360 43361 43362 43363 43364 43365 43366 43367 43368 43369 43370 43371 43372 43373 43374 43375 43376 43377 43378 43379 43380 43381 43382 43383 43384 43385 43386 43387 43388 43389 43390 43391 43392 43393 43394 43395 43396 43397 43398 43399 43400 43401 43402 43403 43404 43405 43406 43407 43408 43409 43410 43411 43412 43413 43414 43415 43416 43417 43418 43419 43420 43421 43422 43423 43424 43425 43426 43427 43428 43429 43430 43431 43432 43433 43434 43435 43436 43437 43438 43439 43440 43441 43442 43443 43444 43445 43446 43447 43448 43449 43450 43451 43452 43453 43454 43455 43456 43457 43458 43459 43460 43461 43462 43463 43464 43465 43466 43467 43468 43469 43470 43471 43472 43473 43474 43475 43476 43477 43478 43479 43480 43481 43482 43483 43484 43485 43486 43487 43488 43489 43490 43491 43492 43493 43494 43495 43496 43497 43498 43499 43500 43501 43502 43503 43504 43505 43506 43507 43508 43509 43510 43511 43512 43513 43514 43515 43516 43517 43518 43519 43520 43521 43522 43523 43524 43525 43526 43527 43528 43529 43530 43531 43532 43533 43534 43535 43536 43537 43538 43539 43540 43541 43542 43543 43544 43545 43546 43547 43548 43549 43550 43551 43552 43553 43554 43555 43556 43557 43558 43559 43560 43561 43562 43563 43564 43565 43566 43567 43568 43569 43570 43571 43572 43573 43574 43575 43576 43577 43578 43579 43580 43581 43582 43583 43584 43585 43586 43587 43588 43589 43590 43591 43592 43593 43594 43595 43596 43597 43598 43599 43600 43601 43602 43603 43604 43605 43606 43607 43608 43609 43610 43611 43612 43613 43614 43615 43616 43617 43618 43619 43620 43621 43622 43623 43624 43625 43626 43627 43628 43629 43630 43631 43632 43633 43634 43635 43636 43637 43638 43639 43640 43641 43642 43643 43644 43645 43646 43647 43648 43649 43650 43651 43652 43653 43654 43655 43656 43657 43658 43659 43660 43661 43662 43663 43664 43665 43666 43667 43668 43669 43670 43671 43672 43673 43674 43675 43676 43677 43678 43679 43680 43681 43682 43683 43684 43685 43686 43687 43688 43689 43690 43691 43692 43693 43694 43695 43696 43697 43698 43699 43700 43701 43702 43703 43704 43705 43706 43707 43708 43709 43710 43711 43712 43713 43714 43715 43716 43717 43718 43719 43720 43721 43722 43723 43724 43725 43726 43727 43728 43729 43730 43731 43732 43733 43734 43735 43736 43737 43738 43739 43740 43741 43742 43743 43744 43745 43746 43747 43748 43749 43750 43751 43752 43753 43754 43755 43756 43757 43758 43759 43760 43761 43762 43763 43764 43765 43766 43767 43768 43769 43770 43771 43772 43773 43774 43775 43776 43777 43778 43779 43780
2003/03/13  Till Kamppeter  <till at mandrakesoft.com>

	* printer/main.pm: Fixed bug #417: '$' character in printer URI not
	correctly handled.

2003/03/13  Fabian Mandelbaum  <fabman at 2vias.com.ar>

	* share/po/es.po: updated Spanish translations

2003/03/13  François Pons  <fpons at mandrakesoft.com>

	* install_steps_gtk.pm: desktop group simplification.

2003/03/13  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

	* share/po/ru.po, share/po/fi.po: updated Russian and Finnish files

	* share/po/id.po, share/po/eo.po, share/po/cs.po, share/po/hu.po: updated
	Czech, Esperanto, Indonesian and Hungarian files

2003/03/13  Pixel  <pixel at mandrakesoft.com>

	* any.pm: cleanup (still need to handle permissions more cleanly, people
	using umask 0
	should be shot)

2003/03/13  Stew Benedict  <sbenedict at mandrakesoft.com>

	* standalone/drakTermServ: Fix IP pool range bug from gtk2 conversion.

2003/03/13  Till Kamppeter  <till at mandrakesoft.com>

	* scanner.pm: Bug fixes:
	  - SHOWSTOPPER: SCSI scanners were never recognized as already
	configured, the user was always asked whether he wants to configure
	  them. Problem was that device files are symlinks.
	  - Made most ISDN and ADSL devices not being considered as a scanner by
	  Scannerdrake, SANE does not support internet scanners.

2003/03/13  tpittich

	* share/po/sk.po: updated slovak translation

2003/03/13  Thierry Vignaud  <tvignaud at mandrakesoft.com>

	* drakxtools.spec: more logs
	first 9.1-22mdk bits

	* install_any.pm: alsa drivers are now named snd-<name> not anymore
	snd-card-<name>

	* any.pm: fix #3161 (ensure right permissions on /etc/sysconfig/autologin
	for
	bad root umask case)

	* modules.pm: via via686 upgdrade after simplification too (next time
	pixel told me
	it's better to reuse some regexp, i kill him)
	fix upgrade after simplification
	simplify
	convert alsa driver from old naming system to new one (snd-card-XXX =>
	snd-XXX) and ensure correct upgrade for snd-via683 and snd-via8233
	drivers

	* docs/mdk-9.2: more stuff
	more thoughts

2003/03/13  Warly  <warly at mandrakesoft.com>

	* install_gtk.pm: logo is the same for desktop and powerpack
	installations.

	* share/compssUsers.desktop: Make only one sectio. Include KDE/GNOME and
	documentation into it.

2003/03/12  Arkadiusz Lipiec  <alipiec at elka.pw.edu.pl>

	* share/po/pl.po: updated

2003/03/12  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/cy.po, share/po/et.po, share/po/he.po: updated Welsh, Estonian
	and Hebrew files

2003/03/12  François Pons  <fpons at mandrakesoft.com>

	* install_any.pm: added log for kernel module packages found.

	* network/modem.pm: fixed typo.
	fix ltmodem package name with newer version.

	* install_steps_interactive.pm: fix for newer kernel module package name.

	* standalone/XFdrake: fix for newer commercial kernel module package name.

	* install_steps.pm: fix for newer commercial package name (kernel module).
	added minimal of what is selected log for pkg_install.

	* detect_devices.pm: fix titi sucks.

	* standalone.pm: fixed return value of check_kernel_module_packages and
	examination of synthesis
	file using current interface of urpm library.
	fix small typo.

2003/03/12  Guillaume Cottenceau  <gc at mandrakesoft.com>

	* ugtk2.pm: fix non-important (but still valid) part of #2488, a.k.a
	package tree not expanding visually when it should (needs the mouse
	pointer over it to be updated visually)

	* share/po/ja.po: fix for "Advanced" by utuhiro <utuhiro at
	mx12.freecom.ne.jp>

2003/03/12  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file

	* share/po/nl.po: updated dutch file
	updated pot file

	* keyboard.pm: Tagged cyrillic keyboard as non-latin

2003/03/12  Pixel  <pixel at mandrakesoft.com>

	* standalone/diskdrake: set by default the fs type and mntpoint for
	removables not present in fstab
	(useful for harddrake)

	* standalone/drakupdate_fstab: have fd0 & fd1 be recognised as known
	entries, even if we don't probe them
	(useful for harddrake)

	* diskdrake/interactive.pm, install_interactive.pm: fix maximum loopback
	size (bug #3188)

2003/03/12  Thierry Vignaud  <tvignaud at mandrakesoft.com>

	* harddrake/data.pm: jackadit^h^h^h^h^ hpixel said: "we do not need
	anymore --auto"
	fix typo
	handle multiple removable devices: their managment is different from
	other hw
	classes since we need to run a config tool per device and not one per hw
	class

	* standalone/harddrake2: fix first message display
	better packed paned behavior in both embedded and standalone modes
	handle multiple removable devices: their managment is different from
	other hw
	classes since we need to run a config tool per device and not one per hw
	class

	* drakxtools.spec: update requires
	9.1-20mdk

	* standalone/service_harddrake: let it look better
	shut up perl_checker
	handle multiple removable devices: their managment is different from
	other hw
	classes since we need to run a config tool per device and not one per hw
	class

	* docs/mdk-9.2: better embedded diskdrake hint

	* diskdrake/hd_gtk.pm: 
	  - let diskdrake fit when embedded in mcc
	  - let action box be larger so that there's no horizontal scrollbar in
	standalone mode

	* share/po/wa.po: fix package build :-(

	* standalone/drakedm: really sort
	  - check if dm package is installed and install it if needed
	  - use format instead of reverse() (not a big slow down but small
	rivers make
	big ones and it makes gc happier...)

2003/03/11  Guillaume Cottenceau  <gc at mandrakesoft.com>

	* lang.pm: thx perl checko
	(pablo) change kde font scheme (crossing fingers)

2003/03/11  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/nl.po, share/po/cs.po: updated Dutch and Czech files

2003/03/11  Alice Lafox  <alice at lafox.com.ua>

	* share/po/ru.po: typos fixed

2003/03/11  David Baudens  <baudens at mandrakesoft.com>

	* share/advertising/10-security.png, share/advertising/07-server.pl,
	share/advertising/12-mdkexpert.png,
	share/advertising/06-development.png,
	share/advertising/06-development.pl, share/advertising/11-mnf.pl,
	share/advertising/09-mdksecure.png, share/advertising/01-thanks.png,
	share/advertising/07-server.png, share/advertising/02-community.png,
	share/po/fr.po, share/advertising/list, share/advertising/11-mnf.png,
	share/advertising/02-community.pl, share/advertising/03-software.pl,
	share/advertising/05-desktop.pl, share/advertising/09-mdksecure.pl,
	share/advertising/01-thanks.pl,
	share/advertising/13-mdkexpert_corporate.pl,
	share/advertising/12-mdkexpert.pl, share/advertising/03-software.png,
	share/advertising/08-store.pl, share/advertising/04-configuration.png,
	share/advertising/13-mdkexpert_corporate.png,
	share/advertising/10-security.pl, share/advertising/05-desktop.png,
	share/advertising/04-configuration.pl, share/advertising/08-store.png:
	Update

2003/03/11  Florin Grad  <florin at mandrakesoft.com>

	* standalone/drakgw: really use the chosen net_connect interface

2003/03/11  François Pons  <fpons at mandrakesoft.com>

	* network/network.pm: changed netcnx type probe (so that if an ethernet
	connection exists, it won't
	cause netcnx type to be always lan).

	* rescue/tree/etc/oem: modified language settings.

	* network/adsl.pm: moved probing code outside adsl_ask_info.

	* network/ethernet.pm: use $::prefix, waiting for 9.1 to be out before
	cleaning network modules.

	* standalone/drakconnect: added probing of adsl connection.

2003/03/11  Guillaume Cottenceau  <gc at mandrakesoft.com>

	* install_steps_gtk.pm: the shadow behind the new adverts looks ugly,
	remove it
	new advertisement will be with grey background

	* share/po/fr.po: rephrase a bit MNF advert to make it fit
	spelling

	* share/advertising/07-server.pl, share/advertising/06-development.pl,
	share/advertising/11-mnf.pl, share/advertising/02-community.pl,
	share/advertising/03-software.pl, share/advertising/05-desktop.pl,
	share/advertising/09-mdksecure.pl, share/advertising/01-thanks.pl,
	share/advertising/12-mdkexpert.pl,
	share/advertising/13-mdkexpert_corporate.pl,
	share/advertising/08-store.pl, share/advertising/10-security.pl,
	share/advertising/04-configuration.pl: fix pablo breaking translation of
	advertisement :)

	* lang.pm: thx perl checko
	(pablo) change kde font scheme (crossing fingers)

	* install_steps_interactive.pm: install additional locales package for
	country according to the locale that will be really used, not according
	to the default locale for a given country (fixing unecessary installing
	of locales-de in case of a fr_CH install)

2003/03/11  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/it.po, share/po/no.po: updated Italian and Norwegian files

	* lang.pm: Changed Qt Chinese XIMStyle to 'Over The Spot' ('On The Spot'
	crashes)
	changed KDE default font names for CJK

	* share/po/nl.po, share/po/cs.po: updated Dutch and Czech files

	* share/po/da.po, share/po/vi.po: updated Danish and Vientamese files

2003/03/11  Pixel  <pixel at mandrakesoft.com>

	* Xconfig/main.pm: remove XFdrake icons (per dadou's request)

	* any.pm, bootloader.pm, standalone/drakboot: fix lilo-menu not working
	(bug #3048)

2003/03/11  Stew Benedict  <sbenedict at mandrakesoft.com>

	* standalone/drakbackup: More gtk2 fixes.

2003/03/11  Till Kamppeter  <till at mandrakesoft.com>

	* printer/printerdrake.pm: Added button to switch to japanese text file
	printing.
	Many bug fixes:
	  - Wait messages bloxked the OK buttons of the dialogs telling how to
	scan and how to read photo cards on HP´s MF devices.
	  - Do not configure OpenOffice.org any more, only Star Office.
	  OpenOffice.org is patched to have native CUPS support now.
	  - If the Port for a BrowsePoll address is left blank, 631 is taken as
	  default now.
	  - Text for firmware upload for HP LaserJet 1000 now also available in
	  the 'Learn how to use printer' dialog.
	  - Updated check of model name for HP´s MF devices to newest models.

	* printer/detect.pm: Made sure that all IP addresses of the local machine
	are in 'Allow
	From' lines in the /etc/cups/cupsd.conf, otherwise one can have
	certain configurations with which one cannot access to the options of
	the local printer(s).

	* printer/main.pm: Made sure that all IP addresses of the local machine
	are in 'Allow
	From' lines in the /etc/cups/cupsd.conf, otherwise one can have
	certain configurations with which one cannot access to the options of
	the local printer(s).
	Added button to switch to japanese text file printing.

	* printer/office.pm: Many bug fixes:
	  - Wait messages bloxked the OK buttons of the dialogs telling how to
	scan and how to read photo cards on HP´s MF devices.
	  - Do not configure OpenOffice.org any more, only Star Office.
	  OpenOffice.org is patched to have native CUPS support now.
	  - If the Port for a BrowsePoll address is left blank, 631 is taken as
	  default now.
	  - Text for firmware upload for HP LaserJet 1000 now also available in
	  the 'Learn how to use printer' dialog.
	  - Updated check of model name for HP´s MF devices to newest models.

2003/03/11  Thierry Vignaud  <tvignaud at mandrakesoft.com>

	* drakxtools.spec: 9.1-19mdk final

	* docs/mdk-9.2: update

2003/03/11  Warly  <warly at mandrakesoft.com>

	* share/rpmsrate: add kdeartwork level 3 in KDE

	* share/logo-mandrake.png: 9.1 logo

2003/03/10  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/no.po: minor typo

2003/03/10  Alice Lafox  <alice at lafox.com.ua>

	* share/po/ru.po: some fixes
	update

2003/03/10  François Pons  <fpons at mandrakesoft.com>

	* install_any.pm: use quoted url instead for install_urpmi.
	fixed duplicate url entry for file and removable.
	build a list file only if needed for install_urpmi.

	* rescue/tree/etc/oem, rescue/tree/etc/oem-all: added missing right
	parenthesis.
	fix for strange parted behaviour.

2003/03/10  Guillaume Cottenceau  <gc at mandrakesoft.com>

	* install_steps.pm: fix original #2842 problem

	* lang.pm (pablo) workaround console localization broken in RTL languages
	fix original #2842 problem

	* install_gtk.pm: meta class desktop also uses galaxy theme, not blue
	theme

2003/03/10  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/no.po: minor typo
	updated Norwegian file
	updated Welsh, Icelandic, Italian, Norwegian

	* share/po/Makefile, share/po/it.po, share/po/is.po, share/po/cy.po:
	updated Welsh, Icelandic, Italian, Norwegian

	* keyboard.pm: Changed console Czech keyboard

2003/03/10  Pixel  <pixel at mandrakesoft.com>

	* install2.pm: fix getting brltty help and table (thanks to Hans Schou)

2003/03/10  tpittich

	* share/po/sk.po: updated slovak translation

2003/03/10  Thierry Vignaud  <tvignaud at mandrakesoft.com>

	* standalone/draksec: 
	  - clean wait messages creation
	  - fix wait messages displaying (label was not displayed) in both
	standalone and embedded modes

	* drakxtools.spec: fix #1461
	more logs
	typo fix

	* harddrake/TODO, docs/mdk-9.2: update

	* services.pm: 
	  - fix packing on standalone mode (no horizontal scrolling)
	  - let show it all when embedded

2003/03/10  Warly  <warly at mandrakesoft.com>

	* share/rpmsrate: add kdeartwork-kde-classic not to have trouble in KDE
	updates.
	reduce gpm level from 4 to 2 in system

	* share/compssUsers.desktop: Update for new standard pack

2003/03/09  Arkadiusz Lipiec  <alipiec at elka.pw.edu.pl>

	* share/po/pl.po: Typo fix

2003/03/09  Guillaume Cottenceau  <gc at mandrakesoft.com>

	* share/po/fr.po: latest missing stuff

	* Xconfig/test.pm: fix background of X test during install

2003/03/09  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	pot file

	* standalone/drakTermServ: fixed text (missing '/')

2003/03/09  Pixel  <pixel at mandrakesoft.com>

	* install_steps_interactive.pm: make perl_checker a happy prog
	no "Previous" button when choosing install or upgrade

2003/03/08  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

2003/03/07  Pixel  <pixel at mandrakesoft.com>

	* install_steps_interactive.pm: mask encryption key (using stars)

2003/03/07  Arkadiusz Lipiec  <alipiec at elka.pw.edu.pl>

	* share/po/pl.po: One message
	updated

2003/03/07  Fabian Mandelbaum  <fabman at 2vias.com.ar>

	* share/po/es.po: Updated Spanish translation

2003/03/07  Frederic Lepied  <flepied at mandrakesoft.com>

	* any.pm: launch startx.autologin instead of startx in autologin

2003/03/07  François Pons  <fpons at mandrakesoft.com>

	* network/adsl.pm: dropped a line.
	fix logical error (flepied).

2003/03/07  Guillaume Cottenceau  <gc at mandrakesoft.com>

	* ugtk2.pm: refine the already dirty code to workaround gtk bug leading to
	bugzilla #1445 (clicking two times too fast still lead to same problem)
	fix rpmdrake dumping core when multiple searchs in
	"selected" and "upgradable" sorting modes (#2899)

	* tools/cvslog2changelog.pl: add fabman
	protect emails

	* drakxtools.spec: fix rpmdrake dumping core when multiple searchs in
	"selected" and "upgradable" sorting modes (#2899)

2003/03/07  Pablo Saratxaga  <pablo at mandrakesoft.com>

	* share/po/sk.po, share/po/pt_BR.po, share/po/th.po, share/po/et.po,
	share/po/ja.po, share/po/ko.po, share/po/da.po, share/po/uz.po,
	share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/sq.po,
	share/po/it.po, share/po/es.po, share/po/lv.po, share/po/ru.po,
	share/po/sl.po, share/po/tr.po, share/po/mt.po, share/po/uk.po,
	share/po/lt.po, share/po/cy.po, share/po/tg.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/nl.po: iupdated Vietnamese,
	Estonian and Dutch files;
	fixed the translations of "default:LTR"
	updated pot file

	* share/po/gl.po, share/po/hr.po, share/po/be.po, share/po/DrakX.pot,
	share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/he.po,
	share/po/ca.po, share/po/ar.po, share/po/eu.po, share/po/hu.po,
	share/po/id.po, share/po/br.po, share/po/no.po, share/po/ga.po,
	share/po/sp.po, share/po/bs.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/fr.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po: updated
	pot file

	* share/advertising/06-development.pl, share/advertising/02-community.pl,
	share/advertising/05-desktop.pl, share/advertising/01-thanks.pl,
	share/advertising/08-store.pl, share/advertising/11-mnf.pl,
	share/advertising/07-server.pl, share/advertising/10-security.pl,
	share/advertising/03-software.pl, share/advertising/09-mdksecure.pl,
	share/advertising/12-mdkexpert.pl,
	share/advertising/13-mdkexpert_corporate.pl,
	share/advertising/04-configuration.pl: Changed _() to N_()

	* share/po/fi.po: updated Finnish file
	updated pot file

2003/03/07  Pixel  <pixel at mandrakesoft.com>

	* install_steps_interactive.pm: mask encryption key (using stars)

	* Makefile.config: don't install share/advertising/*.pl files in
	Mandrake/mdkinst/usr/bin/perl-install/share, only in
	Mandrake/share/advertising

2003/03/06  David Baudens  <baudens@mandrakesoft.com>

	* share/advertising/03-software.pl: Fix typo
	Update
	Sync names with text files

	* share/advertising/07-server.pl, share/advertising/06-development.pl,
	share/advertising/05-desktop.pl, share/advertising/08-store.pl,
	share/advertising/11-mnf.pl,
	share/advertising/13-mdkexpert_corporate.pl: Update
	Sync names with text files

	* share/advertising/07-desktop.png, share/advertising/14-mdkexpert.png,
	share/advertising/14-mdkexpert.pl, share/advertising/17-mdkclub.pl,
	share/advertising/13-mdkcampus.png, share/advertising/06-mcc.png,
	share/advertising/11-mdkstore.pl, share/advertising/17-mdkclub.png,
	share/advertising/11-mdkstore.png, share/advertising/12-mdkstore.png,
	share/advertising/04-multimedia.png, share/advertising/10-mnf.png,
	share/advertising/03-internet.pl, share/advertising/05-games.pl,
	share/advertising/16-thanks.png, share/advertising/12-mdkstore.pl,
	share/advertising/15-mdkexpert-corporate.png,
	share/advertising/09-server.pl, share/advertising/05-games.png,
	share/advertising/04-multimedia.pl, share/advertising/13-mdkcampus.pl,
	share/advertising/03-internet.png, share/advertising/07-desktop.pl,
	share/advertising/09-server.png, share/advertising/08-development.png,
	share/advertising/10-mnf.pl,
	share/advertising/15-mdkexpert-corporate.pl,
	share/advertising/08-development.pl, share/advertising/06-mcc.pl: Remove
	old files

	* share/advertising/02-community.pl, share/advertising/01-thanks.pl,
	share/advertising/list: Use texts from specifications

	* share/advertising/10-security.png, share/advertising/07-server.png,
	share/advertising/11-mnf.png, share/advertising/03-software.png,
	share/advertising/10-security.pl, share/advertising/08-store.png,
	share/advertising/12-mdkexpert.png,
	share/advertising/06-development.png,
	share/advertising/09-mdksecure.png, share/advertising/09-mdksecure.pl,
	share/advertising/12-mdkexpert.pl,
	share/advertising/04-configuration.png,
	share/advertising/13-mdkexpert_corporate.png,
	share/advertising/05-desktop.png, share/advertising/04-configuration.pl:
	Sync names with text files

2003/03/06  François Pons  <fpons@mandrakesoft.com>

	* network/ethernet.pm: avoid virtual ethX to be reconfigured by
	drakconnect
	fixed ifconfig invocation and state analysis in install mode.

	* drakxtools.spec: avoid virtual ethX to be reconfigured by drakconnect
	NVIDIA drop.

	* install_any.pm: dropped allowNVIDIA_rpms method.
	added check_kernel_module_packages for checking prioprietary base kernel
	package.

	* install2.pm: added summaryAfter steps for summary.

	* any.pm: make sure acpi is installed.

	* standalone/XFdrake: moved prioprietary NVIDIA code support to generic
	prioprietary support in standalone.pm.

	* standalone.pm: fixed error message.
	added check_kernel_module_packages with same behaviour expected as for
	install_any module.

	* install_steps.pm: dropped allowNVIDIA_rpms
	fixed stupid again typo.
	modified logic for summaryAfter.
	fixed again the same typo.
	fixed stupid typo.
	summaryAfter created to install acpi and acpid if needed.

	* install_steps_interactive.pm: dropped allowNVIDIA_rpms

	* install_steps_gtk.pm: added desktop groups organization.

	* network/modem.pm: added support for kernel base name of ltmodem.

	* network/adsl.pm: fixed adsl login not probed in install mode.

2003/03/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/url.c: provide Host: in http requests so that install works
	from sites with virtual hosting (#2561)

	* share/po/es.po: this translation can't get much big or else it will
	enlarge too
	much diskdrake

2003/03/06  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* lang.pm: Enabled Laotian (was missing a definition in %charsets),
	Bengali (there starts to be gnome translations available),
	and Kannada (there starts to be gnome translations available).
	Code for Xhosa added (there is an official kde-i18n-xh package
	available),
	wating for lang-xh.png to enable it

	* share/po/cs.po, share/po/vi.po, share/po/ta.po, share/po/fi.po,
	share/po/ar.po: updated Czech, Arabic, Finnish, Tamil and Vietnamese
	files

2003/03/06  Pixel  <pixel@mandrakesoft.com>

	* any.pm: don't create xxx.conf for standard devfs compatibility names

	* install_steps_interactive.pm: basic encrypt_key handling in upgrade
	(don't mistype!)

	* share/po/help-ru.pot: add it since drakx-chapter.xml is ok (dixit Alice
	Lafox)

	* share/po/help_xml2pm.pl: do not exclude "ru" drakx-help.xml anymore

	* detect_devices.pm: merge cdroms__faking_ide_scsi() and
	zips__faking_ide_scsi() in
	cdroms_and_zips__faking_ide_scsi() to be able to have a good devfs
	device name
	this fixes *__faking_ide_scsi() not faking devfs_device causing bad
	/etc/devfs/conf.d/dvd.conf for dvd burners

	* install_any.pm: cleanup

2003/03/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/draksec: perl_checker fix

	* harddrake/data.pm: move usb webcams which have mod_quickcam as a driver
	from unknown to
	webcam clategory since they do not have any valid usb class

	* standalone/service_harddrake: s/perl -w/use diagnostics/ so stat it get
	removed from package at
	build time

	* drakxtools.spec: typo fix
	9.1-17mdk
	update
	9.1-16mdk, first bit
	more fixes

	* harddrake/sound.pm: perl_checker fix
	fix #1929
	let fix #2244, #2245, #2730

	* standalone/draksplash: do not crash on color selection
	prevent one to pop up hundred of windows: make browse dialog be modal
	  - fix #1766
	  - do not crash when browsing

	* services.pm: we do use $in !!!!

	* docs/mdk-9.2: first bits of mdk9.2 specs (aka postponed bugs...) stuff

	* scanner.pm: perl_checker fixes
	do not detect some usb webcams as scanners ...

	* harddrake/TODO: update

	* standalone/draksound, install_steps_interactive.pm: let fix #2244,
	#2245, #2730

2003/03/06  Warly  <warly@mandrakesoft.com>

	* network/network.pm: detect if the device is pcmcia when initializing the
	ONBOOT parameter

2003/03/06  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/po/fr.po: corrected remaining mise-à-jour

2003/03/06  François Pons  <fpons@mandrakesoft.com>

	* any.pm: make sure acpi is installed.

	* install_steps.pm: modified logic for summaryAfter.
	fixed again the same typo.
	fixed stupid typo.
	summaryAfter created to install acpi and acpid if needed.
	menu update method modified for upgrade.

	* install2.pm: added summaryAfter steps for summary.

2003/03/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/es.po: this translation can't get much big or else it will
	enlarge too
	much diskdrake

2003/03/06  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* standalone/harddrake2: fixed XIM definitions for Chinese locales

	* share/rpmsrate: removed non-ascii chars

	* share/po/sv.po, share/po/sk.po: updated Slovak and Swedish files

	* lang.pm: Enabled Laotian (was missing a definition in %charsets),
	Bengali (there starts to be gnome translations available),
	and Kannada (there starts to be gnome translations available).
	Code for Xhosa added (there is an official kde-i18n-xh package
	available),
	wating for lang-xh.png to enable it
	fixed XIM definitions for Chinese locales

2003/03/06  Pixel  <pixel@mandrakesoft.com>

	* any.pm: don't create xxx.conf for standard devfs compatibility names

	* detect_devices.pm: merge cdroms__faking_ide_scsi() and
	zips__faking_ide_scsi() in
	cdroms_and_zips__faking_ide_scsi() to be able to have a good devfs
	device name
	this fixes *__faking_ide_scsi() not faking devfs_device causing bad
	/etc/devfs/conf.d/dvd.conf for dvd burners

	* share/po/help_xml2pm.pl: do not exclude "ru" drakx-help.xml anymore

	* interactive/gtk.pm: "ensure buttons are visible when the widgets above
	are too big" only at install

2003/03/06  tpittich

	* share/po/sk.po: updated slovak translation

2003/03/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: fix #2672

	* Makefile: move ugtk2 back in drakxtools on gc idea

	* standalone/logdrake: 
	  - display "wait while searching" message also when embedded: we do not
	want it only when embedded for explanations
	  - flush this wait dialog draw queue on each update so that it get
	  displayed when embedded

	* harddrake/data.pm: move usb webcams which have mod_quickcam as a driver
	from unknown to
	webcam clategory since they do not have any valid usb class

	* scanner.pm: do not detect some usb webcams as scanners ...

	* standalone/drakedm: log system config changes

	* drakxtools.spec: more fixes
	more logdrake fixes
	move ugtk2 back in drakxtools on gc idea
	more fixes
	more fixes
	9.1-15mdk

	* lang.pm: 
	  - cornish is a p-celtic language (aka a britonnic one), not a gaelic
	one
	  - homogeinize q-celtic languages (aka gaelic ones)

	* standalone/draksec: let i fit in 800x600

2003/03/05  Arkadiusz Lipiec  <alipiec@elka.pw.edu.pl>

	* share/po/pl.po: two entries remained

2003/03/05  fabman

	* share/po/es.po: updated Spanish translation

2003/03/05  Frederic Lepied  <flepied@mandrakesoft.com>

	* network/isdn.pm: read right config according to isdn-light or isdn4linux

	* network/adsl.pm: read login name from net_cnx_up in pptp mode.

	* network/ethernet.pm: fix to avoid creating an ifcfg-1 config file.

	* network/tools.pm: if the user don't want to start the internet
	connection, continue without
	error message.

	* network/netconnect.pm: use driver instead of descrition to validate an
	isdn autodetection

2003/03/05  François Pons  <fpons@mandrakesoft.com>

	* drakxtools.spec: add changelog for drakconnect modification.

	* standalone/drakconnect: fixed wizard modification not taken into account
	when using drakconf.

2003/03/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fix one translation

	* any.pm, drakxtools.spec, standalone/localedrake: fix behaviour when only
	one lang is available (clicking
	on "cancel" on the country selection didn't cancel it)

2003/03/05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ro.po, share/po/vi.po, share/po/ar.po: updated Arabic, Romanian
	and Vietnamese files

	* share/po/tg.po, share/po/th.po, share/po/is.po, share/po/sl.po,
	share/po/az.po, share/po/be.po, share/po/uk.po, share/po/lt.po,
	share/po/eo.po, share/po/hu.po: updated Hungarian file

	* share/po/fr.po, share/po/it.po, share/po/es.po, share/po/de.po: merged
	with help strings from manuals

	* share/po/uz.po: updated Uzbek file

	* share/po/no.po: updated Norwegian file

2003/03/05  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/various.pm (choose_xdm): allow to switch back from level 5 to
	level 3

	* network/network.pm, network/isdn.pm: this is perl, not python ;p

	* install_steps.pm: modifying keyboard in summary must modify XF86Config

	* interactive/gtk.pm: ensure buttons are visible when the widgets above
	are too big

2003/03/05  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* mouse.pm, standalone/harddrake2, common.pm, harddrake/data.pm: prevent
	warning when using diagnostics pragma (easier debugging)

	* standalone/drakedm: handle low case config variables despite they should
	have been upcase
	(fix side effects of stupid rh code that manage $prefdm)

	* detect_devices.pm: 
	  - (getTVcards, isTVcard) : consolidate tv detection code
	  - no need to keep capture buffer (not a big slow down but small rivers
	make big ones...)
	normalize
	prevent warning when using diagnostics pragma (easier debugging)

	* standalone/logdrake: restore old search behavior like we did before
	gtk+-2 port:
	  - empty log buffer on search startup
	  - freeze buffer while searching
	  - do not realize ourselves the window, it's done by next statement
	  - set initial text to '' so that editable property is disabled once
	  the textview is realized
	no need to explicitely disable editable property, this is already
	handled by ugtk2::gtktext_insert() called from ugtk2::gtktext_append()

	* standalone/drakxtv, install_steps_interactive.pm: 
	  - (getTVcards, isTVcard) : consolidate tv detection code
	  - no need to keep capture buffer (not a big slow down but small rivers
	make big ones...)

	* drakxtools.spec: more to come

	* share/po/fr.po: update french translation

	* share/po/br.po: minor update

2003/03/04  Frederic Lepied  <flepied@mandrakesoft.com>

	* network/isdn.pm: corrected isdn-light choice

	* network/modem.pm: install kdenetwork-kppp if kdebase is already
	installed

	* network/network.pm: allow to set hostname in DHCP mode
	install tmdns only when bind isn't installed

2003/03/04  François Pons  <fpons@mandrakesoft.com>

	* standalone/drakconnect: clean interface flags when dhcp mode is used.

	* network/ethernet.pm: avoid being pertubed by created virtual interface
	(no inet addre nor
	physicall card behing)

2003/03/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/cvslog2changelog.pl: add florin alafox alus

	* lang.pm: set better default XIMInputStyle value for CJK, thx to Narfi
	Stefansson <narfi at cs.wisc.edu> for the idea

	* mdk-stage1/stdio-frontend.c, mdk-stage1/newt-frontend.c: don't forget to
	probe USB for info and error messages as well

2003/03/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/cs.po: updated Czech file
	updated pot files

	* share/po/ar.po: corrected encoding problems
	updated pot files

	* share/po/sk.po, share/po/ru.po, share/po/pt_BR.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/tr.po, share/po/mt.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/lt.po, share/po/sp.po,
	share/po/tg.po, share/po/uz.po, share/po/ro.po, share/po/wa.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/sq.po, share/po/nl.po, share/po/lv.po: updated
	pot file

	* share/po/th.po: corrected encoding problems
	updated pot file

	* share/po/et.po: updated Estonian file
	updated pot files

	* share/po/id.po, share/po/gl.po, share/po/br.po, share/po/hr.po,
	share/po/ga.po, share/po/be.po, share/po/fi.po, share/po/he.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/bs.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/fr.po,
	share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/hu.po: updated
	pot files

2003/03/04  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: add "acpi" and "acpid" to INSTALL
	move imap to NETWORKING_MAIL_SERVER (bug #2622)

2003/03/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakperm: 
	  - untabify
	  - fix small memory leak (tree iterators)
	  - restore edit dialog on doble click and
	  - restore informations retrieving for edit dialog on doble click and
	get rid of %CURENT

	* standalone/logdrake: scroll back when logging

2003/03/04  florin

	* standalone/drakgw: simplified form (pixel)

2003/03/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

2003/03/04  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/hd_gtk.pm: 
	  - in focus_in_event for partition buttons, grab_focus is needed
	because gtk2 is buggy. Forcing an expose event would be enough
	  - in button_press_event for partition buttons, grab_focus is needed
	because gtk2 is buggy. The creation of widgets causes the lost of the
	focus
	(fixes part of #2621)

	* share/rpmsrate: move imap to NETWORKING_MAIL_SERVER (bug #2622)

	* rescue/tree/etc/profile: 
	  - unsetting LD_LIBRARY_PATH: setting LD_LIBRARY_PATH to libraries in
	/mnt is
	wrong since the ld loader used (/lib/ld-linux.so.2) won't use the one in
	/mnt,
	causing dependency problems.
	  - removing /mnt dirs from PATH (which are not useful anymore since the
	corresponding libraries won't be found)
	(fixes bug #2554)

	* install_steps_interactive.pm: fix typo

	* network/nfs.pm (check): fix return value (bug introduced with checking
	portmap is running)

	* lang.pm: make perl_checker happy

	* services.pm: in drakxservices, don't stop services if one is using the
	gtk frontend (since it allows one to start/stop services)
	this allows to skip stopping service "dm" (bug #2664)

2003/03/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakboot: remove debuging assertions (as spoted by gc)

	* standalone/drakperm: 
	  - remove last warning
	  - remove unused variables
	  - fix #1776 (part one): make up and down button be usefull instead of
	nop (this need an updated perl-GTK2 though)
	  - let up, down, delete and edit buttons be insensitive when selection
	  is destroyed or when there's no selection
	  - fix #1776 part two (do not insert dummy lines)
	  - restore special lines with current keyword
	  - reuse already defined path

2003/03/03  alafox

	* share/po/ru.po: updated and partially proofread. need more lproof

2003/03/03  alus

	* share/po/pl.po: updated

2003/03/03  florin

	* standalone/drakgw: add an extra first choose the net device step

2003/03/03  François Pons  <fpons@mandrakesoft.com>

	* network/tools.pm: simplified unquotify.

	* network/adsl.pm: simplified code of adsl_ask_info, password can be
	retrieved using
	passwd_by_login which was not used with computed login from
	/etc/ppp/peers/adsl
	or /etc/ppp/options or /etc/ppp/options.adsl.

2003/03/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: thx po validato

	* any.pm, drakxtools.spec: any::selectLanguage: in standalone, don't
	categorize langs, for
	better looking (since most people will have very few of them)

	* share/po/validate.pl: make it useful
	  - print problems with GREP_COLOR
	  - have enough exceptions to get usable errors

	* interactive/gtk.pm: a few treeview/list fixes:
	  - when selecting a value, scroll it like in treeview/tree
	  - use saved_default_val dirty hackery to really honour default value
	  - fix not calling $select again when trying to select an already
	selected value (happens when clicking or keyboard-selecting;
	  broken, it ended up in always scrolling the selected value to
	  the center)

2003/03/03  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/sq.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file

	* share/po/it.po: updated Italian file
	updated pot file

	* share/po/et.po, share/po/fi.po, share/po/nl.po: updated Estonian,
	Finnish and Dutch files
	updated pot file

2003/03/03  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm (n_line_size): spacing for default font using XFT is 3

	* install_steps_interactive.pm: add some explaination for translators
	translate _bootloader_ on _device_
	translate mouse names

	* install_interactive.pm: use formatAlaTeX() for the warning "DrakX will
	now resize your Windows partition..."

	* share/po/help-fr.pot, share/po/help-de.pot, help.pm,
	share/po/help-es.pot: update from xml

	* share/rpmsrate: add ncurses-devel in DEVELOPMENT

	* Xconfig/various.pm (runlevel): fix typo

2003/03/03  Till Kamppeter  <till@mandrakesoft.com>

	* printer/detect.pm: Fixed bug of USB printers which do not report back an
	IEEE-1284 ID string after
	three attempts being invisible instead of being listed as an "Unknown
	device".

	* printer/data.pm, printer/printerdrake.pm: Fixed bug of wrong function
	call to display the spooler name (Titi's untested changes).

2003/03/03  tpittich

	* share/po/sk.po: updated slovak translation
	updated slovak translation
	change code page to utf-8

2003/03/03  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 9.1-13mdk
	9.1-12mdk

	* share/po/fr.po: unfuzzy()
	fix translation

	* standalone/harddrake2: 
	  - remove a warning
	  - better scsi bus location
	reap zombie children (aka fix mem leak :-( )

	* standalone/drakboot: 
	  - fix #2091 and #2480 (settings restoration
	  - make dialogs be modal

	* standalone/drakperm: remove unused $rows_cnt
	smoother gui: let main windows be unreachable until modal dialog is
	closed
	fix bug reported by Cédric Thévenet (impossible to save newly edited
	rules)

	* share/po/help-fr.pot, share/po/help-de.pot, share/po/help-es.pot,
	share/po/help-it.pot: revert to non broken version

2003/03/02  alafox

	* share/po/ru.po: updated

2003/03/02  alus

	* share/po/pl.po: Hard spell checking

2003/03/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/translation_size.pl: add

2003/03/02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po, share/po/es.po, share/po/ro.po, share/po/hu.po,
	share/po/fi.po, share/po/ar.po: updated Arabic, Estonian, Finnish,
	Hungarian and Romanian files

2003/03/02  Till Kamppeter  <till@mandrakesoft.com>

	* printer/printerdrake.pm: 
	  - Avoid two overlayed wait messages when installing packages
	  - Let applications (OpenOffice.org/GIMP) being once on startup of
	Printerdrake
	Call function for configuring applications only if really needed.
	Shortened the texts in some list dialogs to get a better layout.
	  - When non-interactively creating print queues ask the user for the
	model
	  name if the model is not in the database, don't do wild guesses then.

	* printer/data.pm: Make file checks for CUPS package installation
	independent of whether "curl"
	or "wget" is installed to fulfill the "webfetch" requirement.

	* printer/detect.pm: Read device ID string for a USB printer up to three
	times when it does not contain information.

	* printer/gimp.pm: Fixed auto-configuration for printers in the GIMP to
	work with Foomatic 3.0.

	* printer/main.pm: Correction on reading the Foomatic overview.
	Fixes on reading of Foomatic data overview ("foomatic-configure -O"):
	  - Removed usage of on-disk cache
	  - Made new "<general>" and "<ieee1284>" tags for auto-detection info
	being recognized.

2003/03/01  fabman

	* share/po/es.po: updated Spanish translation
	updated Spanish translation

2003/03/01  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/zh_CN.po, share/po/sv.po, share/po/sr.po,
	share/po/hu.po: updated Chinese, Swedish, Hungarian and Serbian files

2003/03/01  Till Kamppeter  <till@mandrakesoft.com>

	* install_steps_interactive.pm: The generation of the "Summary" button for
	printer configuration created a blank entry in the
	$o->{printer}{configures} hash which lead to a blank menu entry in the
	main menu of printerdrake. This is fixed now.

2003/02/28  alus

	* share/po/pl.po: updated

2003/02/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/ja.po: reduce a translation size so that groups choice still
	has the "ok" button shown

	* detect_devices.pm: let hasSMP don't exit DrakX in testing mode because
	/dev/mem is not accessible

2003/02/28  alus

	* share/po/pl.po: updated

2003/02/28  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakhelp: 
	  - fix the check of mandrake_doc installed package (gc)

2003/02/28  fabman

	* share/po/es.po: updated Spanish translations. Some fuzzy left

2003/02/28  François Pons  <fpons@mandrakesoft.com>

	* network/modem.pm: add LT WinModem support by searching ltmodem package.

	* drakxtools.spec: ltmodem support reminder.
	fixes for drakconnect.

	* any.pm: install acpi and acpid if "Enable ACPI" is ok.

	* standalone/drakconnect: removed profile management entry point.

2003/02/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_gtk.pm: fix theming in --doc mode

	* mdk-stage1/init.c: moltes powered (for deush)

	* lang.pm: remove temporiraly lo because utf_lo is not in the charsets
	hash
	put new pablo's images (less large, add missing ones)
	sort langs in lang.pm

	* mdk-stage1/modules.c, mdk-stage1/.cvsignore: hd_usb.img ->
	hdcdrom_usb.img

	* standalone/draksplash, standalone/drakfirewall, standalone/logdrake,
	standalone/drakpxe, standalone/keyboarddrake, standalone/drakboot,
	standalone/mousedrake, standalone/drakbackup, standalone/drakconnect,
	standalone/drakxtv, standalone/adduserdrake, standalone/drakxservices,
	standalone/drakproxy, standalone/livedrake, standalone/harddrake2,
	standalone/drakfont, standalone/drakgw, standalone/drakperm,
	standalone/scannerdrake: reflect in standalone drakxtools the removal of
	DrakX icons

	* pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-sl.png,
	pixmaps/langs/lang-hy.png, pixmaps/langs/lang-de.png,
	pixmaps/langs/lang-cy.png, pixmaps/langs/lang-it.png,
	pixmaps/langs/lang-eu.png, pixmaps/langs/lang-ca.png,
	pixmaps/langs/lang-sp.png, pixmaps/langs/lang-mr.png,
	pixmaps/langs/lang-am.png, pixmaps/langs/lang-nb.png,
	pixmaps/langs/lang-kn.png, pixmaps/langs/lang-gd.png,
	pixmaps/langs/lang-bn.png, pixmaps/langs/lang-lo.png,
	pixmaps/langs/lang-el.png, pixmaps/langs/lang-ia.png,
	pixmaps/langs/lang-pt_BR.png, pixmaps/langs/lang-sv.png,
	pixmaps/langs/lang-mi.png, pixmaps/langs/lang-bg.png,
	pixmaps/langs/lang-fo.png, pixmaps/langs/lang-kw.png,
	pixmaps/langs/lang-hu.png, pixmaps/langs/lang-ur.png,
	pixmaps/langs/lang-iu.png, pixmaps/langs/lang-az.png,
	pixmaps/langs/lang-mt.png, pixmaps/langs/lang-et.png,
	pixmaps/langs/lang-wa.png, pixmaps/langs/lang-sq.png,
	pixmaps/langs/lang-he.png, pixmaps/langs/lang-eo.png,
	pixmaps/langs/lang-ta.png, pixmaps/langs/lang-ga.png,
	pixmaps/langs/lang-sr.png, pixmaps/langs/lang-lt.png,
	pixmaps/langs/lang-oc.png, pixmaps/langs/lang-ms.png,
	pixmaps/langs/lang-mk.png, pixmaps/langs/lang-lv.png,
	pixmaps/langs/lang-zh_TW.png, pixmaps/langs/lang-is.png,
	pixmaps/langs/lang-ro.png, pixmaps/langs/lang-be.png,
	pixmaps/langs/lang-fr.png, pixmaps/langs/lang-te.png,
	pixmaps/langs/lang-hr.png, pixmaps/langs/lang-no.png,
	pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-sk.png,
	pixmaps/langs/lang-uk.png, pixmaps/langs/lang-br.png,
	pixmaps/langs/lang-en_US.png, pixmaps/langs/lang-bs.png,
	pixmaps/langs/lang-nl.png, pixmaps/langs/lang-af.png,
	pixmaps/langs/lang-tr.png, pixmaps/langs/lang-pt.png,
	pixmaps/langs/lang-gl.png, pixmaps/langs/lang-uz.png,
	pixmaps/langs/lang-pl.png, pixmaps/langs/lang-hi.png,
	pixmaps/langs/lang-id.png, pixmaps/langs/lang-mn.png,
	pixmaps/langs/lang-yi.png, pixmaps/langs/lang-fi.png,
	pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ru.png,
	pixmaps/langs/lang-nn.png, pixmaps/langs/lang-gv.png,
	pixmaps/langs/lang-th.png, pixmaps/langs/lang-cs.png,
	pixmaps/langs/lang-ko.png, pixmaps/langs/lang-tg.png,
	pixmaps/langs/lang-tt.png, pixmaps/langs/lang-da.png,
	pixmaps/langs/lang-ja.png, pixmaps/langs/lang-vi.png,
	pixmaps/langs/lang-es.png: put new pablo's images (less large, add
	missing ones)
	sort langs in lang.pm

	* detect_devices.pm: let hasSMP don't exit DrakX in testing mode because
	/dev/mem is not accessible

	* mdk-stage1/Makefile: fix deps problem when re-running make
	hd_usb.img -> hdcdrom_usb.img

	* share/po/ja.po: reduce a translation size so that groups choice still
	has the "ok" button shown
	reduce some translations sizes to make diskdrake at least usable ("ok"
	button was hidden!)

	* share/po/fr.po: update

	* ugtk2.pm: perl checko says we need to use parentheses with ref
	hugly hack because GtkLabel doesn't wrap when using languages that don't
	contain spaces

	* drakxtools.spec: cøws gó mòõh

2003/02/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
	share/po/help-es.pot: updated pot file

	* standalone/harddrake2: i18n fixes

	* standalone/drakpxe: fixed bad English string

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
	share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
	share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: updated pot file
	updated pot file

	* share/po/et.po, share/po/ja.po: updated pot file
	Updated Estonian file
	updated pot file

2003/02/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: ensure the $::expert flag in netconnect
	doesn't propagate to the rest of the
	install

2003/02/28  Frederic Lepied  <flepied@mandrakesoft.com>

	* network/netconnect.pm: allow to switch in expert mode during install.

	* network/ethernet.pm: Configure hostname only in expert mode.

	* network/network.pm: corrected HOSTNAME/DHCP_HOSTNAME management.

2003/02/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: ensure the $::expert flag in netconnect
	doesn't propagate to the rest of the
	install

2003/02/28  Till Kamppeter  <till@mandrakesoft.com>

	* scanner.pm, share/rpmsrate: 
	  - Fixed confScanner() deleting the config file in some cases.
	  - Removed PDQ from share/rpmsrate

2003/02/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* lang.pm, Makefile: error out when a listed lang doesn't have a png lang
	file
	when doing the check of lang.pm, first show the warnings,
	then the errors
	at make-install time, remove pang lang files corresponding
	to disabled langs

2003/02/27  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 9.1-10mdk

2003/02/27  alafox

	* share/po/ru.po: spellchecked and updated some translations

2003/02/27  Frederic Lepied  <flepied@mandrakesoft.com>

	* network/network.pm: corrected HOSTNAME management

2003/02/27  florin

	* standalone/drakgw: read more carefully the existing network
	configuration

2003/02/27  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: added mirror url not given.
	fixed small typo.
	added cancel button.
	fixed message displayed.
	added dialog more precisely.
	added message box in case of error.

	* share/rpmsrate: moved galaxy-gnome to X from GNOME (lmontel and dadou
	request)

	* network/adsl.pm: add sagem connection and disconnection script using
	/etc/ppp/peers/adsl file.
	probe user and password in /etc/ppp/options.adsl too (as produced by
	original eagle installation),
	sagem adsl type connection does not need to configure an ethernet
	connection.

2003/02/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: don't forget gigabit network
	adapters

2003/02/27  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	pot file

2003/02/27  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm: /root on a separate partition gives a warning, not an error

	* network/nfs.pm (check): start portmap if needed

	* install_any.pm: 
	  - add get_info_from_fstab()
	  - use it when reading existing fstab (to get for example devfs mount)
	have locales-xx first in default_packages so that default choosing based
	on
	locales works for packages in default_packages

	* pkgs.pm: perl_checker fix
	enhance packageCallbackChoices and %preferred
	(uses new URPM::Resolve feature allowing multiple choices)

	* fs.pm, standalone/diskdrake: 
	  - add get_info_from_fstab()
	  - use it when reading existing fstab (to get for example devfs mount)

	* interactive/gtk.pm: workaround gtk suckiness (set_text in a combo
	generates two 'change' signals, one when removing the whole, one for
	inserting the replacement..)

	* install2.pm: no mouse probe when brltty

	* standalone/drakupdate_fstab: allow removing device "non kudzu flagged"
	(for harddrake)

	* bootloader.pm: use lilo-like code for selecting mapdrive or not
	(it was buggy, always generating "map (0x81) (0x80)", even for hd2)

	* share/rpmsrate: 
	  - don't need to list packages providing a required virtual language
	(eg: aspell-dictionnary)
	  - replace ispell with aspell (otherwise people using evolution get
	both aspell and ispell)

2003/02/27  Till Kamppeter  <till@mandrakesoft.com>

	* printer/data.pm, printer/office.pm: Make OpenOffice.org opening a GUI
	printing tool when printing with the "Generic Printer".

	* standalone/scannerdrake: Do not ask for the port when the user has
	chosen an HP MF device as scanner model.

2003/02/27  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: translate missing translations
	fix sorting in keybordrake that was broken by bad translator

	* standalone/drakconnect: fix too big internet configuration window

	* standalone/service_harddrake: add ieee1394-controller alias and load
	ohci1394 when a firewire controller appeared
	handle configurators with options (eg: "diskdrake --removable=scd0")

	* drakxtools.spec: 9.1-10mdk
	9.1-10mdk
	9.1-9mdk

	* standalone/drakperm: make it fit in embedded mode, large enough else

	* harddrake/data.pm: add ieee1394-controller alias and load ohci1394 when
	a firewire controller appeared

	* standalone/drakgw: fix embedding

2003/02/27  florin

	* standalone/drakgw: read more carefully the existing network
	configuration
	the function is called read_dhcpd_conf not read_dhcpd_conf_raw
	read the dhcpd conf file before hand

	* network/network.pm: add the read_dhcpd_conf function for drakgw

2003/02/27  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm: change default version to 9.1

	* standalone/drakconnect: fixed cancel on configure_net, fixed bad fields
	setted up in configure_lan,
	fixed Data::Dumper->Dump on stdout on startup.

2003/02/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/mousedrake: fix mousedrake in embedded mode

2003/02/27  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/nl.po, share/po/da.po, share/po/hu.po: updated Dutch, Hungarian
	and Danish files

2003/02/27  Pixel  <pixel@mandrakesoft.com>

	* interactive/newt.pm: perl_checker fix

	* pkgs.pm: enhance packageCallbackChoices and %preferred
	(uses new URPM::Resolve feature allowing multiple choices)

	* install_any.pm: have locales-xx first in default_packages so that
	default choosing based on
	locales works for packages in default_packages

	* share/rpmsrate: 
	  - don't need to list packages providing a required virtual language
	(eg: aspell-dictionnary)
	  - replace ispell with aspell (otherwise people using evolution get
	both aspell and ispell)

2003/02/27  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: More gtk2 updates.  May have finally suppressed
	the hanging.

2003/02/27  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm: Fixed bug #2171.

2003/02/27  tpittich

	* share/po/sk.po: updated slovak translation

2003/02/27  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: detect firewire controllers

	* services.pm: perl_checker fix

	* standalone/logdrake: fix scrolling when embedded

	* standalone/drakboot: 
	  - disable autologin settings when autologin is disabled
	  - make embedded app look better
	  - add vertical separators

	* drakxtools.spec: 9.1-8mdk

	* standalone/harddrake2: remove debugging print
	small perl_checker fix
	  - consolidate menu titles translations
	  - add two pull down menu that enable one to access options and help
	when
	embedded
	  - (popup_menu) provide this callback for embedded pull down menus
	  - cleanup various other embedding stuff
	  - convert all object creations to gc blessed style

	* standalone/drakfloppy: 
	  - gtk+2 port
	  - clean the code through ugtk2
	  - too many fixes to count
	  - clean, clean it, ... (thus shrinking the code by 20%)
	  - ...

	* standalone/drakconnect: 
	  - better check /sbin/ifconfig is executable rather than simply exists
	  - fix lan configuration window filling ...

	* ugtk2.pm: 
	  - (create_factory_popup_menu): introduce it for embedded harddrake2
	  - embedding cleanups:
	o give access to top-level gtk2::plug widget
	  o reuse gtkshow

	* standalone/drakperm: make it fit in embedded mode, large enough else

2003/02/26  alus

	* share/po/pl.po: uipdated
	updated

2003/02/26  erwan

	* rescue/list.ia64: merg ia64

	* share/list.ia64, bootloader.pm, install_any.pm, Makefile: merge ia64

	* install_steps.pm: Merging ia64

	* any.pm: Merging any.pm with ia64

	* fs.pm: merging fs.pm with ia64

	* fsedit.pm, steps.pm, partition_table.pm: merging ia64

2003/02/26  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: moved type detection code to network.

	* install2.pm: added corporate global flag.

	* standalone/drakpxe: added code to handle more smootly if apache or
	apache-mod_perl is installed, or
	try using apache2.
	switched to apache2 instead of apache (avoid problem with
	apache-mod_perl).

	* network/network.pm: small fixes.
	added probe separately to handle drakconnect horror.
	add probe of internet connection (this could avoid strange behaviour).
	fixed back as titi sucks about message.
	try to get back DOMAINNAME if needed.

	* standalone/drakconnect: fixed unablities to launch Internet
	configuration dialog.
	add explicit probe for netcnx type.

2003/02/26  nplanel

	* c/smp-dmi.c, c/smp.c: Two smp detection for intel arch

2003/02/26  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po: updated Estonian file

	* share/gen_locales.sh: removed exception for Tamil

	* share/po/pl.po: Fixed syntax error

	* share/po/nl.po, share/po/fi.po: updated Finnish and Dutch files

	* keyboard.pm: There is no arabic keyboard available for the console

2003/02/26  Pixel  <pixel@mandrakesoft.com>

	* interactive/newt.pm: handle multi-line labels for Checkbox'es (eg:
	Options in diskdrake)
	handle the "Advanced" button in newt

	* network/isdn.pm: replace the last @isdndata with @isdn::isdndata (beurk)

2003/02/26  Till Kamppeter  <till@mandrakesoft.com>

	* scanner.pm: Skip Alcatel Speed Touch ADSL Modem when it is detected by
	"sane-find-scanner"

2003/02/26  tpittich

	* share/po/sk.po: updated slovak translation (this is my first cvs commit
	;) ).

2003/02/26  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* c/smp-dmi.c: fix planel sucks that broke the installation (hint look at
	nm output
	on old stuff.so ... )

	* standalone/drakedm: untabify
	on laurent request, strip the empty lines and add a end-of-line
	character on
	last line

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
	share/po/ro.po, harddrake/sound.pm, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: typo fix
	(s/snd-slot/sound-slot/)

	* bootlook.pm, standalone/drakboot: 
	  - kill used once only bootlook module
	  - inline oneliners use only once
	  - kill unused variables
	  - strict pragma fixes
	  - ...

	* harddrake/data.pm: detect usb adsl speed touch modem as modem and not as
	unknown device
	what's remain: why sane-find-scanner keep detect it a scanner ??

	* standalone/harddrake2: 
	  - remove unused variable (hey perl_checker, why didn't you see it ?)
	  - (rename_field) better use the parameter we passed than relying on $_
	be set to the right value in that context even if it was correct

2003/02/26  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	Finnish, Hungarian and Slovak files

2003/02/26  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm, install_interactive.pm: after ntfs resize,
	warn user that on Windows next boot fsck will be done

2003/02/26  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: Gtk2 port.  Bugzilla reports.  Some perl_checker
	errors still, but cleaner.
	(some are generated by calls from other modules used)

2003/02/26  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* c/smp-dmi.c: fix planel sucks that broke the installation (hint look at
	nm output
	on old stuff.so ... )

2003/02/25  fabman

	* share/po/es.po: updated spanish translation

2003/02/25  Pixel  <pixel@mandrakesoft.com>

	* network/network.pm (read_resolv_conf_raw): fix "search ..." handling

2003/02/25  fabman

	* share/po/es.po: Updated Spanish translations (some left)

2003/02/25  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: removed gnome-tiles

	* share/po/fr.po: mise-à-jour => mise à jour

2003/02/25  François Pons  <fpons@mandrakesoft.com>

	* share/list: added dmidecode in install.

	* pkgs.pm: improved code for populating group with pixel.

	* network/adsl.pm: cleaned a bit the code.
	added login and passwd remember from /etc/ppp/peers/adsl
	/etc/ppp/options
	/etc/ppp/pap-secrets /etc/ppp/chap-secrets file
	modified string as sagem driver now use pppoa

	* any.pm: added dmidecode in bug report.

	* tools/Makefile, Makefile: removed dmidecode.
	added dmidecode

	* tools/dmidecode/dmidecode.c, tools/dmidecode/Makefile: added dmidecode

	* rescue/list: removed dmidecode.
	added dmidecode for rescue (from lm_sensors)

2003/02/25  gbeauchesne

	* share/list.x86_64: More xf86 modules for x86-64

2003/02/25  nplanel

	* c/smp-dmi.c, c/smp.c, c/Makefile.PL: Add dmidetection for smp

2003/02/25  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ga.po, share/po/uk.po, share/po/lt.po, share/po/af.po,
	share/po/lv.po: Fixed the wrong Finish/Finnish of some translations
	updated Finnish and French files

	* share/po/et.po: updated Estonian file
	updated Finnish and French files

	* share/po/th.po: Fixed Thai button for "Finish" (it means "end" and not
	"from Finland")
	updated Finnish and French files

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/sl.po, share/po/no.po,
	share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
	share/po/be.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/he.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/hu.po: updated Finnish and French files

2003/02/25  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm, install_gtk.pm: cleanup handling of XF4 server
	choice during install

	* network/network.pm (read_resolv_conf_raw): fix "search ..." handling

	* share/rpmsrate: s/apache/apache2/

	* mdk-stage1/mount.c: handle device hdi, hdj... hdt creation

	* modules/interactive.pm: join detect_devices::stringlist() to have it in
	a text box (eurk!)
	(for bug #1802), the result is quite ugly, but at least the full line
	can be read

	* any.pm (fileshare_config): create group "fileshare" in "Custom" mode

2003/02/25  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: Prepared for LPRng and PDQ
	goint to Contribs or leaving the distro, "Change
	Printing System" button only appears if at least one of them is manually
	installed.

2003/02/25  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: handle floppes, zip drives, dvd-rom, cdrom and
	burners at startup time
	  - factorize code into harddrake::data::set_removable_configurator()
	  - really do not offer to configure module for removable devices
	  - do not put zip drives in unknown devices class
	  - reuse Yes|No translations in harddrake::ui

	* standalone/drakfloppy: we already use diagnostics pragma, so -w will
	just slow down normal execution
	only list physically present floppies
	reuse MDK::Common
	  - fix stupid copy 'n past of copyright header
	  - update copyright years
	fix #???? : switch the "expert mode" toggle button label regarding the
	current
	mode (beginner or expert)

	* bootlook.pm: 
	  - remove deprecated, half-commented aurora related code
	  - fix display of autologin radio buttons

	* standalone/harddrake2: do not display alternatives oss/alsa drivers if
	there's none
	  - factorize code into harddrake::data::set_removable_configurator()
	  - really do not offer to configure module for removable devices
	  - do not put zip drives in unknown devices class
	  - reuse Yes|No translations in harddrake::ui
	  - don't offer to configure module for removable media
	  - usb devices (such as zip): display vendor, description and a more
	detailled media type
	display media capacity too (DVD and/or burning ability)

	* standalone/service_harddrake: handle floppes, zip drives, dvd-rom, cdrom
	and burners at startup time
	don't black out the screen if not needed

	* drakxtools.spec: 9.1-7mdk

	* share/po/fr.po: update french translation

2003/02/25  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: readd harddrake in SYSTEM 5

	* share/compssUsers: add ARCHIVING in OFFICE

2003/02/24  alus

	* share/po/pl.po: one entry

2003/02/24  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
	share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
	share/po/sv.po, share/po/sr.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sq.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated Welsh, Greek,
	Swedish and Chinese files

	* lang.pm: improved default fonts for KDE, completed the geographic
	location
	by continent for a few remaining country codes

	* share/po/et.po: updated Estonian file
	updated Welsh, Greek, Swedish and Chinese files

	* share/po/pt_BR.po, share/po/DrakX.pot, share/po/pl.po, share/po/pt.po:
	updated Portuguese file
	updated Welsh, Greek, Swedish and Chinese files

2003/02/24  Pixel  <pixel@mandrakesoft.com>

	* lang.pm: use Sans & Monospace for kde (as requested by lmontel)

	* mdk-stage1/probing.c: replace checking hd[a-h] with hd[a-t] (cf bug
	#1801)

	* install_steps_interactive.pm: allow neuneus to quit install at license
	step (esp. for Ann & Warly's father)

2003/02/24  Stew Benedict  <sbenedict@mandrakesoft.com>

	* modules.pm: dmasound_awacs -> dmasound_pmac

2003/02/24  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: final embedding cleanups
	  - clean up embedding; since socket automatically emit plug-added gtk+
	signal
	when plug is realize, it's just cleaner to centralize/consolidate the
	child
	  embedding in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR2', $::CCPID;"
	  - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
	  - clean up embedding; since socket get automatically destroyed on
	child exit
	  and since they emit plug-removed at that moment, it's just cleaner to
	  centralize/consolidate the child exit in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR1', $::CCPID;"
	  - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
	managment

	* standalone.pm: final embedding cleanups

	* standalone/harddrake2: fix size when embedded
	first attempt at making printerdrake to behave smoother when embedded in
	the
	mcc
	  - untabify
	  - hide devices which has no driver or whose driver is an url,
	a graphic server and consolidate the test by the way
	prefix devfs device name with "/dev/" too

	* standalone/drakfloppy: 
	  - fix packing (#1760)
	  - --expert command line option switch to expert mode by default
	  - only hide expert stuff if not in expert mode at startup

	* standalone/logdrake: 
	  - remove debug statements
	  - print an error message if we die on something other than wizcancel
	fix mail alert generation
	  - do not crash without any message in strict mode (wizcancel die
	miscatched)
	  - make the generated script be 'use strict' and perl_checker compliant
	simplify
	  - clean up embedding; since socket automatically emit plug-added gtk+
	signal
	  when plug is realize, it's just cleaner to centralize/consolidate the
	child
	  embedding in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR2', $::CCPID;"
	  - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw

	* standalone/printerdrake, standalone/drakconnect,
	standalone/scannerdrake: 
	  - clean up embedding; since socket automatically emit plug-added gtk+
	signal
	when plug is realize, it's just cleaner to centralize/consolidate the
	child
	  embedding in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR2', $::CCPID;"
	  - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw

	* standalone/drakfont: looks better like this
	  - clean up embedding; since socket get automatically destroyed on
	child exit
	and since they emit plug-removed at that moment, it's just cleaner to
	  centralize/consolidate the child exit in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR1', $::CCPID;"
	  - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
	managment

	* interactive/gtk.pm, printer/printerdrake.pm: first attempt at making
	printerdrake to behave smoother when embedded in the
	mcc

	* standalone/drakautoinst, my_gtk.pm, standalone/XFdrake,
	standalone/keyboarddrake: 
	  - clean up embedding; since socket automatically emit plug-added gtk+
	signal
	when plug is realize, it's just cleaner to centralize/consolidate the
	child
	  embedding in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR2', $::CCPID;"
	  - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
	  - clean up embedding; since socket get automatically destroyed on
	child exit
	  and since they emit plug-removed at that moment, it's just cleaner to
	  centralize/consolidate the child exit in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR1', $::CCPID;"
	  - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
	managment

	* drakxtools.spec: 9.1-6mdk
	more fixes
	9.1-5mdk
	  - clean up embedding; since socket get automatically destroyed on
	child exit
	and since they emit plug-removed at that moment, it's just cleaner to
	  centralize/consolidate the child exit in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR1', $::CCPID;"
	  - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
	managment

	* standalone/net_monitor: fix embedding (even if we don't embbed it, it's
	better)

	* bootlook.pm: perl_checker fix
	clean up:
	  - no more directly handle embeddign
	  - use ugtk2
	  - clean up embedding; since socket automatically emit plug-added gtk+
	signal
	when plug is realize, it's just cleaner to centralize/consolidate the
	child
	  embedding in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR2', $::CCPID;"
	  - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
	  - clean up embedding; since socket get automatically destroyed on
	child exit
	  and since they emit plug-removed at that moment, it's just cleaner to
	  centralize/consolidate the child exit in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR1', $::CCPID;"
	  - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
	managment

	* standalone/drakxservices, diskdrake/hd_gtk.pm, standalone/drakboot,
	standalone/drakTermServ: 
	  - clean up embedding; since socket get automatically destroyed on
	child exit
	and since they emit plug-removed at that moment, it's just cleaner to
	  centralize/consolidate the child exit in mcc
	  this of course, need a newer up-to-date mcc
	  what's more, it allows to remove the somewhat mythical
	  "$::isEmbedded and kill 'USR1', $::CCPID;"
	  - drakautoinst, drakxservices, keyboardrake: fix fscking embedding
	managment

	* standalone/drakperm: fix #1771
	level should not be editable

	* services.pm: in standalone mode, only display a service as enabled at
	boot time
	only if it's really enabled in current runlevel.
	what's more it's more coherent with other "only show current runlevel
	status" tools like ntsysv.

2003/02/24  Warly  <warly@mandrakesoft.com>

	* share/compssUsers: "Mail/Groupware/News" is now just "Mail"

2003/02/23  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/it.po: fixed several fuzzy lines

2003/02/23  Pixel  <pixel@mandrakesoft.com>

	* timezone.pm: use output_p() instead of output() for
	/etc/ntp/step-tickers

2003/02/23  Till Kamppeter  <till@mandrakesoft.com>

	* standalone/scannerdrake: Fixed wait message not embedded in drakconf.

	* printer/main.pm, printer/printerdrake.pm: Several bug fixes on
	printerdrake
	  - "BrowsePoll <IP>:<Port>" needs "Browsing On" in
	/etc/cups/cupsd.conf.
	  - If the same printer model is once on the parallel port and second on
	USB,
	there was a new USB queue created on every start of Printerdrake.
	  - Now CUPS is restarted whenever a new USB print queue is set up so
	that
	  CUPS can provide the model-related USB URI.
	  - Made sure that the default printer is defined and that it is an
	existing
	  queue so that during installation printerdrake does not show a line
	only
	  containing " (Default)" in the list of installed printers.
	  - Cleaned up data structure after automatic queue generation.

2003/02/23  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm (migrate_files): check return values (fixes bug
	#2170)

2003/02/23  Till Kamppeter  <till@mandrakesoft.com>

	* printer/printerdrake.pm, install_steps_interactive.pm: Fixed bug of
	printerdrake loosing the printer queue info during the
	preparation of the "Summary" window (only if there are local
	printers). No the printer queue entries should not be empty when
	clicking on "Configure" in the "Printer" part of the "Summary" window.

2003/02/22  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po, share/po/wa.po: updated pot file
	updated Estonian file

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
	share/po/ro.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: updated pot file

	* standalone/harddrake2: changed an English string

2003/02/22  Pixel  <pixel@mandrakesoft.com>

	* interactive/gtk.pm: in $::expert, use a SpinButton instead of HScale for
	type "range"
	(useful in diskdrake to enter the partition size directly)

	* share/rpmsrate: ensure galaxy-kde is installed together with kdebase

	* partition_table/raw.pm (test_for_bad_drives): don't open in write mode
	when testing

2003/02/22  siegel

	* share/po/de.po: updates

2003/02/21  alus

	* share/po/pl.po: updated

2003/02/21  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: no need to use regexp

	* drakxtools.spec: 4mdk

	* network/isdn.pm: $isdn->{is_light} wasn't set while using autodetection,
	rpm wasn't installed

	* network/tools.pm: oups... hu... nothing

	* network/netconnect.pm: oups... hu... nothing
	get back password input for adsl

2003/02/21  florin

	* network/netconnect.pm: add isdn check in get_net_device

2003/02/21  gbeauchesne

	* mdk-stage1/dietlibc/libcruft/dnscruft2.c: Better fix for DNS resolver
	bug

2003/02/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: embedded should segfault a bit less if I don't let the
	embedded
	window creation destroy the destroy handler
	workaround what seems to be a gtk bug (#1445)
	gtk seems to loop (and take 100% user cpu) when
	I change the pixbuf of a gtkcellrendererpixbuf
	in a treeview that is not currently displayed

2003/02/21  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	Estonian and Dutch files
	updated Danish file

	* help.pm: fixed a typo

2003/02/21  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm: when isEmbedded, use $::WizardTable to allow non pop_it when
	not visible

	* pixmaps/colors16.png: 
	  - make it the same range as colors.png and colors8.png
	  - it is a 64 colors image (note that colors8 is 16 colors)

	* services.pm (ask_standalone_gtk): ensure popup is not destroyed more
	than once

	* fsedit.pm: use test_for_bad_drives even after install (esp. to detect
	removed usb-storage
	devices still visible in /proc/scsi/scsi)

	* install_steps_interactive.pm: "Generate auto install floppy" and "Save
	packages selection" are now available in advanced

	* Xconfig/resolution_and_depth.pm: fix setting the image & colors in
	resolution chooser

2003/02/21  Till Kamppeter  <till@mandrakesoft.com>

	* printer/printerdrake.pm: 
	  - Fixed text of "Refresh printer list" button when list is empty.
	  - Let printerdrake clean up its datastructure after auto-installing
	printers in the beginning of the "Summary" installation step.

2003/02/20  florin

	* network/shorewall.pm: update 2 rules for the pptp dsl internet
	connection

2003/02/20  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: added wait message when building groups.

2003/02/20  gbeauchesne

	* mdk-stage1/dns.c: Fix mygethostbyaddr(), struct in is not a NULL
	terminated string.
	i.e. len has to be either sizeof(in.s_addr) or INADDRSZ.

	* mdk-stage1/dietlibc/libcruft/dnscruft2.c: Workaround DNS resolver bug on
	64-bit platforms.

	* mdk-stage1/dietlibc/syscalls.s/lstat64.S,
	mdk-stage1/dietlibc/libregex/rx.c, mdk-stage1/dietlibc/include/string.h,
	mdk-stage1/dietlibc/libugly/strftime.c,
	mdk-stage1/dietlibc/i386/ldexp.S, mdk-stage1/dietlibc/i386/sin.S,
	mdk-stage1/dietlibc/lib/strerror.c, mdk-stage1/dietlibc/dietstdio.h,
	mdk-stage1/dietlibc/include/sys/vfs.h,
	mdk-stage1/dietlibc/include/unistd.h, mdk-stage1/dietlibc/i386/mmap64.S,
	mdk-stage1/dietlibc/i386/vfork.S,
	mdk-stage1/dietlibc/libstdio/fdglue2.c,
	mdk-stage1/dietlibc/alpha/errlist.S,
	mdk-stage1/dietlibc/include/dirent.h, mdk-stage1/dietlibc/sparc/urem.S,
	mdk-stage1/dietlibc/libcruft/scandir64.c,
	mdk-stage1/dietlibc/include/assert.h, mdk-stage1/dietlibc/lib/__isnan.c,
	mdk-stage1/dietlibc/sparc/umul.S,
	mdk-stage1/dietlibc/i386/dyn_syscalls.S, mdk-stage1/dietlibc/CHANGES,
	mdk-stage1/dietlibc/libstdio/fflush.c,
	mdk-stage1/dietlibc/libcruft/sysconf.c,
	mdk-stage1/dietlibc/syscalls.s/pause.S,
	mdk-stage1/dietlibc/include/termios.h,
	mdk-stage1/dietlibc/syscalls.s/n_sigprocmask.S,
	mdk-stage1/dietlibc/diet.c, mdk-stage1/dietlibc/FAQ,
	mdk-stage1/dietlibc/syscalls.s/socketcall.S,
	mdk-stage1/dietlibc/include/sys/poll.h,
	mdk-stage1/dietlibc/sparc/Makefile.add,
	mdk-stage1/dietlibc/syscalls.s/n_sigsuspend.S,
	mdk-stage1/dietlibc/include/dlfcn.h,
	mdk-stage1/dietlibc/syscalls.s/umount2.S,
	mdk-stage1/dietlibc/include/sys/time.h,
	mdk-stage1/dietlibc/include/signal.h,
	mdk-stage1/dietlibc/libcruft/alphasort64.c,
	mdk-stage1/dietlibc/libshell/glob.c,
	mdk-stage1/dietlibc/syscalls.s/n_sigpending.S,
	mdk-stage1/dietlibc/include/stdarg-cruft.h,
	mdk-stage1/dietlibc/lib/signal.c, mdk-stage1/dietlibc/lib/__dtostr.c,
	mdk-stage1/dietlibc/lib/__isinf.c, mdk-stage1/dietlibc/syscalls.s/ipc.S,
	mdk-stage1/dietlibc/include/sys/types.h, mdk-stage1/dietlibc/Makefile,
	mdk-stage1/dietlibc/libstdio/fread.c,
	mdk-stage1/dietlibc/syscalls.s/n_sigaction.S,
	mdk-stage1/dietlibc/syscalls.s/fstat64.S,
	mdk-stage1/dietlibc/libugly/tzfile.c,
	mdk-stage1/dietlibc/lib/__v_printf.c,
	mdk-stage1/dietlibc/sparc/errlist.S, mdk-stage1/dietlibc/i386/memchr.S,
	mdk-stage1/dietlibc/syscalls.s/msync.S,
	mdk-stage1/dietlibc/i386/libm2.S, mdk-stage1/dietlibc/sparc/udiv.S,
	mdk-stage1/dietlibc/i386/cos.S, mdk-stage1/dietlibc/include/sys/ioctl.h,
	mdk-stage1/dietlibc/syscalls.s/errlist.S,
	mdk-stage1/dietlibc/syscalls.s/stat64.S,
	mdk-stage1/dietlibc/libugly/strndup.c: Merge with dietlibc 0.22-1mdk

2003/02/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dns.c: fix potential segfault thx to gwenole

	* install_steps_interactive.pm: oops i didn't understand the internals of
	wait_message hence breaking it. hopes that will fix.
	install the potentially needed locales country when user selected
	another country
	Gtk2::Label::set is deprecated

	* install_steps_gtk.pm, services.pm: Gtk2::Label::set is deprecated

	* share/logo-mandrake.png: update shadow
	Gtk2::Label::set is deprecated

	* interactive.pm: oops i didn't understand the internals of wait_message
	hence breaking it. hopes that will fix.
	Gtk2::Label::set is deprecated

	* install_gtk.pm, ugtk2.pm: change a bit position of main window and steps
	window
	in steps window, have titles in grey

	* fs.pm: thx rekcehc_lrep

	* any.pm: cows go møøh

2003/02/20  Pixel  <pixel@mandrakesoft.com>

	* network/shorewall.pm: fix florin: replace $prefix with $::prefix

	* help.pm: fix typos

	* any.pm: allow Cancel in setupBootloader__entries
	  - add "Force No APIC"
	  - rename add_append() to set_append()
	(since it can be used to remove a key)
	  - add remove_append_simple()

	* install_steps.pm, bootloader.pm: 
	  - add "Force No APIC"
	  - rename add_append() to set_append()
	(since it can be used to remove a key)
	  - add remove_append_simple()

	* network/network.pm: use detect_devices::pcmcia_probe() instead of
	detect_devices::probeall()
	  - read_resolv_conf() reads DOMAINNAME & DOMAINNAME2
	  - read_resolv_conf() reads /etc/resolv.conf by default
	  - read_resolv_conf_raw() created

	* install_steps_interactive.pm: help perl_checker find the N("...") the
	#-PO corresponds to

	* diskdrake/interactive.pm: have ask_okcancel instead of ask_warn on
	cdie's
	add catch_cdie's around fsedit::check_mntpoint and fsedit::add

	* install2.pm: {brltty}{device} is optional, default is ttyS0 or ttyS1 (?)

	* fsedit.pm: warn non-ascii chars in mount point (cf bug #1588)
	use cdie instead of die for warnings

	* Xconfig/card.pm: don't vivify @cards

	* install_steps_gtk.pm: fix $check_complete use in gtk summary

2003/02/20  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: perl_checker
	Finish gtk2 port.

2003/02/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakgw: don't use gtk+2 deprecated functions

	* bootlook.pm: 
	  - add --testing support
	  - fix #1923 (aka reuse consolided code instead of using deprecated
	code)
	  - minor cleanup
	  - skip comments while parsing /etc/lilo.conf
	don't use gtk+2 deprecated functions

	* drakxtools.spec: 9.1-3mdk

	* standalone/harddrake2: perl_checker fix
	  - prevent any l10n problem by having only one path string when both
	creating the menu and acessing a menu widget (aka translate menu
	  paths only once), which also nicely cut down the translators job.
	  - decrease diagnostics pragma verbosity (aka remove big fat warning
	  messages)

	* share/po/fr.po: further updates
	translate all countrie names
	update french translation

2003/02/20  alus

	* share/po/pl.po: typo fix

2003/02/20  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: dhcp fix

2003/02/20  gbeauchesne

	* mdk-stage1/dietlibc/dietfeatures.h: Disable back WANT_TZFILE_PARSER,
	0.22 fixed strftime() problem

	* share/rpmsrate: Better defaults for OOo

	* mdk-stage1/dns.c: Fix mygethostbyaddr(), struct in is not a NULL
	terminated string.
	i.e. len has to be either sizeof(in.s_addr) or INADDRSZ.

2003/02/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: install the potentially needed locales
	country when user selected
	another country
	Gtk2::Label::set is deprecated
	add a PO comment to try to keep buttons in the window..

	* share/themes-galaxy.rc: logo is aso white on blue

	* mdk-stage1/dns.c: fix potential segfault thx to gwenole

	* share/po/fr.po: some misc fixes
	translate iraq

	* fs.pm: thx rekcehc_lrep

	* install_steps_gtk.pm: Gtk2::Label::set is deprecated
	fix bold diplay of texts in adverts

	* share/logo-mandrake.png, services.pm, interactive.pm: Gtk2::Label::set
	is deprecated

	* ugtk2.pm: try to handle case with large fonts (CJK for example) ->
	branch on TextView
	when the box will be quite large

2003/02/20  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: corrected Russian
	translation

	* share/po/eu.po: changed encoding
	corrected Russian translation

2003/02/20  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm: don't let diskdrake detect ext3/reiserfs/jfs/xfs on a type
	0x7 partition
	  - simplify check_mntpoint
	  - fix checking mount point in Mount_point()

	* partition_table.pm: set {device_windobe} for 0x107 *and* 0x7 (since
	0x107 is not set correctly at this stage)
	(otherwise this causes mount points /mnt/win_ /mnt/win_1...)

	* diskdrake/interactive.pm: 
	  - simplify check_mntpoint
	  - fix checking mount point in Mount_point()

	* bootloader.pm: 
	  - add "Force No APIC"
	  - rename add_append() to set_append()
	(since it can be used to remove a key)
	  - add remove_append_simple()

	* install_steps_interactive.pm: help perl_checker find the N("...") the
	#-PO corresponds to

	* any.pm: 
	  - add "Force No APIC"
	  - rename add_append() to set_append()
	(since it can be used to remove a key)
	  - add remove_append_simple()
	add XF86Config and XF86Config-4 to report.bug
	no autologin by default if more than one users

	* Xconfig/card.pm: log manually chosen graphic card
	log why auto X config failed (needVideoRam)

	* ugtk2.pm: ensure {box_size} is set (to have less warnings)

	* standalone/diskdrake, interactive.pm: have less warnings when debugging

	* pkgs.pm: prefer myspell-en_US

	* install_steps.pm: 
	  - add "Force No APIC"
	  - rename add_append() to set_append()
	(since it can be used to remove a key)
	  - add remove_append_simple()
	usb is runned by rc.sysinit, and doesn't like "chkconfig --add" anymore

	* install2.pm: {brltty}{device} is optional, default is ttyS0 or ttyS1 (?)
	fix brltty support

	* interactive/gtk.pm: set a minimum size for Gtk2::HScale's (mainly used
	for resizing partitions)
	fix $ok_clicked when there is no ok button
	have less warnings when debugging

2003/02/20  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Partial gtk2 update - still needs work on
	TreeViews

2003/02/20  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: 
	  - Improved/fixed generation of printer list entries from
	manufacturer-supplied PostScript PPD files
	  - Removed forgotten debug mode
	  - Disabled wizard-mode temporarily

	* install_steps_interactive.pm: Made sure that printerdrake does not open
	its main window when called during the preparation of the "Summary"
	screen.

2003/02/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/harddrake2: 
	  - prevent any l10n problem by having only one path string when both
	creating the menu and acessing a menu widget (aka translate menu
	  paths only once), which also nicely cut down the translators job.
	  - decrease diagnostics pragma verbosity (aka remove big fat warning
	  messages)

	* drakxtools.spec: 9.1-2mdk

	* standalone/logdrake: fix #1829

	* share/po/fr.po: further updates
	translate all countrie names
	update french translation

2003/02/20  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm: ensure {box_size} is set (to have less warnings)

	* diskdrake/interactive.pm, fsedit.pm: 
	  - simplify check_mntpoint
	  - fix checking mount point in Mount_point()

	* interactive/gtk.pm, standalone/diskdrake, interactive.pm: have less
	warnings when debugging

	* Xconfig/card.pm: log why auto X config failed (needVideoRam)

2003/02/19  alus

	* share/po/pl.po: updated

2003/02/19  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: fixed if update fail to allow retry.
	added code to retry finding an update medium if something went wrong.
	add ugly probed type of network configuration.
	make sure network::network:: is used (just in case)
	add default configuration for network for summary.

	* install_steps.pm: add simplified menu for desktop mode.

	* pkgs.pm: added a missing sanity unwind.
	add sanity code on error when reading hdlist (this will avoid update
	medium
	being trashed if an error occurred during hdlist download and so ...)

	* crypto.pm: code slight reorganization.

2003/02/19  gbeauchesne

	* share/rpmsrate, share/compssUsers: 
	  - Add localized help files for OpenOffice.org
	  - Add new SPELLCHECK category for myspell spellchecking and
	hyphenators

	* mdk-stage1/Makefile: Enable all usual stage1-* BINS on x86-64. Add
	dietlibc to DIRS too for that
	arch. Fix rescue-gui build with $(DIET) wrapper.

	* mdk-stage1/mar/Makefile: Rearrange build so that only mar binary is
	built with glibc and other objects
	with either glibc or dietlibc.

2003/02/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* lang.pm: I'm stupid, we need to set UTF8 when there are two installed
	langs with different encodings, not just when the additional
	languages have different encoding than main one

	* loopback.pm, any.pm, diskdrake/interactive.pm, fs.pm, install_steps.pm,
	network/ethernet.pm, bootloader.pm, install_steps_interactive.pm,
	diskdrake/hd_gtk.pm, lvm.pm, fsedit.pm, install2.pm,
	network/drakfirewall.pm, raid.pm, install_interactive.pm,
	install_any.pm, partition_table/raw.pm, partition_table.pm: to
	workaround perl bug removing UTF8 flag when passing scalars to die's,
	pass
	a scalar-ref. but we need to de-ref, so it might break many things :).
	let's make a prayer :).

	* share/rpmsrate: add fonts-ttf-arabic when locale ar

	* ugtk2.pm: set the destroy handler after wizard creation, or the fact
	that
	wizard window will overwrite existing window will also destroy
	the destroy handler
	fix some segfaults caused by still calling destroy
	or other gtk functions after a destroy has been
	already done, triggered by the user clicking on
	the WM's "close this application" button (#1651)
	better comply to look of text like in Gtk1 (text inside a Frame)
	clean

2003/02/19  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po: updated Estonian file
	updated Uzbek file

	* share/rpmsrate: Improved the locale->font selection;
	added the tetex-latex-arab-doc package (previously was included in the
	main)

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/uz.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sq.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated Uzbek file

2003/02/19  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: don't log "warning: find_index failed in ..."

	* install_steps.pm, install_steps_interactive.pm: add some more
	formatError

	* raid.pm: mkraid wants all the md devices written in raidtab to exist,
	even if asking to
	create a specific md
	cleanup

	* install_steps_auto_install.pm: add a formatError

	* pixmaps/X.png: add it back (used by XFdrake)

	* install_any.pm: use formatError

	* install_interactive.pm: add some formatError's

	* fsedit.pm, detect_devices.pm: 
	  - cleanup & simplify
	  - handle raid on raid detection

	* interactive/gtk.pm: can't use $mainw->{ok}->clicked since $mainw->{ok}
	doesn't always exist, set
	{retval} and main_quit instead (the way it was done for double click, is
	this
	ok when pressing enter?)

	* diskdrake/interactive.pm: use formatError on $err
	use formatError($err) instead of $@
	  - allow raid on raid (raid 10)
	  - focus mount point in Mount_point
	  - focus type in Type

	* standalone/icons/ic82-tape-40.png, pixmaps/ic82-tape-40.png,
	pixmaps/ic82-systemeplus-40.png,
	standalone/icons/ic82-systemeplus-40.png: move some images from
	standalone to pixmaps to have them both during install and after install
	(images used by XFdrake)

	* install_steps_gtk.pm: indent more the entries in the summary (as asked
	by dadou)

2003/02/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakxtv: 
	  - perl_checker fixes
	  - indent-region, untabify
	  - comment workaround
	workaround a drakx bug which don't always add bttv to /etc/modules

	* standalone/scannerdrake: cleanup
	fix embedding

	* standalone/printerdrake: hide the icon when embedded to get more space
	fix embedding and clean it up

2003/02/19  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: make sure network::network:: is used (just
	in case)
	add default configuration for network for summary.

2003/02/19  gbeauchesne

	* share/rpmsrate, share/compssUsers: 
	  - Add localized help files for OpenOffice.org
	  - Add new SPELLCHECK category for myspell spellchecking and
	hyphenators

2003/02/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/de.po: fix typo (#1821)

	* share/compssUsers: provide a minimum desrciption for Scientific
	Workstation (#1814)

	* share/themes-galaxy.rc: try to choose sensible values for insensitive
	widgets

2003/02/19  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: don't log "warning: find_index failed in ..."

	* diskdrake/interactive.pm: 
	  - allow raid on raid (raid 10)
	  - focus mount point in Mount_point
	  - focus type in Type

	* raid.pm: mkraid wants all the md devices written in raidtab to exist,
	even if asking to
	create a specific md
	cleanup

	* detect_devices.pm, fsedit.pm: 
	  - cleanup & simplify
	  - handle raid on raid detection

2003/02/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakxtv: 
	  - perl_checker fixes
	  - indent-region, untabify
	  - comment workaround
	workaround a drakx bug which don't always add bttv to /etc/modules

2003/02/18  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* drakxtools.spec: new version

	* network/network.pm: Get back configuration settings from conf files
	(fix some kind of titi sucking)

2003/02/18  gbeauchesne

	* mdk-stage1/bzlib/Makefile, mdk-stage1/insmod-modutils/obj/Makefile,
	mdk-stage1/insmod-modutils/util/Makefile,
	mdk-stage1/insmod-modutils/Makefile, mdk-stage1/newt/Makefile,
	mdk-stage1/slang/Makefile, mdk-stage1/mar/Makefile: 
	  - Use minilibc on x86-64
	  - mar requires bzlib to be built beforehand, especially if building
	with
	dietlibc
	  - Nuke trickery to handle -DIET objects, everything is now built
	through
	  the diet driver, defined into $(DIET)

	* mdk-stage1/dietlibc/include/net/ethernet.h: Add <net/ethernet.h> and
	<linux/if_ether.h> so that dhcp.c can be compiled

	* mdk-stage1/dietlibc/dietfeatures.h: Define WANT_TZFILE_PARSER so that
	call to tset() in strftime() implementation
	can be resolved.
	Merge back small config file
	Merge in CVS dietlibc 0.21 for IA-64 and X86-64 support. However, drop
	the
	following architectures we currently don't support: arm, mips, mipsel,
	parisc,
	s390, sparc64.

	* mdk-stage1/dietlibc/syscalls.c/fchmod.c,
	mdk-stage1/dietlibc/librpc/authunix_prot.c,
	mdk-stage1/dietlibc/include/termio.h,
	mdk-stage1/dietlibc/i386/sendmsg.S,
	mdk-stage1/dietlibc/syscalls.c/syslog.c,
	mdk-stage1/dietlibc/syscalls.c/setpriority.c,
	mdk-stage1/dietlibc/lib/msgget.c, mdk-stage1/dietlibc/lib/longjmp.c,
	mdk-stage1/dietlibc/lib/strerror.c, mdk-stage1/dietlibc/dieticonv.h,
	mdk-stage1/dietlibc/i386/asin.S,
	mdk-stage1/dietlibc/libpthread/pthread_flockfile.c,
	mdk-stage1/dietlibc/libcruft/gethostbyname.c,
	mdk-stage1/dietlibc/alpha/__alarm.c,
	mdk-stage1/dietlibc/librpc/rpc_prot.c,
	mdk-stage1/dietlibc/libugly/getmntent.c,
	mdk-stage1/dietlibc/lib/iscntrl.c, mdk-stage1/dietlibc/include/stdint.h,
	mdk-stage1/dietlibc/i386/mmap64.S, mdk-stage1/dietlibc/lib/getservent.c,
	mdk-stage1/dietlibc/lib/atexit.c, mdk-stage1/dietlibc/i386/strcmp.S,
	mdk-stage1/dietlibc/syscalls.c/sigsuspend.c,
	mdk-stage1/dietlibc/include/stdlib.h,
	mdk-stage1/dietlibc/libugly/timezone.c,
	mdk-stage1/dietlibc/libpthread/pthread_cancel.c,
	mdk-stage1/dietlibc/libdl/dlopen.c,
	mdk-stage1/dietlibc/libugly/servent_buf.c,
	mdk-stage1/dietlibc/lib/isgraph.c, mdk-stage1/dietlibc/lib/closedir.c,
	mdk-stage1/dietlibc/libcruft/scan_ulong.c,
	mdk-stage1/dietlibc/include/sys/prctl.h,
	mdk-stage1/dietlibc/lib/alloc.c, mdk-stage1/dietlibc/lib/tcsetpgrp.c,
	mdk-stage1/dietlibc/syscalls.s/sigsuspend.S,
	mdk-stage1/dietlibc/i386/write12.S,
	mdk-stage1/dietlibc/syscalls.c/mount.c,
	mdk-stage1/dietlibc/syscalls.c/setdomainname.c,
	mdk-stage1/dietlibc/libstdio/fwrite.c,
	mdk-stage1/dietlibc/libdl/_dl_relocate.c, mdk-stage1/dietlibc/diet.c,
	mdk-stage1/dietlibc/include/libgen.h,
	mdk-stage1/dietlibc/i386/Makefile.add,
	mdk-stage1/dietlibc/syscalls.s/bdflush.S,
	mdk-stage1/dietlibc/i386/stpcpy.S, mdk-stage1/dietlibc/i386/ltostr.S,
	mdk-stage1/dietlibc/syscalls.c/lchown.c,
	mdk-stage1/dietlibc/libugly/utent.c, mdk-stage1/dietlibc/i386/connect.S,
	mdk-stage1/dietlibc/include/sys/mman.h,
	mdk-stage1/dietlibc/include/fcntl.h,
	mdk-stage1/dietlibc/libdl/_dl_rel.c, mdk-stage1/dietlibc/lib/memchr.c,
	mdk-stage1/dietlibc/lib/isupper.c,
	mdk-stage1/dietlibc/libugly/asprintf.c,
	mdk-stage1/dietlibc/libpthread/thread_key.c,
	mdk-stage1/dietlibc/lib/errlist.c,
	mdk-stage1/dietlibc/librpc/clnt_udp.c, mdk-stage1/dietlibc/i386/atan2.S,
	mdk-stage1/dietlibc/lib/recvmsg.c, mdk-stage1/dietlibc/lib/qsort.c,
	mdk-stage1/dietlibc/lib/sendto.c,
	mdk-stage1/dietlibc/alpha/__testandset.S,
	mdk-stage1/dietlibc/include/endian.h,
	mdk-stage1/dietlibc/libstdio/vscanf.c,
	mdk-stage1/dietlibc/lib/isxdigit.c, mdk-stage1/dietlibc/i386/atanh.S,
	mdk-stage1/dietlibc/syscalls.s/mlock.S,
	mdk-stage1/dietlibc/ppc/syscalls.h,
	mdk-stage1/dietlibc/libstdio/stdin.c,
	mdk-stage1/dietlibc/lib/__ptrace.c,
	mdk-stage1/dietlibc/libstdio/scanf.c,
	mdk-stage1/dietlibc/libdl/dlclose.c,
	mdk-stage1/dietlibc/librpc/svc_raw.c,
	mdk-stage1/dietlibc/include/arpa/nameser.h,
	mdk-stage1/dietlibc/dietuglyweaks.h,
	mdk-stage1/dietlibc/i386/copysign.S, mdk-stage1/dietlibc/i386/memcmp.S,
	mdk-stage1/dietlibc/i386/htons.S, mdk-stage1/dietlibc/lib/open64.c,
	mdk-stage1/dietlibc/include/stdarg-cruft.h,
	mdk-stage1/dietlibc/libugly/hasmntopt.c,
	mdk-stage1/dietlibc/dietdirent.h,
	mdk-stage1/dietlibc/syscalls.c/setsid.c,
	mdk-stage1/dietlibc/libpthread/pthread_testcancel.c,
	mdk-stage1/dietlibc/libshell/realpath.c,
	mdk-stage1/dietlibc/include/sys/file.h, mdk-stage1/dietlibc/lib/ftw.c,
	mdk-stage1/dietlibc/i386/fmod.S, mdk-stage1/dietlibc/lib/tcsetattr.c,
	mdk-stage1/dietlibc/i386/strrchr.S,
	mdk-stage1/dietlibc/libcruft/bzero.c,
	mdk-stage1/dietlibc/i386/recvfrom.S,
	mdk-stage1/dietlibc/libstdio/ftell.c,
	mdk-stage1/dietlibc/libstdio/fgets.c,
	mdk-stage1/dietlibc/include/rpc/netdb.h,
	mdk-stage1/dietlibc/libdl/_dl_load.c,
	mdk-stage1/dietlibc/syscalls.c/getresgid.c,
	mdk-stage1/dietlibc/syscalls.s/sendfile64.S,
	mdk-stage1/dietlibc/lib/sscanf.c, mdk-stage1/dietlibc/lib/creat.c,
	mdk-stage1/dietlibc/syscalls.c/sync.c,
	mdk-stage1/dietlibc/lib/getdomainname.c,
	mdk-stage1/dietlibc/syscalls.c/flock.c,
	mdk-stage1/dietlibc/libugly/iconv.c,
	mdk-stage1/dietlibc/libstdio/fclose.c,
	mdk-stage1/dietlibc/libugly/getprotobyname.c,
	mdk-stage1/dietlibc/libstdio/vprintf.c,
	mdk-stage1/dietlibc/include/sys/sparc-ioctl.h,
	mdk-stage1/dietlibc/libstdio/fdopen.c,
	mdk-stage1/dietlibc/lib/vsnprintf.c,
	mdk-stage1/dietlibc/libugly/dirfd.c,
	mdk-stage1/dietlibc/libpthread/pthread_cond_signal.c,
	mdk-stage1/dietlibc/include/pwd.h, mdk-stage1/dietlibc/i386/atoll.S,
	mdk-stage1/dietlibc/i386/accept.S, mdk-stage1/dietlibc/lib/ispunct.c,
	mdk-stage1/dietlibc/syscalls.s/getegid32.S,
	mdk-stage1/dietlibc/sparc/mmap.c,
	mdk-stage1/dietlibc/libpthread/pthread_attr_setschedparam.c,
	mdk-stage1/dietlibc/lib/snprintf.c,
	mdk-stage1/dietlibc/include/sys/fsuid.h,
	mdk-stage1/dietlibc/syscalls.s/ftruncate64.S,
	mdk-stage1/dietlibc/i386/getsockopt.S,
	mdk-stage1/dietlibc/syscalls.c/fchdir.c,
	mdk-stage1/dietlibc/i386/unified.S,
	mdk-stage1/dietlibc/libpthread/pthread_sigmask.c,
	mdk-stage1/dietlibc/libcruft/gethostbyaddr2_r.c,
	mdk-stage1/dietlibc/syscalls.c/signal.c,
	mdk-stage1/dietlibc/syscalls.c/munmap.c,
	mdk-stage1/dietlibc/lib/llabs.c, mdk-stage1/dietlibc/lib/msgrcv.c,
	mdk-stage1/dietlibc/i386/memccpy.S,
	mdk-stage1/dietlibc/libugly/getservbyname.c,
	mdk-stage1/dietlibc/include/write12.h, mdk-stage1/dietlibc/dietstdio.h,
	mdk-stage1/dietlibc/alpha/start.S, mdk-stage1/dietlibc/i386/bind.S,
	mdk-stage1/dietlibc/libpthread/pthread_key.c, mdk-stage1/dietlibc/BUGS,
	mdk-stage1/dietlibc/syscalls.c/chown.c,
	mdk-stage1/dietlibc/libcruft/setlocale.c,
	mdk-stage1/dietlibc/librpc/xdr_array.c,
	mdk-stage1/dietlibc/libcruft/__parse_1.c,
	mdk-stage1/dietlibc/lib/__isnan.c,
	mdk-stage1/dietlibc/include/sys/ptrace.h,
	mdk-stage1/dietlibc/syscalls.s/setfsuid.S,
	mdk-stage1/dietlibc/lib/tcflow.c,
	mdk-stage1/dietlibc/syscalls.s/geteuid32.S,
	mdk-stage1/dietlibc/lib/puts.c, mdk-stage1/dietlibc/CHANGES,
	mdk-stage1/dietlibc/lib/mkfifo.c,
	mdk-stage1/dietlibc/syscalls.c/utime.c,
	mdk-stage1/dietlibc/lib/memccmp.c,
	mdk-stage1/dietlibc/alpha/socketpair.S,
	mdk-stage1/dietlibc/libcruft/scandir.c,
	mdk-stage1/dietlibc/syscalls.s/getuid32.S,
	mdk-stage1/dietlibc/lib/tolower.c,
	mdk-stage1/dietlibc/include/sys/resource.h,
	mdk-stage1/dietlibc/syscalls.c/access.c,
	mdk-stage1/dietlibc/libcruft/getusershell.c,
	mdk-stage1/dietlibc/i386/floor.S,
	mdk-stage1/dietlibc/syscalls.s/alarm.S, mdk-stage1/dietlibc/lib/send.c,
	mdk-stage1/dietlibc/sparc/sigaction.c, mdk-stage1/dietlibc/lib/execvp.c,
	mdk-stage1/dietlibc/libpthread/pthread_join.c,
	mdk-stage1/dietlibc/alpha/__longjmp.S,
	mdk-stage1/dietlibc/libcruft/entlib.c,
	mdk-stage1/dietlibc/libcruft/tmpnam.c,
	mdk-stage1/dietlibc/syscalls.c/getppid.c,
	mdk-stage1/dietlibc/libdl/_dl_alloc.c,
	mdk-stage1/dietlibc/lib/setlinebuf.c,
	mdk-stage1/dietlibc/libstdio/fopen.c,
	mdk-stage1/dietlibc/librpc/get_myaddress.c,
	mdk-stage1/dietlibc/lib/bcd.c, mdk-stage1/dietlibc/include/signal.h,
	mdk-stage1/dietlibc/syscalls.c/fcntl.c,
	mdk-stage1/dietlibc/libugly/mktime.c,
	mdk-stage1/dietlibc/syscalls.s/fchown32.S,
	mdk-stage1/dietlibc/libcruft/getopt_long_only.c,
	mdk-stage1/dietlibc/syscalls.s/munlock.S,
	mdk-stage1/dietlibc/libcruft/getgrent.c,
	mdk-stage1/dietlibc/syscalls.c/poll.c,
	mdk-stage1/dietlibc/sparc/__longjmp.S,
	mdk-stage1/dietlibc/librpc/rpc_callmsg.c,
	mdk-stage1/dietlibc/include/pthread.h,
	mdk-stage1/dietlibc/libpthread/pthread_key_delete.c,
	mdk-stage1/dietlibc/include/sys/socket.h,
	mdk-stage1/dietlibc/libpthread/pthread_mutexattr_setkind_np.c,
	mdk-stage1/dietlibc/ppc/clone.S, mdk-stage1/dietlibc/i386/clone.S,
	mdk-stage1/dietlibc/libcruft/pwbuf.c,
	mdk-stage1/dietlibc/syscalls.c/getrlimit.c,
	mdk-stage1/dietlibc/i386/getpeername.S,
	mdk-stage1/dietlibc/syscalls.c/setresuid.c,
	mdk-stage1/dietlibc/syscalls.c/clone.c,
	mdk-stage1/dietlibc/i386/mcount.S, mdk-stage1/dietlibc/lib/__dtostr.c,
	mdk-stage1/dietlibc/syscalls.s/nice.S,
	mdk-stage1/dietlibc/libcruft/grent.c, mdk-stage1/dietlibc/i386/ceil.S,
	mdk-stage1/dietlibc/syscalls.c/vhangup.c,
	mdk-stage1/dietlibc/include/sys/cdefs.h,
	mdk-stage1/dietlibc/libpthread/pthread_sys_fdatasync.c,
	mdk-stage1/dietlibc/syscalls.c/getuid.c,
	mdk-stage1/dietlibc/syscalls.s/getdents64.S,
	mdk-stage1/dietlibc/librpc/svc_run.c,
	mdk-stage1/dietlibc/libpthread/pthread_fgetc.c,
	mdk-stage1/dietlibc/lib/adjtime.c,
	mdk-stage1/dietlibc/syscalls.c/truncate.c,
	mdk-stage1/dietlibc/include/net/if_ether.h,
	mdk-stage1/dietlibc/lib/isblank.c, mdk-stage1/dietlibc/lib/strtof.c,
	mdk-stage1/dietlibc/syscalls.s/time.S,
	mdk-stage1/dietlibc/libugly/gmtime_r.c,
	mdk-stage1/dietlibc/include/sys/shm.h,
	mdk-stage1/dietlibc/include/sys/kd.h,
	mdk-stage1/dietlibc/lib/errlistu.c, mdk-stage1/dietlibc/i386/expm1.S,
	mdk-stage1/dietlibc/lib/nop.c, mdk-stage1/dietlibc/syscalls.c/rename.c,
	mdk-stage1/dietlibc/libstdio/vfscanf.c,
	mdk-stage1/dietlibc/libpthread/pthread_cond_timedwait.c,
	mdk-stage1/dietlibc/librpc/bindresvport.c,
	mdk-stage1/dietlibc/i386/cos.S, mdk-stage1/dietlibc/libstdio/fdglue.c,
	mdk-stage1/dietlibc/libcruft/gethostbyname_r.c,
	mdk-stage1/dietlibc/lib/lseek64.c,
	mdk-stage1/dietlibc/libdl/_dl_search.c,
	mdk-stage1/dietlibc/syscalls.c/mknod.c, mdk-stage1/dietlibc/i386/fabs.S,
	mdk-stage1/dietlibc/lib/ttyname.c,
	mdk-stage1/dietlibc/syscalls.s/signal.S,
	mdk-stage1/dietlibc/syscalls.s/create_module.S,
	mdk-stage1/dietlibc/alpha/syscalls.h, mdk-stage1/dietlibc/i386/htonl.S,
	mdk-stage1/dietlibc/libcruft/getspnam.c,
	mdk-stage1/dietlibc/lib/strncat.c, mdk-stage1/dietlibc/i386/log10.S,
	mdk-stage1/dietlibc/libugly/strsignal.c,
	mdk-stage1/dietlibc/librpc/clnt_tcp.c, mdk-stage1/dietlibc/i386/pow.S,
	mdk-stage1/dietlibc/libcruft/initgroups.c,
	mdk-stage1/dietlibc/lib/sendmsg.c, mdk-stage1/dietlibc/lib/write12.c,
	mdk-stage1/dietlibc/lib/cfsetospeed.c,
	mdk-stage1/dietlibc/include/sys/stat.h,
	mdk-stage1/dietlibc/libcruft/gethostbyaddr.c,
	mdk-stage1/dietlibc/lib/__stime.c, mdk-stage1/dietlibc/i386/poly.S,
	mdk-stage1/dietlibc/librpc/svc_udp.c,
	mdk-stage1/dietlibc/libugly/netent.c,
	mdk-stage1/dietlibc/libcruft/gethostbyaddr_r.c,
	mdk-stage1/dietlibc/syscalls.c/setpgid.c,
	mdk-stage1/dietlibc/libugly/localtime_r.c,
	mdk-stage1/dietlibc/libcruft/localeconv.c,
	mdk-stage1/dietlibc/alpha/n_sigprocmask.S,
	mdk-stage1/dietlibc/syscalls.c/gettimeofday.c,
	mdk-stage1/dietlibc/libshell/fnmatch.c,
	mdk-stage1/dietlibc/syscalls.c/mkdir.c,
	mdk-stage1/dietlibc/syscalls.s/setresgid.S,
	mdk-stage1/dietlibc/libstdio/feof.c,
	mdk-stage1/dietlibc/libcruft/seteuid.c,
	mdk-stage1/dietlibc/libstdio/puts.c,
	mdk-stage1/dietlibc/syscalls.c/sigpending.c,
	mdk-stage1/dietlibc/include/netdb.h, mdk-stage1/dietlibc/i386/memset.S,
	mdk-stage1/dietlibc/syscalls.s/delete_module.S,
	mdk-stage1/dietlibc/lib/semop.c, mdk-stage1/dietlibc/include/dirent.h,
	mdk-stage1/dietlibc/syscalls.c/getpid.c,
	mdk-stage1/dietlibc/libpthread/thread_internal.h,
	mdk-stage1/dietlibc/libugly/ftime.c,
	mdk-stage1/dietlibc/include/libintl.h, mdk-stage1/dietlibc/lib/rand_r.c,
	mdk-stage1/dietlibc/libcruft/setegid.c,
	mdk-stage1/dietlibc/syscalls.c/dup.c,
	mdk-stage1/dietlibc/syscalls.c/fsync.c,
	mdk-stage1/dietlibc/include/shadow.h,
	mdk-stage1/dietlibc/include/sys/select.h, mdk-stage1/dietlibc/PORTING,
	mdk-stage1/dietlibc/i386/ilogb.S, mdk-stage1/dietlibc/lib/strsep.c,
	mdk-stage1/dietlibc/lib/opendir.c,
	mdk-stage1/dietlibc/libpthread/pthread_equal.c,
	mdk-stage1/dietlibc/libugly/system.c,
	mdk-stage1/dietlibc/libpthread/pthread_getschedparam.c,
	mdk-stage1/dietlibc/libcrypt/md5.c, mdk-stage1/dietlibc/i386/cbrt.S,
	mdk-stage1/dietlibc/syscalls.s/ptrace.S,
	mdk-stage1/dietlibc/libcruft/spent.c, mdk-stage1/dietlibc/i386/start.S,
	mdk-stage1/dietlibc/syscalls.s/pivot_root.S,
	mdk-stage1/dietlibc/include/rpc/auth_unix.h,
	mdk-stage1/dietlibc/libdl/elf_hash.h,
	mdk-stage1/dietlibc/include/dlfcn.h,
	mdk-stage1/dietlibc/syscalls.c/nanosleep.c,
	mdk-stage1/dietlibc/lib/usleep.c, mdk-stage1/dietlibc/include/md5.h,
	mdk-stage1/dietlibc/lib/strchr.c, mdk-stage1/dietlibc/lib/msgsnd.c,
	mdk-stage1/dietlibc/include/cpio.h,
	mdk-stage1/dietlibc/syscalls.s/chown32.S,
	mdk-stage1/dietlibc/ppc/unified.S,
	mdk-stage1/dietlibc/libugly/gai_strerror.c,
	mdk-stage1/dietlibc/syscalls.c/sethostname.c,
	mdk-stage1/dietlibc/syscalls.c/geteuid.c,
	mdk-stage1/dietlibc/syscalls.s/sigprocmask.S,
	mdk-stage1/dietlibc/i386/rint.S, mdk-stage1/dietlibc/libugly/ptsname.c,
	mdk-stage1/dietlibc/lib/ipv6constants.c,
	mdk-stage1/dietlibc/syscalls.s/waitpid.S,
	mdk-stage1/dietlibc/libstdio/fdprintf.c,
	mdk-stage1/dietlibc/lib/sigpending.c,
	mdk-stage1/dietlibc/libpthread/pthread_sys_fcntl.c,
	mdk-stage1/dietlibc/lib/memset.c, mdk-stage1/dietlibc/lib/__fstat64.c,
	mdk-stage1/dietlibc/include/sched.h,
	mdk-stage1/dietlibc/i386/syscalls.h, mdk-stage1/dietlibc/dirstream.h,
	mdk-stage1/dietlibc/i386/socketpair.S, mdk-stage1/dietlibc/CAVEAT,
	mdk-stage1/dietlibc/include/float.h,
	mdk-stage1/dietlibc/libpthread/pthread_attr_setschedpolicy.c,
	mdk-stage1/dietlibc/libstdio/fscanf.c,
	mdk-stage1/dietlibc/syscalls.c/setitimer.c,
	mdk-stage1/dietlibc/libpthread/pthread_sys_alloc.c,
	mdk-stage1/dietlibc/i386/hypot.S,
	mdk-stage1/dietlibc/libpthread/Makefile,
	mdk-stage1/dietlibc/lib/pread.c, mdk-stage1/dietlibc/lib/accept.c,
	mdk-stage1/dietlibc/i386/mmap.c,
	mdk-stage1/dietlibc/syscalls.c/setresgid.c,
	mdk-stage1/dietlibc/sparc/setjmp.S, mdk-stage1/dietlibc/.cvsignore,
	mdk-stage1/dietlibc/librpc/pmap_rmt.c,
	mdk-stage1/dietlibc/libpthread/pthread_attr_setscope.c,
	mdk-stage1/dietlibc/lib/sigtimedwait.c, mdk-stage1/dietlibc/i386/cosh.S,
	mdk-stage1/dietlibc/include/sys/ioctl.h,
	mdk-stage1/dietlibc/syscalls.s/rt_sigpending.S,
	mdk-stage1/dietlibc/lib/__ltostr.c,
	mdk-stage1/dietlibc/include/sys/ppc-ioctl.h,
	mdk-stage1/dietlibc/syscalls.s/ptrace.s,
	mdk-stage1/dietlibc/libpthread/pthread_setcanceltype.c,
	mdk-stage1/dietlibc/lib/exec_lib.c,
	mdk-stage1/dietlibc/libstdio/vfdprintf.c,
	mdk-stage1/dietlibc/lib/strlen.c, mdk-stage1/dietlibc/libregex/rx.c,
	mdk-stage1/dietlibc/liblatin1/latin1-islower.c,
	mdk-stage1/dietlibc/lib/memmem.c, mdk-stage1/dietlibc/include/string.h,
	mdk-stage1/dietlibc/lib/raise.c, mdk-stage1/dietlibc/i386/usleep.S,
	mdk-stage1/dietlibc/include/iconv.h,
	mdk-stage1/dietlibc/libpthread/pthread_setspecific.c,
	mdk-stage1/dietlibc/lib/semget.c,
	mdk-stage1/dietlibc/syscalls.s/setregid32.S,
	mdk-stage1/dietlibc/syscalls.c/swapoff.c,
	mdk-stage1/dietlibc/libpthread/pthread_atfork.c,
	mdk-stage1/dietlibc/libcruft/tempnam.c,
	mdk-stage1/dietlibc/libcruft/inet_aton.c,
	mdk-stage1/dietlibc/lib/sigismember.c, mdk-stage1/dietlibc/librpc/svc.c,
	mdk-stage1/dietlibc/lib/set_errno.c,
	mdk-stage1/dietlibc/syscalls.c/execve.c,
	mdk-stage1/dietlibc/lib/sigemptyset.c,
	mdk-stage1/dietlibc/include/sys/vfs.h, mdk-stage1/dietlibc/SECURITY,
	mdk-stage1/dietlibc/include/sys/timex.h,
	mdk-stage1/dietlibc/libugly/getprotoent.c,
	mdk-stage1/dietlibc/lib/__stat64.c, mdk-stage1/dietlibc/include/elf.h,
	mdk-stage1/dietlibc/lib/strncmp.c, mdk-stage1/dietlibc/include/assert.h,
	mdk-stage1/dietlibc/lib/gethostname.c,
	mdk-stage1/dietlibc/i386/dyn_syscalls.S,
	mdk-stage1/dietlibc/lib/vsscanf.c, mdk-stage1/dietlibc/lib/cfmakeraw.c,
	mdk-stage1/dietlibc/THANKS, mdk-stage1/dietlibc/libcruft/getgrgid_r.c,
	mdk-stage1/dietlibc/lib/connect.c,
	mdk-stage1/dietlibc/libcruft/sysconf.c,
	mdk-stage1/dietlibc/lib/perror.c, mdk-stage1/dietlibc/include/locale.h,
	mdk-stage1/dietlibc/syscalls.c/getresuid.c,
	mdk-stage1/dietlibc/libpthread/pthread_attr_init.c,
	mdk-stage1/dietlibc/syscalls.c/sigaction.c,
	mdk-stage1/dietlibc/include/tar.h, mdk-stage1/dietlibc/lib/execl.c,
	mdk-stage1/dietlibc/include/time.h,
	mdk-stage1/dietlibc/libstdio/setvbuf.c,
	mdk-stage1/dietlibc/lib/tcflush.c, mdk-stage1/dietlibc/lib/strtold.c,
	mdk-stage1/dietlibc/libugly/getprotoent_r.c,
	mdk-stage1/dietlibc/syscalls.s/setfsgid32.S,
	mdk-stage1/dietlibc/syscalls.s/prctl.S,
	mdk-stage1/dietlibc/lib/strncasecmp.c,
	mdk-stage1/dietlibc/syscalls.c/close.c,
	mdk-stage1/dietlibc/libpthread/README,
	mdk-stage1/dietlibc/lib/__lltostr.c, mdk-stage1/dietlibc/lib/vprintf.c,
	mdk-stage1/dietlibc/i386/acos.S,
	mdk-stage1/dietlibc/libpthread/pthread_funlockfile.c,
	mdk-stage1/dietlibc/libcruft/getlogin.c,
	mdk-stage1/dietlibc/libpthread/thread_internal.c,
	mdk-stage1/dietlibc/libpthread/pthread_key_create.c,
	mdk-stage1/dietlibc/libcruft/herror.c,
	mdk-stage1/dietlibc/syscalls.c/dup2.c,
	mdk-stage1/dietlibc/lib/__lstat64.c, mdk-stage1/dietlibc/lib/strtod.c,
	mdk-stage1/dietlibc/lib/strcpy.c, mdk-stage1/dietlibc/libdl/_dl_open.c,
	mdk-stage1/dietlibc/libcruft/bcopy.c,
	mdk-stage1/dietlibc/include/stdio.h,
	mdk-stage1/dietlibc/syscalls.c/chroot.c,
	mdk-stage1/dietlibc/libcruft/__parse_ws.c,
	mdk-stage1/dietlibc/include/fnmatch.h,
	mdk-stage1/dietlibc/alpha/sigprocmask.S,
	mdk-stage1/dietlibc/libcruft/res_mkquery.c,
	mdk-stage1/dietlibc/include/sys/timeb.h,
	mdk-stage1/dietlibc/i386/sendto.S,
	mdk-stage1/dietlibc/libugly/iconv_close.c,
	mdk-stage1/dietlibc/i386/sleep.S,
	mdk-stage1/dietlibc/libugly/time_table_spd.c,
	mdk-stage1/dietlibc/lib/sigdelset.c, mdk-stage1/dietlibc/libdl/dlsym.c,
	mdk-stage1/dietlibc/libstdio/stderr.c,
	mdk-stage1/dietlibc/libdl/dlerror.c,
	mdk-stage1/dietlibc/lib/setsockopt.c,
	mdk-stage1/dietlibc/i386/shutdown.S,
	mdk-stage1/dietlibc/libcruft/mkstemp.c,
	mdk-stage1/dietlibc/libstdio/ungetc.c,
	mdk-stage1/dietlibc/syscalls.c/fork.c,
	mdk-stage1/dietlibc/libpthread/pthread_setcancelstate.c,
	mdk-stage1/dietlibc/i386/sinh.S,
	mdk-stage1/dietlibc/libcruft/inet_ntoa.c,
	mdk-stage1/dietlibc/libugly/tzfile.c,
	mdk-stage1/dietlibc/syscalls.c/getgroups.c,
	mdk-stage1/dietlibc/i386/memchr.S,
	mdk-stage1/dietlibc/libugly/getservent.c, mdk-stage1/dietlibc/diet.1,
	mdk-stage1/dietlibc/include/rpc/xdr.h,
	mdk-stage1/dietlibc/libugly/putpwent.c,
	mdk-stage1/dietlibc/libdl/_dl_rel.h,
	mdk-stage1/dietlibc/libcruft/getspent_r.c,
	mdk-stage1/dietlibc/include/rpc/key_prot.h,
	mdk-stage1/dietlibc/syscalls.c/setgid.c,
	mdk-stage1/dietlibc/lib/vsprintf.c, mdk-stage1/dietlibc/lib/execle.c,
	mdk-stage1/dietlibc/i386/__ten.S, mdk-stage1/dietlibc/include/grp.h,
	mdk-stage1/dietlibc/lib/random.c, mdk-stage1/dietlibc/i386/send.S,
	mdk-stage1/dietlibc/include/sys/s390-ioctl.h,
	mdk-stage1/dietlibc/libcruft/killpg.c,
	mdk-stage1/dietlibc/sparc/start.S,
	mdk-stage1/dietlibc/syscalls.s/setresuid.S,
	mdk-stage1/dietlibc/libcruft/getpwnam.c,
	mdk-stage1/dietlibc/lib/isprint.c, mdk-stage1/dietlibc/i386/recvmsg.S,
	mdk-stage1/dietlibc/syscalls.s/rt_sigqueueinfo.S,
	mdk-stage1/dietlibc/libstdio/fsetpos.c,
	mdk-stage1/dietlibc/i386/md5asm.S, mdk-stage1/dietlibc/i386/isleap.S,
	mdk-stage1/dietlibc/i386/PIC.h,
	mdk-stage1/dietlibc/libpthread/pthread_spinlock.c,
	mdk-stage1/dietlibc/syscalls.c/pipe.c,
	mdk-stage1/dietlibc/syscalls.c/ioctl.c,
	mdk-stage1/dietlibc/syscalls.c/fchown.c,
	mdk-stage1/dietlibc/i386/memcpy.S,
	mdk-stage1/dietlibc/syscalls.s/rt_sigtimedwait.S,
	mdk-stage1/dietlibc/libcruft/__parse.c,
	mdk-stage1/dietlibc/lib/__getcwd.c, mdk-stage1/dietlibc/lib/isdigit.c,
	mdk-stage1/dietlibc/include/sys/un.h,
	mdk-stage1/dietlibc/libpthread/pthread_mutex_lock.c,
	mdk-stage1/dietlibc/syscalls.s/sigaction.S,
	mdk-stage1/dietlibc/libcruft/getspnam_r.c,
	mdk-stage1/dietlibc/lib/semctl.c, mdk-stage1/dietlibc/lib/tcsendbreak.c,
	mdk-stage1/dietlibc/include/rpc/rpc.h,
	mdk-stage1/dietlibc/syscalls.s/getgid32.S,
	mdk-stage1/dietlibc/libpthread/pthread_fdglue2.c,
	mdk-stage1/dietlibc/syscalls.c/waitpid.c,
	mdk-stage1/dietlibc/alpha/unified.S, mdk-stage1/dietlibc/lib/strstr.c,
	mdk-stage1/dietlibc/syscalls.c/socketcall.c,
	mdk-stage1/dietlibc/include/rpc/pmap_rmt.h,
	mdk-stage1/dietlibc/include/sys/io.h, mdk-stage1/dietlibc/findcflags.sh,
	mdk-stage1/dietlibc/libcruft/inet_pton.c,
	mdk-stage1/dietlibc/i386/tanh.S, mdk-stage1/dietlibc/lib/getsockname.c,
	mdk-stage1/dietlibc/libugly/grantpt.c,
	mdk-stage1/dietlibc/i386/strcat.S,
	mdk-stage1/dietlibc/lib/siginterrupt.c,
	mdk-stage1/dietlibc/libcruft/dnscruft3.c,
	mdk-stage1/dietlibc/syscalls.c/link.c,
	mdk-stage1/dietlibc/libugly/difftime.c,
	mdk-stage1/dietlibc/include/utmp.h,
	mdk-stage1/dietlibc/libstdio/ftello.c,
	mdk-stage1/dietlibc/syscalls.c/sigprocmask.c,
	mdk-stage1/dietlibc/lib/rand48.c, mdk-stage1/dietlibc/lib/sleep.c,
	mdk-stage1/dietlibc/i386/__testandset.S,
	mdk-stage1/dietlibc/syscalls.s/setresgid32.S,
	mdk-stage1/dietlibc/libugly/asctime_r.c,
	mdk-stage1/dietlibc/syscalls.s/lchown32.S,
	mdk-stage1/dietlibc/libcruft/entlib.h,
	mdk-stage1/dietlibc/lib/sprintf.c,
	mdk-stage1/dietlibc/libcruft/dnscruft.c,
	mdk-stage1/dietlibc/syscalls.c/setgroups.c,
	mdk-stage1/dietlibc/libugly/getservbyname_r.c,
	mdk-stage1/dietlibc/syscalls.s/sigpending.S,
	mdk-stage1/dietlibc/lib/tcdrain.c, mdk-stage1/dietlibc/libcruft/clock.c,
	mdk-stage1/dietlibc/include/netinet/in.h,
	mdk-stage1/dietlibc/syscalls.s/settimeofday.S,
	mdk-stage1/dietlibc/syscalls.s/sendfile.S,
	mdk-stage1/dietlibc/i386/socket.S,
	mdk-stage1/dietlibc/libugly/protoent_buf.c,
	mdk-stage1/dietlibc/include/sys/time.h,
	mdk-stage1/dietlibc/lib/errno_location.c,
	mdk-stage1/dietlibc/include/sys/msg.h,
	mdk-stage1/dietlibc/liblatin1/latin1-isprint.c,
	mdk-stage1/dietlibc/libstdio/fgetpos.c,
	mdk-stage1/dietlibc/libshell/glob.c,
	mdk-stage1/dietlibc/libugly/getprotobynumber_r.c,
	mdk-stage1/dietlibc/sparc/strlen.S,
	mdk-stage1/dietlibc/include/rpc/svc.h,
	mdk-stage1/dietlibc/include/netinet/ip.h,
	mdk-stage1/dietlibc/include/sys/gmon.h,
	mdk-stage1/dietlibc/syscalls.c/wait4.c,
	mdk-stage1/dietlibc/libpthread/pthread_cond_broadcast.c,
	mdk-stage1/dietlibc/i386/acosh.S, mdk-stage1/dietlibc/lib/sigprocmask.c,
	mdk-stage1/dietlibc/lib/_brk.c,
	mdk-stage1/dietlibc/syscalls.c/getegid.c,
	mdk-stage1/dietlibc/syscalls.c/uname.c,
	mdk-stage1/dietlibc/syscalls.s/mmap2.S,
	mdk-stage1/dietlibc/libcruft/getpagesize.c,
	mdk-stage1/dietlibc/sparc/unified.S,
	mdk-stage1/dietlibc/libcruft/dn_expand.c,
	mdk-stage1/dietlibc/i386/sqrt.S, mdk-stage1/dietlibc/lib/binshstr.c,
	mdk-stage1/dietlibc/syscalls.s/exit.S, mdk-stage1/dietlibc/lib/execlp.c,
	mdk-stage1/dietlibc/libstdio/fread.c,
	mdk-stage1/dietlibc/include/netinet/udp.h, mdk-stage1/dietlibc/start.h,
	mdk-stage1/dietlibc/lib/sys_siglist.c,
	mdk-stage1/dietlibc/i386/strlen.S,
	mdk-stage1/dietlibc/syscalls.c/ftruncate.c,
	mdk-stage1/dietlibc/librpc/xdr.c, mdk-stage1/dietlibc/lib/__xmknod.c,
	mdk-stage1/dietlibc/syscalls.s/pwrite.S,
	mdk-stage1/dietlibc/libcruft/getgrnam.c,
	mdk-stage1/dietlibc/lib/strtok.c,
	mdk-stage1/dietlibc/syscalls.s/setreuid32.S,
	mdk-stage1/dietlibc/lib/recv.c, mdk-stage1/dietlibc/lib/reboot.c,
	mdk-stage1/dietlibc/syscalls.c/write.c,
	mdk-stage1/dietlibc/libugly/getprotobyname_r.c,
	mdk-stage1/dietlibc/syscalls.s/errlist.S,
	mdk-stage1/dietlibc/librpc/svc_auth_unix.c,
	mdk-stage1/dietlibc/libshell/dirname.c,
	mdk-stage1/dietlibc/libcruft/res_search.c,
	mdk-stage1/dietlibc/i386/getenv.S, mdk-stage1/dietlibc/i386/exp10.S,
	mdk-stage1/dietlibc/include/errno.h,
	mdk-stage1/dietlibc/libdl/_dl_queue.c,
	mdk-stage1/dietlibc/include/sys/uio.h,
	mdk-stage1/dietlibc/lib/socketpair.c,
	mdk-stage1/dietlibc/librpc/pmap_getport.c,
	mdk-stage1/dietlibc/dyn_start.c, mdk-stage1/dietlibc/i386/ldexp.S,
	mdk-stage1/dietlibc/dietlibm.h, mdk-stage1/dietlibc/libstdio/printf.c,
	mdk-stage1/dietlibc/libstdio/ftello64.c,
	mdk-stage1/dietlibc/libpthread/pthread_fputc.c,
	mdk-stage1/dietlibc/syscalls.c/exit.c,
	mdk-stage1/dietlibc/include/sys/times.h,
	mdk-stage1/dietlibc/include/unistd.h, mdk-stage1/dietlibc/lib/isascii.c,
	mdk-stage1/dietlibc/syscalls.c/chdir.c,
	mdk-stage1/dietlibc/libugly/daemon.c,
	mdk-stage1/dietlibc/lib/sigaddset.c,
	mdk-stage1/dietlibc/syscalls.c/reboot.c,
	mdk-stage1/dietlibc/lib/sigjmp.c, mdk-stage1/dietlibc/i386/strchr.S,
	mdk-stage1/dietlibc/syscalls.c/getdents.c,
	mdk-stage1/dietlibc/libstdio/fdglue2.c,
	mdk-stage1/dietlibc/i386/strcpy.S, mdk-stage1/dietlibc/lib/getopt.c,
	mdk-stage1/dietlibc/libcruft/getgrent_r.c,
	mdk-stage1/dietlibc/librpc/xdr_reference.c,
	mdk-stage1/dietlibc/include/netinet/tcp.h,
	mdk-stage1/dietlibc/lib/pwrite64.c,
	mdk-stage1/dietlibc/syscalls.c/kill.c,
	mdk-stage1/dietlibc/i386/__longjmp.S, mdk-stage1/dietlibc/TODO,
	mdk-stage1/dietlibc/include/sys/syslog.h,
	mdk-stage1/dietlibc/libcruft/res_query.c,
	mdk-stage1/dietlibc/lib/bind.c,
	mdk-stage1/dietlibc/lib/if_indextoname.c,
	mdk-stage1/dietlibc/syscalls.c/readlink.c,
	mdk-stage1/dietlibc/libcrypt/crypt.c,
	mdk-stage1/dietlibc/libugly/unlockpt.c,
	mdk-stage1/dietlibc/libstdio/fflush.c,
	mdk-stage1/dietlibc/libdl/Makefile,
	mdk-stage1/dietlibc/include/rpc/pmap_prot.h,
	mdk-stage1/dietlibc/libugly/popen.c,
	mdk-stage1/dietlibc/libstdio/fputc_unlocked.c,
	mdk-stage1/dietlibc/libpthread/pthread_mutex_trylock.c,
	mdk-stage1/dietlibc/syscalls.c/swapon.c,
	mdk-stage1/dietlibc/lib/alarm.c, mdk-stage1/dietlibc/ppc/mmap.c,
	mdk-stage1/dietlibc/librpc/svc_simple.c,
	mdk-stage1/dietlibc/libcruft/sysconf_cpus.c,
	mdk-stage1/dietlibc/include/sys/poll.h,
	mdk-stage1/dietlibc/libugly/freeaddrinfo.c,
	mdk-stage1/dietlibc/libcruft/getpwuid_r.c,
	mdk-stage1/dietlibc/syscalls.c/_llseek.c,
	mdk-stage1/dietlibc/lib/lockf.c,
	mdk-stage1/dietlibc/librpc/getrpcport.c,
	mdk-stage1/dietlibc/lib/htons.c, mdk-stage1/dietlibc/librpc/auth_none.c,
	mdk-stage1/dietlibc/syscalls.c/getpgid.c,
	mdk-stage1/dietlibc/libcruft/hstrerror.c,
	mdk-stage1/dietlibc/lib/shmdt.c, mdk-stage1/dietlibc/libcruft/grbuf.c,
	mdk-stage1/dietlibc/lib/pread64.c,
	mdk-stage1/dietlibc/libpthread/pthread_attr_setinheritsched.c,
	mdk-stage1/dietlibc/i386/setjmp.S,
	mdk-stage1/dietlibc/syscalls.s/ioperm.S,
	mdk-stage1/dietlibc/lib/getenv.c,
	mdk-stage1/dietlibc/include/features.h,
	mdk-stage1/dietlibc/lib/strtoll.c, mdk-stage1/dietlibc/sparc/syscalls.h,
	mdk-stage1/dietlibc/include/resolv.h, mdk-stage1/dietlibc/lib/bsearch.c,
	mdk-stage1/dietlibc/libstdio/fseeko64.c,
	mdk-stage1/dietlibc/libcruft/pwent.c,
	mdk-stage1/dietlibc/lib/strcasecmp.c,
	mdk-stage1/dietlibc/libcruft/getgrnam_r.c,
	mdk-stage1/dietlibc/syscalls.c/getrusage.c,
	mdk-stage1/dietlibc/libpthread/CHANGES, mdk-stage1/dietlibc/i386/log.S,
	mdk-stage1/dietlibc/lib/sigsuspend.c,
	mdk-stage1/dietlibc/alpha/lseek64.S,
	mdk-stage1/dietlibc/syscalls.c/mprotect.c,
	mdk-stage1/dietlibc/sparc/shmat.c,
	mdk-stage1/dietlibc/syscalls.c/_newselect.c,
	mdk-stage1/dietlibc/i386/strncmp.S,
	mdk-stage1/dietlibc/syscalls.s/setfsuid32.S,
	mdk-stage1/dietlibc/libcruft/getspent.c,
	mdk-stage1/dietlibc/i386/recv.S,
	mdk-stage1/dietlibc/librpc/pmap_getmaps.c,
	mdk-stage1/dietlibc/syscalls.c/setrlimit.c,
	mdk-stage1/dietlibc/ppc/__testandset.S,
	mdk-stage1/dietlibc/threadsafe.sh,
	mdk-stage1/dietlibc/syscalls.s/__pwrite.S,
	mdk-stage1/dietlibc/libugly/setenv.c,
	mdk-stage1/dietlibc/libugly/iconv_open.c,
	mdk-stage1/dietlibc/include/arpa/inet.h,
	mdk-stage1/dietlibc/include/alloca.h, mdk-stage1/dietlibc/lib/memrchr.c,
	mdk-stage1/dietlibc/lib/strtoul.c,
	mdk-stage1/dietlibc/syscalls.s/epoll_wait.S,
	mdk-stage1/dietlibc/syscalls.c/getgid.c,
	mdk-stage1/dietlibc/libcruft/mktemp.c,
	mdk-stage1/dietlibc/libugly/wtent.c,
	mdk-stage1/dietlibc/syscalls.s/rt_sigsuspend.S,
	mdk-stage1/dietlibc/libcruft/__end_parse.c,
	mdk-stage1/dietlibc/syscalls.s/adjtimex.S,
	mdk-stage1/dietlibc/libstdio/fprintf.c,
	mdk-stage1/dietlibc/libdl/README, mdk-stage1/dietlibc/include/regex.h,
	mdk-stage1/dietlibc/libpthread/pthread_cond_wait.c,
	mdk-stage1/dietlibc/i386/exp2.S, mdk-stage1/dietlibc/i386/mmap.S,
	mdk-stage1/dietlibc/libcruft/alphasort.c,
	mdk-stage1/dietlibc/syscalls.c/umask.c,
	mdk-stage1/dietlibc/librpc/clnt_generic.c,
	mdk-stage1/dietlibc/syscalls.s/getgroups32.S,
	mdk-stage1/dietlibc/i386/atol.S, mdk-stage1/dietlibc/lib/memmove.c,
	mdk-stage1/dietlibc/sparc/pipe.S,
	mdk-stage1/dietlibc/include/sys/ucontext.h,
	mdk-stage1/dietlibc/include/daemon.h,
	mdk-stage1/dietlibc/lib/__stat64_cvt.c,
	mdk-stage1/dietlibc/liblatin1/latin1-isgraph.c,
	mdk-stage1/dietlibc/libcruft/inet_ntop.c,
	mdk-stage1/dietlibc/include/getopt.h,
	mdk-stage1/dietlibc/libugly/openpty.c,
	mdk-stage1/dietlibc/include/math.h,
	mdk-stage1/dietlibc/libcruft/dnscruft4.c,
	mdk-stage1/dietlibc/lib/remove.c, mdk-stage1/dietlibc/libugly/isleap.c,
	mdk-stage1/dietlibc/include/sys/mips-ioctl.h,
	mdk-stage1/dietlibc/include/sys/sendfile.h,
	mdk-stage1/dietlibc/syscalls.s/getresgid32.S,
	mdk-stage1/dietlibc/include/netinet/ip_icmp.h,
	mdk-stage1/dietlibc/lib/atoll.c,
	mdk-stage1/dietlibc/syscalls.s/syslog.S,
	mdk-stage1/dietlibc/lib/sigqueueinfo.c,
	mdk-stage1/dietlibc/libcruft/__prepare_parse.c,
	mdk-stage1/dietlibc/lib/getpeername.c,
	mdk-stage1/dietlibc/libcruft/getopt_long.c,
	mdk-stage1/dietlibc/include/sys/ipc.h,
	mdk-stage1/dietlibc/i386/setsockopt.S,
	mdk-stage1/dietlibc/libstdio/fputc.c, mdk-stage1/dietlibc/lib/rand.c,
	mdk-stage1/dietlibc/alpha/sigaction.c,
	mdk-stage1/dietlibc/include/sys/gmon_out.h,
	mdk-stage1/dietlibc/libstdio/vfprintf.c,
	mdk-stage1/dietlibc/alpha/signal.S,
	mdk-stage1/dietlibc/libugly/getservent_r.c,
	mdk-stage1/dietlibc/i386/socketcall.S,
	mdk-stage1/dietlibc/lib/cfsetispeed.c,
	mdk-stage1/dietlibc/alpha/Makefile.add,
	mdk-stage1/dietlibc/include/net/if.h,
	mdk-stage1/dietlibc/lib/recvfrom.c,
	mdk-stage1/dietlibc/libstdio/fgetc.c, mdk-stage1/dietlibc/include/ftw.h,
	mdk-stage1/dietlibc/libcruft/mkdtemp.c,
	mdk-stage1/dietlibc/libcruft/gethostbyname2_r.c,
	mdk-stage1/dietlibc/sparc/clone.S, mdk-stage1/dietlibc/lib/labs.c,
	mdk-stage1/dietlibc/syscalls.c/getcwd.c,
	mdk-stage1/dietlibc/lib/shmat.c, mdk-stage1/dietlibc/librpc/xdr_stdio.c,
	mdk-stage1/dietlibc/syscalls.c/mremap.c,
	mdk-stage1/dietlibc/libshell/basename.c,
	mdk-stage1/dietlibc/lib/memccpy.c,
	mdk-stage1/dietlibc/libugly/getservbyport.c,
	mdk-stage1/dietlibc/lib/strtoull.c,
	mdk-stage1/dietlibc/libcruft/getgrgid.c,
	mdk-stage1/dietlibc/syscalls.c/symlink.c,
	mdk-stage1/dietlibc/librpc/auth_unix.c,
	mdk-stage1/dietlibc/libugly/getaddrinfo.c,
	mdk-stage1/dietlibc/include/termios.h,
	mdk-stage1/dietlibc/include/strings.h,
	mdk-stage1/dietlibc/syscalls.c/open.c, mdk-stage1/dietlibc/dyn_stop.c,
	mdk-stage1/dietlibc/lib/__truncate64.c, mdk-stage1/dietlibc/lib/execv.c,
	mdk-stage1/dietlibc/libdl/elf_hash.c,
	mdk-stage1/dietlibc/include/sys/param.h,
	mdk-stage1/dietlibc/syscalls.c/read.c,
	mdk-stage1/dietlibc/libcrypt/md5crypt.c,
	mdk-stage1/dietlibc/include/sys/hppa-ioctl.h,
	mdk-stage1/dietlibc/syscalls.s/fdatasync.S,
	mdk-stage1/dietlibc/libcruft/spbuf.c,
	mdk-stage1/dietlibc/syscalls.s/n_sigsuspend.S,
	mdk-stage1/dietlibc/syscalls.s/errno.S,
	mdk-stage1/dietlibc/syscalls.s/setfsgid.S,
	mdk-stage1/dietlibc/syscalls.c/setuid.c,
	mdk-stage1/dietlibc/librpc/clnt_raw.c,
	mdk-stage1/dietlibc/libpthread/pthread_attr_setstacksize.c,
	mdk-stage1/dietlibc/libpthread/pthread_mutex_init.c,
	mdk-stage1/dietlibc/librpc/xdr_mem.c,
	mdk-stage1/dietlibc/syscalls.s/n_sigpending.S,
	mdk-stage1/dietlibc/lib/sigaction.c, mdk-stage1/dietlibc/i386/listen.S,
	mdk-stage1/dietlibc/libstdio/stdout.c,
	mdk-stage1/dietlibc/libdl/_dl_main.c,
	mdk-stage1/dietlibc/lib/if_nameindex.c,
	mdk-stage1/dietlibc/syscalls.s/truncate64.S,
	mdk-stage1/dietlibc/include/sys/alpha-ioctl.h,
	mdk-stage1/dietlibc/binshstr.h, mdk-stage1/dietlibc/libcruft/res_init.c,
	mdk-stage1/dietlibc/libpthread/pthread_detach.c,
	mdk-stage1/dietlibc/libpthread/pthread_internal.c,
	mdk-stage1/dietlibc/README, mdk-stage1/dietlibc/libcruft/__parse_nws.c,
	mdk-stage1/dietlibc/lib/readdir64.c, mdk-stage1/dietlibc/i386/tan.S,
	mdk-stage1/dietlibc/syscalls.c/getpriority.c,
	mdk-stage1/dietlibc/libcruft/herrno_location.c,
	mdk-stage1/dietlibc/lib/shmctl.c,
	mdk-stage1/dietlibc/libpthread/pthread_mutex_unlock.c,
	mdk-stage1/dietlibc/librpc/xdr_rec.c,
	mdk-stage1/dietlibc/i386/strncpy.S,
	mdk-stage1/dietlibc/libpthread/pthread_sys_tcdrain.c,
	mdk-stage1/dietlibc/libpthread/pthread_cond_destroy.c,
	mdk-stage1/dietlibc/syscalls.s/setuid32.S,
	mdk-stage1/dietlibc/lib/__v_printf.c,
	mdk-stage1/dietlibc/libugly/gethostent.c,
	mdk-stage1/dietlibc/syscalls.s/epoll_create.S,
	mdk-stage1/dietlibc/include/rpc/rpc_msg.h,
	mdk-stage1/dietlibc/lib/isatty.c,
	mdk-stage1/dietlibc/syscalls.s/msync.S,
	mdk-stage1/dietlibc/include/sys/mtio.h, mdk-stage1/dietlibc/syscalls.h,
	mdk-stage1/dietlibc/lib/memcmp.c, mdk-stage1/dietlibc/lib/toupper.c,
	mdk-stage1/dietlibc/syscalls.s/epoll_ctl.S,
	mdk-stage1/dietlibc/include/sys/sysmacros.h,
	mdk-stage1/dietlibc/include/sys/sysinfo.h,
	mdk-stage1/dietlibc/librpc/clnt_simple.c,
	mdk-stage1/dietlibc/syscalls.s/madvise.S,
	mdk-stage1/dietlibc/libugly/getservbyport_r.c,
	mdk-stage1/dietlibc/lib/vfork.c,
	mdk-stage1/dietlibc/libcruft/getopt_data.c,
	mdk-stage1/dietlibc/libpthread/pthread_sys_open.c,
	mdk-stage1/dietlibc/lib/isalpha.c, mdk-stage1/dietlibc/lib/pwrite.c,
	mdk-stage1/dietlibc/lib/sigfillset.c,
	mdk-stage1/dietlibc/libcruft/getpwent_r.c,
	mdk-stage1/dietlibc/i386/log1p.S, mdk-stage1/dietlibc/lib/listen.c,
	mdk-stage1/dietlibc/lib/strncpy.c, mdk-stage1/dietlibc/include/glob.h,
	mdk-stage1/dietlibc/linuxnet.h, mdk-stage1/dietlibc/lib/__v_scanf.c,
	mdk-stage1/dietlibc/include/sys/epoll.h,
	mdk-stage1/dietlibc/lib/strcmp.c,
	mdk-stage1/dietlibc/libpthread/pthread_mutex_destroy.c,
	mdk-stage1/dietlibc/libdl/_dl_int.h,
	mdk-stage1/dietlibc/include/sys/mount.h,
	mdk-stage1/dietlibc/libstdio/fseeko.c,
	mdk-stage1/dietlibc/libpthread/pthread_sys_waitpid.c,
	mdk-stage1/dietlibc/include/rpc/clnt.h,
	mdk-stage1/dietlibc/lib/socket.c,
	mdk-stage1/dietlibc/libugly/getnameinfo.c,
	mdk-stage1/dietlibc/libpthread/pthread_attr_setdetachstate.c,
	mdk-stage1/dietlibc/include/dietref.h, mdk-stage1/dietlibc/dietstdarg.h,
	mdk-stage1/dietlibc/libugly/strftime.c,
	mdk-stage1/dietlibc/i386/getsockname.S, mdk-stage1/dietlibc/i386/sin.S,
	mdk-stage1/dietlibc/libcruft/getpass.c,
	mdk-stage1/dietlibc/include/pty.h, mdk-stage1/dietlibc/lib/abort.c,
	mdk-stage1/dietlibc/syscalls.s/stime.S,
	mdk-stage1/dietlibc/lib/shutdown.c, mdk-stage1/dietlibc/i386/exp.S,
	mdk-stage1/dietlibc/include/sys/soundcard.h,
	mdk-stage1/dietlibc/include/sys/klog.h,
	mdk-stage1/dietlibc/sparc/fork.S,
	mdk-stage1/dietlibc/libpthread/pthread_setschedparam.c,
	mdk-stage1/dietlibc/i386/sincos.S, mdk-stage1/dietlibc/lib/readdir.c,
	mdk-stage1/dietlibc/lib/sbrk.c, mdk-stage1/dietlibc/syscalls.c/unlink.c,
	mdk-stage1/dietlibc/include/sys/reboot.h,
	mdk-stage1/dietlibc/i386/sqrtl.S, mdk-stage1/dietlibc/syscalls.c/time.c,
	mdk-stage1/dietlibc/lib/vfprintf.c,
	mdk-stage1/dietlibc/syscalls.c/getsid.c,
	mdk-stage1/dietlibc/syscalls.c/chmod.c,
	mdk-stage1/dietlibc/lib/msgctl.c,
	mdk-stage1/dietlibc/syscalls.c/rmdir.c,
	mdk-stage1/dietlibc/syscalls.s/rt_sigaction.S,
	mdk-stage1/dietlibc/i386/strcasecmp.S, mdk-stage1/dietlibc/i386/asinh.S,
	mdk-stage1/dietlibc/lib/cfgetospeed.c,
	mdk-stage1/dietlibc/libcruft/gethostbyname2.c,
	mdk-stage1/dietlibc/libstdio/tmpfile.c,
	mdk-stage1/dietlibc/include/rpc/pmap_clnt.h,
	mdk-stage1/dietlibc/syscalls.s/getresuid.S,
	mdk-stage1/dietlibc/syscalls.s/n_sigprocmask.S, mdk-stage1/dietlibc/FAQ,
	mdk-stage1/dietlibc/i386/ipow.S,
	mdk-stage1/dietlibc/liblatin1/latin1-iscntrl.c,
	mdk-stage1/dietlibc/libpthread/pthread_cond_init.c,
	mdk-stage1/dietlibc/include/limits.h, mdk-stage1/dietlibc/lib/putenv.c,
	mdk-stage1/dietlibc/syscalls.s/init_module.S,
	mdk-stage1/dietlibc/liblatin1/latin1-isupper.c,
	mdk-stage1/dietlibc/syscalls.s/setgid32.S,
	mdk-stage1/dietlibc/lib/__ftruncate64.c,
	mdk-stage1/dietlibc/lib/islower.c, mdk-stage1/dietlibc/i386/atan.S,
	mdk-stage1/dietlibc/include/paths.h, mdk-stage1/dietlibc/i386/__half.S,
	mdk-stage1/dietlibc/include/sys/wait.h,
	mdk-stage1/dietlibc/librpc/pmap_prot2.c,
	mdk-stage1/dietlibc/librpc/pmap_clnt.c,
	mdk-stage1/dietlibc/lib/isalnum.c, mdk-stage1/dietlibc/lib/speed.c,
	mdk-stage1/dietlibc/libstdio/fseek.c, mdk-stage1/dietlibc/lib/memcpy.c,
	mdk-stage1/dietlibc/syscalls.s/rt_sigprocmask.S,
	mdk-stage1/dietlibc/librpc/getrpcent.c,
	mdk-stage1/dietlibc/include/sysexits.h,
	mdk-stage1/dietlibc/syscalls.c/setreuid.c,
	mdk-stage1/dietlibc/lib/signal.c,
	mdk-stage1/dietlibc/include/sys/arm-ioctl.h,
	mdk-stage1/dietlibc/syscalls.s/llseek.S,
	mdk-stage1/dietlibc/syscalls.s/_llseek.S,
	mdk-stage1/dietlibc/syscalls.c/setregid.c,
	mdk-stage1/dietlibc/include/setjmp.h, mdk-stage1/dietlibc/AUTHOR,
	mdk-stage1/dietlibc/include/stddef.h,
	mdk-stage1/dietlibc/libugly/getprotobynumber.c,
	mdk-stage1/dietlibc/libdl/_dl_jump.S,
	mdk-stage1/dietlibc/include/stdarg.h,
	mdk-stage1/dietlibc/lib/getsockopt.c,
	mdk-stage1/dietlibc/syscalls.c/umount.c, mdk-stage1/dietlibc/lib/atol.c,
	mdk-stage1/dietlibc/syscalls.s/__pread.S,
	mdk-stage1/dietlibc/lib/isspace.c, mdk-stage1/dietlibc/lib/abs.c,
	mdk-stage1/dietlibc/lib/tcgetpgrp.c, mdk-stage1/dietlibc/i386/log2.S,
	mdk-stage1/dietlibc/libstdio/fgetc_unlocked.c,
	mdk-stage1/dietlibc/include/net/route.h, mdk-stage1/dietlibc/parselib.h,
	mdk-stage1/dietlibc/dietdns.h,
	mdk-stage1/dietlibc/syscalls.s/n_sigaction.S,
	mdk-stage1/dietlibc/lib/strxfrm.c,
	mdk-stage1/dietlibc/include/rpc/auth.h,
	mdk-stage1/dietlibc/lib/strtol.c, mdk-stage1/dietlibc/ppc/start.S,
	mdk-stage1/dietlibc/libcruft/getpwnam_r.c,
	mdk-stage1/dietlibc/lib/assert_fail.c, mdk-stage1/dietlibc/lib/htonl.c,
	mdk-stage1/dietlibc/include/sys/sem.h,
	mdk-stage1/dietlibc/include/sys/i386-ioctl.h,
	mdk-stage1/dietlibc/lib/if_nametoindex.c,
	mdk-stage1/dietlibc/lib/shmget.c, mdk-stage1/dietlibc/i386/libm2.S,
	mdk-stage1/dietlibc/include/rpc/auth_des.h,
	mdk-stage1/dietlibc/include/inttypes.h, mdk-stage1/dietlibc/lib/atoi.c,
	mdk-stage1/dietlibc/syscalls.c/lseek.c,
	mdk-stage1/dietlibc/libcruft/getpwuid.c,
	mdk-stage1/dietlibc/libugly/logging.c,
	mdk-stage1/dietlibc/librpc/svc_tcp.c,
	mdk-stage1/dietlibc/alpha/setjmp.S,
	mdk-stage1/dietlibc/libpthread/pthread_create.c,
	mdk-stage1/dietlibc/libcruft/dnscruft2.c,
	mdk-stage1/dietlibc/libcruft/getpwent.c,
	mdk-stage1/dietlibc/include/net/if_arp.h,
	mdk-stage1/dietlibc/alpha/clone.S,
	mdk-stage1/dietlibc/syscalls.s/environ.S,
	mdk-stage1/dietlibc/libpthread/pthread_sys_logging.c,
	mdk-stage1/dietlibc/COPYING,
	mdk-stage1/dietlibc/libpthread/pthread_errno.c: Merge in CVS dietlibc
	0.21 for IA-64 and X86-64 support. However, drop the
	following architectures we currently don't support: arm, mips, mipsel,
	parisc,
	s390, sparc64.

	* mdk-stage1/dietlibc/Makefile: dynlinker/ directory is obsolete and dead
	here.
	Fixes for unmerged parts (contrib, examples)
	Merge in CVS dietlibc 0.21 for IA-64 and X86-64 support. However, drop
	the
	following architectures we currently don't support: arm, mips, mipsel,
	parisc,
	s390, sparc64.

	* mdk-stage1/newt/form.c: #include <string.h> for memset()

	* mdk-stage1/Makefile.common, mdk-stage1/Makefile: Use dietlibc on x86-64
	  - Use minilibc on x86-64
	  - mar requires bzlib to be built beforehand, especially if building
	with
	dietlibc
	  - Nuke trickery to handle -DIET objects, everything is now built
	through
	  the diet driver, defined into $(DIET)

	* mdk-stage1/dietlibc/include/sys/types.h,
	mdk-stage1/dietlibc/include/rpc/types.h: Define u_char et al. from
	<rpc/types.h>. The __dietlibc_u_char mechanism
	is here to ensure we are not redefining types, if we were to compile
	programs with -D_BSD_SOURCE (u_char et al. are defined in <sys/types.h>
	int that case).
	Merge in CVS dietlibc 0.21 for IA-64 and X86-64 support. However, drop
	the
	following architectures we currently don't support: arm, mips, mipsel,
	parisc,
	s390, sparc64.

	* mdk-stage1/dns.c: dietlibc defined __dietlibc__ macro. Also add check
	for __GLIBC__. If none
	of those C library is used, simply abort compilation.

2003/02/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: remove unneeded pablo's change on RTL

	* ugtk2.pm: fix titi's perl checko
	internalize prepare_gtk2 in the BEGIN {} of ugtk2 already containing the
	Gtk2->init

	* lang.pm: small change thx to pablo
	reposition main and steps window when in RTL language
	allow to specify font size in output of l2pango_font
	destroy and recreate steps window when charset changed because gtk won't
	update the font size otherwise

	* install_gtk.pm: reposition main and steps window when in RTL language
	allow to specify font size in output of l2pango_font
	destroy and recreate steps window when charset changed because gtk won't
	update the font size otherwise

	* interactive/gtk.pm: internalize prepare_gtk2 in the BEGIN {} of ugtk2
	already containing the Gtk2->init

	* install_steps_gtk.pm: allow to specify font size in output of
	l2pango_font
	destroy and recreate steps window when charset changed because gtk won't
	update the font size otherwise

2003/02/18  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* help.pm: fixed small typo

	* install_steps_interactive.pm: define language direction

	* printer/printerdrake.pm: Removed N( ) around IP numbers, there is no
	point in "translating" them

	* steps.pm: changed "Choose your Language" -> "Language"
	shortened some strings to help them fit in the steps window

2003/02/18  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: /proc/partitions includes partition with type
	"empty" and a non-null size
	so add them for comparison
	  - ensure someone can't set a mount point on a non formatted ntfs
	partition
	  - remove the mount point when destructive resizing and isNonMountable

	* diskdrake/interactive.pm: fix ugly bug (the bug was introduced in
	diskdrake/interactive.pm 1.67)
	  - ensure someone can't set a mount point on a non formatted ntfs
	partition
	  - remove the mount point when destructive resizing and isNonMountable

	* interactive/gtk.pm: in {complete} or {canceled}, ensure giving a bad
	entry number to focus doesn't
	break (and log that something wrong happened)

	* interactive/newt.pm: simplify
	fix tree in newt (now handles default selected entry, and disallow using
	non-leaves)

	* diskdrake/resize_ntfs.pm (resize): do a test resize before doing the
	real one

	* any.pm: don't use tmpfs on /tmp if /tmp is a separate partition
	(anyway, all this is ugly, see with titi)

	* install2.pm: simplify

	* install_steps_interactive.pm (setRootPassword): display "Authentication"
	in Advanced
	display the release even when there is only one system to upgrade
	(asked by flepied & warly)

	* ugtk2.pm: the empty label in the HButtonBox had the same size as the
	buttons (since
	HButtonBox are always homogeneous), causing addUser in german not to fit
	on
	the screen. No good way to solve this :-(

	* fsedit.pm: /proc/partitions includes partition with type "empty" and a
	non-null size
	so add them for comparison
	better default partitioning

	* keyboard.pm: translate grp_toggles at display-time, not compile-time

	* Newt/Newt.xs: fix tree in newt (now handles default selected entry, and
	disallow using non-leaves)

	* tools/ddcprobe/ddcxinfos.c: catch bad HorizSync or VertRefresh
	(on Regis's monitor, it gives "62-0 Hz VertRefresh")

2003/02/18  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: 
	  - "BrowsePoll" support in the CUPS configuration dialog.
	  - Fixes on error message windows in the dialog for printer sharing
	destinations.

	* scanner.pm: Replaced "my" by "our" for the declaration of the
	"ScannerDB" variable, so that /usr/bin/scannerdrake has access to it.

2003/02/18  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* scanner.pm: perl_checker fixes

	* network/network.pm: perl_checker fix

	* drakxtools.spec: 9.1-1mdk

	* Xconfig/card.pm: bump version on fredl request

	* security/help.pm: resync with msec

2003/02/17  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix bug occurring "if no sound card are
	detected AND the user selected things
	needing a sound card, propose a special case for ISA cards"
	(thanks to guran)

	* help.pm: some more fixes (thanks to Edward Cherlin and Reinout van
	Schouwen)

	* security/level.pm: replace %level_list with level_list() so that
	N("...") is called at runtime
	instead of compile-time

	* network/drakfirewall.pm: translate server {name} at display-time, not
	compile-time

2003/02/17  François Pons  <fpons@mandrakesoft.com>

	* fsedit.pm: given default size of / increased.
	increased /var container for suggestion (simple or with /usr).

	* commands.pm: fixed command insmod.

	* install_steps_interactive.pm: add a reboot if not enough free space is
	available for installation or upgrade.

2003/02/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: fix translation of title: N() needs to be called
	after
	interactive->vnew has been called

	* steps.pm: fix pixel's commit: never display choosePackages and
	configureServices, instead of always

	* lang.pm: change %countries so that we really have translated countries
	(side effect of #1723 -> noticing this bug)
	disable mn until we have lang-mn.png

	* drakxtools.spec: grüh

	* standalone/drakpxe: fix translation of title by calling N() after
	interactive->vnew

2003/02/17  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
	share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/hu.po: updated
	Estonian file
	updated pot file

	* share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
	share/po/help-es.pot: updated Estonian file

	* lang.pm: updated @locales list

2003/02/17  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix bug occurring "if no sound card are
	detected AND the user selected things
	needing a sound card, propose a special case for ISA cards"
	(thanks to guran)
	ensure $o->{raw_X} is not destroyed when there is no modification done
	(since in that case
	Xconfig::main::configure_everything_or_configure_chooser() returns
	undef)

	* any.pm: add a checkbox "Force ACPI"

	* ugtk2.pm: fix pop_it...

	* steps.pm: don't show "Choose packages to install" nor "Configure
	services"
	(was still there in expert)

	* diskdrake/interactive.pm: remove debug code :-(

	* security/level.pm: replace %level_list with level_list() so that
	N("...") is called at runtime
	instead of compile-time

	* install_steps.pm: propagate /proc/cmdline acpi=xxx
	have acpi=off by default

	* rescue/list.x86_64, rescue/list.i386, rescue/list.ia64: replace
	ext2resize with resize2fs in rescue (already done in DrakX)

	* network/drakfirewall.pm: translate server {name} at display-time, not
	compile-time

	* help.pm: some more fixes (thanks to Edward Cherlin and Reinout van
	Schouwen)
	fix typos (thanks to Reinout van Schouwen)

2003/02/17  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* security/help.pm: synced with msec

	* harddrake/data.pm: bump version number

2003/02/17  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm: fix pop_it...
	hopefully final fix for pop_it

	* interactive/gtk.pm: also ->hide in when a button is clicked in
	standalone

	* any.pm: add a checkbox "Force ACPI"

	* install_steps_interactive.pm: ensure $o->{raw_X} is not destroyed when
	there is no modification done
	(since in that case
	Xconfig::main::configure_everything_or_configure_chooser() returns
	undef)

	* install2.pm: don't security::various::config_security_user() can fail,
	don't let it bother us

	* install_steps.pm: propagate /proc/cmdline acpi=xxx
	have acpi=off by default

	* Xconfig/xfree3.pm (is_fbdev): fix typo

	* Xconfig/xfree.pm (get_both): fix typo

	* Xconfig/resolution_and_depth.pm (to_string): simpler way to handle the
	"default" resolution of frame-buffer

2003/02/17  Till Kamppeter  <till@mandrakesoft.com>

	* drakxtools.spec: 9.1-0.34mdk

	* printer/main.pm: 
	  - Fixed bug of HP DeskJetb 990C being automatically installed even if
	there is already a queue for it
	  - Fixed checking whether a device is known to CUPS

2003/02/17  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/nl.po, share/po/da.po, share/po/ta.po, share/po/sv.po,
	share/po/fi.po: updated Arabic, Dutch, Danish, Finnish, Swedish and
	Tamil files

	* standalone/harddrake2: correction for non-latin1 locales,
	made strings "Unknown" and "unknown" translatable in device info

	* share/po/ru.po: updated Russian and Arabic files

	* share/po/ar.po: updated Russian and Arabic files
	updated Arabic, Dutch, Danish, Finnish, Swedish and Tamil files

	* lang.pm: synchrnoization of locale names with what we ship.
	updated list of available kde langs

2003/02/17  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: add module2description()

	* diskdrake/hd_gtk.pm: fix help popping all the time

	* ugtk2.pm: hopefully final fix for pop_it
	fix setting pop_it for wizard in standalone

	* interactive/gtk.pm: also ->hide in when a button is clicked in
	standalone

	* Xconfig/card.pm: use fbdev when the graphic card is unknown

	* install_steps_gtk.pm: enhance summary layout

	* install_steps_interactive.pm: better sound card description in summary

	* install2.pm: don't security::various::config_security_user() can fail,
	don't let it bother us

	* Xconfig/monitor.pm: warn when auto conf fail

	* Xconfig/xfree.pm (get_both): fix typo

	* Xconfig/xfree3.pm (is_fbdev): fix typo

	* Xconfig/resolution_and_depth.pm (to_string): simpler way to handle the
	"default" resolution of frame-buffer

2003/02/17  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm: 
	  - Fixed bug of HP DeskJetb 990C being automatically installed even if
	there is already a queue for it
	  - Fixed checking whether a device is known to CUPS
	  - Restructured function "main()"
	  - Made automatic queue setup being done during installation
	  - Support for unknown printers in auto-detection and in automatic
	queue
	  setup
	  - Fixed determination of default printer
	  - Fixed printer help page display
	  - Fixed wait message in /usr/sbin/printerdrake

	* printer/detect.pm, printer/data.pm, standalone/printerdrake,
	printer/printerdrake.pm: 
	  - Restructured function "main()"
	  - Made automatic queue setup being done during installation
	  - Support for unknown printers in auto-detection and in automatic
	queue
	setup
	  - Fixed determination of default printer
	  - Fixed printer help page display
	  - Fixed wait message in /usr/sbin/printerdrake

	* drakxtools.spec: 9.1-0.31mdk

2003/02/17  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* network/netconnect.pm, network/ethernet.pm, standalone/drakconnect: perl
	generate undef indefinitely from the void

	* standalone/logdrake: this was just tested before

	* scanner.pm: 
	  - (get_usb_ids_for_port, updateScannerDBfromSane) : simplify
	  - perl_checker fixes

	* drakxtools.spec: 9.1-0.33mdk
	fix #1718

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/nl.po,
	share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/lv.po, share/po/cs.po, share/po/bg.po,
	share/po/el.po, share/po/hu.po: simplify translator job by propaging
	pixel english typo fix

	* ugtk2.pm: in the old days, on cannot disable shrink1, resize2 or shrink2
	since they always were true

2003/02/17  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: 9.1 rc1

2003/02/16  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: summary written in gtk, isn't it nice (?)

	* install_steps_interactive.pm: handle "not configured" in summary_prompt

2003/02/16  siegel

	* share/po/de.po: updates

2003/02/16  alus

	* share/po/pl.po: updated

2003/02/16  fabman

	* share/po/es.po: updated

2003/02/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* lang.pm: log a bit more

	* install_steps_gtk.pm, install_gtk.pm: fix my breakage (broke non-latin1
	installs :/)

	* any.pm: clean $o->{locale}{langs}

2003/02/16  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* keyboard.pm, lang.pm: Enabled Arabic keyboard,
	added full list of countries listed in iso 3166,
	changed japanese charset->font for KDE,
	removed charset names no longer used

2003/02/16  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: summary written in gtk, isn't it nice (?)
	  - factorize "Help"-button handling
	  - fix interactive_help_get_id (happily, it was no pb :)

	* help.pm: fix typo (thanks to Christophe Combelles)

	* install_steps_interactive.pm: handle "not configured" in summary_prompt

	* services.pm: fix rawdevices description (bug #1677)

	* diskdrake/hd_gtk.pm, interactive.pm, Xconfig/resolution_and_depth.pm,
	install_interactive.pm: 
	  - factorize "Help"-button handling
	  - fix interactive_help_get_id (happily, it was no pb :)

2003/02/15  alus

	* share/po/pl.po: mostly updated
	updated partially
	why this file wasn't regenerated?

2003/02/15  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: don't mute the keyboard in ask_browse_tree_info (#1598)

	* printer/printerdrake.pm: 
	  - try to workaround #1581
	  - fix the most code style-independant perl checker things

2003/02/15  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po: updated Estonian, Norwegian and Vietnamese files
	updated po files

	* share/po/vi.po: updated Estonian, Norwegian and Vietnamese files
	updated pot files
	updated po files

	* share/po/id.po, share/po/gl.po, share/po/ja.po, share/po/hr.po,
	share/po/mt.po, share/po/ga.po, share/po/ko.po, share/po/lt.po,
	share/po/he.po, share/po/is.po, share/po/it.po, share/po/lv.po,
	share/po/hu.po: updated pot files

	* share/po/ar.po: updated remaining po files
	updated po files

	* share/po/pt_BR.po, share/po/br.po, share/po/be.po, share/po/uk.po,
	share/po/fi.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/tg.po, share/po/bs.po, share/po/uz.po, share/po/wa.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/fr.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po: updated po files

	* share/po/sk.po, share/po/ru.po, share/po/th.po, share/po/sl.po,
	share/po/tr.po, share/po/sv.po, share/po/sr.po, share/po/sp.po,
	share/po/ro.po, share/po/ta.po, share/po/sq.po, share/po/nl.po: updated
	remaining po files

	* share/po/no.po: updated Estonian, Norwegian and Vietnamese files
	updated remaining po files

2003/02/15  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: fix gc's typo

2003/02/15  Till Kamppeter  <till@mandrakesoft.com>

	* standalone/scannerdrake: Fixed bug in setting up multiple scanners at
	once.

2003/02/14  Till Kamppeter  <till@mandrakesoft.com>

	* scanner.pm, standalone/scannerdrake: Improved manual scanner
	configuration, bug fixes.

	* standalone.pm: Updated "Usage:" message for Scannerdrake.

2003/02/14  alus

	* share/po/pl.po: fixed

2003/02/14  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* drakxtools.spec: 0.30mdk

	* standalone/drakperm: o Gtk2
	o 'add a rule' works again
	o 'edit rule' too
	o get_rights get all rights, not just a few
	o little cleanup (more to come)

2003/02/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: okcehc lrep (hebrew feeling)
	wizard: free memory
	add a frame to the wizard's outline
	honour 9.1 theme title of windows: no icon, text to the left

	* share/themes-galaxy.rc: adapt theme: grey for selection's background, no
	inverse video on the selected text

	* pixmaps/services.png, pixmaps/X.png, pixmaps/bootloader.png,
	pixmaps/language.png, pixmaps/summary.png, pixmaps/security.png,
	pixmaps/partition.png, pixmaps/keyboard.png, pixmaps/mouse.png,
	pixmaps/rootpasswd.png, steps.pm, pixmaps/bootdisk.png,
	pixmaps/harddrive.png, install2.pm, pixmaps/user.png, pixmaps/exit.png,
	pixmaps/network.png: honour 9.1 theme title of windows: no icon, text to
	the left

	* install_gtk.pm: cleanup
	fix default_theme always responding 'galaxy'
	  - update steps window to 9.1 theme (blue/white bullets)
	  - don't destroy steps window between each step => better looking

	* install_steps_gtk.pm, pixmaps/steps_off.png, pixmaps/steps_on.png: 
	  - update steps window to 9.1 theme (blue/white bullets)
	  - don't destroy steps window between each step => better looking

	* install_any.pm: install the locales-xx package for the selected country

	* share/po/fr.po: fix misc

2003/02/14  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/no.po, share/po/DrakX.pot: updated pot file

2003/02/14  Pixel  <pixel@mandrakesoft.com>

	* standalone/draksec: cleanup security::level, hopefully the **** draksec
	still works

	* security/level.pm: cleanup security::level, hopefully the **** draksec
	still works
	fix errors (due to previous commit)
	create security::level::to_string()

	* install_steps.pm: remove unneeded msec related actions (those are done
	in msec)
	simpler way to detect broken alternatives. It works for symlinks to
	symlinks,
	eg: rvi -> /bin/vi -> /etc/alternatives/vi -> /bin/vim-minimal
	use $::prefix

	* install_steps_interactive.pm: add "Security level" in summary
	  - re-indent summary entries
	  - add group for summary entries
	(acceptLicense): do translate "Accept" and "Refuse"
	  - add "Services" and "Firewall" in summary
	  - rework a little summary & summary_prompt
	use $::prefix
	change order of entries in summary

	* install_steps_gtk.pm: toggle Details / No details (as suggested by Prabu
	Anand)

	* interactive.pm: in ask_browse_tree_info, have Next instead of Ok,
	Previous instead of Cancel when isWizard

	* install_any.pm, install2.pm: create install_any::set_security() and use
	it

	* network/drakfirewall.pm: install package shorewall only when the user
	wants a firewall

	* services.pm: use $::prefix

	* Makefile: themes/* is gone, no need to copy those files

2003/02/14  Till Kamppeter  <till@mandrakesoft.com>

	* scanner.pm, standalone/scannerdrake: Improved manual scanner
	configuration, bug fixes.

	* standalone.pm: Updated "Usage:" message for Scannerdrake.

2003/02/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: when detected too little memory in ftp/http,
	inform user that he/she may try an nfs install

2003/02/13  alus

	* share/po/pl.po: updated

2003/02/13  fabman

	* share/po/es.po: updated Spanish translation

2003/02/13  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: added tmdns zcip mandrake-galaxy galaxy-gnome

2003/02/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/themes.rc, share/themes-mdk.rc, share/themes-galaxy.rc,
	share/list, share/themes-mdk-Desktop.rc, install_gtk.pm,
	share/themes-marble3d.rc, share/install.rc, install_steps_gtk.pm: 
	  - use nice new gnome theme by ln and fcrozat
	  - remove old no more used themes
	  - for doc team, provide an option so that we'll
	override some colors of the default theme
	(for B&W printing screeshots)

	* pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-sl.png,
	pixmaps/langs/lang-hy.png, pixmaps/langs/lang-de.png,
	pixmaps/langs/lang-cy.png, pixmaps/langs/lang-it.png,
	pixmaps/langs/lang-eu.png, pixmaps/langs/lang-ca.png,
	pixmaps/langs/lang-sp.png, pixmaps/langs/lang-am.png,
	pixmaps/langs/lang-nb.png, pixmaps/langs/lang-gd.png,
	pixmaps/langs/lang-el.png, pixmaps/langs/lang-ia.png,
	pixmaps/langs/lang-pt_BR.png, pixmaps/langs/lang-sv.png,
	pixmaps/langs/lang-mi.png, pixmaps/langs/lang-bg.png,
	pixmaps/langs/lang-fo.png, pixmaps/langs/lang-kw.png,
	pixmaps/langs/lang-hu.png, pixmaps/langs/lang-ur.png,
	pixmaps/langs/lang-iu.png, pixmaps/langs/lang-az.png,
	pixmaps/langs/lang-mt.png, pixmaps/langs/lang-et.png,
	pixmaps/langs/lang-wa.png, pixmaps/langs/lang-sq.png,
	pixmaps/langs/lang-he.png, pixmaps/langs/lang-eo.png,
	pixmaps/langs/lang-ta.png, pixmaps/langs/lang-ga.png,
	pixmaps/langs/lang-sr.png, pixmaps/langs/lang-lt.png,
	pixmaps/langs/lang-fa.png, pixmaps/langs/lang-oc.png,
	pixmaps/langs/lang-ms.png, pixmaps/langs/lang-mk.png,
	pixmaps/langs/lang-ar.png, pixmaps/langs/lang-lv.png,
	pixmaps/langs/lang-zh_TW.png, pixmaps/langs/lang-is.png,
	pixmaps/langs/lang-be.png, pixmaps/langs/lang-fr.png,
	pixmaps/langs/lang-ro.png, pixmaps/langs/lang-hr.png,
	pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-sk.png,
	pixmaps/langs/lang-uk.png, pixmaps/langs/lang-br.png,
	pixmaps/langs/lang-en_US.png, pixmaps/langs/lang-bs.png,
	pixmaps/langs/lang-nl.png, pixmaps/langs/lang-af.png,
	pixmaps/langs/lang-tr.png, pixmaps/langs/lang-gl.png,
	pixmaps/langs/lang-pt.png, pixmaps/langs/lang-uz.png,
	pixmaps/langs/lang-pl.png, pixmaps/langs/lang-id.png,
	pixmaps/langs/lang-yi.png, pixmaps/langs/lang-fi.png,
	pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ru.png,
	pixmaps/langs/lang-nn.png, pixmaps/langs/lang-gv.png,
	pixmaps/langs/lang-th.png, pixmaps/langs/lang-cs.png,
	pixmaps/langs/lang-ko.png, pixmaps/langs/lang-tg.png,
	pixmaps/langs/lang-tt.png, pixmaps/langs/lang-da.png,
	pixmaps/langs/lang-ja.png, pixmaps/langs/lang-vi.png,
	pixmaps/langs/lang-es.png: invert video the images since the new theme
	will be printing black text on white background

	* install2.pm: 
	  - add option 'theme' to allow specifying a theme
	  - add option 'doc' to specify that we should override the default
	theme with values well suited for printing screenshots on a B&W printer

	* ugtk2.pm: remove shape of windows

	* install_any.pm: die if getAndSaveFile failed, so that it will be easier
	to debug
	if we have this problem..

	* install_steps_interactive.pm: don't allow going back from
	accept_licenser to select_language, hence allow removing langs images
	before downloading huge CJK fonts

	* mdk-stage1/network.c: when detected too little memory in ftp/http,
	inform user that he/she may try an nfs install

	* lang.pm: don't allow going back from accept_licenser to select_language,
	hence allow removing langs images before downloading huge CJK fonts
	gc sux: install_any is not available in drakxtools

2003/02/13  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

	* share/po/nl.po, share/po/et.po, share/po/fi.po: updated Arabic, Dutch,
	Estonian and Finnish files

	* share/po/ar.po: updated Arabic, Dutch, Estonian and Finnish files
	updated Arabic file

2003/02/13  Pixel  <pixel@mandrakesoft.com>

	* share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
	share/po/help-es.pot: minor changes (update from xml)
	new help from xml

	* network/network.pm, modules/interactive.pm, ugtk2.pm,
	diskdrake/interactive.pm, services.pm, security/level.pm,
	diskdrake/hd_gtk.pm, printer/printerdrake.pm: 
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now

	* install_steps_gtk.pm: 
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now
	  - {interactive_help} is a function returning text, it doesn't need to
	do the help window
	  - drop global interactive_help during install. Will be done per
	->ask_*

	* share/po/help_xml2pm.pl: no need for "empty" id anymore
	  - adapt to new drakx-chapter.xml (esp. handle <variablelist> tags)
	  - replace __ with N_
	  - add "our" for "%steps"

	* interactive.pm: fix ask_warn(), really dont make it pop
	don't force pop_it on ask_warn's
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now
	add ask_yesorno_, ask_okcancel_, ask_warn_, ask_from_listf_raw (to allow
	help)

	* network/modem.pm, network/isdn.pm, network/ethernet.pm, network/adsl.pm,
	network/tools.pm: 
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now
	add CVS $Id

	* help.pm: minor changes (update from xml)
	no need for "empty" id anymore
	fix typo (from xml)
	new help from xml

	* interactive/gtk.pm: fix ask_warn(), really dont make it pop
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now
	  - {interactive_help} is a function returning text, it doesn't need to
	do the help window
	  - drop global interactive_help during install. Will be done per
	->ask_*

	* standalone/fileshareset: cleanup

	* Makefile: fix typo
	use PerlIO-gzip

	* c/Makefile: at last fix the culprit for the dreaded "relocation error"
	(esp. occured when the glibc changed)

	* harddrake/sound.pm: 
	  - {interactive_help} is a function returning text, it doesn't need to
	do the help window
	  - drop global interactive_help during install. Will be done per
	->ask_*

	* Xconfig/card.pm, Xconfig/main.pm, Xconfig/resolution_and_depth.pm,
	Xconfig/monitor.pm: fix and some more Help

	* Xconfig/various.pm, install_interactive.pm, any.pm: fix and some more
	Help
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now

	* install_steps_interactive.pm: 
	  - fix calling configureTimezone
	  - have country before timezone (gc wants it that way...)
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now
	don't use $_total, use $total_ instead

	* standalone/drakboot, commands: make perl_checker happy

	* standalone/drakupdate_fstab: help perl_checker

	* share/list: use PerlIO-gzip

	* network/netconnect.pm: 
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now
	add cvs $Id

	* install_steps.pm: have supermount back by default (at least when the
	security level < 4)
	  - set_help is deprecated
	  - it is replaced by interactive_help_id on each ask_*
	  - many set_help do not have any correspondance in help.pm (drakxid-*),
	those are commented for now

2003/02/13  Stew Benedict  <sbenedict@mandrakesoft.com>

	* mouse.pm: Mouse button emulation. Clarify L-Command, add Enter. (Ben
	Reser)

2003/02/13  Till Kamppeter  <till@mandrakesoft.com>

	* standalone/scannerdrake: Fixed typo.
	Improved handling and structure of scanner database
	  - Scanners with multiple ports are supported now
	  - Fully automatic build of the scanner database, including lines for
	configuration files
	  - Fixed "SnapScan" <-> "snapscan" bug
	  - Some HP scanners had no manufacturer field. Fixed.

	* scanner.pm, handle_configs.pm: Improved handling and structure of
	scanner database
	  - Scanners with multiple ports are supported now
	  - Fully automatic build of the scanner database, including lines for
	configuration files
	  - Fixed "SnapScan" <-> "snapscan" bug
	  - Some HP scanners had no manufacturer field. Fixed.

2003/02/13  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 9.1-0.29mdk
	9.1-0.28mdk

	* services.pm (start_service_on_boot) prevent copying this style
	(do_not_start_service_on_boot) : simplify it

	* scanner.pm: no comment
	fix drakxtools build

2003/02/12  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: fix fpons sucks (at least one time).
	configure profile in order to avoid standalone networking tools to
	complain
	about unconfigured device.

	* standalone/drakpxe: updated to find an interface even when no profile
	are available.

	* pkgs.pm: prefer apache for drakpxe to find the right package.

2003/02/12  gbeauchesne

	* rescue/list, share/list: rpm files are not set to live in /usr/lib/rpm,
	always.

2003/02/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: 
	  - ensure focus should not be needed anymore
	  - support XSetInputFocus hackery

	* mdk-stage1/stdio-frontend.c: compile with -W

	* lang.pm: clean
	add missing pango rendering modules
	in ramdisk, do download additional fonts if needed (fixes problems with
	CJK languages and namely #1098)

	* share/fonts.tar.bz2: CJK fonts can now be pcf.gz, hopefully since they
	will be too large for ramdisks :(

	* tools/make_mdkinst_stage2, share/list: add missing pango rendering
	modules
	in ramdisk, do download additional fonts if needed (fixes problems with
	CJK languages and namely #1098)

2003/02/12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: Updated
	pot file

2003/02/12  Pixel  <pixel@mandrakesoft.com>

	* harddrake/sound.pm: use {interactive_help}

	* any.pm, install_steps_gtk.pm, diskdrake/interactive.pm, run_program.pm,
	install_steps_auto_install.pm, install_steps_stdio.pm,
	network/netconnect.pm, modules.pm, raid.pm, install_steps_newt.pm,
	commands.pm, partition_table.pm: perl_checker compliance ("ref" now need
	parentheses in many case)

	* interactive.pm, interactive/gtk.pm: allow {interactive_help} per dialog
	boxes instead of global
	perl_checker compliance ("ref" now need parentheses in many case)

	* install_steps.pm, install_steps_interactive.pm: rework summary() (esp.
	to allow a gtk frontend)
	perl_checker compliance ("ref" now need parentheses in many case)

	* services.pm: cleanup starts_on_boot()

	* install2.pm: rework summary() (esp. to allow a gtk frontend)

	* ugtk2.pm: don't set pop_it when the window is hidden
	perl_checker compliance ("ref" now need parentheses in many case)

2003/02/12  Till Kamppeter  <till@mandrakesoft.com>

	* scanner.pm, services.pm, standalone/scannerdrake: Scannerdrake vastly
	improved
	  - Use auto-detection methods of SANE
	  - Do not ask the user to configure scanners which are already
	configured
	  - Handle systems with more than one scanner correctly
	  - Added ports of newer scanners (libusb, parallel, ...) to the port
	selector
	in manual setup
	  - Main dialog showing all configured scanners
	  - Full support for scanner sharing via SANE (server/client)
	  - Support for USB scanner access via libusb

2003/02/12  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakpxe: fix just stupid fpons sucks

	* drakxtools.spec: 9.1-0.27mdk

	* standalone/drakconnect: 
	  - clean up through ugtk2
	  - enforce strict mode
	  - give meaningful names to widget variables
	  - fix embedding in mcc at last, aka going into expert mode does not
	fsck up
	the gui
	  - display all configuration buttons (both internet and lan) the same
	way
	  - fix doble variable declaration to MDK::Common::Globals
	  - fix non obvious "not a CODE reference" errors when embedded
	  (fortunately, gc will fix perl-GTK2 if this syntax is still
	authorized)
	  - (configure_lan) : fix gtk+-2 port and remove old commented out
	debugging code

	* standalone/drakperm: perl_checker fixes

	* standalone/draksec: do not enfore default settings

2003/02/11  Frederic Lepied  <flepied@mandrakesoft.com>

	* Makefile.drakxtools: don't take lang subdir in pixmap

2003/02/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_gtk.pm: format-a-la-tex the message telling that the
	system is low on resources

	* install_steps.pm: try to fix the $o->{lang} compat
	have compatibility with old $o->{lang} for not breaking existing auto
	install files

	* install_any.pm: reflect lang->locale changes in saving auto_inst.cfg
	file

	* lang.pm: no need to duplicate LC_MONETARY
	thx perl checko
	have compatibility with old $o->{lang} for not breaking existing auto
	install files

	* Makefile.drakxtools: have localedrake in /usr/bin rather than /usr/sbin
	(#1407)

	* share/gen_locales.pl: update to changes in lang.pm

2003/02/11  Pixel  <pixel@mandrakesoft.com>

	* standalone/lsnetdrake: 
	  - ensure log::l's don't appear on stderr
	  - catch authentification errors

	* keyboard.pm: for GRP_TOGGLE'd keyboard layouts, have "us,XX" instead of
	simply "XX"
	(to have previous XFree's behaviour)

	* fsedit.pm, partition_table.pm: handle 0x7 partition table id specially
	since it can be both hpfs or ntfs.
	so adding 0x107 being really ntfs. hopefully this change won't break too
	much things
	(but things were already broken, since it assigned a mount point with
	type ntfs to
	some hpfs partitions) (fixes bug #1455)

	* partition_table/raw.pm: add "OS/2 boot manager" (see bug #1338)

	* share/diskdrake.rc: 
	  - have the "Windows" button blue
	  - set xthickness = 1 and ythickness = 1 for buttons
	(so that non-colored buttons have the same feelings with the upcoming
	new
	  theme)

	* Xconfig/card.pm: don't set AGPMode (see bug #707)

2003/02/11  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* bootlook.pm: stop:
	  - copying stude && useless trace around
	  - reinventing the wheel: kill parse_etc_passwd() and use list_users()
	instead

	* standalone/harddrake2: no frame in standalone mode

	* standalone/drakperm: smoother gui
	  - further ugtk2 cleanups
	  - (row_setting_dialog) : fix implosion
	phase 1 of drakperm clean up through ugtk2
	  - gtk2 port of dialogs (poulpy)
	  - one callback cleanup (me):
	o enforce strict mode (aka kill jonathanries) and introuce
	    a permission data structure.
	  o no need to keep global references on widget we pack through
	    symbolic references; this is only namespace pollution

2003/02/10  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - help link can be non local (http, www connnections).

	* standalone/drakhelp: 
	  - s/link/path/
	  - http connections handled.

2003/02/10  Frederic Lepied  <flepied@mandrakesoft.com>

	* network/netconnect.pm: reworded network restart string

	* network/ethernet.pm: added a text to describe the Zeroconf host name
	field

	* network/network.pm: corrected option handling and added hotplug checkbox

2003/02/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: perl checko

	* tools/make_mdkinst_stage2: count space needed for the filesystem so that
	we don't end up with 3 mbytes of free space if /tmp was ext3

	* interactive/gtk.pm: two fixes thx to perl_checker, one among them being
	very important :)
	when displaying images in treeview, unref pixbufs right after their use
	so that we try to save some memory

	* lang.pm: perl checko files

2003/02/10  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ar.po: updated Arabic file

2003/02/10  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: ck hptraid, but discard the insmod error for it
	small cleanup

	* bootloader.pm: in lilo.conf, "unsafe" is incompatible with "table=..."
	(fixes bug #1382)

	* fs.pm, diskdrake/interactive.pm, install_steps_interactive.pm: 
	  - more precise message when formatting / fsck'ing / mounting
	partitions
	  - hide passwords (for smb)

2003/02/10  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* network/netconnect.pm, network/network.pm, network/ethernet.pm:
	perl_checker fixes

	* ugtk2.pm: 
	  - sort functions by name in export tags
	  - (gtkset_name) introduce it for mcc and reuse it in
	create_box_with_title()

	* harddrake/sound.pm: cs4239 is managed by both "ad1848" and "snd-cs4236"

2003/02/09  Pixel  <pixel@mandrakesoft.com>

	* install_gtk.pm: do translate "System installation" and "System
	configuration" in steps window

2003/02/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/init.c: when probing that we're in testing mode, print out
	the pid (since the probe is based on the pid and some recent machines
	seem to interact badly with that when in bad acpi mood)

	* mdk-stage1/Makefile: set version to 9.1

	* pixmaps/langs/lang-zh_CN.png, pixmaps/langs/lang-sl.png,
	pixmaps/langs/lang-hy.png, pixmaps/langs/lang-de.png,
	pixmaps/langs/lang-cy.png, pixmaps/langs/lang-it.png,
	pixmaps/langs/lang-eu.png, pixmaps/langs/lang-ca.png,
	pixmaps/langs/lang-sp.png, install_steps_interactive.pm,
	pixmaps/langs/lang-am.png, pixmaps/langs/lang-nb.png,
	pixmaps/langs/lang-gd.png, install_steps_newt.pm,
	pixmaps/langs/lang-el.png, pixmaps/langs/lang-ia.png,
	pixmaps/langs/lang-pt_BR.png, pixmaps/langs/lang-sv.png,
	pixmaps/langs/lang-mi.png, pixmaps/langs/lang-bg.png,
	pixmaps/langs/lang-fo.png, pixmaps/langs/lang-kw.png,
	pixmaps/langs/lang-hu.png, pixmaps/langs/lang-ur.png,
	pixmaps/langs/lang-iu.png, install_steps_auto_install.pm,
	pixmaps/langs/lang-az.png, standalone/drakhelp,
	pixmaps/langs/lang-mt.png, pixmaps/langs/lang-et.png,
	pixmaps/langs/lang-wa.png, pixmaps/langs/lang-sq.png,
	pixmaps/langs/lang-he.png, pixmaps/langs/lang-eo.png,
	pixmaps/langs/lang-ta.png, pixmaps/langs/lang-ga.png,
	pixmaps/langs/lang-sr.png, pixmaps/langs/lang-lt.png,
	pixmaps/langs/lang-fa.png, install_any.pm, pixmaps/langs/lang-oc.png,
	standalone/drakxtv, pixmaps/langs/lang-ms.png,
	pixmaps/langs/lang-mk.png, pixmaps/langs/lang-ar.png,
	pixmaps/langs/lang-lv.png, pixmaps/langs/lang-zh_TW.png,
	pixmaps/langs/lang-is.png, pixmaps/langs/lang-ro.png,
	pixmaps/langs/lang-be.png, pixmaps/langs/lang-fr.png, install_steps.pm,
	install_gtk.pm, pixmaps/langs/lang-hr.png, Makefile,
	pixmaps/langs/lang-en_GB.png, pixmaps/langs/lang-sk.png,
	install_steps_stdio.pm, pixmaps/langs/lang-uk.png,
	pixmaps/langs/lang-br.png, pixmaps/langs/lang-en_US.png, lang.pm,
	install2.pm, pixmaps/langs/lang-nl.png, pixmaps/langs/lang-bs.png,
	pixmaps/langs/lang-af.png, pixmaps/langs/lang-tr.png,
	pixmaps/langs/lang-pt.png, pixmaps/langs/lang-gl.png,
	standalone/localedrake, pixmaps/langs/lang-uz.png, any.pm,
	pixmaps/langs/lang-pl.png, pixmaps/langs/lang-id.png,
	pixmaps/langs/lang-yi.png, pixmaps/langs/lang-fi.png,
	pixmaps/langs/lang-ka.png, pixmaps/langs/lang-ru.png,
	pixmaps/langs/lang-nn.png, pixmaps/langs/lang-gv.png,
	pixmaps/langs/lang-th.png, pixmaps/langs/lang-cs.png,
	pixmaps/langs/lang-ko.png, pixmaps/langs/lang-tg.png, keyboard.pm,
	pixmaps/langs/lang-tt.png, pixmaps/langs/lang-da.png,
	pixmaps/langs/lang-ja.png, pixmaps/langs/lang-vi.png,
	pixmaps/langs/lang-es.png, timezone.pm: language/country selection
	change:
	  - first install step is selection of your language, in your language;
	it uses images for that
	  - language->country is probed, the selection of the country is
	possible
	  if there was a problem, in the Summary step
	  - in the $o big structure, we now use $o->{locale} which contains
	  three keys: lang, country and utf8
	  - lang.pm has been cleaned and rewritten a bit
	  - keyboard probing now done only on language (because this step is
	  at the beginning of the install)
	  - timezone probing done on country, if use changes country before
	  timezone in the Summary, re-probe timezone accordingly

	* rescue/tree/etc/issue: remove "cooker" from the issue of the rescue
	since we're
	aproaching the release candidates

	* install_steps_gtk.pm: say we're low on resources if we have less than 70
	Mb of RAM (was 60 Mb)

	* tools/make_mdkinst_stage2: the shitload of images for selecting
	languages in their languages needs a few additional inodes..

	* install_messages.pm: change address for errata to reflect the future 9.1

	* mdk-stage1/network.c: indent

	* interactive.pm, interactive/gtk.pm: add option advanced_state: if set to
	1, force the "Advanced" part of the dialog to be opened initially
	add possibility to display images in tree-lists and bool-lists

	* mdk-stage1/config-stage1.h: ramdisk is enlarging, move the limit from 52
	Mb to 68 Mb (it won't work properly in gtk on a box with 64 Mb of
	memory..)

2003/02/07  alus

	* share/po/pl.po: updated

2003/02/07  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: 
	  - DHCP & Zeroconf fixes for installation
	  - fix '217.0.0.1 localhost' not written in /etc/hosts when using DHCP

	* standalone/drakfont: 
	  - full Gtk2
	  - cleanup code (still much to do...)

	* drakxtools.spec: new version

2003/02/07  fabman

	* share/po/es.po: updated Spanish translations

2003/02/07  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
	share/po/ca.po, share/po/da.po, share/po/tg.po, share/po/bs.po,
	share/po/uz.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	pot file

	* share/po/ar.po: updated Arabic file
	updated pot file

	* share/po/sv.po, share/po/cy.po: Updated Welsh and Swedish files
	updated pot file

	* printer/printerdrake.pm: Fixed English typo

	* share/po/et.po: updated po file
	updated pot file

	* standalone/drakedm: fixed English typo

2003/02/07  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/card.pm: fix english typo (bug #1350)

2003/02/06  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakhelp: 
	  - change package name to install

2003/02/06  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* drakxtools.spec: new version

	* network/network.pm: avoid to mess up tmdns.conf file
	fix dhcp package installation
	fix zeroconf suckiness

2003/02/06  fabman

	* share/po/es.po: updated translation

2003/02/06  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/uz.po, share/po/de.po: Added start of Uzbek file; updated
	German file

2003/02/06  Pixel  <pixel@mandrakesoft.com>

	* interactive/gtk.pm: add "Help" button

	* install_steps_interactive.pm (setRootPassword): have the focus on the
	password field

	* any.pm (ask_users): focus the "name" field, and change the buttons name
	& place

	* install_steps_gtk.pm: have the focus on the help "Ok" button
	missing aewm-drakx causes pb when testing (perl going havoc?)
	add "Help" button

	* install_gtk.pm: remove create_big_help

	* ugtk2.pm: drop "F1" for help (since a "Help" button is now available)
	(create_okcancel): allow buttons on the left (for the "Help" button)

	* interactive/newt.pm: fix sizing in the scrolled window in 80x25

	* diskdrake/hd_gtk.pm: add "Help" button
	(filesystems_button_box): in the caption write "Windows" instead of
	"FAT"
	(since NTFS uses the same color)

2003/02/06  Till Kamppeter  <till@mandrakesoft.com>

	* printer/detect.pm: Corrected call for "tryWrite" function.

2003/02/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakedm: sanitize
	perl_checker fix (yeah, i was faster than perl_checko!)
	the result of David Sansome|Laurent Montel|Frederic Lepied|Davod
	Beidebs|Thierry Vignaud collision

	* Makefile.config: add drakedm

	* standalone/drakfloppy: fix floppy create :-)

2003/02/04  François Pons  <fpons@mandrakesoft.com>

	* network/adsl.pm: fixed small typo.
	add support for adiusbadsl 1.0.2 (using adictrl -i to find interface and
	using
	pppoa).

2003/02/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/tg.po, share/po/bs.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/sq.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file

2003/02/04  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm: don't ->set_modal during install

	* devices.pm: add "vcsa" (for brltty)

	* Makefile: add brltty help file
	wildcard * in share/list allowed to match multiple files, but not
	multiple directories

	* install2.pm: fix typo
	add brltty help file
	brltty support

	* tools/make_mdkinst_stage2, install_steps.pm, install_any.pm: brltty
	support

	* share/list: add brltty help file
	brltty support

	* share/rpmsrate: add brltty
	move packages from 3 to 4 (fix bug #1265)

2003/02/04  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: Use system configs when wrapped in mcc.

2003/02/04  Till Kamppeter  <till@mandrakesoft.com>

	* handle_configs.pm: 
	  - "Out-sourced" functions for config file handling into
	handle_configs.pm,
	it is used by both printerdrake and scannerdrake.
	  - Improvements and fixes on CUPS daemon configuration by printerdrake.

	* printer/printerdrake.pm: Fixed auto-detection of a configured (but not
	started) network.
	  - "Out-sourced" functions for config file handling into
	handle_configs.pm,
	it is used by both printerdrake and scannerdrake.
	  - Improvements and fixes on CUPS daemon configuration by printerdrake.

	* printer/main.pm: Removed debug helper line.
	  - "Out-sourced" functions for config file handling into
	handle_configs.pm,
	it is used by both printerdrake and scannerdrake.
	  - Improvements and fixes on CUPS daemon configuration by printerdrake.

2003/02/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/draksec: 
	  - fix get_check_default() and get_function_default() description
	  - fix "check states were not saved if their value did not change (thus
	reverting it to default on disk)"
	  - fix emebedding (no transcience when embedded)
	  - fix "value get chop()-ed until it disapear and is reset to default"
	  - log which security level is set and not only the switch
	killing latest remanent parts of christian "yeah baby, i'm piggy"
	work:
	
	  - functions and checks listing :
	  o rename get_functions() as list_functions() and
	    get_default_checks() as list_checks();   this is both
	    more homogenous and enable one to separate them from the
	    get_(check|function)_(value|default) function group
	  o regroup them
	  o over simplify list_functions(): leave functions listing to msec
	    (aka /usr/share/msec/level.<LEVEL>, assuming share/msec.py is
	    always up to date, just don't care reparsing python code (this is
	    plain stupid);  if we cannot rely on msec, on who could we :-) ?
	  o this allow to simplify msec gui so that we do not exclude stuff
	    already excluded
	  - remove config_check(), config_funtion(): replace them by:
	  o set_check() and set_function() to store new values in data
	    structure
	  o apply_checks() and apply_functions() to save these new values,
	    thus writing config files once and not twice the functions &
	    checks count
	now, we always have a help entry and a default value but when fredl
	rename a
	check and forgot to remove it from /var/lib/msec/security.conf like
	CHECK_SUID_GROUP => CHECK_SGID, but hopefully, he'll fix msec

	* share/theme-editor.pl: update theme editor to current libDrakX api

	* drakxtools.spec: 9.1-0.22mdk

	* security/msec.pm: perl_checker fix
	  - fix get_check_default() and get_function_default() description
	  - fix "check states were not saved if their value did not change (thus
	reverting it to default on disk)"
	  - fix emebedding (no transcience when embedded)
	  - fix "value get chop()-ed until it disapear and is reset to default"
	  - log which security level is set and not only the switch
	killing latest remanent parts of christian "yeah baby, i'm piggy"
	work:
	
	  - functions and checks listing :
	  o rename get_functions() as list_functions() and
	    get_default_checks() as list_checks();   this is both
	    more homogenous and enable one to separate them from the
	    get_(check|function)_(value|default) function group
	  o regroup them
	  o over simplify list_functions(): leave functions listing to msec
	    (aka /usr/share/msec/level.<LEVEL>, assuming share/msec.py is
	    always up to date, just don't care reparsing python code (this is
	    plain stupid);  if we cannot rely on msec, on who could we :-) ?
	  o this allow to simplify msec gui so that we do not exclude stuff
	    already excluded
	  - remove config_check(), config_funtion(): replace them by:
	  o set_check() and set_function() to store new values in data
	    structure
	  o apply_checks() and apply_functions() to save these new values,
	    thus writing config files once and not twice the functions &
	    checks count

	* standalone/harddrake2: adapt to new mandrake_doc-drakxtools-* packages

2003/02/03  alus

	* share/po/pl.po: Not too many entries in beta release?

2003/02/03  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: dhcp/zeroconf stuff

2003/02/03  florin

	* network/netconnect.pm: fix some drakgw behaviour

2003/02/03  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: integrated chmouel fixes.

2003/02/03  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/tg.po, share/po/bs.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: updated pot file

	* share/po/ar.po: updated Arabic file
	updated pot file

2003/02/03  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pl, install_any.pm: do not eject cdrom when already removed
	at the end of install (bug #1235)

	* modules/parameters.pm: use run_program::get_stdout

	* standalone/icons/smbnfs_mounted.png,
	standalone/icons/smbnfs_default.png,
	standalone/icons/smbnfs_has_mntpoint.png: have the background fully
	transparent

	* pkgs.pm: prefer mdkkdm over kdebase-kdm

	* diskdrake/interactive.pm: make perl_checker happy

	* diskdrake/smbnfs_gtk.pm: cleanup
	port to Gtk2

	* install_steps_gtk.pm: fix test mode install when Xnest is not there

	* standalone/diskdrake: don't "use diskdrake::interactive", only require
	it when needed

	* Xconfig/test.pm: ensure the X test strings are translated

	* interactive/newt.pm: fix typo (for treelist)

	* standalone/keyboarddrake: make perl_checker happy
	translate keyboard names

	* install_steps.pm: remove yelp-pregenerate

2003/02/03  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/draksec: 
	  - msec was altered to produce help suitable for formatAlaTeX()
	  - use formatAlaTeX() to have nicer tooltips

	* docs/porting-ugtk: new obsolete func (thanks drakcronat)

	* share/po/fr.po: typo fix

	* security/msec.pm: 
	  - consolidate file names
	  - remove unused variables
	  - rename get_(default|value as load_(default|value)s and alter them so
	that config file are read only one time instead of one per option;
	  data is stocked in package variable
	  - thus get_default_checks() is quite a lot faster
	  - alter get_(check|function)_(value|default) to use new data structure
	  - fix check default reading
	  - group default values reading and current values reading
	what's left: do the same thing for writing tomorow

	* security/help.pm: 
	  - msec was altered to produce help suitable for formatAlaTeX()
	  - use formatAlaTeX() to have nicer tooltips
	auto-generated from msec/share/draksec_help.py libmsec and moved from
	msec to here so that draksec help'll get translated
	all changes must be done in soft/msec/share/libmsec.py !!!

	* drakxtools.spec: 9.1-0.21mdk (to be continued by pouly)

	* share/po/Makefile: remove drakpxe exception since fpons has at lease
	fixed "fpons sucks"
	in drakpxe

2003/02/03  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm, network/ethernet.pm: 
	  - fix zeroconf support
	  - cleanups

2003/02/03  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/cy.po: updated Welsh file

2003/02/03  Pixel  <pixel@mandrakesoft.com>

	* modules/parameters.pm: use run_program::get_stdout

2003/02/03  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/draksec: sanitize gui (aka make it look nicer):
	  - put the same help label on top of each msec options notebook pages
	and consolidate it
	  - use gtkpack_ instead of gtkpack so that we can tell gtk+ that label
	  must neither fill nor expand, only the packtable should
	display again the first notebook page
	if no default value, then do not print one (aka for cron checks)
	fix help system description.
	we should really use the camille/deush help system though.
	  - perl_checker fixes
	  - display sorted options (hey pixel, note that the last diff trunk
	with
	  execessive () was not detected by perl_checker :-( )

	* modules/parameters.pm: pixelize(tm)

	* standalone/interactive_http/authorised_progs: draksec is not written to
	use interactive, thus cannot be used by http
	frontend

	* standalone/interactive_http/miniserv.init: sanitize draxktools server
	service script:
	  - no gratuitous shell forking
	  - now can be debugged through "sh -x"
	  - use std shell service lib
	  - make it print [OK] || [FAILLED]

	* ugtk2.pm: let simplify

2003/02/02  alus

	* share/po/pl.po: updated

2003/02/02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ar.po: updated Arabic, Spanish, Finnish and Slovak files
	updated Arabic and Danish files

	* share/po/es.po, share/po/sk.po, share/po/fi.po: updated Arabic, Spanish,
	Finnish and Slovak files

	* share/po/da.po: updated Arabic and Danish files

2003/02/02  Pixel  <pixel@mandrakesoft.com>

	* printer/printerdrake.pm: move whatPrinter(), whatUsbport() and
	whatPrinterPort() out of detect_devices to printer::detect
	(it cleans up detect_devices, and won't hurt eyes anymore :)
	this change, together with .perl_checker skipping printer::* marks the
	style disagreement
	    between printer/* and the rest of install

	* lang.pm, common.pm, install_interactive.pm: please perl_checker

	* printer/detect.pm, detect_devices.pm: move whatParport() to
	printer::detect
	move whatPrinter(), whatUsbport() and whatPrinterPort() out of
	detect_devices to printer::detect
	(it cleans up detect_devices, and won't hurt eyes anymore :)
	this change, together with .perl_checker skipping printer::* marks the
	style disagreement
	    between printer/* and the rest of install

	* bootloader.pm: fix grub installed on {first_hd_device} instead of {boot}
	(bug #1199)

	* share/diskdrake.rc: NTFS is blue

	* partition_table.pm (adjust_local_extended): fix resizing local extended

	* install_gtk.pm, ugtk2.pm: ensure the window is big enough in 640x480:
	remove logo and steps window

	* .perl_checker: do not check printer::main, printer::printerdrake and
	printer::detect, too many warnings

	* install_steps_gtk.pm: 
	  - handle {vga16} in Xnest testing mode
	  - fix weird bug due to missing aewm-drakx in test mode (??)
	  - add Xnest feature when testing
	  - cleanup and re-indent

2003/02/02  siegel

	* share/po/de.po: some updates

2003/02/02  Till Kamppeter  <till@mandrakesoft.com>

	* install_steps.pm, install_steps_interactive.pm: Fixed Foomatic
	installation done by installer.

2003/02/01  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/vi.po: updated Vietnamese, Estonian and Albanian files
	updated Vietnamese file

	* share/po/et.po, share/po/sq.po: updated Vietnamese, Estonian and
	Albanian files

2003/02/01  Till Kamppeter  <till@mandrakesoft.com>

	* printer/data.pm, printer/printerdrake.pm: 
	  - Completed support for pre-compiled Foomatic PPDs.
	 - Cleaning of mamufacturer names for menues and for comparing
	auto-dtected
	   data against Foomatic centralized in one function.
	 - Fixed file name in check for installed packages.
	 - Fixed display of boolean options from native PostScript PPD files in
	the
	   option setting dialog.

	* printer/main.pm: 
	  - Improved generation of printer list entries from
	manufacturer-supplied PostScript PPDs.
	  - Completed support for pre-compiled Foomatic PPDs.
	 - Cleaning of mamufacturer names for menues and for comparing
	auto-dtected
	   data against Foomatic centralized in one function.
	 - Fixed file name in check for installed packages.
	 - Fixed display of boolean options from native PostScript PPD files in
	the
	   option setting dialog.

2003/01/31  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* install_steps_interactive.pm: be sure $o->{netcnx}{type} is set when
	using easy_dhcp

	* mdk-stage1/network.c: don't save hostname if intf->boot_proto ==
	BOOTPROTO_DHCP

	* network/ethernet.pm: zeroconf

	* drakxtools.spec: new version

	* ugtk2.pm: avoid poping

	* network/network.pm: more zeroconf configuration

2003/01/31  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/he.po, share/po/sp.po, share/po/cy.po, share/po/da.po,
	share/po/ar.po, share/po/tg.po, share/po/bs.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/vi.po,
	share/po/ta.po, share/po/fr.po, share/po/sq.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: updated pot file

	* share/po/ca.po: updated pot file
	Fixed small error (missing "/" in menu entry)

	* standalone/drakbackup: fixed typo (drakbakup.conf -> drakbackup.conf)

2003/01/31  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix poulpy

2003/01/31  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* install_steps_interactive.pm: be sure $o->{netcnx}{type} is set when
	using easy_dhcp

	* mdk-stage1/network.c: don't save hostname if intf->boot_proto ==
	BOOTPROTO_DHCP

	* ugtk2.pm: avoid poping

2003/01/31  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/resize_ntfs.pm: create diskdrake::resize_ntfs to factorize
	code

	* install_gtk.pm (createXconf): special case for "none" mouse device
	graphical layout change

	* install_steps_gtk.pm: handle pop_it more nicely: no need to precise
	pop_it when the wizard window already has a window,
	that way, two dialog boxes won't merge in the same window (which is
	dumb!)
	remove explicitly setting the size of advertising window
	(it wasn't setting the same size as the wizard mode size)

	* install_any.pm: fix typo

	* diskdrake/interactive.pm: 
	  - do not write_partitions when resizing & loosing data (not needed)
	  - handle "cancel" on write_partitions
	fix typo (calling resize_fat::main instead of diskdrake::resize_ntfs)
	create diskdrake::resize_ntfs to factorize code

	* install_interactive.pm: fix "one big ntfs" resizing (in the limit case)
	small fixes
	add ntfs resize to the wizard

	* interactive/gtk.pm, diskdrake/hd_gtk.pm, ugtk2.pm: handle pop_it more
	nicely: no need to precise pop_it when the wizard window already has a
	window,
	that way, two dialog boxes won't merge in the same window (which is
	dumb!)

	* mouse.pm (detect): cleanup the value returned when only a wacom is found

	* install_steps_interactive.pm: fix poulpy

	* install_steps.pm: do "yelp-pregenerate -a" only once

2003/01/31  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: 
	  - Faster switch between normal and expert mode (no re-read of the
	print
	queues).
	  - Prepared for working with pre-compiled Foomatic PPDs.

2003/01/31  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: beta 3 logo

2003/01/31  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm, diskdrake/resize_ntfs.pm: create
	diskdrake::resize_ntfs to factorize code

	* install_interactive.pm: add ntfs resize to the wizard

	* install_any.pm: fix typo

	* install_gtk.pm: graphical layout change

2003/01/30  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: fixed progress bar
	too small.
	new image for floppy for 9.1

	* share/list: added pango-hebrew-xft.so for hebrew to be displayed
	(chmouel)

2003/01/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/tg.po: Added Tajiki file

	* share/po/cy.po: converted Welsh file to UTF-8

	* share/po/nl.po: updated Dutch file

2003/01/30  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm: drop $o->{lnx4win} handling
	add isFat_or_NTFS() and use it where possible instead of isFat() since
	Windows
	is now using ntfs, not only Windows NT

	* install2.pm: drop $o->{lnx4win} handling

	* mdk-stage1/Makefile: remove other.img & usb.img, add hd_usb.img &
	network_gigabit_usb.img

	* Xconfig/xfree.pm (merge_values): allow get_monitors to work when xfree3
	is missing

	* interactive.pm (helper_separator_tree_to_tree): this new function helps
	transforming a
	flag {list} to a tree, using {separator}

	* interactive/newt.pm: perl_checker small fixes
	basic treelist handling (it leaks memory, but who cares, compared to gtk
	:)

	* any.pm, bootloader.pm, install_steps_interactive.pm,
	diskdrake/hd_gtk.pm, fsedit.pm, install_any.pm, partition_table.pm: add
	isFat_or_NTFS() and use it where possible instead of isFat() since
	Windows
	is now using ntfs, not only Windows NT

	* network/network.pm, network/ethernet.pm, install_steps_auto_install.pm,
	network/netconnect.pm, modules.pm: adapt to new category network/gigabit
	(which used to be in network/main)

	* Newt/Newt.xs: basic treelist handling (it leaks memory, but who cares,
	compared to gtk :)

2003/01/30  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: 
	  - Conservation of option settings also for queues with PostScript PPD
	files
	or when switching between PostScript PPD file and Foomatic.
	  - Fixed tree structure of main window in expert mode.
	  - Several smaller bug fixes.
	  - Display options devided in the groups defined in the PPD file.
	  - For Foomatic PPDs the options in the "General" group are shown by
	default
	  the rest when clicking "Advanced". When there ar no groups, the
	decision
	  is done by a table of most commonly used option names.
	  - Sort the displayed options of a queue with a non-Foomatic PPD file
	by the
	  importance of the options.
	  - Do not sort the values of an option, they are already conveniently
	sorted
	  in the PPD files.
	  - Removed some unnecessary re-reads of the printer option information.
	  - Several fixes to run smoothly with Foomatic 2.9.x.

	* printer/data.pm: 
	  - Conservation of option settings also for queues with PostScript PPD
	files
	or when switching between PostScript PPD file and Foomatic.
	  - Fixed tree structure of main window in expert mode.
	  - Several smaller bug fixes.

2003/01/30  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/harddrake2: translate topics (aka hw class names) in
	harddrake gui

	* drakxtools.spec: 9.1-0.19mdk

	* harddrake/data.pm: translate topics (aka hw class names) in harddrake
	gui
	  - cosmetic fix for "drakconnect does not detect nvnet part of nvforce2
	chips"
	hint: their class is MEMORY_RAM :-( ...
	  - btw, simplify unknown devices detection (merging tests regarding
	driver and
	  media type)
	  - move nforce system controllers in bridge class (which is renamed
	"bridges and
	  system controllers" aka where we put stuff we've nothing to configure
	but we
	  don't want to put them in controller so that users are not afraid) but
	nvnet

	* standalone/logdrake: on second thoughts, this is just simpler
	  - perl_checker fixes
	  - fix non embedded case :-(

2003/01/30  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (helper_separator_tree_to_tree): this new function helps
	transforming a
	flag {list} to a tree, using {separator}

	* Newt/Newt.xs, interactive/newt.pm: basic treelist handling (it leaks
	memory, but who cares, compared to gtk :)

2003/01/29  François Pons  <fpons@mandrakesoft.com>

	* standalone/drakpxe: fixed perl_checker

	* network/netconnect.pm: fixed some perl_checker

2003/01/29  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/da.po, share/po/pt.po: updated Portuguese and Danish files

	* keyboard.pm, lang.pm: switched some languages to UTF-8 (they use ascii
	only, so it shouldn't
	be noticed); changed a keyboard name to match name used by XFree86

2003/01/29  Pixel  <pixel@mandrakesoft.com>

	* share/list: ntfsresize feature added (not tested!)

	* detect_devices.pm, raid.pm: software raid (mdX) can go up to md31

	* diskdrake/hd_gtk.pm: don't set $::main_window during install

	* diskdrake/interactive.pm: fix various resize pbs:
	  - write partition table *before* resizing when partition is enlarged
	  - debug ntfsresize
	dumpe2fs call cleanup
	ntfsresize feature added (not tested!)

	* fsedit.pm: handle mdX where X >= 10 (it should fix bug #1129)

2003/01/29  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: 
	  - Automatic non-interactive installation of local print queues.
	  - Standard and advanced options selected by option groups in PPD.
	  - Fixed bug of "CUPS + GIMP-Print" drivers being preferred against
	"Foomatic + gimp-print" drivers in beginners mode.
	  - Foomatic package installation adapted to Foomatic 2.9.x.

2003/01/29  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/logdrake: logdrake is a special case as for embedding in mcc
	since it can be embedded
	twice: one as explanation viewer and one a log search tool.
	so we must handly ask mcc to display us ...

	* detect_devices.pm (getIDE) don't provide information when we don't have
	it (vendor, description)
	(getModem) it always return an empy hash, thus confusing harddrake

	* harddrake/data.pm: fix doble detection of pci modems
	restore cd/dvd burners detection

	* standalone/harddrake2: print badly managed devices' drivers in red

2003/01/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive/gtk.pm: fixes unresponsive keyboard

2003/01/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po, share/po/DrakX.pot: updated Portuguese file

	* share/po/fi.po, share/po/he.po: updated Finnish and Hebrew files

2003/01/28  Pixel  <pixel@mandrakesoft.com>

	* Newt/Newt.xs, interactive/newt.pm: cleanup use of flags
	simplify API (always -1,-1 for left,top when creating widget, it means
	auto-placement)

	* any.pm: log configured dvds for better post-debugging

	* diskdrake/interactive.pm: for resize2fs, don't multiply by 512 *then*
	divide by $block_size, better
	divide by ($block_size / 512)

2003/01/28  Till Kamppeter  <till@mandrakesoft.com>

	* share/rpmsrate: Take into account the new splitting of the Foomatic
	packages.

	* printer/main.pm, printer/printerdrake.pm: More stuff for non-interactive
	printer configuration:
	  - Added find_new_printer() function to find local printers which are
	not
	configured yet
	  - Fixed Titi's bugs which messed up list of auto-detected printers
	  - Corrected text in the dialog for changing the printer connection
	type
	  (for local printer connections).
	  - Allow switching to expert mode during installation (the installation
	has
	  no global expert mode any more.

2003/01/28  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone.pm: s/version name/version number/ (Christophe Combelles)
	typo fix in logdrake usage help (spoted by Christophe Combelles)

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
	share/po/cs.po, share/po/bg.po, share/po/el.po, share/po/hu.po: typo fix
	in logdrake usage help (spoted by Christophe Combelles)

	* interactive.pm, ugtk2.pm, ugtk.pm, interactive/gtk.pm, common.pm:
	cleaning the utf8 support stuff:
	  - consolidate check_for_xserver() to check for x11 access
	  - introduce prepare_gtk2() to do what gtk+2 needs, so that
	  tools that're not part of drakxtools (aka: rpmdrake, mcc, ...) can
	just do :
	
	  unshift @::textdomains, 'drakconf';  prepare_gtk2();

	* harddrake/TODO: update

	* drakxtools.spec: 9.1-0.17mdk

2003/01/27  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* standalone/drakfont: 
	  - progress bars works
	  - change sucky About box
	  - wipeout commented code
	  - remove ugly borders when embedded

2003/01/27  florin

	* standalone/drakgw: typo rename, not renamef

2003/01/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mouse.pm: fix missing pointer_ungrab so that after testing mouse during
	install we can move the mouse pointer everywhere

	* interactive/gtk.pm: since return values of callbacks are now
	non-ignored, we need to
	return 0 to the expose_event when displaying wait message so that
	gdk really does the exposure :)

2003/01/27  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/vi.po: updated po file

2003/01/27  Pixel  <pixel@mandrakesoft.com>

	* interactive/newt.pm: don't blindly truncate strings to size 40 in
	simplify_string

2003/01/27  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: Adapted printerdrake to
	Foomatic 2.9.x, bug fix for use of native PPDs in recommended mode, bug
	fixes in association between detected printers and existing queues.

2003/01/27  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* modules.pm: fix latest source of "unlisted modules" in draksound:
	modules::get_alias() was able to give "module " instead of only "module"
	beacause modules::read_conf() split the line on space with a maximum of
	3
	splited elements.
	i choose to strip terminal spaces and btw terminal comments.
	i did not choose to do not put a limit to split since it's usefull for
	some
	cases.

	* standalone/drakbug: force drakbug to be runnable in strict mode

	* drakxtools.spec: 9.1-0.16mdk
	9.1-0.15mdk
	reput back perl-gtk-0.7 dependancy because of drakfloppy and
	net_monitor

	* standalone/drakxtv: this patch enable doc team to take snapshot of
	drakxtv even if they do not
	have any card:
	  - running "/usr/sbin/drakxtv" will enable to take snapshot of error
	message
	when xawtv wasn't installed by the drakx installer
	  - running "/usr/sbin/drakxtv --testing" will emulate a fake dummy tv
	card
	  so that one is able to take snapshots of configuring a tv card

	* Makefile: roll back (mcc!=gi)
	remove warnings in package

	* standalone/draksec: it's useless to import %security::help::help since
	it's already
	exported by our

	* ugtk2.pm: remove debugging statement
	let mcc pack tables behave smoother, so that all columns of mcc tables
	behave
	like last column of drakx's pack tables
	don't sent USR2 to mcc for logdrake;
	logdrake is handled differently since it's a special case.
	else on first execution of an embedded app, we take two USR2 (one from
	the
	embedded app and one from logdrake, which is bad)

	* standalone/drakfloppy, interactive.pm, standalone/net_monitor: strip
	authentification out of interactive->vnew into common.pm
	This enable apps that still use gtk+-1.2 via my_gtk to still work when
	they only need interactive->vnew('su') just to get root capabilities.
	Indeed, interactive load ugtk if it has access to the X server, which
	make my_gtk and ugtk fight for the cpu forever... which is bad imho...
	drakfloppy and net_monitor were converted to use it and are now usuable
	again
	("i leave ...  again" commit).
	
	it would also enable to complete spec 64 by enabling rpmdrake
	to use kdesu under kde and consolehelper under gnome.
	rpmdrake is indeed the last program to not behave like
	the running desktop to get root capability.
	
	unless someone is against this, i'll convert the mcc and all other gtk+
	pure
	tools to do not use anymore interactive just to get root capability.
	
	
	btw, i fixed the infamous SECTOR_SIZE warning...

	* diskdrake/hd_gtk.pm, interactive/gtk.pm: diskdrake: when non embedded,
	ensure sub window are modal
	all other drakx tool can be fixed the same way

	* share/po/Makefile: since fpons don't care about fixing drakxtools build
	broken by
	drakpxe, let remove drakpxe from translatable files

	* standalone/logdrake: cosmetic fix for embedded mode:
	don't display "wait while parsing" window when embedded
	fix logdrake behaviour in mcc where logdrake would only log
	the first process.
	another (rare indeed) case of a bug introduced because perl_checker
	wanted us to localize a file handle :-(

	* common.pm (require_root_capability): having extracted it from
	interactive enable
	to further simplify it
	strip authentification out of interactive->vnew into common.pm
	This enable apps that still use gtk+-1.2 via my_gtk to still work when
	they only need interactive->vnew('su') just to get root capabilities.
	Indeed, interactive load ugtk if it has access to the X server, which
	make my_gtk and ugtk fight for the cpu forever... which is bad imho...
	drakfloppy and net_monitor were converted to use it and are now usuable
	again
	("i leave ...  again" commit).
	
	it would also enable to complete spec 64 by enabling rpmdrake
	to use kdesu under kde and consolehelper under gnome.
	rpmdrake is indeed the last program to not behave like
	the running desktop to get root capability.
	
	unless someone is against this, i'll convert the mcc and all other gtk+
	pure
	tools to do not use anymore interactive just to get root capability.
	
	
	btw, i fixed the infamous SECTOR_SIZE warning...

	* standalone/harddrake2: make interactive help window be modal, aka
	transcient for main ugtk2
	window
	perl_checker fix
	use new help system

	* network/netconnect.pm: let drakconnect be less verbose: aka explain
	rename of old configuration files
	if that had been already done

	* standalone/drakhelp: 
	  - strict mode
	  - we need at least 1 argument, and only one

2003/01/26  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/es.po, share/po/zh_CN.po: updated Spanish and Chinese files

	* share/po/et.po: updated Estonian file

2003/01/25  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sq.po: updated po file

2003/01/24  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm (ask_browse_tree_info): better look when embedded in a smaller
	window

2003/01/24  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* detect_devices.pm: get back serial modem detection

	* drakxtools.spec: new version

	* network/network.pm: fix typo

2003/01/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive/gtk.pm: remove unused variable
	fix Return key on a radio button grabbing focus on next functional group
	of widgets AND doing an action on it (toggling checkbuttons etc) (needs
	perl-GTK2 >= 0.0.cvs.2003.01.24.1)

	* mouse.pm: remove blinks in mouse test

2003/01/24  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (ask_from_list, ask_from_list_, ...): option nocancel
	added
	(ask_yesorno): no "Cancel" or "Previous" button

	* install_any.pm, install_steps_interactive.pm: fix "Previous" button in
	warnAboutNaughtyServers, so there is 3 choices
	(Previous, unselect servers, accept :)

	* install_steps_gtk.pm, mouse.pm: 
	  - don't setMouseLive when the protocol hasn't changed
	  - don't say "MOVE YOUR WHEEL" when there is no wheel and the protocol
	hasn't changed
	(nb: no wheel + IMPS/2 can now happen for usb mice)

2003/01/24  alus

	* share/po/pl.po: done

2003/01/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* common.pm, c/stuff.xs.pl, interactive.pm, lang.pm: fix non latin1
	post-install perl-gtk2 apps, seems like perl upgrading strings to utf8
	is somewhat broken (dunno why), so now we bind the codeset or our
	textdomains to utf8 and tag the translated strings to utf8, when using
	gtk

	* mouse.pm: remove blinks in mouse test

2003/01/24  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/sq.po, share/po/it.po, share/po/nl.po,
	share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
	share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
	share/po/hu.po: updated pot file (English proofreading)

	* standalone/draksplash, standalone/logdrake, standalone/draksec,
	share/compssUsers.desktop, standalone/harddrake2,
	standalone/net_monitor, standalone/mousedrake, standalone/drakperm,
	standalone/scannerdrake: English proofreading

	* share/po/et.po: updated Estonian file
	updated pot file (English proofreading)

2003/01/24  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm: 
	  - don't setMouseLive when the protocol hasn't changed
	  - don't say "MOVE YOUR WHEEL" when there is no wheel and the protocol
	hasn't changed
	(nb: no wheel + IMPS/2 can now happen for usb mice)
	  - switch "<= 3 buttons usb mice" from X protocol PS/2 to IMPS/2 (it
	works
	nicely, and redhat do so)
	  - default usb mice to USB|Wheel instead of USB|Generic, since most
	(all?) usb
	mice have a wheel
	(i tested on 1 button mac mouse, it works nicely with ZAxisMapping and
	IMPS/2)

	* interactive.pm (ask_from_list, ask_from_list_, ...): option nocancel
	added
	(ask_yesorno): no "Cancel" or "Previous" button

	* install_any.pm, install_steps_interactive.pm: fix "Previous" button in
	warnAboutNaughtyServers, so there is 3 choices
	(Previous, unselect servers, accept :)

	* install_steps_gtk.pm: 
	  - don't setMouseLive when the protocol hasn't changed
	  - don't say "MOVE YOUR WHEEL" when there is no wheel and the protocol
	hasn't changed
	(nb: no wheel + IMPS/2 can now happen for usb mice)

2003/01/23  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* lang.pm: fixed some (locally used) charset names

	* share/po/et.po: updated Estonian file

2003/01/23  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/main.pm (configure_chooser_raw): no special case for "Next"
	button

	* install_steps_interactive.pm (formatMountPartitions): help perl
	(otherwise wait_message stays forever in newt)

	* interactive/newt.pm: fix special case "for license agreement": only use
	it for long messages, and fix {format} use
	add a button to "summary"-like dialog boxes

2003/01/23  alus

	* share/po/pl.po: updated

2003/01/23  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm, network/ethernet.pm: 
	  - perl_checker compliant
	  - s/$pump/$auto_ip/
	  - use join('', if_(..), if_(..))
	  - each_index instead of for
	  - various fixes

	* network/netconnect.pm, network/modem.pm, network/isdn.pm,
	network/adsl.pm: isdn.pm now in use strict
	little cleanup

2003/01/23  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po: updated Estonian file

	* share/po/ko.po: Changes asked by HP people to Korean translation

2003/01/23  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/main.pm (configure_chooser_raw): no special case for "Next"
	button

	* common.pm: better fix of ->isa use
	remove use of UNIVERSAL::isa() (it is not much more complex with ref +
	->isa, and UNIVERSAL::isa() would need a special case in perl_checker)

	* keyboard.pm (read): fix return value when no configured keyboard is
	found

	* diskdrake/interactive.pm: fix diskdrake in newt (causing error about
	missing method ->cylinder_size)

	* Xconfig/xfree3.pm, Xconfig/xfreeX.pm, Xconfig/xfree4.pm: introduce
	->is_fbdev, and use it to simplify ->set_resolution

	* install_any.pm (getHds): do not handle missing harddrives by calling
	setupSCSI, since
	setupSCSI do it by itself now

	* interactive/newt.pm: fix special case "for license agreement": only use
	it for long messages, and fix {format} use
	add a button to "summary"-like dialog boxes
	  - handle {ok_disabled}
	  - correctly wrap messages
	  - fix Textbox size
	  - fix Listbox size
	  - special code to handle the license dialog

	* Xconfig/various.pm (to_string): created, try to shortly describe current
	configuration
	(configure_FB_TVOUT): don't do anything when not using XF4

	* interactive/gtk.pm: focus first widget when there is no ok

	* Xconfig/xfree.pm (is_fbdev): created
	(get_both, set_both): skip modifications on missing xfree3 or xfree4

	* install_steps_interactive.pm (formatMountPartitions): help perl
	(otherwise wait_message stays forever in newt)
	(reallyChooseGroups): remove "Previous" button
	(setupSCSI): remove now unused variable $clicked
	(summary): display more nicely the current X config when fbdev
	(selectLanguage): no need to handle "Cancel" on language choosing :)
	(setupSCSI): handle calling modules::interactive::load_category in
	non-automatic mode when no harddrives are found

	* modules/interactive.pm (load_category__prompt_for_more): cleanup,
	propose "See hardware info" in any case

	* network/network.pm: pixelification

2003/01/23  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: fix perl-GTK2 dependancy
	9.1-0.13mdk

	* standalone/drakpxe: perl_checker fix

	* network/ethernet.pm: 
	  - force use strict
	  - perl_checker fix

	* network/isdn.pm: force strict pragma
	force strict mode

	* interactive/gtk.pm: workaround bug introduced by new pixel focus
	managment

	* standalone/service_harddrake: perl_checker fix
	reconfigure sound slots at boot time (we should enhance slot filling
	by keeping existent module affectation, aka keep user choice if his
	module for slot X is not the default one)

	* network/netconnect.pm, network/tools.pm, network/shorewall.pm,
	network/network.pm, network/modem.pm: force strict mode

2003/01/22  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: 
	  - speedtouch fixes :
	o binaries location from /usr/bin to /usr/sbin
	  o clean previous instance of pppoa3 according to modem id (-c)
	(special thanks to Corsikas who proudly brings this patch to me :)

2003/01/22  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: perl checker fixes.

	* bootloader.pm: fix call to sanitize_ver by giving it linux-$version
	instead of linux$ext.

2003/01/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* c/stuff.xs.pl, lang.pm: fix accents characters displaying in console
	mode during install:
	  - convert translations into utf8 only during install && if using gtk
	  - explicitely bind the codeset to the specified locale's encoding
	because
	during install they are reported as utf8

	* ugtk2.pm: correctly pop when F2 (screenshots)
	revive F1, F2 and alt-e (dialogs for F1 and F2 are broken, though)

	* mdk-stage1/pci-resource/update-pci-ids.pl, mdk-stage1/probing.c: add
	full pci probe support

	* mdk-stage1/usb-resource/update-usb-ids.pl: have pci usb controllers
	sorted alphabetically

	* common.pm: correctly pop when F2 (screenshots)
	fix accents characters displaying in console mode during install:
	  - convert translations into utf8 only during install && if using gtk
	  - explicitely bind the codeset to the specified locale's encoding
	because
	during install they are reported as utf8

2003/01/22  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/lt.po, share/po/he.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/sq.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	pot file

	* standalone/draksplash, standalone/drakbackup, standalone/drakfloppy,
	standalone/drakfont, standalone/drakconnect, standalone/drakgw,
	standalone/drakperm: English proofreading

	* lang.pm: small changes in charset naming so they work better in console
	(console
	is still not in utf-8)

	* share/po/et.po, share/po/fi.po: updated pot file
	updated Finnish and Estonian files

2003/01/22  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: call "yelp-pregenerate -a" after installing pkgs
	(since it's skipped DURING_INSTALL)
	  - remove createBootdisk step
	  - add mkbootdisk option in setupBootloader__general()
	  - move kernelVersion() from install_any to any

	* interactive.pm: add some documentation about the various possible fields

	* interactive/gtk.pm: add {callbacks}{ok_disabled}

	* network/network.pm: simplify easy_dhcp prototype

	* install_steps_interactive.pm (acceptLicense): use new "interactive"
	feature to gray "Next" button until
	license is accepted
	simplify easy_dhcp prototype
	  - remove createBootdisk step
	  - add mkbootdisk option in setupBootloader__general()
	  - move kernelVersion() from install_any to any

	* any.pm, install2.pm, install_any.pm, steps.pm: 
	  - remove createBootdisk step
	  - add mkbootdisk option in setupBootloader__general()
	  - move kernelVersion() from install_any to any

2003/01/22  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* network/netconnect.pm, network/network.pm, standalone/mousedrake,
	printer/printerdrake.pm, harddrake/TODO, standalone/drakxtv:
	perl_checker fixes

	* standalone/drakfont: 
	  - perl_checker fixes
	  - is_a_font(): display the non existant file we just checked for
	instead of an undefined value
	fix progressbar label initialization

	* harddrake/sound.pm: 
	  - if there's no know driver, offer to pick a driver in the drivers
	list in case ldetect-lst isn't up to date but the user know which
	  driver to use
	  - consolidate "pick any driver" entry

2003/01/22  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, any.pm, install_any.pm, install2.pm, steps.pm,
	install_steps_interactive.pm: 
	  - remove createBootdisk step
	  - add mkbootdisk option in setupBootloader__general()
	  - move kernelVersion() from install_any to any

2003/01/21  alus

	* share/po/pl.po: utf-8 again
	updated again...? And again UTF -> ISO
	back from UTF-8 to ISO-8859-2 ... Why Why Why? It should work from
	UTF-8...

2003/01/21  François Pons  <fpons@mandrakesoft.com>

	* standalone/drakpxe: latest fixes for having default file correctly
	documented and make sure if
	server boot using dhcp itself, server hostname is given instead of ip
	address.
	add daemons stop/start code.
	update with something that look like running.

2003/01/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mouse.pm: fix absence of scroll up and scroll down in mouse test

	* interactive/gtk.pm, install_steps_gtk.pm: perl-GTK2 0.0.cvs.2003.01.21.1
	should fix set_active(undef) misbehaviour

	* ugtk2.pm: seems like gdk_window_foreign_new is leaking as well..
	since gtkset_mousecursor is called by a timeout, don't leak
	memory because it can lead to problems on the long term

2003/01/21  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/vi.po: updated Vietnamese and Polish files
	English proofreading (first pass)

	* network/adsl.pm: English proofreading by Stew Beneditcs

	* share/po/sk.po, share/po/DrakX.pot, share/po/zh_CN.po: English
	proofreading (first pass)
	updated Slovak and Chinese files

	* network/isdn.pm: English proofreading (first pass)
	English proofreading by Stew Benedicts

	* share/po/pl.po: updated Vietnamese and Polish files

	* network/network.pm, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
	share/advertising/01-thanks.pl, share/po/ko.po, standalone/drakTermServ,
	share/po/sv.po, share/po/sr.po, share/po/fi.po, share/po/he.po,
	share/advertising/05-games.pl, share/po/da.po, share/po/ca.po,
	share/po/ar.po, share/advertising/04-multimedia.pl, share/po/ro.po,
	security/level.pm, share/po/zh_TW.po, share/po/sq.po, share/po/it.po,
	share/po/eu.po, share/po/es.po, share/advertising/07-desktop.pl,
	network/shorewall.pm, network/tools.pm,
	share/advertising/08-development.pl, share/advertising/06-mcc.pl,
	share/po/lv.po, share/po/hu.po, printer/printerdrake.pm, share/po/id.po,
	share/po/ru.po, share/po/br.po, share/po/sl.po, share/po/no.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/uk.po,
	share/advertising/03-internet.pl, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, partition_table/raw.pm, share/po/bs.po, share/po/wa.po,
	share/po/is.po, standalone/drakfont, share/po/af.po, share/po/az.po,
	share/po/pt.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
	share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/cs.po,
	share/po/el.po: English proofreading (first pass)

	* bootlook.pm, install_steps_interactive.pm, network/netconnect.pm,
	network/drakfirewall.pm, standalone/mousedrake,
	diskdrake/interactive.pm, Xconfig/monitor.pm, install_any.pm,
	harddrake/v4l.pm, modules/interactive.pm, any.pm, harddrake/sound.pm,
	services.pm, network/ethernet.pm, bootloader.pm: English proofreading by
	Stew Benedicts

2003/01/21  Pixel  <pixel@mandrakesoft.com>

	* steps.pm: on error in acceptLicense, go back to selectLanguage (ie.
	handle "Previous ->" correctly)

	* Xconfig/various.pm, Xconfig/card.pm: have Xfree version at only one
	place
	(nb: it would be better to parse available package and get version from
	it.)

	* install_interactive.pm: remove or fix some "Previous"

	* help.pm: "license" is now step "acceptLicense"

	* interactive.pm: when the return value of ask_from_ and ask_from is not
	used, do not have a
	"Previous ->" or "Cancel" button (beware, black magic here :)

	* interactive/gtk.pm: remove unused variable
	(ask_fromW): very smart code to know which widget to focus (dilemna is:
	"Next" vs first widget). One can also force focusing of first widget
	using $common->{focus_first}
	(ask_fromW): have "advanced" widgets above buttons, not below
	(create_list): fix old bug (nb: this code must be unused)
	(create_boxradio): need to set {focus_w} to the selected widget (nb:
	this is ugly)
	(create_boxradio, $may_go_to_next): no special case for "tab", gtk2
	handles things better than gtk1
	($set_all): pass the full_struct to the setters (this allows modifying
	{focus_w}) (nb: this is ugly)

	* install_gtk.pm: enlarge "steps" window a little
	small enhancement to know which step is currently done

	* ugtk2.pm: enlarge "steps" window a little
	(create_okcancel): rework to prepare next move, "Next" and "Previous" on
	the left, and @other buttons on the right
	(create_hbox): do handle the layout parameter

	* install_steps_interactive.pm: replace "Next" button with "Reboot" at
	exitInstall step
	remove or fix some "Previous"
	(acceptLicense): handle "Previous ->" correctly, and simplify code
	(esp. don't set useless_thing_accepted)

	* any.pm (setupBootloader__mbr_or_not): add ability to skip and to put on
	floppy
	rework autologin dialog box
	(selectLanguage): no "Previous ->" during install

	* diskdrake/interactive.pm (Mount_point): use uniq() on suggested mount
	points (otherwise the suggested mount point appears twice) (fixes bug
	#954)

	* install2.pm: don't prompt for license when useless_thing_accepted
	(this used to be done in install_steps_interactive::acceptLicense)

	* install_steps_gtk.pm: workaround set_active on Gtk2::CheckButton widgets
	thinking undef is true :-(
	(hopefully, gc will fix perl-GTK2!)
	replace some "Ok" with "Next ->"

	* Xconfig/main.pm: replace some "Ok" with "Next ->"

2003/01/21  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm, printer/printerdrake.pm: 
	  - Support for manufacturer-supplied PostScript PPDs also in
	recommended
	mode.
	  - If "Foomatic + Postscript" is recommended driver for a printer and a
	  manufacturer-supplied PPD file exists for it, the PPD file gets the
	  recommended driver.
	  - Tried to extract IEEE-1284 auto-detection info from the PPD files
	but
	  this takes too long time (40 sec for 800 PPDs).
	  - Fixed long-standing bug in activation of auto-load of the USB
	"printer"
	  kernel module.

2003/01/21  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/TODO: update

	* share/po/fr.po: update french translation

	* harddrake/sound.pm: handle proprietary drivers
	if there's no alternative driver or if the current setting does not
	please the user, let he pick any driver among multimedia/sound modules
	category

2003/01/20  alus

	* share/po/pl.po: updated

2003/01/20  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: little cleanup

	* network/network.pm: void label removed
	  - zero conf is avaible in drakconnect, with/without dhcp
	  - install tmdns and zcip packages when needed

	* network/tools.pm: get username back in menu

	* network/ethernet.pm: 
	  - zero conf is avaible in drakconnect, with/without dhcp
	  - install tmdns and zcip packages when needed

2003/01/20  François Pons  <fpons@mandrakesoft.com>

	* standalone/drakpxe: initial revision with translation message.

	* Makefile.config: added drakpxe

2003/01/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* Xconfig/test.pm: use gtk rather than qiv to display the background tile
	in X test
	fix Gtk2 port

2003/01/20  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sr.po, share/po/fi.po, share/po/sp.po, share/po/tr.po: updated
	Finnish, Serbian and Turkish files

	* share/po/et.po: updated Estonian file

	* keyboard.pm: small keyboard name change

	* share/po/es.po, share/po/ar.po: updated Spanish and Arabic files

2003/01/20  Till Kamppeter  <till@mandrakesoft.com>

	* share/rpmsrate: Make flphoto getting onto the CDs.

	* printer/main.pm: Improved printer/driver list entries for PostScript PPD
	files.
	Improve association of printers with database entries (preparation for
	non-interactive print queue generation):
	  - Make use of device ID strings in the Foomatic database
	 - Association of generic printers when PDL (PCL, PCL-XL, PostScript)
	could
	   be auto-detected
	 - Cleaned up entries from manufacturer-supplied PPDs for PostScript
	   printers to try to match model names of Foomatic entries
	 - Bug fixes on previous association mechanism

	* detect_devices.pm, printer/printerdrake.pm: Improve association of
	printers with database entries (preparation for
	non-interactive print queue generation):
	  - Make use of device ID strings in the Foomatic database
	 - Association of generic printers when PDL (PCL, PCL-XL, PostScript)
	could
	   be auto-detected
	 - Cleaned up entries from manufacturer-supplied PPDs for PostScript
	   printers to try to match model names of Foomatic entries
	 - Bug fixes on previous association mechanism

2003/01/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: make all chkconfig calls be chrooted

	* services.pm: fix prefix usage

	* mouse.pm: fix gtk+-2 port

	* standalone/draksec: use new help scheme just added to msec (this *does*
	need a newer msec
	package!!)

	* standalone.pm: fix breakage introduced when lowering warning level

2003/01/19  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/da.po, share/po/sq.po: updated Danish and Albanian files

2003/01/18  Stew Benedict  <sbenedict@mandrakesoft.com>

	* tools/ppc/mapping, tools/ppc/magic: Update magic, mapping files for PPC
	from Christian Walther

2003/01/17  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm, network/ethernet.pm: 
	  - some changes to dhcp behavior for beta2 (not clean yet)

	* drakxtools.spec: 0.12mdk

2003/01/17  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ru.po: updated po file

	* share/po/it.po: updated Italian file

2003/01/17  Pixel  <pixel@mandrakesoft.com>

	* tools/make_mdkinst_stage2: do not remove mdk_10.pcf in the ramdisk
	(or handle it in lang.pm since it seems to be needed for greek display)

2003/01/17  Stew Benedict  <sbenedict@mandrakesoft.com>

	* modules.pm: airport support for ppc

2003/01/17  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: add some applications on club voting

2003/01/16  alus

	* share/po/pl.po: updated

2003/01/16  Daouda Lo  <daouda@mandrakesoft.com>

	* Makefile.drakxtools: 
	  - drakhelp moved to /usr/bin/

	* standalone/drakhelp: 
	  - checker
	  - support gnome help
	  - warn if documentation is not installed
	  - syntax : drakhelp relative_link
	example: drakhelp Quick_Startup.html/drakx.html
	  - drakhelp will check the running wm and will launch kdehelpcenter
	  with the correct URL after localizing the link.
	  Otherwise, it launch a default browser: mozilla konqueror or galeon.

	* standalone.pm: 
	  - remove help callback (moved into drakhelp)

	* Makefile.config: 
	  - add drakhelp

2003/01/16  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: 
	  - fix /etc/hosts localhost.localdomain in localhost

2003/01/16  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: fixed not to ask group instead of
	individual package selection.

2003/01/16  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* keyboard.pm, lang.pm: Added some more English locales; and changed all
	locale names using xx
	notation to xx_YY notation (so it's easier to just append a ".UTF-8" in
	case we provide a way to let the user choose if he wants UTF-8 or not)

2003/01/16  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: workaround ref count perl bug

	* share/step-orange-click.xpm, share/step-red-on.xpm,
	share/step-orange.xpm, share/step-red-click.xpm,
	share/step-green-on.xpm, install2.pm, share/step-green.xpm,
	install_steps.pm, install_gtk.pm, share/step-green-click.xpm,
	share/step-red.xpm, install_steps_interactive.pm, steps.pm,
	share/step-orange-on.xpm: new steps window layout

2003/01/16  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/harddrake2, services.pm: fix embedding

2003/01/16  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone.pm: 
	  - remove help callback (moved into drakhelp)

	* standalone/drakhelp: 
	  - syntax : drakhelp relative_link
	example: drakhelp Quick_Startup.html/drakx.html
	  - drakhelp will check the running wm and will launch kdehelpcenter
	  with the correct URL after localizing the link.
	  Otherwise, it launch a default browser: mozilla konqueror or galeon.

	* Makefile.config: 
	  - add drakhelp

2003/01/16  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: do not propose individual package on
	upgrade.

	* install_steps.pm: fixed test of alternatives always seen as broken.

2003/01/16  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: add coreutils-doc by default
	add hdparm in default install (esp. per cooker request)

	* install_steps_interactive.pm: new steps window layout
	ask security level in every install
	hopefully last titi's bug on getSoundDevices :-(

	* share/po/Makefile: don't yell when checking for "$" in DrakX.pot and
	only finding "\$"

	* steps.pm: new steps window layout
	ask security level in every install

	* security/level.pm, standalone/drakconnect, network/netconnect.pm,
	standalone/drakperm, standalone/net_monitor, detect_devices.pm,
	network/tools.pm: replace occurences of "$foo ? $foo : $bar" with "$foo
	|| $bar"

	* standalone/service_harddrake, standalone.pm: make perl_checker happy

	* network/network.pm: replace occurences of "$foo ? $foo : $bar" with
	"$foo || $bar"
	have dhcp-client the default dhcp client

	* share/step-orange-click.xpm, share/step-red-on.xpm,
	share/step-orange.xpm, share/step-green-on.xpm, share/step-green.xpm,
	install_steps.pm, install_gtk.pm, share/step-green-click.xpm,
	share/step-orange-on.xpm, share/step-red-click.xpm, install2.pm,
	share/step-red.xpm: new steps window layout

	* install_steps_auto_install.pm: configureNetwork step must be non-auto
	otherwise only
	install_steps::configureNetwork is called

2003/01/16  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakbug, bootlook.pm, log.pm, standalone.pm,
	standalone/draksec, standalone/drakTermServ, harddrake/v4l.pm,
	standalone/drakxtv, standalone/drakgw, harddrake/TODO: "je n'en veux +
	de cette engeance" (c) pixel :
	make explanations provided by log and not anymore by standalone,
	thus preventing using standalone in drakx (which is bad)

	* standalone/service_harddrake, standalone/drakautoinst: perl_checker
	fixes
	"je n'en veux + de cette engeance" (c) pixel :
	make explanations provided by log and not anymore by standalone,
	thus preventing using standalone in drakx (which is bad)

	* drakxtools.spec: require an recent enought MDK::Common

	* harddrake/sound.pm: "je n'en veux + de cette engeance" (c) pixel :
	make explanations provided by log and not anymore by standalone,
	thus preventing using standalone in drakx (which is bad)
	happy drakx
	move "require standalone" where needed
	fix sound configuration while installing

2003/01/16  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: beta 2

	* share/rpmsrate: move gnucash up on mandrakeclub demand

2003/01/15  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix typo
	(selectInstallClass): display mandrake release version when listing the
	choices of partitions to upgrade

	* install_steps.pm: adapt to install_any::find_root_parts() return value
	changes

	* install_any.pm (find_root_parts):
	  - do not use guess_mount_point() anymore
	  - check /etc/mandrake-release instead of /etc/fstab
	  - return a list of { release => "Mandrake Linux release X.X (XXXX)",
	part => ... }
	instead of a list of parts

	* harddrake/sound.pm: do not "use standalone" in a module used during
	install!

2003/01/16  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile: don't yell when checking for "$" in DrakX.pot and
	only finding "\$"

	* install_steps_interactive.pm: hopefully last titi's bug on
	getSoundDevices :-(

2003/01/15  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix typo
	(selectInstallClass): display mandrake release version when listing the
	choices of partitions to upgrade

	* install_steps.pm: adapt to install_any::find_root_parts() return value
	changes

	* install_any.pm (find_root_parts):
	  - do not use guess_mount_point() anymore
	  - check /etc/mandrake-release instead of /etc/fstab
	  - return a list of { release => "Mandrake Linux release X.X (XXXX)",
	part => ... }
	instead of a list of parts

	* harddrake/sound.pm: do not "use standalone" in a module used during
	install!

2003/01/15  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/he.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/sq.po, share/po/it.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file

	* share/po/nl.po: updated pot file
	fixed encoding problem
	updated Dutch file

	* lang.pm: Added "Amharic" in the languages list, so it can be choosed and
	its
	translations can get installed from the rpm packages

2003/01/15  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (suggest_onmbr): log the choice

	* patch/patch-9.0-auto-inst-network-config.pl: fix for network module
	probe & configuration in interactive auto_install

	* install_steps.pm: adapt to install_any::find_root_parts() return value
	changes

	* install_steps_interactive.pm (selectInstallClass): display mandrake
	release version when listing the choices of partitions to upgrade

	* install_any.pm (find_root_parts):
	  - do not use guess_mount_point() anymore
	  - check /etc/mandrake-release instead of /etc/fstab
	  - return a list of { release => "Mandrake Linux release X.X (XXXX)",
	part => ... }
	instead of a list of parts

	* install_steps_auto_install.pm: move
	install_steps_auto_install_non_interactive::configureNetwork() to
	install_steps_auto_install::configureNetwork() as it should be
	(thanks to Luc Bourdot)

	* harddrake/sound.pm: do not "use standalone" in a module used during
	install!

2003/01/15  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: snd-sscape does not exist
	  - factorize snd devices listing in detect_devices::getSoundDevices()
	so that each caller is ppc aware
	  - factorize sound slots configuration into
	  harddrake::sound::configure_sound_slots() so that harddrake service
	  will eventually set them at bootstrapping time

	* standalone/drakproxy: drakproxy need common for getVarsFromSh()

	* detect_devices.pm, install2.pm, install_steps_interactive.pm: 
	  - factorize snd devices listing in detect_devices::getSoundDevices()
	so that each caller is ppc aware
	  - factorize sound slots configuration into
	  harddrake::sound::configure_sound_slots() so that harddrake service
	  will eventually set them at bootstrapping time

	* standalone/harddrake2: add an option to skip jazz drives detection

2003/01/14  Pixel  <pixel@mandrakesoft.com>

	* rescue/list: /usr/share/magic has moved to /usr/share/misc/magic

	* any.pm: ensure cancel on setupBootloader__mbr_or_not do cancel

	* modules.pm: changes to have less "Use of uninitialized value"

	* printer/printerdrake.pm: please perl_checker

	* share/list: unicore/To/Fold.pl is necessary to fix "panic: swash_fetch"
	error occuring in
	a regexp with /i on ->{device} (fixes bug #799)

	* install2.pm: don't probe mouse when testing (startup is now much faster)
	remove the ugly temporary fix for fontconfig
	remove duplicate code
	don't automatically configure network on upgrade, now only done when
	called via summary

	* sbus_probing/main.pm: fix bug & cleanup (to have less warning in debug
	mode)

	* interactive/gtk.pm: set_active on Gtk2::CheckButton is pretty dumb, it
	thinks undef is true ;p

2003/01/14  Till Kamppeter  <till@mandrakesoft.com>

	* printer/data.pm, printer/printerdrake.pm: Removed bugs from Titi which
	prevented printerdrake from installing the requested spooler.

2003/01/14  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakfont: fix font_choice()

	* harddrake/check_snd.pl: add harddrake::sound checker

2003/01/14  Pixel  <pixel@mandrakesoft.com>

	* share/list: unicore/To/Fold.pl is necessary to fix "panic: swash_fetch"
	error occuring in
	a regexp with /i on ->{device} (fixes bug #799)

	* install2.pm: don't automatically configure network on upgrade, now only
	done when called via summary

2003/01/14  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: add missing sound modules (found by check_snd in
	comparing
	harddrake::sound vs list_modules).  we only left audio and bttv...
	add a "trouble shooting" window

	* harddrake/check_snd.pl: add harddrake::sound checker

	* standalone/drakfont: fix font_choice()

2003/01/13  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm: don't say "You must have a swap partition"
	(since it's after using diskdrake which is for experts)

2003/01/13  Till Kamppeter  <till@mandrakesoft.com>

	* printer/detect.pm: New CUPS printer sharing configuration dialog.
	Reverted broken printer::main::set_usermode() to version of Mandrake
	9.0.

	* printer/main.pm: Avoid unnecessary restarts of the CUPS daemon.
	New CUPS printer sharing configuration dialog.
	Reverted broken printer::main::set_usermode() to version of Mandrake
	9.0.

	* printer/printerdrake.pm: Avoid unnecessary restarts of the CUPS daemon.
	Removed debug helper line.
	New CUPS printer sharing configuration dialog.
	Reverted broken printer::main::set_usermode() to version of Mandrake
	9.0.

2003/01/13  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer/data.pm: remove old bug reference

	* share/po/fr.po: typo fix

	* printer/main.pm: make get_descr_from_ppd() clearer by :
	  - using cat_() instead of manual open or ...
	  - using "$var = s/$regexp//" instead of
	"var=/regexp\(...\)/; var=$1;"
	simplify set_cups_autoconf()
	add_spooler_to_security_level(), configure_queue()
	and config_sane() :
	factorize common code, aka resuse MDK::Common

	* harddrake/data.pm: add support for zip drives

	* harddrake/TODO: update

	* standalone/harddrake2: it's uneeded to force scalar context
	this is not a per class help, but we told the user what
	he can achieve (aka not only on startup)
	listlength() is obviously just "overhead" for arrays
	use diskdrake to configure cdroms, dvroms, cd|dvd -burners,
	floppies and zip drives

	* printer/printerdrake.pm: print_testpages() : factorize and simplify
	options managment
	by using an options hash
	setup_local_autoscan():
	  - don't reinvent the wheel, reverse is faster
	  - remove doble $device initialization in one path
	setup_local_autoscan() : simplify loop of loop
	and optimize away useless $alreadyfound

2003/01/12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Albanian and Swedish files

2003/01/12  Pixel  <pixel@mandrakesoft.com>

	* docs/comparisons: add explained changes in hwdata and kudzu from redhat
	8.0 to 8.1beta
	add changes between anaconda 8.0 and current

	* drakxtools.spec: drakxtools need latest perl-MDK-Common

2003/01/11  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: capitalise win $domain ASAP so that directory
	/home/$domain is created
	capitalised (thanks to Buchan Milne)

2003/01/10  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: do not use supermount by default
	(readBootloaderConfigBeforeInstall): set bootUnsafe to 0 when upgrading
	so
	that it doesn't ask where to install the bootloader (mbr vs boot
	partition)

2003/01/10  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/netconnect.pm: 
	  - catch wizcancel die
	  - fix fucked previous button after configuration completes
	  - little cleanup

2003/01/10  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: do not use supermount by default
	(readBootloaderConfigBeforeInstall): set bootUnsafe to 0 when upgrading
	so
	that it doesn't ask where to install the bootloader (mbr vs boot
	partition)
	simplify and factorize
	(now works on 1.upgrade 2.install 3.install + change existing config)

	* Xconfig/card.pm: fix priority

	* Xconfig/main.pm, standalone/XFdrake, install_steps_interactive.pm:
	simplify and factorize
	(now works on 1.upgrade 2.install 3.install + change existing config)

	* fsedit.pm: lvm on / works (dixit Brian J. Murrell)

	* install2.pm: fix unused vars

2003/01/09  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: changed interface of detect_devices::install_addons.

	* detect_devices.pm: add update-ldetect-lst after install_addons.

2003/01/09  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/fi.po, share/po/sq.po: updated Finnish and Albanian files

2003/01/09  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (configureNetwork): call
	install_steps::configureNetwork()
	  - configureNetwork step now only does easy_dhcp()
	  - added full network configuration to summary

	* network/network.pm (easy_dhcp): don't call network::configureNetwork2
	  - fix priority
	  - add a log

	* install2.pm: 
	  - configureNetwork step now only does easy_dhcp()
	  - added full network configuration to summary

	* install_steps_gtk.pm (installPackages): do pop error messages

2003/01/09  Till Kamppeter  <till@mandrakesoft.com>

	* printer/main.pm: Added cupsd.conf handling functions for a new printer
	sharing configuration dialog.

2003/01/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: fix invalid translation for draksound

	* harddrake/sound.pm: there's an oss usb driver too
	  - snd-rme9652 is a snd-rme96 sub module
	  - fix rme96xx <=> snd-rme96 equivalence
	quite a number of ensoniq cards are managed by sb.o
	  - pss is the oss equivalent of alsa ad1848
	  - oss ad1848 is not a driver but a sub module
	cmi8330 is handled by sb too
	als100 card is handled by sb oss sound driver
	oss trident driver handle ali5451 too
	  - remove doble
	  - add a comment noting there's no alsa alternative for oss' ad1889
	driver
	fix "unlisted driver" bug for rme driver
	  - add new oss drivers : ad1889, ali5455 and forte
	  - mark forte as oss counterpart for alsa snd-fm801 driver
	  - mark ice1712 as oss counterpart for alsa snd-ice1712 driver
	  - mark ali5455 as one of the oss counterpart for alsa snd-intel8x0
	  driver
	  - update top commentary
	  - snd-via686 and snd-via8233 were merged in via82cxxx_audio
	  - don't pollute install ml anymore

	* keyboard.pm: make return value name more explicit
	simplify

2003/01/08  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm: added install_addons to install pcitable or usbtable
	addons.

	* install2.pm: removed perl_checker warning.
	added install_addons before leaving.

	* any.pm: really install the bootloader.

2003/01/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: fix a misc bug in rpmdrake (selecting a pkg doesn't work in
	certain circumstances - seems to be when the treeview doesn't have the
	focus, for exa
	mple after a search) by changing a bit the way we handle
	button_press_event in ask_browse_tree_info

2003/01/08  Pixel  <pixel@mandrakesoft.com>

	* network/network.pm: pass $::prefix instead of ''
	fix typo
	(easy_dhcp): cleanup

	* install2.pm: UGLY TEMPORARY FIX: create an /etc/passwd for fontconfig

	* ugtk2.pm: ensure drakx don't need wiz_default_up.png and
	wiz_default_left.png

2003/01/08  Till Kamppeter  <till@mandrakesoft.com>

	* printer/office.pm: Fixed Titi's bugs in the auto-configuration of
	printers in OpenOffice.org.

2003/01/08  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer/printerdrake.pm: once we identify the protocal, skip remaining
	tests

	* printer/office.pm: 
	  - typo fix
	  - s/if !/unless/
	  - remove useless next

2003/01/08  Pixel  <pixel@mandrakesoft.com>

	* ugtk2.pm: ensure drakx don't need wiz_default_up.png and
	wiz_default_left.png

2003/01/07  Pixel  <pixel@mandrakesoft.com>

	* any.pm: "require bootloader" where needed

	* interactive/gtk.pm, install_steps_gtk.pm, install_gtk.pm, install2.pm,
	ugtk2.pm: 
	  - remove help (which was at the bottom)
	  - wizard style
	  - focus "Next" button by default (this is rough, some dialog boxes
	*need* changes
	before being able to complete (think root password dialog))

	* diskdrake/hd_gtk.pm: fix ugly global setting of $ugtk2::pop_it

2003/01/07  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - new way to use request help

	* standalone.pm: 
	  - compress code (pixel)
	  - use ask_warn when no browser is found on the system and BROWSER env
	var not set.

2003/01/07  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: add network::easy_dhcp function. Quietly setup eth0
	in dhcp and restart network.

2003/01/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/tree/etc/issue: version 9.1 cooker

	* rescue/devices.pl: init doesn't like anymore that /etc/initctl is
	already here
	(breaks any communication to init :/); remove /etc/initctl from
	the initial filesystem, and let init create it as a fifo during
	boot

2003/01/07  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/th.po: converted th.po to UTF-8

	* share/po/pl.po: converted pl.po to utf-8

2003/01/07  Pixel  <pixel@mandrakesoft.com>

	* steps.pm: move "configureX" step before "summary" step
	move setupBootloader before summary

	* any.pm: "require bootloader" where needed
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"
	  - part of setupBootloader() are now in setupBootloader__mbr_or_not(),
	setupBootloader__general() and setupBootloader__boot_bios_drive()
	  - this allows the creation of the new setupBootloader_simple() which
	is
	somehow similar to the old setupBootloader() in beginner mode
	  - setupBootloader() is now always expert mode

	* printer/printerdrake.pm: 
	  - fix autodetection code (remember me to teach titi that "and" in list
	context is bad)
	  - use printer::detect::whatNetPrinter directly (instead of
	net_detect() +
	net_smb_detect()), it is faster when one wants both
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* install_steps_interactive.pm (summary): add X configuration
	(configureX): this step is now always automatic. don't call
	configureXAfter() when config failed
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"
	  - adapt to new setupBootloader
	  - add bootloader configuration in summary (still rough)
	  - various cleanup

	* crypto.pm: cleanup and add a comment (!)

	* install_steps.pm: cleanup
	fix looking for broken alternatives
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"
	  - adapt to new setupBootloader
	  - add bootloader configuration in summary (still rough)
	  - various cleanup

	* network/network.pm, Xconfig/xfreeX.pm, network/smb.pm, lang.pm,
	network/drakfirewall.pm, raid.pm, diskdrake/smbnfs_gtk.pm,
	partition_table.pm, printer/main.pm, diskdrake/interactive.pm, pkgs.pm,
	interactive/newt.pm, fs.pm, standalone/drakfont, network/ethernet.pm,
	common.pm, detect_devices.pm, modules.pm, install_any.pm, timezone.pm:
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* Xconfig/card.pm (configure): do not do card_config__not_listed in $auto
	mode
	(configure): return without doing anything when probe fails or
	needVideoRam in $auto mode
	(multi_head_choose): be completly automatic in $auto mode
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* bootloader.pm: use "if any" instead of "if grep", and various other
	occurences of "any", "every", "partition"
	(method_choices): returns the choices of bootloaders (lilo, grub,
	yaboot...) + cleanup
	(suggest_onmbr): "lilo" and "grub" are now "unsafe" "on_mbr" choices
	  - renaming of $lilo with $bootloader
	  - $bootloader->{methods} is replaced by the much simpler
	$bootloader->{method},
	the special handling of grub (which need to also generate lilo.conf)
	  is nicely handled in bootloader::install()
	  - cleanup error handling: it was using the ugly (though safe)
	/tmp/.error
	  temporary file, better use an exception

	* printer/detect.pm (detect): don't use net_smb_detect() and net_detect(),
	call
	whatNetPrinter() directly asking for both network & smb (faster)

	* Xconfig/various.pm (various): in $auto mode, don't ask about tvout

	* install_gtk.pm, install_steps_gtk.pm: 
	  - remove help (which was at the bottom)
	  - wizard style
	  - focus "Next" button by default (this is rough, some dialog boxes
	*need* changes
	before being able to complete (think root password dialog))
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* install_interactive.pm: fsedit::part2hd() returns a scalar, no need to
	do "my ($hd) = fsedit::part2hd(...)"
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* ugtk2.pm, interactive/gtk.pm: 
	  - remove help (which was at the bottom)
	  - wizard style
	  - focus "Next" button by default (this is rough, some dialog boxes
	*need* changes
	before being able to complete (think root password dialog))

	* diskdrake/hd_gtk.pm: fix ugly global setting of $ugtk2::pop_it
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* interactive.pm: fix ask_okcancel in wizard mode
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"
	nicer debug message

	* Xconfig/resolution_and_depth.pm (configure): in $auto mode, use
	$default_resolution without asking
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* Xconfig/monitor.pm: don't do anything when automatic configuration fails
	in $auto mode
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* Xconfig/main.pm (configure_everything): in $auto mode, don't test nor
	ask when the config failed

	* fsedit.pm: fsedit::part2hd() returns a scalar, no need to do "my ($hd) =
	fsedit::part2hd(...)"
	fix typo (operator priority related)
	use "if any" instead of "if grep", and various other occurences of
	"any", "every", "partition"

	* partition_table/raw.pm: use internal_error instead of die for better
	error message (esp. backtrace)

	* install2.pm: 
	  - remove help (which was at the bottom)
	  - wizard style
	  - focus "Next" button by default (this is rough, some dialog boxes
	*need* changes
	before being able to complete (think root password dialog))
	cleanup
	  - adapt to new setupBootloader
	  - add bootloader configuration in summary (still rough)
	  - various cleanup

2003/01/07  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: forgot to commit threat-hub-as-usb-controllers...

	* standalone/draksound: perl_checker fix
	let it ask for root capabilites if launched in standalone mode

	* printer/printerdrake.pm: printerdrake is back alive

	* printer/gimp.pm: fix new data structure usage
	fixes
	  - remove useless $_ setting
	  - simplify overgianted look for functions
	  - mask isprinterconfigured() as bogus: if $done is 1 then
	$sectionfound *is* already 1
	  - simplify by reusing list_passwd()
	  - simplify program flow
	  - one perl_checker fix
	  - simplify directories list building
	  - simplify test: if a file is a plain regular file, testing if it's a
	  directory is useless;
	  anyway, this test is probably bogus and should just be -e and not -f

	* printer/office.pm: fix new data structure usage

	* printer/main.pm: printerdrake is back alive
	perl_checker fix
	beautify
	simplif installed spoolers "detection"

	* Xconfig/card.pm: fix pixel sucks(bis)

	* ugtk2.pm: CList and CTree being deprecated and unsupported in perl-gtk2,
	don't bother handle them

	* drakxtools.spec: 9.1-0.9mdk
	9.1-0.8mdk

	* Xconfig/resolution_and_depth.pm: fix pixel sucks

2003/01/07  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (method_choices): returns the choices of bootloaders
	(lilo, grub, yaboot...) + cleanup
	(suggest_onmbr): "lilo" and "grub" are now "unsafe" "on_mbr" choices
	  - renaming of $lilo with $bootloader
	  - $bootloader->{methods} is replaced by the much simpler
	$bootloader->{method},
	the special handling of grub (which need to also generate lilo.conf)
	  is nicely handled in bootloader::install()
	  - cleanup error handling: it was using the ugly (though safe)
	/tmp/.error
	  temporary file, better use an exception

	* any.pm: 
	  - part of setupBootloader() are now in setupBootloader__mbr_or_not(),
	setupBootloader__general() and setupBootloader__boot_bios_drive()
	  - this allows the creation of the new setupBootloader_simple() which
	is
	somehow similar to the old setupBootloader() in beginner mode
	  - setupBootloader() is now always expert mode

	* interactive.pm: nicer debug message

	* steps.pm: move setupBootloader before summary

	* install_steps.pm, install2.pm, install_steps_interactive.pm: 
	  - adapt to new setupBootloader
	  - add bootloader configuration in summary (still rough)
	  - various cleanup

2003/01/06  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone.pm: 
	  - perl checker
	  - no retval
	  - function on_request_help to display online help.
	  - use it as callback to help button or help menu.

	* standalone/drakbug: 
	  - support help system
	  - remove unused function

2003/01/06  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* keyboard.pm: synchronized with XFree86 4.2.99 keyboard layout names

2003/01/06  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, install_steps_interactive.pm: fix typos (thanks
	perl_checko!)
	selectInstallClass now automatically detect if an existing install is
	there,
	and propose update or install based on this

	* bootloader.pm: when reading existing config, remove double quotes around
	the default label

	* install2.pm (selectKeyboard): read existing keyboard config even if not
	upgrading (it
	won't do anything when not upgrading :)
	(selectInstallClass): do not move step doPartitionDisks after setupSCSI
	on
	upgrade (since the "upgrade" part of the job of doPartitionDisks is now
	done in selectInstallClass)
	(selectMouse): "addToBeDone mouse::write()" was done only on upgrade,
	replace it with an "addToBeDone" done in any case which only does
	"mouse::write()" if $o->{isUpgrade} is set (since isUpgrade *will* be
	set
	correctly but is not set at this step)

	* steps.pm: 
	  - selectMouse is now just after selectLanguage
	  - selectSCSI is before selectInstallClass

	* Makefile: when taking files from perl-GTK2, don't
	/usr/lib/libDrakX/ugtk2.pm since we don't need it

	* install_interactive.pm (partition_with_diskdrake): fix reloading
	partition table

	* common.pm: common::secured_file() is a wrapper around
	c::is_secure_file()

	* any.pm: fix "Where do you want to install the bootloader?" dialog box

	* fs.pm (mount): do not fsck.ext2 when mounting readonly

	* swap.pm: replace *F with $F
	fix an *old* bug causing pbs when formatting more than one partition
	using
	format v0 (occurs when the sizes differ)

2003/01/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: require a recent enough ldetect-lst for fixed usb hubs
	detection
	9.1-0.7mdk

	* printer/main.pm: fix displaying list of availlable printer spoolers

	* printer/printerdrake.pm: fix displaying of spooler list

	* printer/gimp.pm: fix printerdrake regarding gimp configuration

	* standalone/logdrake: perl_checker fixes
	prevent one to write in log buffer

	* printer/data.pm: put full data in all variants of the data structure

	* share/po/fr.po: update french translation

2003/01/05  Pixel  <pixel@mandrakesoft.com>

	* any.pm: in bootloader configuration, add return values to Add and Remove
	callbacks

	* interactive.pm: 
	  - callbacks "Add", "Modify" and "Remove" return undef when they fail
	  - callback "Add" return the new added element (not handled by
	interactive emulation, but correctly handled by interactive::gtk native
	ask_from__add_modify_removeW)

2003/01/05  Pixel  <pixel@mandrakesoft.com>

	* any.pm: in bootloader configuration, add return values to Add and Remove
	callbacks

	* interactive.pm: 
	  - callbacks "Add", "Modify" and "Remove" return undef when they fail
	  - callback "Add" return the new added element (not handled by
	interactive emulation, but correctly handled by interactive::gtk native
	ask_from__add_modify_removeW)

	* interactive/gtk.pm: add ask_from__add_modify_removeW gtk handling

2003/01/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix missing "use modules::interactive"
	(thanks to David Eastcott)

2003/01/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* c/stuff.xs.pl: dgettext needs to have previous behaviour in standalone
	mode (fixes #736)

2003/01/03  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm: fix call to method ask_from__add_modify_removeW

	* interactive/gtk.pm (create_treeview_list): fix setter
	  - factorize the creation of the {formatted_list} from {list} for
	create_boxradio, create_treeview_list, create_treeview_tree
	  - an added advantage for create_treeview_list is the ability to easily
	change
	{list}, {formatted_list} and Gtk2::ListStore without breaking keyboard
	acceleration (see next commit for a usage of this feature)

	* ugtk2.pm (create_packtable): ScrolledWindow are not the only one allowed
	to grow,
	widgets with get_data('must_grow') set are allowed too

	* printer/printerdrake.pm (first_time_dialog): much cleanup (but not
	tested)

	* mdk-stage1/minilibc.c: add symbols __libc_csu_fini and __libc_csu_init
	to be compatible with new glibc (?)

2003/01/02  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/test.pm: X test is now working :)

2003/01/03  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm: fix call to method ask_from__add_modify_removeW

	* mdk-stage1/minilibc.c: add symbols __libc_csu_fini and __libc_csu_init
	to be compatible with new glibc (?)

2003/01/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: titi's message annoys me too much.. removing it

2003/01/02  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: replace any::load_category() with
	modules::interactive::load_category()

	* Xconfig/test.pm: X test is now working :)

	* interactive.pm (ask_from__add_modify_remove): check all callbacks are
	given
	(ask_from__add_modify_remove): fix
	add ask_from__add_modify_remove, and use it for bootloader entries

	* any.pm: add ask_from__add_modify_remove, and use it for bootloader
	entries

2003/01/02  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: 
	  - Layout widget has native scrolling support
	  - shadow parameter can always be used

	* standalone.pm: fixes for wizards

	* drakxtools.spec: 9.1-0.6mdk
	merge in back external stefan changes

	* standalone/logdrake: embedding fixes

2002/12/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/fi.po: updated Finnish file

2002/12/29  Pixel  <pixel@mandrakesoft.com>

	* network/ethernet.pm: move any::load_category() to
	network::interactive::load_category()
	(and a few other functions which are only used by load_category())
	  - move any::pppConfig() to network::modem::ppp_configure()
	  - move any::miscellaneousNetwork() to
	network::network::proxy_configure()
	(and uses the parameter instead of $::o->{miscellaneous})
	  - move network::network::miscellaneousNetwork() to
	network::network::miscellaneous_choose()
	  (and do not export it)
	  (and uses a parameter instead of $::o->{miscellaneous})
	  - move network::modem::pppConfig() to network::modem::ppp_choose()
	  (and change parameter order, and drop unused parameter $intf)
	  - do not export network::network::write_interface_conf()
	  (since it is only used locally (?))
	  - cleanup network::network::write_interface_conf()
	  (one still needs to pass $::o->{miscellaneous}{track_network_id} more
	  cleanly, and use run_program::rooted when calling /sbin/ip)

	* printer/gimp.pm: set_permissions() doesn't want the given file to be
	$::prefix'ed

	* network/network.pm, standalone/drakproxy: 
	  - move any::pppConfig() to network::modem::ppp_configure()
	  - move any::miscellaneousNetwork() to
	network::network::proxy_configure()
	(and uses the parameter instead of $::o->{miscellaneous})
	  - move network::network::miscellaneousNetwork() to
	network::network::miscellaneous_choose()
	  (and do not export it)
	  (and uses a parameter instead of $::o->{miscellaneous})
	  - move network::modem::pppConfig() to network::modem::ppp_choose()
	  (and change parameter order, and drop unused parameter $intf)
	  - do not export network::network::write_interface_conf()
	  (since it is only used locally (?))
	  - cleanup network::network::write_interface_conf()
	  (one still needs to pass $::o->{miscellaneous}{track_network_id} more
	  cleanly, and use run_program::rooted when calling /sbin/ip)

	* pkgs.pm: use "our" instead of "use vars"
	*pkg::LOG is unused, so don't export it

	* install_steps.pm: move any::runlevel() to Xconfig::various::runlevel()
	  - move any::choose_security_level() to security::level::level_choose()
	  - move any::config_security_user() to
	security::various::config_security_user()
	  - move any::config_libsafe() and security::libsafe::config_libsafe()
	to security::various::config_libsafe()
	no need to close *pkgs::LOG, pkgs handles it nicely now

	* install_steps_interactive.pm: move any::keyboard_group_toggle_choose()
	to keyboard::group_toggle_choose()
	  - move any::choose_security_level() to security::level::level_choose()
	  - move any::config_security_user() to
	security::various::config_security_user()
	  - move any::config_libsafe() and security::libsafe::config_libsafe()
	to security::various::config_libsafe()
	cleanup comments

	* security/various.pm: deprecates security::libsafe

	* security/level.pm, security/libsafe.pm, install2.pm: 
	  - move any::choose_security_level() to security::level::level_choose()
	  - move any::config_security_user() to
	security::various::config_security_user()
	  - move any::config_libsafe() and security::libsafe::config_libsafe()
	to security::various::config_libsafe()

	* network/modem.pm: in network::modem::configure $intf is unused, rename
	it to $_intf
	  - do not use a global $in in network::modem, pass it as a parameter
	  - create network::modem::ppp_configure_raw() which doesn't need $in
	(it is only used by network::modem::ppp_configure(), but this is clearer
	that way)
	  - use $::prefix instead the global $prefix
	  - don't pass $prefix to ppp_configure
	  - move any::pppConfig() to network::modem::ppp_configure()
	  - move any::miscellaneousNetwork() to
	network::network::proxy_configure()
	  (and uses the parameter instead of $::o->{miscellaneous})
	  - move network::network::miscellaneousNetwork() to
	network::network::miscellaneous_choose()
	  (and do not export it)
	  (and uses a parameter instead of $::o->{miscellaneous})
	  - move network::modem::pppConfig() to network::modem::ppp_choose()
	  (and change parameter order, and drop unused parameter $intf)
	  - do not export network::network::write_interface_conf()
	  (since it is only used locally (?))
	  - cleanup network::network::write_interface_conf()
	  (one still needs to pass $::o->{miscellaneous}{track_network_id} more
	  cleanly, and use run_program::rooted when calling /sbin/ip)

	* Xconfig/various.pm, bootlook.pm, Xconfig/main.pm: move any::runlevel()
	to Xconfig::various::runlevel()

	* keyboard.pm, standalone/keyboarddrake: move
	any::keyboard_group_toggle_choose() to keyboard::group_toggle_choose()

	* network/netconnect.pm: 
	  - do not use a global $in in network::modem, pass it as a parameter
	  - create network::modem::ppp_configure_raw() which doesn't need $in
	(it is only used by network::modem::ppp_configure(), but this is clearer
	that way)

	* standalone/drakconnect: any::load_category_no_message() doesn't exist
	anymore, it really is modules::load_category() !
	  - move any::pppConfig() to network::modem::ppp_configure()
	  - move any::miscellaneousNetwork() to
	network::network::proxy_configure()
	(and uses the parameter instead of $::o->{miscellaneous})
	  - move network::network::miscellaneousNetwork() to
	network::network::miscellaneous_choose()
	  (and do not export it)
	  (and uses a parameter instead of $::o->{miscellaneous})
	  - move network::modem::pppConfig() to network::modem::ppp_choose()
	  (and change parameter order, and drop unused parameter $intf)
	  - do not export network::network::write_interface_conf()
	  (since it is only used locally (?))
	  - cleanup network::network::write_interface_conf()
	  (one still needs to pass $::o->{miscellaneous}{track_network_id} more
	  cleanly, and use run_program::rooted when calling /sbin/ip)

	* modules/interactive.pm: move any::load_category() to
	network::interactive::load_category()
	(and a few other functions which are only used by load_category())

	* any.pm: cleanup (using ask_from instead of ask_from_listf_)
	cleanup (using "format => ...")
	move any::load_category() to network::interactive::load_category()
	(and a few other functions which are only used by load_category())
	move any::keyboard_group_toggle_choose() to
	keyboard::group_toggle_choose()
	move any::runlevel() to Xconfig::various::runlevel()
	  - move any::choose_security_level() to security::level::level_choose()
	  - move any::config_security_user() to
	security::various::config_security_user()
	  - move any::config_libsafe() and security::libsafe::config_libsafe()
	to security::various::config_libsafe()
	  - move any::pppConfig() to network::modem::ppp_configure()
	  - move any::miscellaneousNetwork() to
	network::network::proxy_configure()
	(and uses the parameter instead of $::o->{miscellaneous})
	  - move network::network::miscellaneousNetwork() to
	network::network::miscellaneous_choose()
	  (and do not export it)
	  (and uses a parameter instead of $::o->{miscellaneous})
	  - move network::modem::pppConfig() to network::modem::ppp_choose()
	  (and change parameter order, and drop unused parameter $intf)
	  - do not export network::network::write_interface_conf()
	  (since it is only used locally (?))
	  - cleanup network::network::write_interface_conf()
	  (one still needs to pass $::o->{miscellaneous}{track_network_id} more
	  cleanly, and use run_program::rooted when calling /sbin/ip)

	* network/isdn.pm: 
	  - do not use a global $in in network::modem, pass it as a parameter
	  - create network::modem::ppp_configure_raw() which doesn't need $in
	(it is only used by network::modem::ppp_configure(), but this is clearer
	that way)
	  - move any::pppConfig() to network::modem::ppp_configure()
	  - move any::miscellaneousNetwork() to
	network::network::proxy_configure()
	  (and uses the parameter instead of $::o->{miscellaneous})
	  - move network::network::miscellaneousNetwork() to
	network::network::miscellaneous_choose()
	  (and do not export it)
	  (and uses a parameter instead of $::o->{miscellaneous})
	  - move network::modem::pppConfig() to network::modem::ppp_choose()
	  (and change parameter order, and drop unused parameter $intf)
	  - do not export network::network::write_interface_conf()
	  (since it is only used locally (?))
	  - cleanup network::network::write_interface_conf()
	  (one still needs to pass $::o->{miscellaneous}{track_network_id} more
	  cleanly, and use run_program::rooted when calling /sbin/ip)

2002/12/28  Pixel  <pixel@mandrakesoft.com>

	* standalone.pm: don't import everything from "common" (including
	MDK::Common::*) to get rid of
	warnings "Subroutine renamef redefined ..." "Subroutine linkf redefined
	..."
	... (but I don't understand how to make explainations on common_functs
	work?!)

	* printer/gimp.pm: 
	  - mkdir_p throws an exception on error, so "mkdir_p() or ..." is dumb,
	fixing
	(thanks to Lea Gris)
	  - use output()

2002/12/24  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po: Updated Portuguese file

2002/12/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* lang.pm: CJK font names changes (still doesn't work :/)

	* share/list: perl's automatic utf8 handling will need these files (will
	try to do better in the future)

	* install_steps_gtk.pm: fix 'bold' advertisements

	* share/fonts.tar.bz2: use another default font
	have a default fixed alias for a font which will always be here even in
	ramdisk

	* tools/make_mdkinst_stage2: fonts changes (doesn't work with CJK (at
	least) in ramdisk, though)

	* Xconfig/resolution_and_depth.pm: workaround gtk bug in
	gtk_entry_set_text
	fix titi porting gtk2 without testing enough..

	* interactive/gtk.pm: be more efficient in precomputing, previous
	situation could lead to several tens of seconds of wait in
	XFdrake-monitor

2002/12/23  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt_BR.po: updated Brazilian file

2002/12/23  Pixel  <pixel@mandrakesoft.com>

	* printer/printerdrake.pm: help perl_checker (interactive is used even if
	the constructor is not there)

	* Xconfig/resolution_and_depth.pm: fix setting size of depth combo

2002/12/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* lang.pm: simplify since we don't use X11 fonts (we can't since
	GDK_USE_XFT is not switchable once program is launched)

	* mouse.pm: image in CVS is 3b+, not 3bp

	* share/themes-mdk.rc: allow gtk2 theme engine to find pixmaps

	* share/list, Makefile: list files changes for gtk2 (is that really
	optimal to have utf8.pm and utf8_heavy.pl?)

2002/12/20  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file
	updated Portuguese file

	* share/fonts.tar.bz2: updated fonts tarball, all old bitmap fonts have
	been removed,
	now it only includes:
	  - an OpenType font with glyphs for latin and cyrillic
	  - two unicode encoded bitmap fonts with glyphs for CJK and Greek
	(and it could be used for non latin/cyrillic scripts for which there
	  isn't any outline font available).
	Those fonts are based on fonts shipped with XFree86 (Nimbus Sans L and
	"misc-fixed"), but with some modifications (extra glyphs added to
	complete the "holes" in latin and cyrillic for the outline font,
	added a few missing chines chars and changed ascii portion from
	monospaced
	to varaible width for the bitmap fonts (so the visual output is
	better)).
	The choice of bitmap fonts for CJK has been done due to the very huge
	size of CJK outline fonts.

	* share/po/fi.po: updated Finnish file

	* share/po/eo.po: Small change in Esperanto file

2002/12/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: gtk+2 support for plug/socket is back since 2.1.5-2mdk

2002/12/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/doc/README: meuh

2002/12/19  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file

	* share/po/ta.po: Converted Tamil file to utf-8

2002/12/19  Pixel  <pixel@mandrakesoft.com>

	* Makefile: add "make test_pms_all"

	* standalone/.perl_checker: use libDrakX from CVS (ie. ..) in perl_checker

	* printer/cups.pm, printer/main.pm, printer/printerdrake.pm: 
	  - printer::main::read_cups_printer_list() is now
	printer::cups::read_printer_list() (but it is unused!)
	  - printer::main::get_cups_remote_queues() is now
	printer::cups::get_formatted_remote_queues()
	  - cleanup printer::cups::get_remote_queues() using
	printer::cups::lpstat_v()

	* standalone/drakupdate_fstab: any::get_secure_level() doesn't exist
	anymore, use security::level::get() instead (fix titi change)

	* printer/gimp.pm: do not use "$1 !~ ..."

2002/12/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: conflict with "non gtk+-2 aware" releases of mcc
	9.1-0.4mdk

2002/12/18  Pixel  <pixel@mandrakesoft.com>

	* any.pm, .perl_checker, install_any.pm: new features including checking
	unused functions, and checking methods being available

	* install2.pm, partition_table.pm: enumerate the various required packages
	when requiring a package dynamically known

	* standalone.pm, Newt/Newt.pm: help perl_checker knowing packages are used
	as classes

	* diskdrake/interactive.pm, lvm.pm, fsedit.pm: add "new" to lvm.pm, and
	use it

	* .cvsignore: ignore .perl_checker.cache

2002/12/18  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Xconfig/resolution_and_depth.pm: XFdrake gtk+-2

	* Xconfig/test.pm: fix
	XFdrake gtk+-2

	* standalone/drakperm: 
	  - basic gtk+-2 port (edition is not ready yet)
	  - perl_checker fixes

	* ugtk2.pm: perl_checker fixes
	disable embedded mode for now due to gtk+-2 bugs
	fix wizards and draconnect:
	it's the same code as in old my_gtk but i don't understand
	how it could have worked...
	yet the logic is quite simple : we add the "previous" button only if
	we're not in the wizard's first page; but the "next/finish" button
	must still be added, else the wizard is quite unusefull :-(

	* standalone/harddrake2, harddrake/data.pm: saner default size (too big
	for 800x600 sadly)

	* standalone/drakconnect: refresh: remove current interfaces before
	readding them, like it was
	before
	  - consolidate some code into new_dialog
	  - simplify through MDK::Common
	perl_checker fixes
	  - gtk+-2 port is completed (switch from CList to TreeView)
	  - gtk+-2 minor fixes (use new API rather than old one)
	  - fix non wizard mode (add to frame not to window which is already
	full)
	  - wizard mode is fixed by previous ugtk2 fix
	  - simplify through MDK::Common
	fix drakconnect warnings

2002/12/17  alus

	* share/po/pl.po: updated

2002/12/17  Daouda Lo  <daouda@mandrakesoft.com>

	* ugtk2.pm: 
	  - export gtkappend_page
	  - add gtkappend_page function (for gui building wizard)

2002/12/16  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file

2002/12/16  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/card.pm: fix english typo (thanks to J. Grant)

	* mouse.pm: really drop update_type_name

	* fsedit.pm: really drop check()

	* standalone/drakautoinst: use ->method syntax for method call

2002/12/16  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: build automatically the font description if needed
	fix string_size() usage in get_text_coord()

2002/12/14  Pixel  <pixel@mandrakesoft.com>

	* network/netconnect.pm: do not export start_internet and stop_internet
	(was broken since network::netconnect do not inheritate from Exporter)

2002/12/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_messages.pm: must return a true value

	* interactive/gtk.pm: expand_row no longer bugs, great :)

	* c/stuff.xs.pl: iconv_ is needed all the times, not only in drakx

2002/12/13  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (kdeicons_postinstall): drop (unused)

	* detect_devices.pm: drop hasUltra66 (unused)

	* any.pm, bootloader.pm: drop loadlin handling

	* network/network.pm, ugtk.pm, my_gtk.pm, printer/data.pm,
	partition_table.pm, ugtk2.pm: remove exported names which are not
	defined

	* printer/main.pm: commit the real code, not the debug code :-(
	put back the comment
	(read_cups_printer_list, get_cups_remote_queues): much cleanup

	* fsedit.pm (check): drop it (unused, maybe you should use
	diskdrake::interactive::check instead)

	* services.pm: use wrap_text (instead of handcoding it)

	* Xconfig/various.pm (show_info): drop (unused)

	* timezone.pm (sexProb): drop (unused!)

	* standalone/drakbackup: replace "%" with "%%" in translated string

	* mouse.pm (update_type_name): drop (unused (?))

	* bootlook.pm: drop unused function

	* fs.pm (add_options): drop (unused, use mount_options_unpack +
	mount_options_pack instead)
	(mount_all): drop (unused, use formatMount_all instead)

2002/12/13  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Makefile.drakxtools, Makefile: fix installation after pixel changes

	* drakxtools.spec: fix {build,}requires for gtk+2

	* ugtk.pm: remove uneeded variables

	* standalone.pm: remove double
	move draksec's gui into the standalone program,
	nobody will uses it so it's useless to load drakx with it.
	also use common cli options managment

	* standalone/harddrake2: perl_checker fixes

	* security/main.pm, standalone/draksec: move draksec's gui into the
	standalone program,
	nobody will uses it so it's useless to load drakx with it.
	also use common cli options managment

2002/12/12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po, share/po/he.po: Added a starting Hebrew file; updated
	Portguese file

2002/12/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: remove unused variable $clicked
	remove some $::expert
	remove beginner/expert choice

	* install_steps_gtk.pm: remove beginner/expert choice

	* ugtk.pm: unused variables renamed with a leading underscore (some code
	should be removed?)

	* diskdrake/hd_gtk.pm: when clicking on one of the legend buttons together
	with an existing partition
	selected, it doesn't change the partition type, it tells to use "Type"
	(it used to be ignored in non-expert, and do a change type in expert)

	* install2.pm: drop options "fexpert" and "fbeginner" which used to skip
	the choice expert/beginner

2002/12/12  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: simplify
	add gtkmodify_font() and gtkset_property()

	* standalone/harddrake2: better english
	don't confuse people by altering sentences that could have been
	interpreted as questions
	  - s/::/:/ on cpu info
	  - print field names in bold blue rather than just blue

2002/12/11  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/zh_CN.po, share/po/pt.po: updated Portuguese and Chinese files

2002/12/11  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk2.pm: reuse already consolided code
	reuse already consolided code
	add set_back_pixbuf() to let a widget paint itself a pixbuf in its
	background rather that doing this ourselves in rpmdrake or mcc

2002/12/10  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile, share/po/fake_c.pl: use "perl_checker --generate-pot"
	instead of fake_c + xgettext

	* Xconfig/test.pm: do not duplicate "An error occurred ..." t10n string

	* any.pm, bootloader.pm: perl_checker --generate-pot is a bit picky about
	the localisation of "#-PO:" comments

	* install_steps_interactive.pm: fix % in translated string (it must be %%)

	* standalone/drakbug, standalone/logdrake, standalone/drakfloppy,
	standalone/drakTermServ, standalone/drakautoinst, standalone/drakbackup,
	standalone/drakconnect, standalone/drakxtv: minimal perl_checker fixes
	to have only warnings

	* Makefile.config: service_harddrake.sh is not a PM, so i remove it from
	STANDALONEPMS_
	live_install is a shell script, do not pretend it's perl ;p

2002/12/10  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* network/netconnect.pm, network/tools.pm, network/isdn.pm,
	standalone/drakTermServ, standalone/drakxtv: perl_checker fixes

	* standalone/harddrake2: no gratuitously tab

	* standalone/draksplash: 
	  - gtk+2 port
	  - "use strict" fixes
	  - perl_checker fixes

	* standalone/drakconnect: perl_checker fixes
	fix gtk+2 port

2002/12/09  adesmons

	* network/netconnect.pm: make perl_checker happy
	drakconnect conf file no more uploaded with now useless variable

	* network/adsl.pm: drakconnect conf file no more uploaded with now useless
	variable

2002/12/09  Pixel  <pixel@mandrakesoft.com>

	* share/themes-blackwhite.rc, share/themes.rc, share/themes-savane.rc:
	remove already obsolete themes

	* my_gtk.pm, ugtk2.pm: remove dynamic theme choosing, and next/previous
	(F11/F12) handling
	remove code handling setstep

	* diskdrake/hd_gtk.pm, diskdrake/interactive.pm, install_interactive.pm: 
	  - handle more locally "Reload partition table" (esp. without using
	setstep)
	=> no exception is called through gtk

	* interactive/newt.pm, install2.pm: remove code handling setstep

	* install_steps_gtk.pm, install_messages.pm, install_steps_interactive.pm:
	move long messages (like license) to a new package: install_messages.pm

	* install_gtk.pm: remove unused variable ($step_name)
	remove code handling setstep

	* any.pm: remove old code

2002/12/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* network/isdn.pm: remove unused modules

2002/12/08  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt_BR.po: updated Brazilian file

2002/12/07  alus

	* share/po/pl.po: update
	update

2002/12/07  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sq.po: Added Albanian file

2002/12/06  adesmons

	* network/netconnect.pm, network/tools.pm, network/modem.pm,
	network/isdn.pm, network/adsl.pm: isdn data are now fetched form system
	instead of drakconnect conf file

2002/12/06  alus

	* share/po/pl.po: removed unuset texts

2002/12/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: don't use unless

	* c/stuff.xs.pl: add bind_textdomain_codeset, iconv the dgettext results
	to UTF8 since perl seems to mess with that when trying to do so from
	within gtk2-perl (with sv_utf8_upgrade)

	* install_gtk.pm: better style

	* interactive/gtk.pm: 2.1.3 doesn't have trouble with expand_to_path

	* lang.pm: perl checker OwnZ Da W3rld
	misc

	* bootlook.pm: perl_checker help'ed fix
	s/Gtk->/Gtk2->/

2002/12/06  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po, share/po/vi.po: updated po file

2002/12/06  Pixel  <pixel@mandrakesoft.com>

	* network/isdn.pm, standalone/XFdrake: be more perl_checker compliant

2002/12/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_gtk.pm: fix syntax & style

	* lang.pm: try to fix charset2pango_font
	fix syntax & style
	add bind_textdomain_codeset

	* ugtk2.pm: remove unused $_lan

2002/12/05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* standalone/harddrake2, share/po/DrakX.pot, standalone/net_monitor: Fixed
	some typos or bad English

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/Makefile,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
	share/po/bg.po, share/po/el.po, share/po/hu.po: updated po files

	* install_gtk.pm: two pango font names, for 10 and 12 sizes
	made some functions to retrieve pango font namese from lang/charset

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2: Changed the way
	locale->encoding is handled; revert to the old way which was
	working.
	And changed the charset to use during install to UTF-8 for all but CJK
	locales,
	in the X11 locale config files and in lang.pm;
	So, the same values of LC_* variables are used as before; but they
	should
	point, in glibc and in X11, to UTF-8 locales now

	* lang.pm: made some functions to retrieve pango font namese from
	lang/charset
	Changed the way locale->encoding is handled; revert to the old way which
	was
	working.
	And changed the charset to use during install to UTF-8 for all but CJK
	locales,
	in the X11 locale config files and in lang.pm;
	So, the same values of LC_* variables are used as before; but they
	should
	point, in glibc and in X11, to UTF-8 locales now

2002/12/05  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: parameter passing using $_ is bad

	* any.pm: format => sub { ...}  doesn't pass parameter as $_, but as $_[0]

	* printer/main.pm: $_ was not localized, fixing (and cleanup)

	* bootlook.pm: fix typo, be perl_checker compatible
	packages should not "use lib qw(/usr/lib/libDrakX)"

	* partition_table.pm: replace "map $_->{normal}, @l" with "map {
	$_->{normal} } @l"
	(the other form is perl_checker-deprecated)

	* standalone.pm: remove unused variables or rename them with an underscore
	(eg: $o becomes $_o)

2002/12/05  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/mousedrake: gtk+2 port (how difficult it was ...)

	* network/netconnect.pm: gtk+-2 port

	* c/Makefile.PL: glib-config is obsolete now
	gtk+-2 port

	* modules/interactive.pm: bug fix

	* standalone/drakTermServ, standalone/drakconnect: use gtkflush()

	* drakxtools.spec: pre gtk+2 work snapshot for mcc (mandrake_release() and
	the like

	* standalone/drakgw: gtk+2 fixes

	* bootlook.pm: use gtkflush()
	start gtk+2 port; perl-gtk2 is expected to implement
	Gtk::Image->set_from_pixbuf()

	* standalone/drakautoinst: use gtkflush()
	gtk+2 port

	* standalone/harddrake2: s/describe/describes/

	* standalone/drakfont: fix gtk+-2 port
	don't use anymore deprecated widgets

	* services.pm: drakxservices' gtk+-2 port

	* standalone/logdrake: fix gtk+2 port

2002/12/04  adesmons

	* network/netconnect.pm, network/tools.pm, network/network.pm,
	network/modem.pm: More data are now fetched from system instead of
	drakconnect conf file

2002/12/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/locales-skeleton.tar.bz2: added recognition of locale named
	"en_US.UTF-8"

	* lang.pm: made 'en_US.UTF-8' the default locale for LC_* varaibles during
	isntall

	* share/fonts.tar.bz2: Put Nimbus Sans L as default font
	put back the default iso8859-15 fonts used by install.rc

	* install_gtk.pm: put "Nimbus Sans L" as used font
	try of Gtk2 font definitions

2002/12/04  Pixel  <pixel@mandrakesoft.com>

	* network/adsl.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	syntax changes to make perl_checker happy

	* install_steps.pm: remove unused code (installCrypto)
	remove unused variables or rename them with an underscore (eg: $o
	becomes $_o)
	do not use "local *F"

	* install_steps_interactive.pm, install2.pm: remove unused code
	(installCrypto)
	remove unused variables or rename them with an underscore (eg: $o
	becomes $_o)

	* interactive.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	"require log" causes some pb, perl thinking that "log" is the log()
	function. So replace it with require 'log.pm' (perl_checker will handle
	this)

	* fsedit.pm: remove unused variables or rename them with an underscore
	(eg: $o becomes $_o)
	use if_() where possible (as reported by perl_checker)
	don't use "local *F"

	* interactive/stdio.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	fix typo

	* crypto.pm: use if_() where possible (as reported by perl_checker)

	* my_gtk.pm, ugtk.pm, printer/printerdrake.pm, ugtk2.pm,
	install_steps_gtk.pm, printer/main.pm, fs.pm, bootloader.pm: remove
	unused variables or rename them with an underscore (eg: $o becomes $_o)
	use if_() where possible (as reported by perl_checker)

	* scanner.pm: remove unused variables or rename them with an underscore
	(eg: $o becomes $_o)
	$prefix is no good, replace it with $::prefix

	* partition_table/dos.pm, partition_table/sun.pm, partition_table/bsd.pm,
	partition_table/empty.pm, keyboard.pm, partition_table/lvm_PV.pm: do not
	use "local *F"

	* printer/office.pm, Xconfig/parse.pm, network/smb.pm, mouse.pm,
	resize_fat/io.pm, Xconfig/xfree4.pm, network/drakfirewall.pm,
	Xconfig/main.pm, diskdrake/smbnfs_gtk.pm, partition_table.pm,
	printer/common.pm, diskdrake/interactive.pm, pkgs.pm,
	install_steps_auto_install.pm, diskdrake/hd_gtk.pm, Xconfig/monitor.pm,
	install_any.pm, diskdrake/removable.pm, network/isdn.pm, swap.pm,
	resize_fat/directory.pm, devices.pm, commands.pm,
	install_interactive.pm, printer/gimp.pm, any.pm, interactive/http.pm,
	printer/detect.pm, ftp.pm, services.pm, interactive/newt.pm,
	resize_fat/dir_entry.pm, network/ethernet.pm,
	Xconfig/resolution_and_depth.pm, Xconfig/test.pm, diskdrake/dav.pm,
	network/smbnfs.pm, interactive/gtk.pm, network/nfs.pm: remove unused
	variables or rename them with an underscore (eg: $o becomes $_o)

	* standalone.pm: no need to "require common", it is "use"d
	"require log" causes some pb, perl thinking that "log" is the log()
	function. So replace it with require 'log.pm' (perl_checker will handle
	this)

	* network/tools.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	my' variables as needed

	* security/main.pm, network/modem.pm: remove unused variables or rename
	them with an underscore (eg: $o becomes $_o)
	syntax changes to make perl_checker happy
	syntax changes to make perl_checker happy

	* network/network.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	syntax changes to make perl_checker happy
	use if_() where possible (as reported by perl_checker)

	* network/netconnect.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	  - %l is not used, so why declare it??
	  - in network::netconnect::main(), declare @l as it should be. But the
	code is really wrong, it NEEDS fixing (bis)
	syntax changes to make perl_checker happy
	use if_() where possible (as reported by perl_checker)
	syntax changes to make perl_checker happy

	* partition_table/mac.pm, modules.pm, partition_table/raw.pm, loopback.pm:
	remove unused variables or rename them with an underscore (eg: $o
	becomes $_o)
	do not use "local *F"

	* partition_table/gpt.pm: remove unused variables or rename them with an
	underscore (eg: $o becomes $_o)
	fix typo ($hd is not available in read_header(), so don't use it)
	do not use "local *F"

2002/12/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/harddrake2: 
	  - free objects non freeed by gtk+ (the eternal gobject vs boxed types
	debat)
	  - remove dead code
	  - use ->append_set() everywhere
	  - strip again vendor name from displayed string (aka keep only the
	  model description)
	  - enfoce pixel style : remove () from method calls

	* harddrake/data.pm: display "cpu #<XX>: <name>" for cpus

	* harddrake/TODO: update

2002/12/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: use option tty7 to force X server to be on tty7
	(instead of opening tty5 and
	tty6 so that the next available tty is tty7)

2002/12/04  uid580

	* harddrake/ui.pm: kill "used by only one" harddrake::ui module,
	move its content to standalone/harddrake2
	cleanups
	hide config buttons when switching from a configurable device to a non
	configurable one
	fix gtktext_insert() usage
	gtk+2 port, yeah baby :-)

	* security/main.pm: share common options

	* pkgs.pm: perl_checker

	* standalone/harddrake2, harddrake/data.pm: kill "used by only one"
	harddrake::ui module,
	move its content to standalone/harddrake2

	* standalone/drakxservices: strict mode

	* ugtk2.pm: reverse
	clean up

	* security/msec.pm: 
	  - fix obvious pixel typo (s/if/if_/)
	  - no need to maintain dummy documentation about something which is
	called only in one place
	  - simplify

2002/12/03  dam's  <dams@idm.fr>

	* any.pm: allow #, and other characters in phone number

2002/12/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: gcsux

	* pkgs.pm, network/tools.pm: make it $::testing aware

	* ugtk2.pm: misc fixes

	* interactive/gtk.pm, diskdrake/hd_gtk.pm, install_steps_gtk.pm, mouse.pm,
	services.pm, install_gtk.pm, diskdrake/smbnfs_gtk.pm: gtk2

2002/12/03  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po, share/po/ja.po, share/po/vi.po: updated Estonian and
	Vietnamese files; fixed typo in Japanese file

2002/12/03  Pixel  <pixel@mandrakesoft.com>

	* raid.pm: use output()

	* network/tools.pm: cleanup use of filehandles

	* detect_devices.pm: do not use "local my $F, ...", use "local(my $F, ...)
	instead
	do not use "local *F", use run_program::get_stdout() or "local $F"
	instead

	* scanner.pm, install_any.pm, timezone.pm, partition_table.pm: do not use
	"local *F", use "my $F" or output() instead

	* install_steps.pm: do not use "local my $F, ...", use "local(my $F, ...)
	instead

	* network/network.pm (read_resolv_conf): simplify

	* Xconfig/test.pm, devices.pm: do not use "local my $F, ...", use
	"local(my $F, ...) instead
	do not use "local *F"

	* commands.pm: do not use "local my $F, ...", use "local(my $F, ...)
	instead
	remove pack_ and unpack_ (unused)

	* security/msec.pm: fix typo
	simplify (esp. use cat_)
	(get_value): cleanup

	* fs.pm: one need run_program::raw() to use options

	* common.pm: do not use "local my $F, ...", use "local(my $F, ...) instead
	(formatXiB): simplify
	use "my $F" instead of "local *F" (and cleanup)

	* network/nfs.pm (find_exports): use run_program::raw + stdout

2002/12/03  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/logdrake, ugtk2.pm: add gtktext_append() and uses it

2002/12/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* common.pm, c/stuff.xs.pl: workaround perl sprintf bug when some
	parameters are utf8 and some not

	* ugtk2.pm: titisux, revert the pango pixels stuff

2002/12/03  uid551

	* share/fonts.tar.bz2: First try of fonts for Xft2

	* share/po/zh_CN.po, share/po/pt_BR.po: updated Brazilian and Chinese
	files

2002/12/02  adesmons

	* network/netconnect.pm, network/network.pm, network/modem.pm,
	standalone/drakconnect, network/adsl.pm: Some data are now fetched from
	system instead of drakconnect conf file (adsl, ppp, ifcfg-eth)

2002/12/02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: updated
	pot file

2002/12/02  Pixel  <pixel@mandrakesoft.com>

	* standalone/adduserdrake: remove commented code

	* proxy.pm: this package is unused, no need to keep it

	* install_steps.pm: use output_with_perm()
	use $::prefix
	any::runlevel() doesnt need the prefix anymore

	* Xconfig/card.pm: don't use $_

	* bootloader.pm: use output()

	* fs.pm: formatting timeout is now 1 hour
	remove the duplicate mke2fs (fixes buggy 1.225 change)
	use append_to_file()

	* install_steps_interactive.pm: any::get_autologin() doesnt modify $o, it
	returns a hash
	use $::prefix

	* network/network.pm (add2hosts): use output and pixelization

	* any.pm: use output_with_perm()
	any::get_autologin() doesnt modify $o, it returns a hash
	use $::prefix
	(get_autologin): $o->{autologin} is set to the chosen user only if
	AUTOLOGIN is set (it now mirrors what set_autologin() does)
	any::runlevel() doesnt need the prefix anymore
	use output and append_to_file

	* common.pm (set_alternative): simplify
	(files_exist): simplify

	* Xconfig/main.pm: any::runlevel() doesnt need the prefix anymore

	* Xconfig/various.pm: 
	  - any::runlevel() doesnt need the prefix anymore
	  - fix use of any:runlevel()

	* printer/main.pm, printer/office.pm: simplify

	* network/isdn.pm, network/netconnect.pm, mouse.pm, network/smb.pm,
	network/tools.pm: use output_with_perm()

	* Makefile: adapt "make test_pms" to new perl_checker

	* bootlook.pm: 
	  - use any::get_autologin and any::set_autologin
	  - any::set_autologin doesn't set /etc/sysconfig/autologin to perm 600,
	is it needed??
	use any::runlevel()

2002/12/02  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakbug: fix gtk2 port

	* standalone/logdrake: make append option be usable as other ones
	use named tags for color rather than rgbt triplet,
	waiting for full foreground-gdk support in perl-gtk2
	  - gtk2 port
	  - add a note to remember to try gtkhtml instead of TextView
	  - make wait message be transcient and modal (we should share some
	create_*_dialog() around logdrake/mcc/drakfloppy/rpmdrake)
	  - fixes for 'strict ref'

	* security/main.pm, standalone/drakbackup, standalone/drakconnect: 
	  - gtk2 port
	  - perl_checker fixes

	* standalone/drakgw: 
	  - fix gtk2 port
	  - let it work with kernel 2.5 too

	* docs/porting-ugtk: add a tool to ease gtk2 port.
	this is not the rule of thumb but basic stuff.

	* standalone/drakTermServ, standalone/drakfont: 
	  - gtk2 port
	  - consolidate some code in text_view()
	  - perl_checker fixes

	* ugtk2.pm: make append option be usable as other ones
	gtkfontinfo() is bugged since it uses a C macro which is
	(oh surprise) not in binary library .... :
	$fontinfo{$_} = Gtk2::Pango->PANGO_PIXELS($metrics->$func);
	  - use useless when needed
	  - gtktext_insert() : add an append argument to prevent overwriting
	already present text in TextBuffer
	  - gtkfontinfo() is bugged since it uses a C macro which is
	  (oh surprise) not in binary library .... :
	  $fontinfo{$_} = Gtk2::Pango->PANGO_PIXELS($metrics->$func);

2002/11/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* raid.pm: testing aware

	* any.pm: load_category__prompt: use formatAlaTeX

2002/11/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/et.po: Updated Estonian file

	* share/po/pt.po: Updated Portuguese file

2002/11/28  Pixel  <pixel@mandrakesoft.com>

	* commands.pm: fix "ps" and "df" (were broken due to localization of *DF
	and *PS)

	* bootlook.pm, network/adsl.pm, printer/printerdrake.pm: perl_checker
	adaptations
	perl_checker adaptations

	* resize_fat/c_rewritten.pm: to export, one needs to inheritate from
	Exporter

	* resize_fat/io.pm: perl_checker adaptations
	remove debug code

	* Makefile: fix removing of pods when installing pms

	* printer/cups.pm, any.pm, install_steps_gtk.pm, printer/main.pm,
	printer/detect.pm, printer/common.pm, network/network.pm, ftp.pm,
	services.pm, ugtk.pm, network/isdn.pm, network/ethernet.pm,
	resize_fat/fat.pm, install_steps_interactive.pm, network/netconnect.pm,
	lang.pm, network/tools.pm, install_any.pm, printer/gimp.pm,
	partition_table.pm, harddrake/ui.pm: perl_checker adaptations

	* Xconfig/test.pm: in the test snippet, add "use common" to have access to
	N()

	* bootloader.pm: 
	  - compare labels case insensitively (thanks to D.Faure)
	  - when reading existing config, remove double quotes around the label
	(thanks to D.Faure)
	  - add double quotes around the label instead of removing spaces (need
	checking installkernel compatibility)
	perl_checker adaptations

2002/11/28  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* services.pm: 
	  - my_gtk->main already do the kill 'USR2'
	and hardcoding signal number was bad anyway
	  - use gtkflush()
	  - my_gtk->main already do the kill 'USR2'
	  and hardcoding signal number was bad anyway
	  - use gtkflush()

	* standalone/drakperm: one more fix
	  - "use strict" fixes
	  - perl_checker fixes

	* standalone/drakgw: fix

	* ugtk2.pm: perl_checker fixes
	fix create_factory_menu*(): since we get an object and not anymore a
	hash, let just return factory as another variable...

2002/11/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk2.pm: reflect calling style change of PANGO_PIXELS

2002/11/27  Pixel  <pixel@mandrakesoft.com>

	* printer/main.pm: perl_checker adaptations
	(configure_hpoj): functions dynamically loaded from /usr/sbin/ptal-init
	are
	now loaded in printer::hpoj namespace (needs testing)

	* .perl_checker: update for new packages (Gtk2), and remove the
	now-handled-by-perl_check packages

	* Xconfig/card.pm, bootlook.pm, network/network.pm, log.pm,
	printer/office.pm, help.pm, scanner.pm, install_steps.pm,
	Xconfig/parse.pm, install_gtk.pm, network/isdn.pm, interactive.pm,
	my_gtk.pm, swap.pm, resize_fat/fat.pm, partition_table/gpt.pm,
	Newt/Newt.pm, resize_fat/c_rewritten.pm, mouse.pm, resize_fat/io.pm,
	standalone.pm, lang.pm, devices.pm, install2.pm, commands.pm,
	install_interactive.pm, printer/gimp.pm, partition_table.pm,
	Xconfig/xfree3.pm, any.pm, install_steps_gtk.pm, printer/detect.pm,
	interactive/http.pm, diskdrake/interactive.pm, ftp.pm,
	interactive/stdio.pm, interactive/newt.pm, harddrake/sound.pm, fs.pm,
	ugtk.pm, network/ethernet.pm, Xconfig/resolution_and_depth.pm,
	bootloader.pm, Xconfig/test.pm, harddrake/data.pm, Xconfig/monitor.pm,
	network/adsl.pm, fsedit.pm, modules.pm, network/tools.pm,
	network/isdn_consts.pm, install_any.pm, printer/printerdrake.pm,
	timezone.pm, harddrake/ui.pm, c/stuff.pm: perl_checker adaptations

2002/11/27  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakgw: 
	  - Gtk2 port
	  - perl_checker fixes

	* standalone/drakbug: 
	  - Gtk2 port
	  - one perl_checker fix

	* standalone/mousedrake: restore previous behaviour and exit early only in
	cancel case
	fix bad interaction between mcc & mousedrake.
	interactive already take care of it through my_gtk...

2002/11/26  gbeauchesne

	* install_any.pm: Only all.img is currently used on x86-64, ia64 and ppc.
	Therefore, don't
	complain nor try to stat some cdrom.img on first CD.

2002/11/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* unused/demo-frozen-bubble.patch: forgot to commit it (.cvsignore
	containing * doesn't help)

	* ugtk2.pm: fix typo (gtkstring_size) thx to perl checker
	fix shadow bug due to wrong extraction of allocation data
	two small fixes
	add

	* Makefile: ugtk2.pm is temporarily not in drakxtools but in perl-GTK2

2002/11/26  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* lang.pm: changed values for console font when en_US is chosen

	* share/po/pt.po, share/po/pt_BR.po: Updated Portuguese files

2002/11/26  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm, standalone.pm: no need to call common::backtrace(), use
	directly backtrace() (was it written that way to workaround a bug in old
	perl_checker?)

	* ugtk2.pm: make perl_checker happy

	* diskdrake/removable_gtk.pm: fix undeclared variable

2002/11/26  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer/main.pm: simplify some stuff

	* harddrake/data.pm: fix eating too much items

	* modules.pm, printer/detect.pm, run_program.pm, services.pm: perl_checker
	fixes

	* printer/printerdrake.pm: miaouh
	simplify

2002/11/25  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: assume any hardware is found (forget to commit).

	* rescue/tree/etc/oem-all: synced with latest change to HP version (and
	now HP is in CVS).

	* network/netconnect.pm: removed old code (commented out).

	* diskdrake/interactive.pm: revert previous change useless (another
	problem).
	added a trailing true value for perl being happy.

	* network/ethernet.pm: add support ADIModem.
	removed reference to ...->{nb_cards} no more used.
	removed 2 labels and 2 gotos by a very simple while, dam's is really
	great
	sometimes ;-)

	* network/adsl.pm: add support for Sagem USB Modem (for free.fr ;-))

	* network/network.pm: added is_domain_name that checks validity of a
	domain name.

	* detect_devices.pm: add getSagem() to detect Sagem USB ADSL Modem.

	* install_any.pm: fixes perl-checker importation of bug, getFile is
	complex for perl newbies, do
	not rely on perl-checker for trying to "fix" it else it won't run
	anymore ;-)
	make it work (changed *F => *GETFILE and added a return) else perl has
	some
	problem using it as reference to file handle.

	* mdk-stage1/dietlibc/include/sys/mount.h: fixes for new kernel headers
	(It should problably be kernel-headers to be
	modified but it is *much* faster to modify yoyotte's works).

2002/11/25  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: fix typo (openInstallLog *must* return the filehandle)
	don't use filehandle *pkgs::LOG, use a my'ed $LOG
	since we use the "fileno", perl doesn't know we're still using the
	filehandle, and so closes it, and :-(

	* network/netconnect.pm: in network::netconnect::main(), declare @l as it
	should be. But the code is really wrong, it NEEDS fixing
	$modem is redefined 2 lines below its first declaration. this first
	declaration is useless (??)

	* standalone/diskdrake: oops, didn't see titi modified option handling
	fix handling of options --expert and --testing

	* install_any.pm: use a scalar instead of a typeglob (let typeglobs be
	deprecated!)

	* lang.pm: fix handling of "all" languages selected

	* network/isdn.pm: since $mouse is undefined, replace it with undef (??)

	* diskdrake/interactive.pm: make perl_checker happy

	* network/tools.pm: 
	  - $up was my-ed inside the if-then block though it was used outside
	the block (hint: buggy code)
	  - my @country as it should be

2002/11/25  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone.pm: 
	  - simplify --embedded handling
	  - stricter matching on --no-autoc

	* ugtk.pm: 
	  - simplify mcc stuff
	  - prevent bad stacking of right icons in mcc at startup

	* detect_devices.pm: remove dobles

	* my_gtk.pm: warn about broken programs that misuse my_gtk
	display in mcc when embedded only when ready to interact with the user

	* harddrake/ui.pm: interactive->exit call my_gtk->exit which destroy the
	window

	* common.pm, standalone/drakbug, standalone/drakbug_report:
	s/mdk_rel/mandrake_release/
	consolidate some stuff from standalone tools & mcc into mdk_rel()

2002/11/22  François Pons  <fpons@mandrakesoft.com>

	* mouse.pm: incorporate 8.2 HP fixes back in cooker.

2002/11/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakautoinst: use ask_warn when I should, and remove a one
	year old debug statement (???)

2002/11/21  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/net_monitor: switch latest tools that still manually handle
	embedding
	to use my_gtk
	  - perl_checker fixes
	  - use my_gtk to transparently handle embedding

	* standalone/drakproxy: this one requires any

	* standalone/drakbug: 
	  - Gtk::Gdk::ImlibImage is not needed
	  - perl_checker fixes
	  - fix interactive exit (s/in/$in/ ->exit)

	* standalone/drakfont, standalone/drakconnect, standalone/drakTermServ,
	standalone/drakgw: switch latest tools that still manually handle
	embedding
	to use my_gtk

	* standalone/drakbackup: switch latest tools that still manually handle
	embedding
	to use my_gtk
	remove dead code about option managment which is
	obsoleted by standalone

2002/11/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: hide the "please wait" at the latest stage

	* ugtk.pm: 
	  - api change for latest harddrake
	  - s/$x ne ''/$x/

	* security/msec.pm: simplify
	cleanups

	* printer/printerdrake.pm: cleanups
	update to new security::level scheme

	* standalone/drakbackup: message_noconf_box() and message_underdevel()
	were quite
	identical.  let consolidate them
	message_noselect_box() and message_noselect_what_box() were just
	identical (but for their label).
	let consolidate this
	send_mail_pb() and client_ftp_pb() were just identical (modulo their
	label)
	kill heavy duplication in get_cd_info()
	perl_checker fixes
	  - don't gratuitously copy a 70 lines help text with typo changes,
	translators will kill us
	  - use strict, fix it
	s/$x ne (0|'')/$x/

	* standalone/logdrake: do not use print_hello() callback, anyway it does
	not exists (but in
	drakfloppy ...)
	  - logdrake does not need any
	  - use ugtk for gtkcolor & co
	  - perl_checker fixes

	* standalone/draksec, standalone/service_harddrake, standalone/drakgw,
	standalone/draksound: perl_checker fixes

	* standalone/draksplash: perl_checker fixes
	  - fixes for "use strict" (still some work to do since some variables
	are created through ${ $x.$y }
	  - use my_gtk :
	  o clean code
	  o transparently manage embedding
	
	  - perl_checker fixes

	* standalone/drakproxy, standalone/drakupdate_fstab: fix blind copyright
	copy

	* interactive/stdio.pm, standalone/drakbug, standalone/drakTermServ: s/$x
	ne (0|'')/$x/

	* standalone/drakfloppy: perl_checker fixes
	more perl_checker fixes
	  - don't require unused modules
	  - use my_gtk to transparently handle embedding
	  - fixes for strict mode
	  - fixes for perl_checker (more to come after lunch)

	* bootlook.pm: this is a module, not a program

2002/11/19  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, network/ethernet.pm, share/po/az.po, share/po/zh_TW.po,
	standalone/drakconnect, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: default dhcp client is dhcp-client

2002/11/19  gbeauchesne

	* mdk-stage1/log.c: Don't forget to va_end() what was va_copy()'ed.

2002/11/19  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* keyboard.pm, share/keyboards.tar.bz2: Added Malayalam keyboard

	* share/po/fi.po: updated Finnish file

2002/11/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* security/main.pm, any.pm, security/level.pm, install_steps.pm: 
	  - fix duplication of sec level setting:
	merge any::get_secure_level() with
	  secure::msec::get_secure_level()
	  - move security level functions from secure::msec
	  to secure::level
	  - uses secure::level in install_steps
	  - fix duplication of security level labels
	  - draksec: use same strings in drakx, got nice
	  translations
	  - get_default_checks(): make it more readable

	* mouse.pm: perldoc: explain basic usage of mouse.pm, regarding
	problems that show up in early interaction between
	harddrake::data and mouse

	* harddrake/ui.pm: 
	  - remove debugging code
	  - document menu building
	  - add option menu check boxes to prevent (slowly) detecting
	printers and modems
	  - remove warnings on usb devices
	  - explains more cpu bugs
	  - eventually fix --testing effect
	  --testing handling was erronously reverted

	* security/msec.pm: 
	  - fix duplication of sec level setting:
	merge any::get_secure_level() with
	  secure::msec::get_secure_level()
	  - move security level functions from secure::msec
	  to secure::level
	  - uses secure::level in install_steps
	  - fix duplication of security level labels
	  - draksec: use same strings in drakx, got nice
	  translations
	  - get_default_checks(): make it more readable
	previous example in perldoc was buggy;
	put one that really works

	* diskdrake/hd_gtk.pm, diskdrake/interactive.pm: make perldoc working

	* harddrake/data.pm: don't display two times some usb mice

	* help.pm: one can now alter settings there

2002/11/18  Pixel  <pixel@mandrakesoft.com>

	* network/netconnect.pm, Xconfig/card.pm, bootlook.pm, printer/main.pm,
	printer/detect.pm, Xconfig/monitor.pm, network/adsl.pm, standalone.pm,
	pkgs.pm, harddrake/sound.pm, printer/office.pm, network/isdn.pm,
	printer/printerdrake.pm, printer/gimp.pm, harddrake/ui.pm: make
	perl_checker happy

2002/11/18  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/net_monitor, standalone/drakfont: drakbug, drakfont,
	drakperm, draksplash, drakxtv, harddrake2,
	net_monitor : final update for common cli options/help manager
	update copyright years

	* harddrake/TODO: final switch of drakbackup, logdrake and scannerdrake
	to new option scheme

	* standalone/adduserdrake, standalone/drakxservices, standalone/livedrake,
	standalone/keyboarddrake, standalone/drakboot, standalone/mousedrake,
	standalone/drakconnect, standalone/draksound: 
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option

	* standalone/draksplash, standalone/harddrake2, standalone/drakbug,
	standalone/drakperm: drakbug, drakfont, drakperm, draksplash, drakxtv,
	harddrake2,
	net_monitor : final update for common cli options/help manager

	* drakxtools.spec: 9.1-0.2dmk

	* standalone/drakautoinst, standalone/printerdrake, standalone/XFdrake,
	standalone/drakgw: 
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option
	update copyright years

	* standalone/drakfloppy: 
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option
	remove old dead commented i18n code that kept being copied around

	* standalone/diskdrake: final switch of drakbackup, logdrake and
	scannerdrake
	to new option scheme
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option
	update copyright years

	* standalone/logdrake: final switch of drakbackup, logdrake and
	scannerdrake
	to new option scheme
	update copyright years
	  - clean code sot that it runs under "use strict"
	  - simplify date command construction, this is basic perl :-(
	  - kill dead old commented code to handle i18n instead of relying on
	common shared modules
	remove old dead commented i18n code that kept being copied around

	* modparm.pm, modules/parameters.pm, modules/interactive.pm, any.pm:
	rename modparm as modules::parameters

	* standalone.pm: drakbug, drakfont, drakperm, draksplash, drakxtv,
	harddrake2,
	net_monitor : final update for common cli options/help manager
	typo fix
	switch drakTermServ to new option scheme
	rename modparm as modules::parameters
	final switch of drakbackup, logdrake and scannerdrake
	to new option scheme
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option

	* standalone/drakxtv: drakbug, drakfont, drakperm, draksplash, drakxtv,
	harddrake2,
	net_monitor : final update for common cli options/help manager
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option

	* bootlook.pm: switch to new help/options scheme
	update copyright years

	* harddrake/ui.pm: 
	  - standalone.pm :
	o make it be 'use strict' aware
	  o factorize options managment in one place
	  - standalone tools :
	  o they all now support -h|--help -v|--version, ...
	  o they can add their own options to %standalone::usages
	  - harddrake : use std --testing/$::testing rather than its own
	  --test option
	simplify code though my_gtk::gtkcolor

	* standalone/drakTermServ: switch drakTermServ to new option scheme

	* standalone/drakbackup, standalone/scannerdrake: final switch of
	drakbackup, logdrake and scannerdrake
	to new option scheme
	update copyright years

	* scanner.pm, standalone/drakproxy, security/msec.pm,
	printer/printerdrake.pm: update copyright years

2002/11/17  alus

	* share/po/pl.po: fix

2002/11/16  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/zh_CN.po, share/po/pt.po: updated Portuguese and Chinese files

2002/11/15  Pixel  <pixel@mandrakesoft.com>

	* any.pm, run_program.pm, interactive.pm, c.pm, ftp.pm:
	s/wantarray/wantarray()/

2002/11/15  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Xconfig/monitor.pm: perl_checker fix

	* harddrake/data.pm: s/usbvideo/usbvision/

	* standalone/drakxtv: typo fix

	* printer/printerdrake.pm: 
	  - more cleanups
	  - don't display messages if we're not going to remove/install some
	packages
	cleanups
	cleanups
	printerdrake::install_spooler() : fix heavy duplication of code
	by using %spoolers data structure (function shrunked by 66%)
	consolidate some stuff into printer::data::spoolers{XXX}{alternatives}
	so that all alternatives get centralized in one data structure
	cleanups

	* printer/data.pm: printerdrake::install_spooler() : fix heavy duplication
	of code
	by using %spoolers data structure (function shrunked by 66%)
	consolidate some stuff into printer::data::spoolers{XXX}{alternatives}
	so that all alternatives get centralized in one data structure

	* security/main.pm: 
	  - use run_program rather than raw system
	  - kill useless show_msec_help()
	  - kill commented remanant code of help buttons
	  - add tooltip with default values on combos & entries
	  - log about security administrator changes only when we do some
	  - factorize some code into new_editable_combo() and
	set_default_tip()

	* Makefile.config, drakxtools.spec, harddrake/sound.pm,
	Makefile.drakxtools: 
	  - add missing printer directory
	  - bump version to 9.1 like most of our packages

2002/11/14  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ro.po: updated Romanian file

	* standalone/drakfont: Make drakfont use ttmkfdir again, as it recognizes
	more encodings,
	use of parameter "-u" of ttmkfdir to always output unicode entries,
	call xftcache to create/update the Xftcache files (used by Xft),
	rewrite fonts.dir (with ttmkfdir) when removing a ttf file so it no
	longer appears on the font list, and execute "xset fp rehash" after
	adding/removing fonts, so the font list used by X server is
	synchronized.

2002/11/14  Pixel  <pixel@mandrakesoft.com>

	* printer/cups.pm, bootlook.pm, network/network.pm, resize_fat/main.pm,
	printer/office.pm, partition_table/dos.pm, scanner.pm, unused/scsi.pm,
	my_gtk.pm, swap.pm, install_steps_interactive.pm, Xconfig/xfreeX.pm,
	network/smb.pm, devices.pm, crypto.pm, commands.pm, printer/gimp.pm,
	any.pm, install_steps_gtk.pm, printer/main.pm, printer/detect.pm,
	interactive/stdio.pm, interactive/newt.pm, fs.pm,
	resize_fat/dir_entry.pm, ugtk.pm, run_program.pm, bootloader.pm,
	steps.pm, harddrake/data.pm, diskdrake/hd_gtk.pm, interactive/gtk.pm,
	detect_devices.pm, network/tools.pm, install_any.pm,
	printer/printerdrake.pm, harddrake/ui.pm: 
	  - add/remove spaces to make perl_checker happy
	  - remove redundant parentheses
	  - add some parentheses for clarity

	* partition_table/mac.pm, ftp.pm, pkgs.pm: make perl_checker happy
	  - add/remove spaces to make perl_checker happy
	  - remove redundant parentheses
	  - add some parentheses for clarity

	* partition_table/gpt.pm, partition_table/raw.pm, partition_table.pm: make
	perl_checker happy

2002/11/14  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/v4l.pm: resync with bttv-0.7.100 and saa7134-0.2.2snapshot

	* drakxtools.spec: 1.1.12-1mdk

	* security/main.pm: 
	  - kill unused myexit()
	  - perl_checker fixes

	* printer/main.pm, printer/data.pm, printer/STATUS, printer/office.pm,
	printer/gimp.pm: 
	  - printer::data : export all data structures
	  - cleanups
	  - all code is now runnable in strict mode

	* security/msec.pm: 
	  - perl_checker fixes
	  - clean code
	  - simplify config_function()

	* harddrake/ui.pm: explain the detect() vs new() delayed gui construction
	when embedded
	display port for network printers too

2002/11/13  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sk.po, share/po/ru.po: updated Slovak and Russian files

2002/11/13  Pixel  <pixel@mandrakesoft.com>

	* printer/common.pm: fix syntax error

	* Xconfig/various.pm, http.pm, network/network.pm, network/modem.pm,
	resize_fat/main.pm, install_gtk.pm, interactive.pm, my_gtk.pm, mouse.pm,
	printer/data.pm, devices.pm, lang.pm, install2.pm, install_steps_gtk.pm,
	interactive/http.pm, partition_table/mac.pm, pkgs.pm,
	interactive/newt.pm, network/ethernet.pm, standalone/XFdrake, steps.pm,
	harddrake/data.pm, keyboard.pm, network/adsl.pm, fsedit.pm,
	install_any.pm, harddrake/ui.pm: add/remove spaces to make perl_checker
	happy

	* bootlook.pm, printer/office.pm, scanner.pm, install_steps.pm,
	network/isdn.pm, install_steps_interactive.pm, network/netconnect.pm,
	harddrake/v4l.pm, printer/main.pm, harddrake/sound.pm, ugtk.pm,
	network/tools.pm, printer/printerdrake.pm: add/remove spaces to make
	perl_checker happy
	add/remove spaces to make perl_checker happy

2002/11/13  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer/printerdrake.pm: simplify install_spooler() but there's still
	lot of duplication there
	(some work for tomorow)
	  - final switch to $::prefix
	  - simplify main::get_copiable_queues(), main::setcupslink()
	  - s/unless (X ne Y)/if (X eq Y)/
	  - set_usermode() : ensure we add the line if it didn't exists

	* harddrake/ui.pm: display floppy driver type as well as mouse type

	* printer/office.pm: fix files lookup
	printer::common: export function

	* printer/gimp.pm: don't reinvent the wheel, use common

	* detect_devices.pm: fix vendor/model spliting when there's neither space
	nor separator

	* printer/common.pm: printer::common: export function

	* printer/main.pm: 
	  - final switch to $::prefix
	  - simplify main::get_copiable_queues(), main::setcupslink()
	  - s/unless (X ne Y)/if (X eq Y)/
	  - set_usermode() : ensure we add the line if it didn't exists
	  - set_usermode() : don't reinvent the wheel, use substInFile
	  - get_usermode() : ditto, use getVarsFromSh

	* drakxtools.spec: pixel neither know how to update cvs nor comitting its
	changes

2002/11/12  erwan

	* mdk-stage1/network.c, mdk-stage1/stage1.h: Cleaning old stuff

2002/11/12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

2002/11/12  Pixel  <pixel@mandrakesoft.com>

	* security/main.pm, bootlook.pm, printer/main.pm, printer/detect.pm,
	partition_table/mac.pm, diskdrake/interactive.pm, pkgs.pm, services.pm,
	printer/office.pm, ugtk.pm, run_program.pm,
	install_steps_auto_install.pm, bootloader.pm, standalone/XFdrake,
	network/netconnect.pm, lang.pm, install2.pm, modules.pm, commands.pm,
	printer/printerdrake.pm, printer/gimp.pm, partition_table.pm: add/remove
	some spaces to make perl_checker happy

	* diskdrake/removable_gtk.pm: add "use common" for N()

2002/11/12  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer/main.pm: kill set_prefix()
	printer related modules cleaning :
	  - create the printer/ hierarchy
	  - split services related stuff into services.pm & printer::services,
	
	  - move things that've nothing to do with printers into common.pm
	  (alternatives, permissions, ...)
	
	  - move eveything related to cups, gimp-print, detection,
	  {star,open}office to the corresponding splited printer:: module
	
	  - big consolidation of printer::office (it was obvious there were tons
	  of duplication between staroffice and openoffice managment)
	
	  - move other stuff into printer::main, printer::common,
	
	status : print.pm has been heavily splited (now one can begin to
	understand the little bits).
	printerdrake still needs to be splited/cleaned and eventually removed
	since printer/printerdrake modules separation is not understandable by
	other people
	
	till, in printer::gimp, $lprcommand is neither declared nor setted
	nowhere.  idem in mdk9.0 ...

	* security/main.pm: fix _() -> N() conversion

	* install_steps_interactive.pm: resync with latest printerdrake

	* printer/printerdrake.pm: fix getSNMPModel() location
	printer related modules cleaning :
	  - create the printer/ hierarchy
	  - split services related stuff into services.pm & printer::services,
	
	  - move things that've nothing to do with printers into common.pm
	  (alternatives, permissions, ...)
	
	  - move eveything related to cups, gimp-print, detection,
	  {star,open}office to the corresponding splited printer:: module
	
	  - big consolidation of printer::office (it was obvious there were tons
	  of duplication between staroffice and openoffice managment)
	
	  - move other stuff into printer::main, printer::common,
	
	status : print.pm has been heavily splited (now one can begin to
	understand the little bits).
	printerdrake still needs to be splited/cleaned and eventually removed
	since printer/printerdrake modules separation is not understandable by
	other people
	
	till, in printer::gimp, $lprcommand is neither declared nor setted
	nowhere.  idem in mdk9.0 ...

	* drakxtools.spec: 1.1.12-1mdk

	* printer/cups.pm, printer/detect.pm, printer/common.pm,
	standalone/printerdrake, services.pm, printer/office.pm,
	printer/default.pm, printer.pm, printer/data.pm, common.pm,
	printer/services.pm, printerdrake.pm, printer/gimp.pm: printer related
	modules cleaning :
	  - create the printer/ hierarchy
	  - split services related stuff into services.pm & printer::services,
	
	  - move things that've nothing to do with printers into common.pm
	  (alternatives, permissions, ...)
	
	  - move eveything related to cups, gimp-print, detection,
	  {star,open}office to the corresponding splited printer:: module
	
	  - big consolidation of printer::office (it was obvious there were tons
	  of duplication between staroffice and openoffice managment)
	
	  - move other stuff into printer::main, printer::common,
	
	status : print.pm has been heavily splited (now one can begin to
	understand the little bits).
	printerdrake still needs to be splited/cleaned and eventually removed
	since printer/printerdrake modules separation is not understandable by
	other people
	
	till, in printer::gimp, $lprcommand is neither declared nor setted
	nowhere.  idem in mdk9.0 ...

	* standalone/drakxtv: don't offer to configure kernel for usbvision (no
	option for now)
	handle devices managed by usbvision too

	* install_steps.pm: update for new printerdrake

	* harddrake/data.pm: resync with printerdrake
	handle devices managed by usbvision too
	exclude more usb mice from unknown devices

2002/11/11  alus

	* share/po/pl.po: updated

2002/11/11  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/vi.po, share/po/ru.po: updated Russian and Vietnamese files

2002/11/11  Pixel  <pixel@mandrakesoft.com>

	* security/msec.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	add or remove spaces where need to please perl_checker
	  - use "foreach" instead of "for" in list context
	  - use "for" instead of "foreach" when used a la C
	various small syntax enhancements to please perl_checker

	* partition_table/sun.pm: 
	  - use "foreach" instead of "for" in list context
	  - use "for" instead of "foreach" when used a la C

	* Xconfig/card.pm, bootlook.pm, my_gtk.pm, network/netconnect.pm,
	harddrake/data.pm, network/tools.pm, install_any.pm, security/main.pm,
	network/isdn.pm, harddrake/ui.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	add or remove spaces where need to please perl_checker

	* detect_devices.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	add or remove spaces where need to please perl_checker
	  - do not use "foreach $var (...) {...}" use "foreach my $var (...)
	{...}" instead
	(only pb are functions called in {...} that could use $var, none found
	except in commands.pm)
	  - various small syntax enhancements to please perl_checker

	* partition_table/mac.pm: 
	  - do not use "foreach $var (...) {...}" use "foreach my $var (...)
	{...}" instead
	(only pb are functions called in {...} that could use $var, none found
	except in commands.pm)
	  - various small syntax enhancements to please perl_checker

	* pkgs.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	  - do not use "foreach $var (...) {...}" use "foreach my $var (...)
	{...}" instead
	(only pb are functions called in {...} that could use $var, none found
	except in commands.pm)
	  - various small syntax enhancements to please perl_checker

	* network/adsl.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	add or remove spaces where need to please perl_checker
	replace qq{...} with qq(...)

	* network/network.pm, mouse.pm, standalone.pm, network/drakfirewall.pm,
	partition_table.pm, partition_table/bsd.pm, ugtk.pm, Xconfig/monitor.pm,
	modules.pm, network/shorewall.pm, network/modem.pm, resize_fat/main.pm,
	resize_fat/any.pm, install_gtk.pm, unused/scsi.pm,
	resize_fat/directory.pm, lang.pm, devices.pm, harddrake/v4l.pm, any.pm,
	install_steps_gtk.pm, ftp.pm, services.pm, harddrake/sound.pm,
	Xconfig/test.pm, steps.pm, keyboard.pm, interactive/gtk.pm,
	partition_table/lvm_PV.pm, network/isdn_consts.pm: add or remove spaces
	where need to please perl_checker

	* standalone/drakfloppy: don't use <*> for globbing, use all or glob_

	* standalone/logdrake: replace q@...@ with q(...) or here_doc

	* interactive/stdio.pm, common.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	various small syntax enhancements to please perl_checker

	* http.pm, install_steps.pm, interactive/newt.pm, fs.pm, diskdrake/dav.pm:
	
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)

	* resize_fat/fat.pm: 
	  - use "foreach" instead of "for" in list context
	  - use "for" instead of "foreach" when used a la C
	various small syntax enhancements to please perl_checker

	* standalone/draksplash, raid.pm, Xconfig/xfreeX.pm,
	partition_table/raw.pm: various small syntax enhancements to please
	perl_checker

	* install2.pm: add or remove spaces where need to please perl_checker
	replace availableMemory with availableMemory()

	* scanner.pm, commands.pm: add or remove spaces where need to please
	perl_checker
	  - do not use "foreach $var (...) {...}" use "foreach my $var (...)
	{...}" instead
	(only pb are functions called in {...} that could use $var, none found
	except in commands.pm)
	  - various small syntax enhancements to please perl_checker

	* install_steps_interactive.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	add or remove spaces where need to please perl_checker
	replace availableMemory with availableMemory()

	* network/ethernet.pm: add or remove spaces where need to please
	perl_checker
	various small syntax enhancements to please perl_checker

	* printerdrake.pm, printer.pm: 
	  - replace ... =~ 'foo'  with  ... =~ /foo/
	  - remove unneeded parentheses for things like ... if (...)
	add or remove spaces where need to please perl_checker
	  - use "foreach" instead of "for" in list context
	  - use "for" instead of "foreach" when used a la C
	  - do not use "foreach $var (...) {...}" use "foreach my $var (...)
	{...}" instead
	(only pb are functions called in {...} that could use $var, none found
	except in commands.pm)
	  - various small syntax enhancements to please perl_checker

2002/11/10  gbeauchesne

	* mdk-stage1/minilibc.c: Fix implementation of signal() for x86-64, adjust
	for new kernel-headers

2002/11/10  Pixel  <pixel@mandrakesoft.com>

	* interactive/http.pm: don't return a typeglob ref, return the typeglob
	(reference to typeglobs are
	soft references which doesn't increment the ref count)

	* network/tools.pm: don't return a typeglob ref, return the typeglob
	(reference to typeglobs are
	soft references which doesn't increment the ref count) (thanks to Gerard
	Patel
	for the precise bug report)

	* standalone/draksplash, standalone/drakperm, standalone/drakbug,
	bootlook.pm, standalone/harddrake2, standalone/printerdrake,
	standalone/logdrake, standalone/drakfloppy, standalone/localedrake:
	ensure "common" is imported to have N()

2002/11/09  Pixel  <pixel@mandrakesoft.com>

	* proxy.pm: fix typo

	* network/tools.pm: 
	  - do not use q{...} to please perl_checker
	  - use <<'EOF' instead
	  - at the same time, fix the "\n" at the beginning of the generated
	script

	* harddrake/data.pm: make perl_checker happy

2002/11/08  Pixel  <pixel@mandrakesoft.com>

	* printer.pm: fix my typos

	* my_gtk.pm: normalize

2002/11/07  erwan

	* mdk-stage1/stage1-data/stage1-with-kadeploy.tar.bz2,
	mdk-stage1/network.c, mdk-stage1/stage1.h, mdk-stage1/url.c: SCSI
	Support is now activated

	* rescue/Makefile: Adding missing link for test in tree/usr/bin

	* rescue/list, rescue/list.i386: SCSI support now activated

2002/11/07  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* lang.pm: Added definition of default font for Thai

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
	share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/hu.po: updated
	pot file

	* share/rpmsrate: Added dependences for greek font and urw-fonts for
	cyrillic

2002/11/07  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* detect_devices.pm: 
	  - getCPUs() : fix cpu fields parsing
	  - harddrake::detect :
	o describe most cpu fields
	  o print value of skipped fields
	perl checker fixes
	  - harddrake : don't display modem when there're none
	  - getModem() :
	       o simplify
	       o remove unused variables
	  - getSerialModem() : indent

	* harddrake/ui.pm: 
	  - getCPUs() : fix cpu fields parsing
	  - harddrake::detect :
	o describe most cpu fields
	  o print value of skipped fields
	  - describe cpu frequency
	  - only display help topics related to currently displayed fields in
	  right framea
	  - if no device selected, display a message explaining the help dialog
	  - simplify the unknow driver case for color choice
	  - only display fields we described
	perl checker fixes
	  - add help for some cpu items
	  - only display choosen items
	  - remove a dead statement

	* drakxtools.spec: 1.1.11-1mdk

2002/11/06  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem-all: add extra partition support as primary/logical
	with configurable size and fs.
	allow configurable min_size, def_size, trigger_size, inst_size,
	swap_size.

2002/11/06  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm, install_any.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	replace complex "unless"s with "if"s
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* printerdrake.pm: replace "for my ..." with "foreach my ..."
	replace complex "unless"s with "if"s
	remove unneeded parentheses on the right side of infix if/foreach/unless
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* partition_table/raw.pm: remove unneeded parentheses on the right side of
	infix if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* harddrake/data.pm, install2.pm, standalone/service_harddrake,
	standalone/scannerdrake: make perl_checker happy
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* network/netconnect.pm, diskdrake/interactive.pm, network/isdn.pm:
	replace complex "unless"s with "if"s
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* standalone/draksplash, bootlook.pm, share/advertising/14-mdkexpert.pl,
	standalone/logdrake, share/advertising/17-mdkclub.pl, interactive.pm,
	my_gtk.pm, share/advertising/11-mdkstore.pl,
	share/advertising/02-community.pl, share/advertising/01-thanks.pl,
	mouse.pm, standalone/keyboarddrake, standalone/drakboot,
	share/po/DrakX.pot, standalone.pm, lvm.pm, standalone/drakTermServ,
	standalone/net_monitor, share/advertising/05-games.pl,
	network/drakfirewall.pm, standalone/mousedrake, Xconfig/main.pm,
	install_steps_newt.pm, standalone/drakbackup, diskdrake/smbnfs_gtk.pm,
	share/advertising/09-server.pl, share/advertising/04-multimedia.pl,
	standalone/printerdrake, share/advertising/13-mdkcampus.pl,
	install_steps_auto_install.pm, standalone/drakconnect,
	standalone/drakbug, diskdrake/hd_gtk.pm,
	share/advertising/07-desktop.pl, Xconfig/monitor.pm, network/adsl.pm,
	proxy.pm, modules.pm, share/advertising/10-mnf.pl, network/shorewall.pm,
	share/advertising/15-mdkexpert-corporate.pl,
	share/advertising/08-development.pl, share/advertising/06-mcc.pl,
	standalone/draksound, standalone/drakxtv, security/main.pm,
	Xconfig/various.pm, network/modem.pm, help.pm,
	diskdrake/removable_gtk.pm, install_gtk.pm, diskdrake/removable.pm,
	standalone/drakautoinst, share/po/b_dump_strings.pm, modparm.pm,
	install_steps_stdio.pm, Xconfig/xfreeX.pm, standalone/livedrake,
	share/advertising/03-internet.pl, standalone/harddrake2,
	harddrake/v4l.pm, modules/interactive.pm, crypto.pm,
	install_interactive.pm, share/advertising/12-mdkstore.pl,
	standalone/localedrake, loopback.pm, any.pm, interactive/http.pm,
	interactive/stdio.pm, standalone/drakfloppy, services.pm,
	interactive/newt.pm, share/po/Makefile, fs.pm, standalone/drakfont,
	network/ethernet.pm, Xconfig/resolution_and_depth.pm, standalone/drakgw,
	steps.pm, keyboard.pm, diskdrake/dav.pm, standalone/drakperm, fsedit.pm,
	common.pm, share/po/fake_c.pl, harddrake/ui.pm: replace "_" with "N" and
	"__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* install_steps.pm: replace complex "unless"s with "if"s
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* bootloader.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	cleanup get_of_dev (aka ofpath)
	replace complex "unless"s with "if"s
	remove unneeded parentheses on the right side of infix if/foreach/unless
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* network/network.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	(write_resolv_conf): much cleanup (originally it was meant to introduce
	cat_ and output, but it ended up with a complete rewrite :)
	replace complex "unless"s with "if"s
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* scanner.pm: make perl_checker happy
	make perl_checker happy

	* commands.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	(cp): use cp_af
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless

	* Xconfig/test.pm: please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* standalone/diskdrake, network/nfs.pm: make perl_checker happy

	* Xconfig/card.pm: when needVideoRam, don't take the raw value
	VideoRam_probed,
	better take a known value <= VideoRam_probed
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* Xconfig/xfree4.pm: please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless

	* log.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible

	* detect_devices.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	make perl_checker happy
	replace complex "unless"s with "if"s
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless

	* ugtk.pm: make perl_checker happy
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* install_steps_interactive.pm, harddrake/sound.pm: make perl_checker
	happy
	replace complex "unless"s with "if"s
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* standalone/XFdrake: fix typo
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* raid.pm, network/tools.pm, install_steps_gtk.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* printer.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	replace "for my ..." with "foreach my ..."
	remove unneeded parentheses on the right side of infix if/foreach/unless
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

	* pkgs.pm: 
	  - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."
	  - use some "cat_" and "output" where possible
	please perl_checker:
	  - local'ize $_ before doing while (<...>)
	  - use "foreach" instead of "for"
	  - remove unneeded parentheses on the right side of infix
	if/foreach/unless
	replace "_" with "N" and "__" with "N_"
	rationale:
	  - currently, we use _("xxx") as a shorthand for gettext("xxx"). It
	also used to call xgettext with --keyword=_
	
	  - alas, function &_ is global and not by package (notice esp. that _
	is not exported in common.pm)
	
	  - this lead to big ugly pb with packages defining their own &_,
	overriding common.pm's &_
	
	  - a fix is to set @::textdomains to add a new domain (the default
	being "libDrakX")
	
	but relying on the global "_" is still dangerous!

2002/11/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 1.1.10-mdk

	* harddrake/sound.pm: fix for modules.pm not exporting
	category2modules_and_description

2002/11/05  erwan

	* rescue/tree/etc/rc.sysinit: modified rc.sysinit for ka

2002/11/05  gbeauchesne

	* c/smp.c: Revert last change
	Add generic cpu detection on x86-64 and IA-64, based on
	sysconf(_SC_NPROCESSORS_ONLN)

	* detect_devices.pm: Detect SMP more easily if we have APIC stuff capable

2002/11/05  Pixel  <pixel@mandrakesoft.com>

	* devices.pm: add /dev/ubd/0, /dev/ubd/1... support (thanks to Brian
	Murrell)

	* mouse.pm (xmouse2xId): ensure weird ids are ignored
	use find_index instead of map_index

	* interactive/newt.pm: 
	  - fix dialog boxes using a scrollbar
	  - cleanup
	use each_index instead of map_index when the return value is not used

	* interactive.pm: 
	  - do not handle "format"ing in interactive for combos
	  - do it in interactive::gtk instead (that way, "val" is back"format"ed
	in callbacks as wanted)
	  - die when editable combos are used with non-strings (like arrays or
	hashes)

	* partition_table.pm: 
	  - isUBD can tell wether it is an ubd partition
	  - isSpecial is true for ubd partitions

	* fs.pm (format_ext2): better error message when it is called from
	format_ext3
	(thanks to Brian Murrell)

	* diskdrake/interactive.pm, fsedit.pm: introduce a new flag:
	getting_rid_of_readonly_allowed. It is set when the partition table
	badly handled by diskdrake, but we are still allowed to wipe the
	partition table and start
	with something new.

	* interactive/gtk.pm: 
	  - do not handle "format"ing in interactive for combos
	  - do it in interactive::gtk instead (that way, "val" is back"format"ed
	in callbacks as wanted)
	  - die when editable combos are used with non-strings (like arrays or
	hashes)
	use each_index instead of map_index when the return value is not used

	* install2.pm: basic uml_install support (thanks to Brian Murrell)
	use each_index instead of map_index when the return value is not used

	* interactive/http.pm, interactive/stdio.pm, ugtk.pm, raid.pm,
	bootloader.pm: use each_index instead of map_index when the return value
	is not used

	* Newt/Newt.xs: 
	  - fix dialog boxes using a scrollbar
	  - cleanup

	* services.pm: fix the use of a non-bounded regexp to check services (fix
	"nfs" being marked
	on whereas it is "nfslock" which is on)

2002/11/05  Stew Benedict  <sbenedict@mandrakesoft.com>

	* tools/ppc/mkINSTALLCD: Update PPC boot CD creation.

	* mdk-stage1/init.c: PPC TIOCSCTTY changed to 0x540E

2002/11/05  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: newt rebuild

2002/11/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sk.po: updated Slovak file

2002/11/04  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm, Xconfig/xfreeX.pm, Xconfig/parse.pm,
	standalone/keyboarddrake: add XkbCompat "group_led" for all keyboards
	where a group layout switching is used

	* Xconfig/xfree.pm: have an empty configuration when a config file is
	buggy

2002/11/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer.pm: typo fixes

	* drakxtools.spec: 1.1.10-2mdk

2002/11/01  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ru.po, share/po/pt_BR.po: updated Russian and Portuguese files

2002/10/31  erwan

	* mdk-stage1/stage1.c, mdk-stage1/network.c, mdk-stage1/tools.c,
	mdk-stage1/tools.h, mdk-stage1/url.h, mdk-stage1/url.c: Including
	ka-deploy for stage 2

	* mdk-stage1/stage1-data/stage1-with-kadeploy.tar.bz2: Including ka-deploy
	for stage 2
	Adding missing file (stage1-with-kadeploy)

2002/10/30  erwan

	* mdk-stage1/stage1.c, mdk-stage1/network.c, mdk-stage1/stage1.h,
	mdk-stage1/network.h: Applying patch from 8.2, ka.img is working fine in
	old mode

2002/10/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file

2002/10/29  Stew Benedict  <sbenedict@mandrakesoft.com>

	* bootloader.pm, rescue/list.ppc: Reflect changes in yaboot package.

2002/10/28  alus

	* share/po/pl.po: updated
	updated translation

2002/10/28  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/modem.pm: add sub winmodemConfigure

	* network/netconnect.pm: few reworks for winmodem detection

	* detect_devices.pm: s#$_->{driver} eq
	'Bad:www.linmodems.org'#$_->{driver} =~ /www.linmodems.org/# to fit with
	ldetect

2002/10/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ro.po: Updated Romanian and Vietnamese files

2002/10/28  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (preConfigureTimezone): don't set UTC in beginner mode if
	there is no windows

2002/10/28  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: typo in comments: Josep L. Guallar-Esteve
	<jlguallar@computer.org>

2002/10/28  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: add new drivers

2002/10/25  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem-all: reduced version of oem script which allow
	installing in oem mode but
	without restricting language and without installing any packages.
	all package are copied to disk, ie this is an automated hd install
	builder.

2002/10/25  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/zh_CN.po, share/po/vi.po: updated Chinese and Vietnamese files

2002/10/24  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: Updated
	pot file

2002/10/23  Pixel  <pixel@mandrakesoft.com>

	* network/netconnect.pm, install_steps_newt.pm, harddrake/sound.pm: make
	perl_checker happy: replace PKG::f with PKG::f()

2002/10/23  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: nono changes for stupid perl_checker whose maintainer
	don't want to fix deficienties
	reindent for lord pix

	* harddrake/sound.pm: do a perl_checker pass after pixel one since he only
	do half the work
	reindent for lord pix

	* ugtk.pm, printer.pm, network/adsl.pm, printerdrake.pm: perl_checker
	fixes

	* harddrake/v4l.pm, harddrake/ui.pm: reindent for lord pix

	* detect_devices.pm: fix "poulpy sux"

	* Xconfig/resolution_and_depth.pm: fix pixel code

2002/10/18  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* detect_devices.pm: change dumb return values s/@pci_modems,
	$serial_modem/$serial_modem, @pci_modems/ (thanks to pixel)

	* network/netconnect.pm: remove useless 'pop'
	change dumb return values s/@pci_modems, $serial_modem/$serial_modem,
	@pci_modems/ (thanks to pixel)

2002/10/17  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* harddrake/sound.pm: titi almost sux (he helped me that's why I can't say
	titi sux :p)

2002/10/17  Pixel  <pixel@mandrakesoft.com>

	* any.pm, interactive/gtk.pm, network/modem.pm, Xconfig/monitor.pm,
	pkgs.pm, interactive/newt.pm, install_steps.pm,
	Xconfig/resolution_and_depth.pm, install_steps_interactive.pm: make new
	perl_checker happy: replacing PKG::f by PKG::f()

	* network/netconnect.pm: "=head" doc must end with "=cut"

2002/10/17  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* printer.pm: consolidate more stuff into %spoolers
	start to consolidate %spoolers as a data structure
	  - printerdrake::auto_detect(local, net, smb):
	o split into local_detect, net_detect, net_smb_detect
	  o detect: return all printers
	  - printer: consolidate all *help_output into help_output

	* detect_devices.pm: add some comments to getCPUs

	* printerdrake.pm: setup_common: consolidate regexp
	  - printerdrake::auto_detect(local, net, smb):
	o split into local_detect, net_detect, net_smb_detect
	  o detect: return all printers
	  - printer: consolidate all *help_output into help_output

	* network/netconnect.pm: document network::netconnect::detect()

	* harddrake/data.pm: 
	  - printerdrake::auto_detect(local, net, smb):
	o split into local_detect, net_detect, net_smb_detect
	  o detect: return all printers
	  - printer: consolidate all *help_output into help_output

2002/10/16  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/netconnect.pm: 
	  - winmodem detection fix

2002/10/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* my_gtk.pm: fix dams suckiness breaking install2 --test

2002/10/16  Pixel  <pixel@mandrakesoft.com>

	* patch/patch-da.pl, patch/patch-IMPS2.pl: 
	  - fix for bad da .mo charset
	  - ugly hack to allow IMPS2 switch to work

	* c/stuff.xs.pl: initIMPS2: use /dev/mouse instead of /dev/cdrom (!)

2002/10/16  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: don't print empty help for fields without any help
	  - alphabetically sort help items
	  - add help for some cpu fields
	fix Gtk::CTree:insert_node inversing devices order
	  -add cpus detection
	  - update todo list
	  - perl_checker fix

	* standalone/drakfont: bit me!

	* detect_devices.pm: getCPUs() : fix multiples cpu detection
	  -add cpus detection
	  - update todo list
	  - perl_checker fix

	* harddrake/data.pm: display cpu name (eg "Pentium") too in harddrake gui
	display "$vendor cpu number $id" for cpus in harddrake gui
	miaouh
	use code factored in detect_devices for modem detection
	  -add cpus detection
	  - update todo list
	  - perl_checker fix

	* drakxtools.spec: 1.1.10-1mdk
	buildrequires: libext2fs-devel

	* harddrake/v4l.pm, harddrake/TODO: 
	  -add cpus detection
	  - update todo list
	  - perl_checker fix

2002/10/15  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* detect_devices.pm: add Pioneer to vendors list

	* harddrake/data.pm: display again unknown category (spoted by florent
	beranger)

2002/10/14  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: remove initrd images before umounting and exiting.

2002/10/14  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/eu.po: updated Basque file

2002/10/14  Stew Benedict  <sbenedict@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm, install_any.pm: Hide password to browse W2k
	servers. (Buchan Milne).
	Domain name to all caps in smb.conf. (Buchan Milne).

	* standalone/drakTermServ: Finish thin client setup option.

2002/10/14  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakbug: 
	  - fix typos
	  - when something is eating io bandwith, drakbug is very slow to scroll
	  the menu, since on each item selection, it does rpm db
	  access. solution :
	  o cache rpm result in %packages
	
	  o only call rpm & which if nothing is cached
	
	  - if there's the selected package isn't installed, just print "package
	  not installed" (and translate that)

2002/10/12  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Read/Write thin client configuration.
	Add draktermserv config to enable/disable thin clients.
	Update documentation.

2002/10/11  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: fix speedtouch detection

2002/10/11  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ca.po, share/po/pt.po, share/po/DrakX.pot: updated Catalan and
	Portuguese files

2002/10/11  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Dynamic IP pool for client machines.
	Don't require image for PCI clients.
	Perl_checker fixes.

2002/10/10  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: notify if speedtouch is detected or not

	* network/netconnect.pm: add a warning window for winmodems

	* detect_devices.pm, network/modem.pm: 
	  - move serial modem detection to detect_devices.pm
	  - add speedtouch USB detection
	  - add winmodem detection

2002/10/10  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Correct typo in create boot ISO code
	Add note in help about optional net boot image entry for PCI cards

2002/10/09  gbeauchesne

	* mdk-stage1/log.c: ISO C standard as to say about va_list on 7.15 [#3]
	If  access  to  the varying arguments is desired, the called
	       function shall declare an object (referred to as ap in  this
	       subclause) having type va_list.  The object ap may be passed
	       as an argument to another function; if that function invokes
	       the  va_arg  macro with parameter ap, the value of ap in the
	       calling function is indeterminate and shall be passed to the
	       va_end macro prior to any further reference to ap.199)
	Which interprets to do reuse a va_list that was already processed.
	Instead, use a copy. This fixes crashes on x86-64 and debugging
	feasible, since logging is now available. ;-)

	* mdk-stage1/minilibc.h, mdk-stage1/minilibc.c: Add support for x86-64 to
	minilibc. But we don't really use it yet, as glibc
	requirements for stage1 undoubtedly make images already bigger. So let
	have
	glibc init there too. ;-)

	* bootloader.pm: I surely don't want nor expect grub and loadlin to work
	on x86-64.

	* share/list.x86_64: Update list for perl mods and XF86 4.2.1 support

	* tools/aewm-drakx/misc.c: Apply FredL change from HEAD

	* mdk-stage1/disk.c: Use standard memset() instead of BSD-ish bzero().

	* mdk-stage1/Makefile, mdk-stage1/Makefile.common: Add x86-64, use glibc
	in init and stage1 as dietlibc is not working enough
	and minilibc for init doesn't seem to let umounting take place at the
	end
	of installation.

	* fs.pm: SYS_umount does not exist on modern kernels and architectures
	like x86-64 :)

	* mdk-stage1/rescue-gui.c: lib64 support

	* tools/aewm-drakx/client.c: Fix get/set_wm_state(), we have to get the
	same data (size) that was set.

	* mdk-stage1/init.c: Add support for lib64 architectures (x86-64, ppc64,
	etc.). Aka native
	libraries are in */lib64 there.

	* install_any.pm: Let's try a real bash prior to defaulting to perl'ish
	/bin/sh?

	* Xconfig/card.pm: Default to XF4 on x86-64 too

	* install_steps_gtk.pm: Yeah, stuck with XFree86 4.X server on x86-64 too.

	* partition_table.pm: Supported journalised FS on x86-64 are ReiserFS and
	ext3fs for now. Though,
	I haven't tested reiserfs and don't expect it to work before next kernel
	update.

	* mdk-stage1/insmod-modutils/util/sys_oim.c,
	mdk-stage1/insmod-modutils/obj/obj_common.c,
	mdk-stage1/insmod-modutils/include/obj.h,
	mdk-stage1/insmod-modutils/util/xsystem.c,
	mdk-stage1/insmod-modutils/include/util.h,
	mdk-stage1/insmod-modutils/include/version.h,
	mdk-stage1/insmod-modutils/util/sys_cm.c,
	mdk-stage1/insmod-modutils/obj/obj_s390.c,
	mdk-stage1/insmod-modutils/include/elf_sparc64.h,
	mdk-stage1/insmod-modutils/include/elf_ppc.h,
	mdk-stage1/insmod-modutils/insmod.c,
	mdk-stage1/insmod-modutils/include/kallsyms.h,
	mdk-stage1/insmod-modutils/include/elf_arm.h,
	mdk-stage1/insmod-modutils/include/module.h,
	mdk-stage1/insmod-modutils/util/xmalloc.c,
	mdk-stage1/insmod-modutils/util/snap_shot.c,
	mdk-stage1/insmod-modutils/include/kerneld.h,
	mdk-stage1/insmod-modutils/util/sys_qm.c,
	mdk-stage1/insmod-modutils/obj/obj_load.c,
	mdk-stage1/insmod-modutils/obj/obj_alpha.c,
	mdk-stage1/insmod-modutils/obj/obj_x86_64.c,
	mdk-stage1/insmod-modutils/include/config.h,
	mdk-stage1/insmod-modutils/Makefile,
	mdk-stage1/insmod-modutils/obj/obj_gpl_license.c,
	mdk-stage1/insmod-modutils/obj/obj_i386.c,
	mdk-stage1/insmod-modutils/obj/obj_mips.c,
	mdk-stage1/insmod-modutils/include/elf_alpha.h,
	mdk-stage1/insmod-modutils/include/elf_s390.h,
	mdk-stage1/insmod-modutils/util/config.c,
	mdk-stage1/insmod-modutils/util/sys_dm.c,
	mdk-stage1/insmod-modutils/include/elf_x86_64.h,
	mdk-stage1/insmod-modutils/include/elf_m68k.h,
	mdk-stage1/insmod-modutils/obj/obj_kallsyms.c,
	mdk-stage1/insmod-modutils/include/elf_i386.h,
	mdk-stage1/insmod-modutils/util/xstrcat.c,
	mdk-stage1/insmod-modutils/obj/obj_arm.c,
	mdk-stage1/insmod-modutils/obj/obj_m68k.c,
	mdk-stage1/insmod-modutils/util/sys_nim.c,
	mdk-stage1/insmod-modutils/obj/Makefile,
	mdk-stage1/insmod-modutils/obj/obj_hppa64.c,
	mdk-stage1/insmod-modutils/util/arch64.c,
	mdk-stage1/insmod-modutils/obj/obj_hppa.c,
	mdk-stage1/insmod-modutils/util/sys_gks.c,
	mdk-stage1/insmod-modutils/include/elf_mips.h,
	mdk-stage1/insmod-modutils/util/logger.c,
	mdk-stage1/insmod-modutils/obj/obj_ppc.c,
	mdk-stage1/insmod-modutils/util/xrealloc.c,
	mdk-stage1/insmod-modutils/obj/obj_sparc.c,
	mdk-stage1/insmod-modutils/util/alias.h,
	mdk-stage1/insmod-modutils/util/xstrdup.c,
	mdk-stage1/insmod-modutils/include/elf_sparc.h,
	mdk-stage1/insmod-modutils/obj/obj_ia64.c,
	mdk-stage1/insmod-modutils/obj/obj_sparc64.c,
	mdk-stage1/insmod-modutils/obj/obj_reloc.c: Update to modutils 2.4.19
	with x86-64 support and other fixes

	* mdk-stage1/frontend.h, mdk-stage1/stdio-frontend.c: Hint compiler about
	unused arguments and don't make it yell in that case. As,
	we do use -Werror along with -Wall stuff.

	* mdk-stage1/init-libc-headers.h: <sys/ioctl.h> is needed

	* install_gtk.pm: Somehow, "recent" DrakX changes mutated driver into
	Driver and card->type
	into card->BoardName

	* printerdrake.pm, any.pm: lib64 fixes

	* proxy.pm: wgetrc is in /etc not /usr/lib

2002/10/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: don't use ugtk directly

2002/10/08  Frederic Lepied  <flepied@mandrakesoft.com>

	* tools/aewm-drakx/misc.c: removed client removal

2002/10/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ro.po: updated Romanian file

2002/10/02  alus

	* share/po/pl.po: some changes

2002/10/02  François Pons  <fpons@mandrakesoft.com>

	* patch/patch-oem-9.0.pl, patch/rpmsrate.oem-9.0-staroffice,
	patch/rpmsrate.oem-9.0-openoffice: patch necessary for oem to work
	nicely and the two rpmsrate that allow
	CD of 700MB to be used.

2002/10/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install2.pm: try to fix my fix for blank

	* modules.pm: try to fix my fix for blank
	try to make the install work in "blank" mode (aka fix pixel
	sucked when changed modules.pm code, not handling blank mode)

	* mdk-stage1/Makefile: cooker

	* mdk-stage1/stage1.c: do not detect/configure pcmcia stuff when "noauto"
	param

2002/10/02  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* patch/patch-nforce.pl: update from oem patch
	fix nforce (from francois oem patch)

	* docs/9.0_errata.txt: miaou
	i810 crash when using XRender on vt switch (see fredc for further
	information) (fixed in cvs & rh's xfree86)
	kernel : snd-via686 is said to produce white noise; add workaround
	nforce audio bug
	drakconf bug has been workarounded

2002/10/01  dam's  <dams@idm.fr>

	* ugtk.pm: forking ugtk, sorry guys. reverted last patch
	cleaned, readded needed hack, removed mdk specific functions, added
	libconf GUI, WARNING, create_dialog API changed

	* my_gtk.pm: mdk icon_path are added here

2002/10/01  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: fixed oem images management not working at all!

2002/10/01  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* docs/9.0_errata.txt: add 3 bugs:
	  - drakfont: stat64 syscall blocks drakfont on ntfs partitions
	  - XFree86: X can corrupt sound when overusing pci bus
	(PciRetry fix it)
	  - some people reports stops on reboot on "illegal seek" (having /usr
	  and / on the same fs "fix" it)

	* drakxtools.spec: harddrake-ui doesn't need the same obsoletes/provides
	as harddrake,
	else we may require harddrake-ui on update (thus XFree86 ...)

2002/09/30  Daouda Lo  <daouda@mandrakesoft.com>

	* docs/9.0_errata.txt: 
	  - first draft for all bugs/glitches/inconsistencies in 9.0. Developers
	are welcomed to fill it, read it and fix.

2002/09/30  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: added possible fix for noauto: flag of hdlist not
	generating good list file.

2002/09/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

	* share/po/id.po, share/po/ro.po: Updated Romanian and Indonesian files

2002/09/30  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: drop "notail" when filesystem is not reiserfs

2002/09/30  Till Kamppeter  <till@mandrakesoft.com>

	* docs/9.0_errata.txt: "Best Grayscale" on HP DJ 6xx/Apollo.
	Several bugs found.

2002/09/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/da.po: updated Latvian file; corrected Danish file
	corrected encoding

	* share/po/lv.po: updated Latvian file; corrected Danish file

2002/09/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* docs/README: refine info on blank.img

2002/09/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* network/network.pm: workaround situation when /etc/resolv.conf is an
	absolute link to /etc/ppp/resolv.conf or whatever

	* mdk-stage1/dhcp.c, mdk-stage1/network.c: try to not save the hostname
	answered by the dhcp server

2002/09/25  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: log install class selection

2002/09/25  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/eu.po: updated Basque file

	* share/po/tr.po, share/po/cs.po: updated Turkish and Czech files

2002/09/25  Pixel  <pixel@mandrakesoft.com>

	* any.pm: do not allow to create user "root" (thanks to Eric Fernandez)

2002/09/25  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: handle nvaudio too

2002/09/24  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* any.pm: change load_category__prompt_for_more dying 'already displayed'
	in return

	* network/ethernet.pm: Fix configureNetwork to fit with new
	any::load_category_prompt_for_more behavior

2002/09/24  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/zh_TW.po, share/po/pt.po: updated Chinese and Portuguese files

2002/09/24  Pixel  <pixel@mandrakesoft.com>

	* raid.pm: also create a raidtab if it doesn't exist (occurs when / has
	been formatted)

	* detect_devices.pm: fix raidAutoStartRaidtab crushing /etc/raidtab

	* patch/patch-raidtab.pl: also create a raidtab if it doesn't exist
	(occurs when / has been formatted)
	fix raidAutoStartRaidtab crushing /etc/raidtab

2002/09/24  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm: dams fix enable to get rid of the infamous ugly gtk timeout
	from dams:
	remove his ugly hack for mcc which altered the
	scrolledwindow's "bordure" to hide it.
	this used to be done through a gtk timer (hance
	the ugly flash on first display of notebook pages)
	now createScrolledWindow take a new optional argument
	that enable to hide the border the right way
	thanks dams
	fix expansion of widgets
	(eg see draksound help window behaviour on resizing)

	* harddrake/TODO, harddrake/data.pm: move usb video devices to webcam
	category

	* security/main.pm: remember to factorize this with rpmdrake's wait
	messages in my_gtk
	remove "bogus periodic check 2" from periodic checks page
	let simplify

	* harddrake/ui.pm: add a few comments
	split harddrake part that configure a module into modules::interactive
	split devices listing ("detection") part into its own function
	(detect) for readability

	* Makefile.config, modules/interactive.pm: split harddrake part that
	configure a module into modules::interactive

	* security/msec.pm: ignore_list is useless

	* share/po/br.po: update

2002/09/23  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: fix NULL Gateway IP checking

2002/09/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_interactive.pm: tellAboutProprietaryModules: use formatAlaTeX

	* rescue/devices.pl: add st devices

2002/09/23  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/es.po: updated Spanish file

	* share/po/ru.po: updated Russian file

	* share/po/id.po, share/po/zh_CN.po, share/po/pt.po: updated Indonesian,
	Portuguese and Chinese files

	* keyboard.pm: Made Lithuanian numeric row keyboard bi-mode

2002/09/23  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: Really fix daemon mode issue.
	Fix daemon mode bug.

2002/09/23  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: move vim-enhanced in X 4
	fix nforce version

2002/09/22  alus

	* share/po/pl.po: No... Changes few days before release...

2002/09/22  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/cy.po, share/po/id.po, share/po/lv.po, share/po/vi.po,
	share/po/sk.po, share/po/ru.po, share/po/hu.po: updated Welsh,
	Hungarian, Indonesian, Latvian, Russian, Slovak and Vietnamese

2002/09/22  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix url

2002/09/21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: add a small sentence to the license in
	order to solve a negociation with
	Thomson about the MP3 patents.

2002/09/22  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix url

2002/09/21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: add a small sentence to the license in
	order to solve a negociation with
	Thomson about the MP3 patents.

2002/09/21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: add a small sentence to the license in
	order to solve a negociation with
	Thomson about the MP3 patents.

2002/09/21  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Correct help notes on \$\$IP=IP-ADDRESS\$\$.

2002/09/21  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: final

2002/09/20  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/zh_CN.po: updated Chinese file

2002/09/20  Till Kamppeter  <till@mandrakesoft.com>

	* network/shorewall.pm: The LPD/LPRng port is 515, not 5015.

2002/09/20  florin

	* standalone/drakgw: fix the disable function

	* network/shorewall.pm: add the 5015 port for some printers in
	internal_ports

2002/09/20  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file

	* standalone/drakgw: removed unneeded '\t' in translatable text

	* share/po/zh_CN.po: updated Chinese file
	updated pot file

2002/09/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 53mdk
	52mdk
	51mdk

	* harddrake/ui.pm: don't print logs in console

	* standalone/drakbug: fixes:
	  - don't create bogus 1 file (deush: s/2>1&/2>&1/)
	  - don't print error messages when which cannot find the program

	* harddrake/TODO: update

	* standalone/harddrake2: don't print useless warnings in console

	* standalone/drakxtv: no -w

2002/09/19  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Catch non-existant config files on copy.

2002/09/19  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Fixed bug of printerdrake installing LPRng when it is
	started for the
	first time and CUPS is already installed without local queues but with
	remote CUPS servers broadcasting in their printer info.

2002/09/19  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: try to avoid infinite loop on error to install package.

2002/09/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: fix titisucks making cards choice in bttv
	dialog unavailable

2002/09/19  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: prefer cups for lpddaemon

2002/09/19  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Catch non-existant config files on copy.

2002/09/19  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Fixed bug of printerdrake installing LPRng when it is
	started for the
	first time and CUPS is already installed without local queues but with
	remote CUPS servers broadcasting in their printer info.

2002/09/19  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: try to avoid infinite loop on error to install package.

2002/09/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone.pm: when in install mode, log when a **** does a "use
	standalone"

	* interactive.pm: require log will reliably fail, use require 'log.pm'
	instead

	* install_steps_interactive.pm: fix titisucks making cards choice in bttv
	dialog unavailable

	* install2.pm: revert

2002/09/19  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm: catch error in Done (mainly "reboot needed"),
	so that fstab can be written
	even if reboot needed (useful when removing partitions mounted by
	default)

	* install_steps.pm: 
	  - do not set type to ext2 when the type is ntfs
	  - set to ext3 instead of ext2

2002/09/19  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - s/rpm/mdk/ in package version matching

2002/09/19  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: avoid proposing ntfs partition to be
	formatted.

2002/09/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* network/tools.pm: fix spurious ";" before closing block

	* standalone.pm: when in install mode, log when a **** does a "use
	standalone"

	* interactive.pm: require log will reliably fail, use require 'log.pm'
	instead

	* install_steps_interactive.pm: fix titisucks making cards choice in bttv
	dialog unavailable

	* install2.pm: revert
	try to workaround strange situations when mkinitrd fail because
	loop is not loaded (we don't know who calls mkinitrd), by loading
	the loop module right after format-mount'ing the partitions

2002/09/19  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm: catch error in Done (mainly "reboot needed"),
	so that fstab can be written
	even if reboot needed (useful when removing partitions mounted by
	default)

	* install_steps.pm: 
	  - do not set type to ext2 when the type is ntfs
	  - set to ext3 instead of ext2

2002/09/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/v4l.pm: don't use standalone while installing

	* security/libsafe.pm: s/package draksec::libsafe/package
	security::libsafe/
	anyway nobody uses that one

2002/09/19  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: remove old WIZARDS package
	add drakwizard
	remove LPRng

2002/09/18  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: 
	  - add ntfs in isOtherAvailableFS
	  - but ensure it is not in isMountableRW

2002/09/18  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: remove *-mdk-cdcom

2002/09/18  florin

	* standalone/drakgw: more details for the dhcp server

	* network/shorewall.pm: remove forgotten debug hash printings

2002/09/18  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: 
	  - add ntfs in isOtherAvailableFS
	  - but ensure it is not in isMountableRW

2002/09/18  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* security/msec.pm: 
	  - factorize @sec_levels and %sec_levels for get_default() and
	get_seclevel_list()
	  - use them in get_default()
	  - get_value() : don't assume a space between "function_name" and
	  "(parameters)"
	remove brackets on function values loading
	respect msec syntax
	"kill quart of draksec code" patch aka make it really working aka "happy
	fred" :
	  - security::msec :
	  o consolidate get_function_value() and get_value into get_value()
	  o really apply changes, aka save them :
	    * config_check() : use substInFile and setVarsInSh
	    * config_function() : use substInFile and append_to_file
	    * kill stupid and bogus config_option()
	  o don't overwrite previous changes, aka reread them :
	    * fix checks and functions current value loading
	    * fix checks and functions default loading
	
	  - security::main :
	  o simplify ui creation, make it more readable
	  o kill offuscating basic_secadmin_check(), basic_secadmin_entry(),
	    network_generate_page(), system_generate_page() and
	checks_generate_page()
	  o increase default height because of stupid "add_with_viewport" in
	    ugtk::createScrolledWindow
	  o consolidate network and system functions managment, they're all the
	same for
	    msec, splitting is only a draksec "feature";  all go in
	%options_values
	
	  - draksec :
	  o let standalone module configure standalone mode
	  o security::main already take care of initializing gtk
	  o security::main already take care of exiting
	  o don't play with embedded mode special variables
	
	it overall looks better but big cleanups're still possible for mdk9.1

	* standalone/draksec: "kill quart of draksec code" patch aka make it
	really working aka "happy fred" :
	  - security::msec :
	  o consolidate get_function_value() and get_value into get_value()
	  o really apply changes, aka save them :
	    * config_check() : use substInFile and setVarsInSh
	    * config_function() : use substInFile and append_to_file
	    * kill stupid and bogus config_option()
	  o don't overwrite previous changes, aka reread them :
	    * fix checks and functions current value loading
	    * fix checks and functions default loading
	  - security::main :
	  o simplify ui creation, make it more readable
	  o kill offuscating basic_secadmin_check(), basic_secadmin_entry(),
	    network_generate_page(), system_generate_page() and
	checks_generate_page()
	  o increase default height because of stupid "add_with_viewport" in
	    ugtk::createScrolledWindow
	  o consolidate network and system functions managment, they're all the
	same for
	    msec, splitting is only a draksec "feature";  all go in
	%options_values
	
	  - draksec :
	  o let standalone module configure standalone mode
	  o security::main already take care of initializing gtk
	  o security::main already take care of exiting
	  o don't play with embedded mode special variables
	
	it overall looks better but big cleanups're still possible for mdk9.1

	* security/main.pm: fix wait_message doesn't display
	run msec after setting changes
	"kill quart of draksec code" patch aka make it really working aka "happy
	fred" :
	  - security::msec :
	  o consolidate get_function_value() and get_value into get_value()
	  o really apply changes, aka save them :
	    * config_check() : use substInFile and setVarsInSh
	    * config_function() : use substInFile and append_to_file
	    * kill stupid and bogus config_option()
	  o don't overwrite previous changes, aka reread them :
	    * fix checks and functions current value loading
	    * fix checks and functions default loading
	  - security::main :
	  o simplify ui creation, make it more readable
	  o kill offuscating basic_secadmin_check(), basic_secadmin_entry(),
	    network_generate_page(), system_generate_page() and
	checks_generate_page()
	  o increase default height because of stupid "add_with_viewport" in
	    ugtk::createScrolledWindow
	  o consolidate network and system functions managment, they're all the
	same for
	    msec, splitting is only a draksec "feature";  all go in
	%options_values
	
	  - draksec :
	  o let standalone module configure standalone mode
	  o security::main already take care of initializing gtk
	  o security::main already take care of exiting
	  o don't play with embedded mode special variables
	
	it overall looks better but big cleanups're still possible for mdk9.1

2002/09/17  David Baudens  <baudens@mandrakesoft.com>

	* share/advertising/04-multimedia.png: Use the right image

2002/09/17  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - sync option names with server's name.
	  - fix typo
	  - back to normal http connection (instead of https)
	  - relocated web wizard

2002/09/17  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/po/fr.po: corrected typo

2002/09/17  florin

	* network/shorewall.pm: small updates

	* network/drakfirewall.pm: add a silly message

	* standalone/drakgw: add warning message
	add the nameserver IP variable in advanced mode

2002/09/17  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

	* share/po/nl.po, share/po/sk.po: updated Dutch and Slovak files

	* share/po/tr.po: updated Turkish file

2002/09/17  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: fix draksec typo

	* drakxtools.spec: 50mdk for lord fredl

	* security/msec.pm: 
	  - security::msec :
	o config_check: use MDK::Common to set option rather
	    than overwriting config file
	  o remove all stupid prefix that just ofuscate code
	    whereas it's always set to  '',
	    $::prefix will be a lot better
	  o s/shift @_/shift/
	  o kill config_option()
	  o simplify get_default()
	  o get_secure_level() : replace if cascade by an array
	  o set_secure_level() :
	    * replace if cascade by an hash
	    * default to runlevel 3 if undefined
	  o get_functions() : simplify by merging code paths
	  - security::main :
	  o security::libsafe is unneeded
	  o don't pass useless prefix
	  o begin to read default values
	  - msec::config_check: use MDK::Common to set option rather
	  than overwriting config file
	  - remove all stupid prefix that just ofuscate code
	  whereas it's always set to  '',
	  $::prefix will be a lot better
	  - security::main: kill duplicated 'use strict'
	  - no ignore choice for periodic checks
	  - save functions in /etc/security/msec/level.local
	  and not security.conf
	  - "from mseclib import" is useless
	  - fix functions saving (an object method invocation
	  takes class name as argument)
	remove libsafe option (not anymore used by msec)

	* security/main.pm: 
	  - security::msec :
	o config_check: use MDK::Common to set option rather
	    than overwriting config file
	  o remove all stupid prefix that just ofuscate code
	    whereas it's always set to  '',
	    $::prefix will be a lot better
	  o s/shift @_/shift/
	  o kill config_option()
	  o simplify get_default()
	  o get_secure_level() : replace if cascade by an array
	  o set_secure_level() :
	    * replace if cascade by an hash
	    * default to runlevel 3 if undefined
	  o get_functions() : simplify by merging code paths
	  - security::main :
	  o security::libsafe is unneeded
	  o don't pass useless prefix
	  o begin to read default values
	  - msec::config_check: use MDK::Common to set option rather
	  than overwriting config file
	  - remove all stupid prefix that just ofuscate code
	  whereas it's always set to  '',
	  $::prefix will be a lot better
	  - security::main: kill duplicated 'use strict'
	  - no ignore choice for periodic checks
	  - save functions in /etc/security/msec/level.local
	  and not security.conf
	  - "from mseclib import" is useless
	  - fix functions saving (an object method invocation
	  takes class name as argument)
	add ignore option to msec items

2002/09/17  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: remove !CDCOM flag for OpenOffice.org

2002/09/16  siegel

	* share/po/de.po: updates

2002/09/16  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm, share/po/de.po: Do not try to install "webfetch" during
	installation.

2002/09/16  Warly  <warly@mandrakesoft.com>

	* drakxtools.spec: 49mdk for new printerdrake code regarding webfetch that
	breaks during install.

2002/09/16  siegel

	* share/po/de.po: updates

2002/09/16  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm, share/po/de.po: Do not try to install "webfetch" during
	installation.

2002/09/16  David Baudens  <baudens@mandrakesoft.com>

	* share/advertising/17-mdkclub.pl,
	share/advertising/15-mdkexpert-corporate.pl,
	share/advertising/04-multimedia.pl, share/advertising/06-mcc.pl,
	share/advertising/12-mdkstore.pl: Adapt text postion to fix french
	translations

2002/09/16  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - typo in options

	* standalone.pm: 
	  - use basename with drakbug for standalone tools

	* standalone/drakfloppy: 
	  - translation for drakfloppy

	* standalone/logdrake: 
	  - enable translation for logdrake

2002/09/16  florin

	* network/shorewall.pm: add internal_ports variable

2002/09/16  François Pons  <fpons@mandrakesoft.com>

	* standalone/XFdrake: fixed no translation for XFdrake (pixel idea).

2002/09/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* my_gtk.pm, drakxtools.spec: fix die wizcancel in non wizard mode

	* rescue/tree/sbin/modprobe: remove modules files even when modprobe fails

2002/09/16  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* bootlook.pm: remove File::Copy dependencies and change lilo message path

2002/09/16  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/zh_CN.po, share/po/pt.po, share/po/lv.po,
	share/po/sv.po: updated Indonesian, Latvian, Portuguese, Swedish and
	Chinese files

2002/09/15  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm: do not allow encrypted filesystem for /boot

2002/09/15  Till Kamppeter  <till@mandrakesoft.com>

	* share/po/de.po: In wizards: "Finish" --> "Assistent beenden"

2002/09/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* my_gtk.pm: workaround ERROR: Can't call method "child" on an undefined
	value at
	/usr/lib/libDrakX/my_gtk.pm line 94

	* mdk-stage1/network.c: http: don't add a / between the hostname and the
	url, apache
	doesn't understand //~fermigier the same way as /~fermigier

2002/09/14  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

	* share/po/wa.po: corrected typo

	* standalone/logdrake, standalone/drakfloppy: corrected gettext domain
	(translations are now in libDrakX)

	* share/po/cy.po, share/po/zh_CN.po, share/po/lv.po, share/po/fr.po:
	updated Welsh, French, Latvian and Chinese files

2002/09/14  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Made "LPRng" show up in the spooler menu when LPRng is
	installed.

	* share/po/de.po: Printerdrake translations
	Printerdrake translations
	Printerdrake translations
	Printerdrake translations.
	Printerdrake translations

2002/09/13  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone.pm: 
	  - meuh aka launch drakbug when incident is risen

2002/09/13  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/netconnect.pm: 
	  - fix old conf files name (thx titi)

2002/09/13  florin

	* network/shorewall.pm: more services in drakgw_protocols

2002/09/13  François Pons  <fpons@mandrakesoft.com>

	* live_install2: allow devfsd to be restarted after update.

	* install_any.pm: allow live_update to have something configured correctly
	for urpmi media.

2002/09/13  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/lv.po, share/po/hu.po: removed
	obsolete old unused strings, to make the po files lighter

2002/09/13  Pixel  <pixel@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
	share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
	share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/hu.po: update the help english part (so that no
	fuzzy occurs)

	* share/rpmsrate: put back kernel-secure

	* install_any.pm: don't write fstab on upgrade (to workaround the fact
	that many entries are dropped)

	* help.pm, share/po/help-de.pot, share/po/help-it.pot,
	share/po/help-fr.pot, share/po/help-es.pot: update help from xml

2002/09/13  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: Do not insist on "curl" to download PPDs from a CUPS
	server (for Star Office/OpenOffice.org/GIMP), take the one from "curl"
	and "wget" which is there. Install "webfetch" when none is there.
	Let "cups-drivers" be installed when switching from normal to expert
	mode.
	Entries in "auto-detected" field of SMB printer setup mask should not be
	editable.

	* printer.pm: Do not insist on "curl" to download PPDs from a CUPS server
	(for Star Office/OpenOffice.org/GIMP), take the one from "curl" and
	"wget" which is there. Install "webfetch" when none is there.
	Let "cups-drivers" be installed when switching from normal to expert
	mode.
	Added timeouts to network scan with "nmap" so that scan does not take
	too long when there are machines running a firewall.
	To find running machines in the network, do not only a broadcast ping
	but also an "nmblookup" to also catch Windows machines which do not
	answer to ping.

2002/09/13  Daouda Lo  <daouda@mandrakesoft.com>

	* drakxtools.spec: 
	  - obsoletes drakfloppy

2002/09/13  François Pons  <fpons@mandrakesoft.com>

	* live_install2: allow devfsd to be restarted after update.
	added modprobe loop before killing devfsd.
	fixed for newer perl 5.8.0 (vendor_perl directory).
	fixed to kill devfsd before.

	* install_any.pm: allow live_update to have something configured correctly
	for urpmi media.

2002/09/13  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/es.po, share/po/zh_TW.po, share/po/da.po, share/po/pt.po,
	share/po/lv.po, share/po/hu.po: updated Danish, Spanish, Hungarian,
	Latvian, Portuguese and Chinese files

2002/09/13  Pixel  <pixel@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
	share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
	share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/lv.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/hu.po: update the help english part (so that no
	fuzzy occurs)

	* share/rpmsrate: put back kernel-secure

	* install_any.pm: don't write fstab on upgrade (to workaround the fact
	that many entries are dropped)

	* help.pm, share/po/help-de.pot, share/po/help-it.pot,
	share/po/help-fr.pot, share/po/help-es.pot: update help from xml

2002/09/13  Till Kamppeter  <till@mandrakesoft.com>

	* share/po/de.po: German translations for printerdrake and some
	corrections.

2002/09/13  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: rc3

2002/09/12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sk.po: updated slovak file

2002/09/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, any.pm, install_any.pm, install2.pm,
	install_steps_interactive.pm: do something with "Security Administrator
	(login or email)"

	* share/po/help_xml2pm.pl: 
	  - discard &shy; (ie \x{ad})
	  - handle <quote><literal>xxx</literal></quote> specially to not have
	double
	double quotes

2002/09/12  siegel

	* share/po/de.po: updates

2002/09/12  alus

	* share/po/pl.po: Updated polish translation

2002/09/12  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/tools.pm, drakxtools.spec, standalone/net_monitor: 
	  - patch net_monitor

2002/09/12  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed very stupid typo and inconsistency in
	allowNVIDIA_rpms.

	* install_steps.pm: added code after install of package to fix broken
	alternatives.

2002/09/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: meumeuh
	meuh
	a fix from florin/pixel to make it work

	* network/shorewall.pm: run_program crazyness

	* drakxtools.spec: meuuuuh meuh meuh ?

2002/09/12  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* bootlook.pm: resize previews pixmap to be nice when embedded

	* share/po/fr.po: modif bootlook.pm translation to keep a good when
	embedded

2002/09/12  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/hu.po: Updated Hungarian file
	updated pot file

	* share/po/sk.po: updated slovak file
	updated pot file

	* share/po/mt.po, share/po/vi.po: updated Vietnamese and Maltese files
	updated pot file

	* share/po/tr.po: updated pot file
	updated turkish file

	* share/po/id.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
	share/po/th.po, share/po/sl.po, share/po/no.po, share/po/et.po,
	share/po/ja.po, share/po/hr.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/ta.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
	share/po/lv.po: updated pot file

	* share/po/cs.po: updated Czech file
	updated pot file

	* share/po/ru.po: updated Russian file
	updated pot file

2002/09/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, any.pm, install_any.pm, install2.pm,
	install_steps_interactive.pm: do something with "Security Administrator
	(login or email)"

	* share/po/help_xml2pm.pl: 
	  - discard &shy; (ie \x{ad})
	  - handle <quote><literal>xxx</literal></quote> specially to not have
	double
	double quotes

	* network/shorewall.pm: fix writing twice tcp instead of tcp & udp

2002/09/12  siegel

	* share/po/de.po: updates

2002/09/12  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: When adding a local printer during an expert install
	without network,
	printerdrake insists on starting the network and does not enter the
	add printer procedure.
	Made the association of model names obtained by auto-detection and of
	the model names in the printer database much more reliable.

	* detect_devices.pm: Made the association of model names obtained by
	auto-detection and of
	the model names in the printer database much more reliable.

2002/09/12  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/logdrake, standalone/drakfloppy: fix logdrake and drakfloppy

	* drakxtools.spec: 45mdk

	* security/main.pm, security/msec.pm: 
	  - draksec window title is draksec, not "draksec - basic options" since
	it offer
	advanced options too now
	  - mark some strings to be translated (mainly notebook pages titles)

	* share/po/fr.po: update french translation

2002/09/11  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/es.po, share/po/cs.po, share/po/vi.po, share/po/mt.po,
	share/po/hu.po: updated po files

2002/09/11  alus

	* share/po/pl.po: updated po

2002/09/11  David Baudens  <baudens@mandrakesoft.com>

	* share/advertising/11-mdkstore.pl, share/advertising/07-desktop.pl,
	share/advertising/10-mnf.pl: Fix typos

	* share/advertising/09-server.pl: Update

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
	share/po/bg.po, share/po/el.po, share/po/hu.po: Don't break po
	Update

2002/09/11  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - s/bugzilla.com/drakbug.mandrakesoft.com/

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: 
	  -s/bugzilla.com/drakbug.mandrakesoft.com/

2002/09/11  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* drakxtools.spec: 
	  - update spec for 44mdk

2002/09/11  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed possible problem with NVIDIA packages parsing.

2002/09/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/frontend-common.c: meuh
	probe for usb stuff in info and error msg also

2002/09/11  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* standalone/draksplash: use do_pkgs for check and install ImageMagick

2002/09/11  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sk.po: updated Slovak file
	updated pot file

	* share/po/id.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
	share/po/th.po, share/po/sl.po, share/po/no.po, share/po/et.po,
	share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/ga.po,
	share/po/be.po, share/po/uk.po, share/po/ko.po, share/po/DrakX.pot,
	share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
	share/po/lt.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/bs.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po, share/po/ta.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/bg.po, share/po/lv.po: updated
	pot file

	* standalone/draksplash: small text for translatators

	* share/po/mt.po, share/po/vi.po, share/po/es.po, share/po/cs.po,
	share/po/hu.po: updated po files
	updated pot file

	* share/po/fr.po: updatd French file
	updated pot file

	* share/po/ru.po: updated Russian file
	updated pot file

	* network/isdn.pm: corrected i18n usage

2002/09/11  Pixel  <pixel@mandrakesoft.com>

	* standalone/drakupdate_fstab: use flag "kudzu" for entries automatically
	handled by drakupdate_fstab

	* common.pm: allow various textdomains for i18n

2002/09/11  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: 
	  - Made printer::assure_device_is_available_for_cups() more reliable by
	checking and retrying.
	  - Do not start the network when it is not configured.

2002/09/11  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: update french translation
	s/was the firt sound API/was the first sound API/

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
	share/po/da.po, share/po/ca.po, share/po/ar.po, share/po/bs.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/it.po, share/po/nl.po,
	share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
	share/po/bg.po, share/po/cs.po, share/po/el.po, share/po/lv.po,
	share/po/hu.po: s/was the firt sound API/was the first sound API/

	* standalone/draksound: 
	  - fix: we displayed current driver as default one: display the right
	one
	  - show a wait message while switching driver

	* harddrake/sound.pm: 
	  - fix: we displayed current driver as default one: display the right
	one
	  - show a wait message while switching driver
	s/was the firt sound API/was the first sound API/

	* drakxtools.spec: update

2002/09/10  alus

	* share/po/pl.po: Strings one day before deadline????
	updated translation

2002/09/10  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - definitive link and options

2002/09/10  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/isdn.pm: 
	  - remove variable from a translated chain

2002/09/10  François Pons  <fpons@mandrakesoft.com>

	* c/stuff.pm: removed old code no more used.

	* pkgs.pm: consolidate unselectAllPackages.

	* install_steps_interactive.pm: fixed test of chooseCD on nfs (always
	enabled).
	avoid removing all packages during upgrade (safe guard).

2002/09/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: tag version as 9.0

	* rescue/tree/etc/rc.sysinit: don't drvinst SERIAL_USB when noauto (it
	needs a lspcidrake -v)

	* rescue/drvinst: drvinst <param> is broken when we don't -v

2002/09/10  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* standalone/draksplash: change the preview rendering method

2002/09/10  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po, share/po/fr.po: updated French and Portuguese files
	updated pot file
	updated pot file

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/ta.po,
	share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
	share/po/hu.po: updated pot file
	updated pot file

	* security/main.pm: improved i18n handling

	* share/po/vi.po: updated Vietnamese file
	updated Vietnamese file

	* share/po/nl.po: updated Dutch file
	updated pot file
	updated pot file

	* standalone/drakTermServ: small i18n change

2002/09/10  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: set mount point for nt partitions by default

	* Xconfig/card.pm: do not prefer_xf3 for "NeoMagic (laptop/notebook)"
	since:
	  - long ago it was decided to distrust driver "neomagic" together with
	Riva's, SiS, GeForce
	  - in 09/2001 (XFree 4.1.0), it was decided to keep distrusting driver
	"neomagic"
	  - Cosmic Flo says driver "neomagic" works (on card Neomagic
	Corporation|[MagicGraph 256AV])

	* fs.pm: 
	  - have ntfs "ro" by default
	  - "umask=0" is a special option for ntfs

2002/09/10  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Display issues in other locales.

2002/09/10  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: description update
	fix OSS definition

	* share/po/fr.po: next updates batch
	update french translation

2002/09/10  alus

	* share/po/pl.po: updated translation

2002/09/10  David Baudens  <baudens@mandrakesoft.com>

	* share/po/fr.po: Update

2002/09/10  François Pons  <fpons@mandrakesoft.com>

	* c/stuff.pm: removed old code no more used.

	* mouse.pm: fixed pixel typo (strange, I was sure it was titi but not ?).

	* pkgs.pm: consolidate unselectAllPackages.

	* install_steps_interactive.pm: fixed test of chooseCD on nfs (always
	enabled).
	avoid removing all packages during upgrade (safe guard).

2002/09/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: tag version as 9.0

	* rescue/tree/etc/rc.sysinit: don't drvinst SERIAL_USB when noauto (it
	needs a lspcidrake -v)

	* rescue/drvinst: drvinst <param> is broken when we don't -v

2002/09/10  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/gl.po, share/po/pt_BR.po,
	share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/mt.po,
	share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
	share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/cy.po,
	share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/ta.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/bg.po, share/po/lv.po,
	share/po/hu.po: updated pot file

	* share/po/ru.po, share/po/pt.po, share/po/cs.po: updated pot file
	updated Czech, Russian and Portuguese files

	* security/main.pm: improved i18n handling

	* standalone/drakTermServ: small i18n change

2002/09/10  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: set mount point for nt partitions by default

	* fs.pm: 
	  - have ntfs "ro" by default
	  - "umask=0" is a special option for ntfs

2002/09/10  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Display issues in other locales.

2002/09/10  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* security/libsafe.pm, standalone/draksec: move back draksec's files in
	drakxtools

	* drakxtools.spec: move back draksec to drakxtools

	* Makefile.config: move back draksec's files in drakxtools
	move back draksec to drakxtools

	* security/main.pm, security/msec.pm: inline seclevel_explain (why using
	functions to return a text label ?)
	move back draksec's files in drakxtools

2002/09/10  François Pons  <fpons@mandrakesoft.com>

	* mouse.pm: fixed pixel typo (strange, I was sure it was titi but not ?).

2002/09/10  François Pons  <fpons@mandrakesoft.com>

	* mouse.pm: fixed pixel typo (strange, I was sure it was titi but not ?).

2002/09/10  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/eu.po, share/po/sk.po: updated Basque and Slovak files

2002/09/09  dam's  <dams@idm.fr>

	* ugtk.pm: corrected typo (modification of constant if ugtk.pm was a
	string)

2002/09/09  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm: have the IMPS/2 warning "MOVE YOUR WHEEL" for ExplorerPS/2 too

	* Xconfig/card.pm: have BusID's on MULTI_HEAD, otherwise G450 & G550 go
	crazy

2002/09/09  David Baudens  <baudens@mandrakesoft.com>

	* share/po/fr.po: Update
	Update
	Fix typos and bad french translations
	Update

	* share/advertising/14-mdkexpert.pl, share/advertising/03-internet.pl: Fix
	typos

2002/09/09  dam's  <dams@idm.fr>

	* ugtk.pm: corrected typo (modification of constant if ugtk.pm was a
	string)

2002/09/09  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/ethernet.pm: 
	  - check DNS & Gateway IP

	* network/network.pm: 
	  - show pcmcia ethernet cards in list

	* modules.pm: 
	  - change "=~ /isdn/" in "eq 'network/isdn'"

2002/09/09  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fix urpmi installation.
	fixed still present hdlist and synthesis file for media not configured
	(because
	of not selected).

2002/09/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* my_gtk.pm: gfx specs is to have the text justified on the left

	* share/po/fi.po: a fix from cooker

2002/09/09  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/DrakX.pot: updated pot file

	* share/po/fr.po: updated po files
	updated pot file

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: updated po files

2002/09/09  Pixel  <pixel@mandrakesoft.com>

	* ugtk.pm, Xconfig/test.pm, install2.pm: 
	  - use variable $::no_ugtk_init in ugtk.pm instead of using
	$::isInstall
	  - that way, the X test can be made to work both at install and
	standalone

	* standalone/drakupdate_fstab: force non-supermount, supermount is too
	buggy

	* mouse.pm: have the IMPS/2 warning "MOVE YOUR WHEEL" for ExplorerPS/2 too

	* Xconfig/card.pm: have BusID's on MULTI_HEAD, otherwise G450 & G550 go
	crazy

	* any.pm: when "password" or "restricted" is set, propose the entries to
	change them
	(thanks to Aleksander Adamowski)
	fix detection of mixed_kind_of_disks (eg: hde with hda)

	* standalone/fileshareset: add "sync" to nfs exports default_options (so
	that exportfs doesn't warn a lot of stuff)

2002/09/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: enforce unique ids
	add drakbug report entry in help menu

	* drakxtools.spec: fix confirm script
	require perl-GTK-Gdkpixbuf for bootlook

	* harddrake/TODO: update

2002/09/09  Pixel  <pixel@mandrakesoft.com>

	* ugtk.pm, Xconfig/test.pm, install2.pm: 
	  - use variable $::no_ugtk_init in ugtk.pm instead of using
	$::isInstall
	  - that way, the X test can be made to work both at install and
	standalone

	* standalone/drakupdate_fstab: force non-supermount, supermount is too
	buggy

	* any.pm: fix detection of mixed_kind_of_disks (eg: hde with hda)

2002/09/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: enforce unique ids
	add drakbug report entry in help menu

	* standalone/service_harddrake: don't detect same removed/added when
	upgrading from previous releases
	  - harddrake:
	o don't pollute sbin namespace with one shot scripts
	  o add run wrapper script for harddrake service
	  o disable ?dm part
	  o timeout configurator offer to 5 seconds

	* ugtk.pm, bootlook.pm, standalone/logdrake, standalone/drakfloppy: 
	  - drakfloppy / logdrake: destroy_window and create_dialog were
	gratuitously duplicated;   move them in ugtk
	  - drakfloppy / logdrake / bootlook.pm: get_main_menu was
	  gratuitously duplicated;
	  common code which was moved from harddrake::ui to
	  ugtk::create_factory_menu just do the job

	* drakxtools.spec: 
	  - harddrake:
	o don't pollute sbin namespace with one shot scripts
	  o add run wrapper script for harddrake service
	  o disable ?dm part
	  o timeout configurator offer to 5 seconds

2002/09/09  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: remove harddrake

2002/09/08  Daouda Lo  <daouda@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: 
	  - s/occurance/occurence.

	* install_steps_interactive.pm: 
	  - s/occurance/occurence in license.txt (thx qqun)

2002/09/08  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/various.pm, Xconfig/proprietary.pm: replace a few more 4.2.0
	with 4.2.1

	* install_interactive.pm: warn "You don't have a swap
	partition.\n\nContinue anyway?" in expert mode

	* Xconfig/card.pm: replace 4.2.0 with 4.2.1

2002/09/07  dam's  <dams@idm.fr>

	* standalone/drakbackup: don't display the banner id in embedded mode

2002/09/07  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/draksplash: 
	  - use standalone for explanations and center dialog

	* drakxtools.spec: 
	  - cvs up before packaging (fix messy drakboot conf).

2002/09/07  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: fix log

	* share/rpmsrate: don't install kernel-secure on HIGH_SECURITY since
	kernel-secure is broken

2002/09/06  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/isdn.pm: 
	  - fix typo
	  - add new screen for ISND detected device. Still have to get back in
	Expert mode to choose by hand.

	* modules.pm: 
	  - Fix isdn card detection

2002/09/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/service_harddrake, drakxtools.spec, harddrake/ui.pm,
	harddrake/data.pm: 
	  - harddrake::data : consolidate common code in custom_id()
	  - do some detection in dm stage
	  - fix bad test
	  - display better name

2002/09/06  David Baudens  <baudens@mandrakesoft.com>

	* standalone/icons/hori.png: Re-add old obsolete Aurora image requires by
	drakboot (can someone explain why? It is stupid)
	Update icons & remove old Aurora stuff

	* standalone/icons/gmon.png, standalone/icons/categ.png,
	standalone/icons/verti.png: Re-add completly obsolote Aurora's images
	needed for drakboot (really, but really stupid requires)
	Update icons & remove old Aurora stuff

	* standalone/icons/ic82-tape-40.png, standalone/icons/ic-drakfont-48.png,
	standalone/icons/mdk_logo.png, standalone/icons/ic82-when-40.png,
	standalone/icons/ic82-moreoption-40.png,
	standalone/icons/ic82-system-40.png,
	standalone/icons/ic82-dossier-32.png, standalone/icons/ic82-CD-40.png,
	standalone/icons/ic82-back-up-32.png,
	standalone/icons/ic82-where-40.png,
	standalone/icons/ic82-back-up-16.png,
	standalone/icons/ic82-network-40.png,
	standalone/icons/ic82-back-up-48.png,
	standalone/icons/ic82-discdurwhat-40.png,
	standalone/icons/ic82-systemeplus-40.png,
	standalone/icons/ic82-users-40.png, standalone/icons/ic82-others-40.png:
	Update

	* drakxtools.spec: Update
	Update
	Update

2002/09/06  Daouda Lo  <daouda@mandrakesoft.com>

	* my_gtk.pm: 
	  - fix wizard title and pixmap overlap

2002/09/06  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/isdn.pm: 
	  - fix typo
	  - add new screen for ISND detected device. Still have to get back in
	Expert mode to choose by hand.

	* modules.pm: 
	  - Fix isdn card detection

2002/09/06  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed to allow changing boot medium.

2002/09/06  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* bootlook.pm: comment old code concerning aurora

2002/09/06  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm: during install, don't probe PS/2 mice when a serial mouse is
	already found.
	(otherwise if a PS/2 keyboard is present, a PS/2 is found even if
	absent, and
	configuring an auxmouse PS/2 causes the PS/2 keyboard to freeze)
	(thanks to Nora Etukudo)

	* bootloader.pm (read): cleanup duplicate labels (in case file is
	corrupted)
	(get_label): compare labels using 15 first characters (to be compliant
	with lilo)
	(add_entry): fix removing duplicate entries
	(read): fix

2002/09/06  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup, standalone/drakTermServ: QA BugSummer90 fixes

2002/09/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/sound.pm: killing debugging prints
	  - blacklist cs46xx and cs4281 drivers : we won't unload these drivers
	since they're know to oopses the kernel but just warn the user
	  - add rooted(), unload() and load() wrapper to check wheter we're in
	  drakx or in standalone mode
	  - workaround alsaconf's aliases
	  - add an help button that describe ALSA and OSS
	  - display current driver, its type (OSS or ALSA), and the default
	  driver for the card

	* harddrake/data.pm, harddrake/ui.pm: 
	  - harddrake::data : consolidate common code in custom_id()
	  - do some detection in dm stage
	  - fix bad test
	  - display better name
	  - don't list usb mouses as unknown hw
	  - fix mouse detection (mouse::detect() needed
	modules::mergein_conf('/etc/modules.conf') first
	  - don't skip mouse in --test mode

	* standalone/draksound: if there's no sound card, add a note about
	sndconfig

	* standalone/service_harddrake: 
	  - harddrake::data : consolidate common code in custom_id()
	  - do some detection in dm stage
	  - fix bad test
	  - display better name

	* standalone/harddrake2: 
	  - document --test
	  - mark usage as translatable

	* share/po/fr.po: update french translation

	* harddrake/TODO: update

	* drakxtools.spec: 
	  - harddrake::data : consolidate common code in custom_id()
	  - do some detection in dm stage
	  - fix bad test
	  - display better name
	40mdk

2002/09/06  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: add lisa in KDE in REMOTE_ACCESS
	remove contrib packages
	add !CDCOM for OpenOffice.org
	move mod_php to 5

2002/09/06  David Baudens  <baudens@mandrakesoft.com>

	* standalone/icons/ic82-tape-40.png, standalone/icons/ic-drakfont-48.png,
	standalone/icons/mdk_logo.png, standalone/icons/ic82-when-40.png,
	standalone/icons/ic82-moreoption-40.png,
	standalone/icons/ic82-system-40.png,
	standalone/icons/ic82-dossier-32.png, standalone/icons/ic82-CD-40.png,
	standalone/icons/ic82-back-up-32.png,
	standalone/icons/ic82-where-40.png,
	standalone/icons/ic82-back-up-16.png,
	standalone/icons/ic82-network-40.png,
	standalone/icons/ic82-back-up-48.png,
	standalone/icons/ic82-discdurwhat-40.png,
	standalone/icons/ic82-systemeplus-40.png,
	standalone/icons/ic82-users-40.png, standalone/icons/ic82-others-40.png:
	Update

	* drakxtools.spec: Update
	Update

	* standalone/icons/gmon.png, standalone/icons/hori.png,
	standalone/icons/categ.png, standalone/icons/verti.png: Update icons &
	remove old Aurora stuff

2002/09/06  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed to allow changing boot medium.

	* install_steps.pm: changed how pkgs::remove is called.

	* pkgs.pm: fixed excesive reduction of size.
	fixed stupid typo.
	allow obsoleted packages to be taken into account.
	allow cleaning ask_remove according to removed package.

2002/09/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* ugtk.pm, my_gtk.pm: add gtkset_visibility

	* drakxtools.spec: fix and change a few things in the description

2002/09/06  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pl.po: updated Polish file

	* share/po/pt.po, share/po/sk.po: updated Portuguese and Slovak files

2002/09/06  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/various.pm, Xconfig/main.pm: ensure Xconfig::various::various is
	called at install

	* bootloader.pm (read): cleanup duplicate labels (in case file is
	corrupted)
	(get_label): compare labels using 15 first characters (to be compliant
	with lilo)
	(add_entry): fix removing duplicate entries
	(read): fix

2002/09/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: update french translation
	s/si vous être nouveau/si vous êtes nouveau/
	s/des actions additionnelle/des actions additionnelles/
	s/sur le disk/sur le disque/
	s/vous pouves atteindre les toutes options/vous pouvez modifier toutes
	les options/
	Ctrl - C (.... => manque )
	s/Si vous installer/Si vous installez/
	s/qui sera utilisé/qui sera utilisée/ (partition)
	s/accessible en cas de/des images « ramdisk » accessibles/
	s/Cette installation prends/Cette installation prend/
	s/Assurez vous/Assurez-vous/
	fix po

	* ugtk.pm: export compose_pixbufs for mcc
	  - ugtk::gtkicons_labels_widget() :
	o pass icon name in $tag to $exec_func so that the later can display
	    big icon
	  o $label_exec is a duplicate of $label
	  o simplify notebook redrawing:
	    * remove dam'sugly hacks
	    * $redraw_function->() : resize Gtk::Fixed on first run if more
	      than 4 icons
	    * redraw in only one place
	    * don't redraw on realize event
	    (now we both don't flick and have proper icon alignment without
	     old hacks)
	  - mcc:
	  o print big icon while launching a tool (anim in next commit)
	  o move todo list in TODO
	  o stricter check:
	    * default to use strict
	    * disable strict mode when building rpm
	    * fixes for 'use strict'
	  o kill :
	    * a debugging print
	    * a superflous 'no warnings'
	    * a title->show since we never hide it
	    * $rootheight since gtk packer do the job for us
	    * unused $nb_pages
	  o begin to un-hardcode some values (window and notebook size, ...)
	  o cosmetics:
	    * comment some code
	    * add myself to authors list (deush, you should add yourself too
	      since you're the localedrake/mcc interaction guru)
	    * s/darea1/summary_darea/
	  o don't display logs when back in main summary
	  o destroy pixbuf after

	* harddrake/ui.pm: fix translated string

	* standalone/drakbackup: handle delete_event in all cases
	use my_gtk for window creation, thus:
	  - window creation and embedding mode're handled automatically
	  - when one close drackbackup, my_gtk close it properly and return to
	mcc

	* drakxtools.spec: 36mdk

	* standalone/drakperm: use my_gtk for embedded mode.
	code must be cleaned up through my_gtk usage though.

2002/09/06  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: remove contrib packages
	add !CDCOM for OpenOffice.org
	move mod_php to 5

2002/09/05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/tr.po: updated Turkish file

	* share/po/zh_TW.po, share/po/sk.po: updated po Slovak and Chinese files

2002/09/05  Pixel  <pixel@mandrakesoft.com>

	* interactive/newt.pm: special case to handle many buttons in newt:
	replacing with something alike ask_from_list (useful for XFdrake)

2002/09/05  David Baudens  <baudens@mandrakesoft.com>

	* standalone/icons/drakfont.620x57.png: Update

	* share/po/fr.po: Update
	Update

2002/09/05  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: 
	  - Remove ECI ADSL modem from menu until we have an agreement

	* network/netconnect.pm: 
	  - little fix

2002/09/05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ta.po: updated po file

	* share/po/tr.po: updated Turkish file

	* share/po/nl.po: updated Dutch file

	* share/po/zh_TW.po, share/po/sk.po: updated po Slovak and Chinese files

2002/09/05  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: better NT & Fat bootloader entry adding or not
	do not add an nt label if there is no magic
	use name mangling for labels (taken from installkernel)

	* interactive/newt.pm: special case to handle many buttons in newt:
	replacing with something alike ask_from_list (useful for XFdrake)

	* Xconfig/card.pm, Xconfig/main.pm: add an option for prefering Xinerama
	in auto_installs

	* fs.pm: set umask=0 for ntfs partitions (currently only used when user
	sets the mount point to a ntfs partition)
	(suggested in bug #189)

2002/09/05  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: cleanup check for Expect - thx gc

2002/09/05  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: rc2

2002/09/05  David Baudens  <baudens@mandrakesoft.com>

	* pixmaps/services.png, pixmaps/X.png, pixmaps/quit.png,
	pixmaps/bootloader.png, pixmaps/language.png, pixmaps/summary.png,
	pixmaps/security.png, pixmaps/partition.png, pixmaps/default.png,
	pixmaps/keyboard.png, pixmaps/mouse.png,
	share/advertising/02-community.png, pixmaps/rootpasswd.png,
	pixmaps/bootdisk.png, pixmaps/colors16.png, pixmaps/harddrive.png,
	pixmaps/warning.png, pixmaps/user.png, pixmaps/printer-mdk.png,
	pixmaps/network.png, standalone/icons/drakfont.620x57.png,
	pixmaps/eth_card_mini.png: Update

	* share/po/fr.po: Update
	Update
	Update
	Update
	Update

2002/09/05  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/modem.pm: 
	  - fix drakconnect broken modem detection

2002/09/05  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed problem of --auto-select not always run.
	fixed copy of hdlist to avoid copying ignored media.

	* install_any.pm: allow noauto:... media in hdlists file to be installed
	for urpmi.

2002/09/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/cvslog2changelog.pl: add baudens

	* drakxtools.spec: meuuuuuuuuuh

	* my_gtk.pm: ask_browse_tree_info_given_widgets: add ability of partial
	selection clickery leading to unselection for rpmdrake (if
	someone understands this log message..)

	* mdk-stage1/modules.c, mdk-stage1/usb-resource/update-usb-ids.pl,
	mdk-stage1/probing.c, mdk-stage1/modules.h: fake support the firewire in
	stage1 (as if it were usb ;p)

2002/09/05  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* bootlook.pm: add use ugtk.pm

	* standalone/draksplash: preview window bug correction

2002/09/05  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file

	* share/po/zh_CN.po: updated Chinese and Danish files

	* share/po/it.po: updated Chinese file, some more Italian typo corrections
	updated Czech and Swedish files; corrected various erros in Italian file

	* share/po/es.po, share/po/ta.po, share/po/hu.po: updated po file

	* share/po/zh_TW.po: updated Chinese file, some more Italian typo
	corrections

	* share/po/da.po: updated Chinese and Danish files
	updated Danish file

	* share/po/cs.po, share/po/sv.po: updated Czech and Swedish files;
	corrected various erros in Italian file

	* share/po/sk.po: updated Slovak file

	* share/po/vi.po: Updated Vietnamese file

	* share/po/nl.po: updated Dutch file

2002/09/05  Pixel  <pixel@mandrakesoft.com>

	* standalone/localedrake: workaround kde control center calling
	localedrake with an empty kde lang

	* diskdrake/dav.pm: add nice description to the initial dialog box (thanks
	Stew!)

	* install_any.pm: add flag CDCOM when using commercial cds

	* network/network.pm, proxy.pm: allow http://xxx for ftp_proxy

	* lvm.pm: fix using given size for created LVs whereas lvcreate allocates
	a little less
	(thanks to Alan Hughes)

	* any.pm (ask_window_manager_to_logout): do not su into user before doing
	dcop if
	we are not root (otherwise localedrake in user ask for user's password
	before login out) (thanks to H. Narfi Stefansson for reporting it)

	* bootloader.pm: do not add an nt label if there is no magic
	use name mangling for labels (taken from installkernel)

	* standalone/XFdrake: correctly set allowFB flag

2002/09/05  Stew Benedict  <sbenedict@mandrakesoft.com>

	* drakxtools.spec: rework perl-Expect usage/requirements

	* standalone/drakbackup: cleanup check for Expect - thx gc
	rework perl-Expect usage/requirements

2002/09/05  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: don't rely on ctree row number

2002/09/04  David Baudens  <baudens@mandrakesoft.com>

	* standalone/logdrake, standalone/icons/wiz_logdrake.png: Add image for
	logdrake

	* standalone/icons/drakbackup.540x57.png, drakxtools.spec,
	standalone/icons/wiz_printerdrake.png, standalone/icons/wiz_drakgw.png,
	standalone/icons/wiz_scannerdrake.png,
	standalone/icons/wiz_drakconnect.png, standalone/icons/wiz_firewall.png,
	standalone/icons/wiz_default_up.png: Update

2002/09/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/it.po: fix typo

2002/09/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/af.po: updated pot file

	* share/po/sk.po, share/po/pt.po, share/po/vi.po, share/po/el.po: updated
	po file
	updated Greek, Hungarian, Portuguese, Slovak and Vietnamese files

	* share/po/cy.po: updated Welsh file
	updated po file
	updated Danish and Welsh files

	* share/po/da.po: updated po file
	updated Danish and Welsh files

	* share/po/id.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
	share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/sp.po, share/po/ca.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/ta.po, share/po/it.po, share/po/nl.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po: updated po file

	* share/po/hu.po: updated hungarian file
	updated po file
	updated Greek, Hungarian, Portuguese, Slovak and Vietnamese files

	* share/po/fr.po: updated po file
	corrected error syntax

2002/09/04  Pixel  <pixel@mandrakesoft.com>

	* drakxtools.spec: remove symlink Xconfigurator (which was broken anyway,
	thanks to Ian Ventura-Whiting for reporting it)

	* standalone/drakupdate_fstab: do not use standalone (so that no
	"explaination" are generated)

	* bootloader.pm (same_entries): compare kernel options sorted (this is an
	approximation of
	reality since order can matter, but...). An example is "quiet
	devfs=mount
	hdc=ide-scsi" vs "devfs=mount hdc=ide-scsi quiet" (thanks to Gabriel
	Phoenix)

	* ugtk.pm: make perl_checker happy

	* fs.pm: revert add2hash_ username=% to add2hash (it breaks diskdrake
	--smb not
	defaulting to username=%, and i can't find out what was wrong in
	auto_install's manualFstab)

	* install_steps.pm (addUser): fix calling with a user already existing
	(mainly for installs keeping the / non-formatted, special for pixel)

	* install_steps_interactive.pm: fix dialog box asking "Load from floppy"
	or "Save on floppy" in individual package selection

2002/09/04  Stew Benedict  <sbenedict@mandrakesoft.com>

	* drakxtools.spec: add perl-Expect requires for drakbackup (now enabled
	and in main)

2002/09/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Makefile.config: add drakperm!

	* share/po/fr.po: s/Si vous disque/Si votre disque/
	s/Si non,, Les partitions devront être créés/Sinon, les partitions
	devront ,bj(Btre cr,bii(Bes/
	s/des fonctionnalité additionnelle/des fonctionnalit,bi(Bs
	additionnelles/
	s/sur un disque amovibles/sur un disque amovible/
	s/sauves la table/sauve la table/
	s/pour récurer les partitions/pour r,bi(Bcup,bi(Brer les partitions/

	* standalone/drakperm: 
	  - really embbed
	  - kill stupid things (aka embedded window withouth any widget vs
	toplevel window)

	* ugtk.pm: gtkcreate_png_pixbuf() : support jpeg too for bootlook.pm

2002/09/04  baudens

	* standalone/icons/wiz_logdrake.png, standalone/logdrake: Add image for
	logdrake

	* share/po/fr.po: Update
	Update

2002/09/04  Daouda Lo  <daouda@mandrakesoft.com>

	* network/network.pm: 
	  - correct typos in orinoco orinoco_cs modules

2002/09/04  François Pons  <fpons@mandrakesoft.com>

	* Xconfig/test.pm: move last warning before removing tempory file in order
	to have a chance to look
	at them.

2002/09/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/cvslog2changelog.pl: add fcrozat

	* rescue/tree/etc/rc.sysinit: drvinst serial_usb in rc.sysinit so that
	legacy free machines may
	work with rescue

2002/09/04  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* standalone/drakperm: changing bad save path for perm.local

	* bootlook.pm: replace convert dependencies by gdk-pixbuf dependencies

2002/09/04  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/cy.po, share/po/da.po: updated Danish and Welsh files

2002/09/04  Pixel  <pixel@mandrakesoft.com>

	* drakxtools.spec: remove symlink Xconfigurator (which was broken anyway,
	thanks to Ian Ventura-Whiting for reporting it)

	* bootloader.pm (same_entries): compare kernel options sorted (this is an
	approximation of
	reality since order can matter, but...). An example is "quiet
	devfs=mount
	hdc=ide-scsi" vs "devfs=mount hdc=ide-scsi quiet" (thanks to Gabriel
	Phoenix)

	* ugtk.pm: make perl_checker happy

	* install_steps.pm (addUser): fix calling with a user already existing
	(mainly for installs keeping the / non-formatted, special for pixel)

	* share/keymaps.tar.bz2: update (now includes ro2)

	* install_steps_interactive.pm: fix dialog box asking "Load from floppy"
	or "Save on floppy" in individual package selection

	* fs.pm: revert add2hash_ username=% to add2hash (it breaks diskdrake
	--smb not
	defaulting to username=%, and i can't find out what was wrong in
	auto_install's manualFstab)
	handle no options in fs::mount (is it really needed?... it should not!)

	* Xconfig/test.pm: set isInstall in test script otherwise it uses
	/usr/X11R6/bin/xtest

2002/09/04  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: enable perl-Expect (moved to main)

2002/09/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Makefile.config: add drakperm!

	* harddrake/ui.pm: 
	  - add --test option to skip mice|modem|printer detection (now
	harddrake start instantaneously)
	  - print probed class to show progression
	  - fix tree moving by using a Gtk::CTree instead of a Gtk::Tree; side
	  effect is some code cleaning which compensate above features (code
	  lenght)
	  - let my_gtk handle embedded case
	  - don't try to center window when embedded

	* standalone/drakbackup: embbed drakbackup in mcc

	* drakxtools.spec: 33mdk
	32mdk

	* standalone/drakperm: 
	  - really embbed
	  - kill stupid things (aka embedded window withouth any widget vs
	toplevel window)

	* ugtk.pm: gtkcreate_png_pixbuf() : support jpeg too for bootlook.pm

	* share/po/fr.po: s/Si vous disque/Si votre disque/
	s/Si non,, Les partitions devront être créés/Sinon, les partitions
	devront ,bj(Btre cr,bii(Bes/
	s/des fonctionnalité additionnelle/des fonctionnalit,bi(Bs
	additionnelles/
	s/sur un disque amovibles/sur un disque amovible/
	s/sauves la table/sauve la table/
	s/pour récurer les partitions/pour r,bi(Bcup,bi(Brer les partitions/
	fix dadou fsck; please check the po before comitting it!!!!!

2002/09/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* drakxtools.spec: meumeu
	meuh

	* ugtk.pm, my_gtk.pm: try to get rid of BEGIN but still be able to start
	up the install :-)

2002/09/03  Pixel  <pixel@mandrakesoft.com>

	* standalone/icons/harddrake2/multimedia.png: re-adding with -kb
	removing for re-adding with -kb

2002/09/03  baudens

	* share/advertising/09-server.pl, share/advertising/02-community.pl,
	share/advertising/04-multimedia.pl, share/advertising/07-desktop.pl,
	share/advertising/14-mdkexpert.pl, share/advertising/03-internet.pl,
	share/advertising/13-mdkcampus.pl, share/advertising/12-mdkstore.pl,
	share/advertising/11-mdkstore.pl, share/advertising/05-games.pl: Use
	official marketing ads

	* share/advertising/list: Add MandrakeClub screen in list

	* share/po/fr.po: Use MandrakeSoft marketing ads
	Begin to use Mandrake's marketing ads

	* share/advertising/17-mdkclub.pl, share/advertising/17-mdkclub.png: Add
	MDKclub screen and text

2002/09/03  dam's  <dams@idm.fr>

	* ugtk.pm: added create_pixbutton

	* my_gtk.pm: better icon association
	added create_pixbutton
	added add_icon_path for control-center

	* pixmaps/stock_cancel.xpm, pixmaps/stock_right.xpm, pixmaps/stock_ok.xpm,
	pixmaps/stock_exit.xpm, pixmaps/stock_left.xpm: re-adding with -kb
	removing for re-adding with -kb
	icons for ok/cancel/back/previou/next icons

2002/09/03  Daouda Lo  <daouda@mandrakesoft.com>

	* drakxtools.spec: 
	  -  obsoletes/provides drakfloppy

	* my_gtk.pm: 
	  - better size of wizard for printerdrake

2002/09/03  fcrozat

	* share/rpmsrate: mdk-eazel-engine is now in gtk-engines

2002/09/03  François Pons  <fpons@mandrakesoft.com>

	* install_gtk.pm: fixed old Xconf style because it doesn't work anymore on
	i845 with newer format.

	* mouse.pm: add a sleep and second try for usb mouse.
	added log when no usb interface is found, rare enough now.

	* ugtk.pm: fixed previous fix;
	try to avoid clashes with install.

	* modules.pm: make modules.pm patchable (avoid my ...)
	updated log of add_probeall to be correct.

	* my_gtk.pm: fixed damien (aka pitchounette) sucking, this is not this way
	pitchounette you
	will lost your current name as pitchounette :-)

	* install_steps_interactive.pm: fixed too higher percentage.

2002/09/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* drakxtools.spec: meumeu
	meuh

	* ugtk.pm: try to get rid of BEGIN but still be able to start up the
	install :-)
	have the possibility in gtktext_insert to provide font/color
	information as well
	meuh gtk init
	gtkcreate_png was too stupid to allow subdirectories for images,
	fix it

	* my_gtk.pm: try to get rid of BEGIN but still be able to start up the
	install :-)

2002/09/03  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/pl.po: updated Polish file

	* share/po/cs.po: updated po file

	* share/po/zh_CN.po: updated Chinese file

	* lang.pm: Changed Turkish console font

	* share/po/Makefile: enabled ro.po

2002/09/03  Pixel  <pixel@mandrakesoft.com>

	* rescue/list.i386: add gpart (per Giuseppe Ghibò request)

	* my_gtk.pm: remove the use of Ok/Cancel/Exit icons (per ergonomy team
	request)

2002/09/03  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Fix empty subnet in /etc/exports /home entry.

2002/09/03  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: remove double translation

	* ugtk.pm: 
	  - create_pix_text, gtkicons_labels_widget: remove text color argument,
	default to black
	  - remove last debugging prints
	  - ugtk :
	o create_pix_text:
	    * remove
	    * kill uni colored background
	    * api change:
	      + background argument => background list
	      + remove bold argument
	    * render all text (normal, highlighted, selected) on specified
	      background in one pass
	  o gtkicons_labels_widget():
	    * explain/comment
	    * move all drawing logic in &$draw
	    * create buffer area, text pics only one time
	    * add a pixbuf for highlighted item
	    * render highlighted icon by making it more transparent
	    * recalculate drawing buffer only on state change
	  - mcc :
	    * move all drawing logic in &$draw
	    * create buffer area, text pics only one time
	    * render highlighted icon by making it more transparent
	    * recalculate drawing buffer only on state change

	* drakxtools.spec: 30mdk

2002/09/02  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm, network/ethernet.pm: 
	  - fix previous behavior in Expert mode... (100% lazy loop free this
	time)

	* network/netconnect.pm: 
	  - network restart previous bug fixed

2002/09/02  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/po/fr.po: corrected a gramatical error

2002/09/02  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: restore auto build of synthesis file (for updates).

	* ugtk.pm: fixed titi suckings.

	* install_steps_interactive.pm: make sure upgrade is done instead.

2002/09/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/id.po, share/advertising/14-mdkexpert.pl, share/po/sk.po,
	share/po/ru.po, share/po/gl.po, share/po/pt_BR.po, share/po/br.po,
	share/po/th.po, share/po/sl.po, share/po/no.po, share/po/et.po,
	share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
	share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/advertising/03-internet.pl, share/po/ko.po, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/advertising/05-games.pl, share/po/sp.po, share/po/cy.po,
	share/po/da.po, share/po/ca.po, share/po/ar.po,
	share/advertising/12-mdkstore.pl, share/advertising/09-server.pl,
	share/advertising/04-multimedia.pl, share/po/bs.po, share/po/ro.po,
	share/advertising/13-mdkcampus.pl, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/pt.po, share/po/vi.po, share/po/ta.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
	share/po/bg.po, share/po/el.po, share/po/hu.po: try to fix broken
	english in advertisements and not break po's

2002/09/02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/advertising/12-mdkstore.pl,
	share/advertising/15-mdkexpert-corporate.pl: small fix

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/ro.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/ta.po, share/po/fr.po, share/po/nl.po,
	share/po/it.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/lv.po, share/po/bg.po, share/po/el.po: updated
	pot file

	* share/advertising/14-mdkexpert.pl: fixed typo
	small fix

	* share/po/hu.po: updated Hungarian file
	updated pot file

	* help.pm: Fixed typo

	* share/po/zh_TW.po: updated Chinese file
	updated pot file

	* share/po/pl.po, share/po/cs.po: updated pot file
	updated Czech and Polish files

2002/09/02  Till Kamppeter  <till@mandrakesoft.com>

	* share/rpmsrate: Updated for the new printerdrake.

2002/09/02  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: use new ln icons

	* ugtk.pm: gtkicons_labels_widget(): check binary exists

	* drakxtools.spec, Makefile.drakxtools: 29mdk: add harddrake icons

	* standalone/icons/harddrake2/harddrake.png,
	standalone/icons/harddrake2/joystick.png,
	standalone/icons/harddrake2/usb.png, standalone/icons/harddrake2/tv.png,
	standalone/icons/harddrake2/floppy.png,
	standalone/icons/harddrake2/scsi_hd.png,
	standalone/icons/harddrake2/modem.png,
	standalone/icons/harddrake2/keyboard.png,
	standalone/icons/harddrake2/unknown.png,
	standalone/icons/harddrake2/harddisk.png,
	standalone/icons/harddrake2/cd.png, standalone/icons/harddrake2/cpu.png,
	standalone/icons/harddrake2/ide_hd.png,
	standalone/icons/harddrake2/scanner.png,
	standalone/icons/harddrake2/hw_mouse.png,
	standalone/icons/harddrake2/isdn.png,
	standalone/icons/harddrake2/hw_printer.png,
	standalone/icons/harddrake2/memory.png,
	standalone/icons/harddrake2/webcam.png,
	standalone/icons/harddrake2/video.png,
	standalone/icons/harddrake2/tape.png,
	standalone/icons/harddrake2/sound.png,
	standalone/icons/harddrake2/scsi.png,
	standalone/icons/harddrake2/hw_network.png: add new icons
	remove old icons
	add new ln icons

	* standalone/icons/harddrake2/menu/harddrake-menu48.png,
	standalone/icons/harddrake2/cable.png,
	standalone/icons/harddrake2/menu/harddrake-menu16.png,
	standalone/icons/harddrake2/menu/harddrake-menu32.png,
	standalone/icons/harddrake2/multimedia.png,
	standalone/icons/harddrake2/K7.png: add new ln icons

2002/09/02  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/po/fr.po: corrected a gramatical error

2002/09/02  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: restore auto build of synthesis file (for updates).

	* ugtk.pm: fixed titi suckings.

	* install_steps_interactive.pm: make sure upgrade is done instead.

2002/09/02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/cs.po, share/po/pl.po: updated Czech and Polish files

2002/09/02  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm: gtkicons_labels_widget(): check binary exists
	kill glib warnings

	* harddrake/data.pm: use new ln icons

	* drakxtools.spec, Makefile.drakxtools: 29mdk: add harddrake icons

	* standalone/icons/harddrake2/harddrake.png,
	standalone/icons/harddrake2/joystick.png,
	standalone/icons/harddrake2/usb.png, standalone/icons/harddrake2/tv.png,
	standalone/icons/harddrake2/floppy.png,
	standalone/icons/harddrake2/scsi_hd.png,
	standalone/icons/harddrake2/modem.png,
	standalone/icons/harddrake2/keyboard.png,
	standalone/icons/harddrake2/unknown.png,
	standalone/icons/harddrake2/harddisk.png,
	standalone/icons/harddrake2/cd.png, standalone/icons/harddrake2/cpu.png,
	standalone/icons/harddrake2/ide_hd.png,
	standalone/icons/harddrake2/scanner.png,
	standalone/icons/harddrake2/hw_mouse.png,
	standalone/icons/harddrake2/isdn.png,
	standalone/icons/harddrake2/hw_printer.png,
	standalone/icons/harddrake2/memory.png,
	standalone/icons/harddrake2/webcam.png,
	standalone/icons/harddrake2/video.png,
	standalone/icons/harddrake2/tape.png,
	standalone/icons/harddrake2/sound.png,
	standalone/icons/harddrake2/scsi.png,
	standalone/icons/harddrake2/hw_network.png: add new icons
	remove old icons
	add new ln icons

	* standalone/icons/harddrake2/menu/harddrake-menu48.png,
	standalone/icons/harddrake2/cable.png,
	standalone/icons/harddrake2/menu/harddrake-menu16.png,
	standalone/icons/harddrake2/menu/harddrake-menu32.png,
	standalone/icons/harddrake2/multimedia.png,
	standalone/icons/harddrake2/K7.png: add new ln icons

2002/09/02  baudens

	* share/advertising/list, share/advertising/07-desktop.pl,
	share/advertising/05-games.pl, share/advertising/06-mcc.pl: Update

	* share/advertising/09-server.pl, share/advertising/04-multimedia.pl,
	share/advertising/14-mdkexpert.pl, share/advertising/13-mdkcampus.pl,
	share/advertising/11-mdkstore.pl, share/advertising/02-community.pl,
	share/advertising/01-thanks.pl, share/advertising/03-internet.pl,
	share/advertising/10-mnf.pl,
	share/advertising/15-mdkexpert-corporate.pl,
	share/advertising/08-development.pl, share/advertising/12-mdkstore.pl:
	Update
	Update

2002/09/02  Daouda Lo  <daouda@mandrakesoft.com>

	* Makefile.config, drakxtools.spec, standalone.pm, docs/README.devel: 
	  - s/tinyfirewall/drakfirewall/

	* standalone/drakbug: s/tinyfirewall/drakfirewall/
	  - drakbug point to https://drakbug.mandrakesoft.com

	* network/netconnect.pm, standalone/tinyfirewall, standalone/drakfirewall,
	network/drakfirewall.pm, network/tinyfirewall.pm: 
	  - replace tinyfirewall by drakfirewall

2002/09/02  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: sympa => mailman
	removed PHP-nuke

	* share/po/fr.po: corrected a gramatical error

2002/09/02  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: make sure upgrade is done instead.
	reverted previous modification moved to crypto module.
	make sure rpmdb is open before displaying packages tree.

	* install2.pm: now allow meta_class option on command line to be taken
	into account instead of
	previous options desktop and firewall.

	* install_steps.pm: add $o->{packages} to install_any::install_urpmi call.

	* install_any.pm: restore auto build of synthesis file (for updates).
	fixed typo.
	fix list building not to use parsehdlist.
	install_urpmi only install selected media.

	* crypto.pm: fix typo.
	allow selecting packages to upgrade.

	* install_steps_gtk.pm: strange typo where no filtering on medium was
	issued ?

	* pkgs.pm: fixed to call to getFile by giving medium description,
	necessary for updates.
	allow selectPackagesToUpgrade to use a specific medium instead of all of
	them.

	* ugtk.pm: fixed titi suckings.

2002/09/02  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* drakperm: solving bugs on add and save functions

2002/09/02  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/cs.po: updated Czech and Polish files

	* share/po/sv.po, share/po/sk.po, share/po/de.po, share/po/zh_TW.po,
	share/po/tr.po, share/po/hu.po: updated Hungarian, Turkish, Swedish,
	Slovak and Chinese files

	* share/po/pl.po: updated Czech and Polish files
	updated Hungarian, Turkish, Swedish, Slovak and Chinese files

	* share/po/es.po, share/po/ru.po: updated Spanish and Russian files

2002/09/02  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm: gtkicons_labels_widget(): check binary exists
	kill glib warnings

	* harddrake/sound.pm, harddrake/ui.pm: display alternative drivers (oss,
	alsa) for sound cards

	* harddrake/data.pm: use new ln icons

	* drakxtools.spec, Makefile.drakxtools: 29mdk: add harddrake icons

	* standalone/icons/harddrake2/floppy.png,
	standalone/icons/harddrake2/scsi_hd.png,
	standalone/icons/harddrake2/modem.png,
	standalone/icons/harddrake2/keyboard.png,
	standalone/icons/harddrake2/harddisk.png,
	standalone/icons/harddrake2/ide_hd.png,
	standalone/icons/harddrake2/scanner.png,
	standalone/icons/harddrake2/isdn.png,
	standalone/icons/harddrake2/webcam.png,
	standalone/icons/harddrake2/sound.png,
	standalone/icons/harddrake2/scsi.png,
	standalone/icons/harddrake2/harddrake.png,
	standalone/icons/harddrake2/joystick.png,
	standalone/icons/harddrake2/tv.png, standalone/icons/harddrake2/usb.png,
	standalone/icons/harddrake2/unknown.png,
	standalone/icons/harddrake2/cd.png, standalone/icons/harddrake2/cpu.png,
	standalone/icons/harddrake2/hw_mouse.png,
	standalone/icons/harddrake2/hw_printer.png,
	standalone/icons/harddrake2/memory.png,
	standalone/icons/harddrake2/video.png,
	standalone/icons/harddrake2/tape.png,
	standalone/icons/harddrake2/hw_network.png: add new icons
	remove old icons
	add new ln icons

	* share/po/fr.po: update french translation

	* standalone/icons/harddrake2/menu/harddrake-menu48.png,
	standalone/icons/harddrake2/multimedia.png,
	standalone/icons/harddrake2/cable.png,
	standalone/icons/harddrake2/menu/harddrake-menu16.png,
	standalone/icons/harddrake2/menu/harddrake-menu32.png,
	standalone/icons/harddrake2/K7.png: add new ln icons

2002/09/01  alus

	* share/po/pl.po: and more...
	some translations

2002/09/01  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/vi.po: updated Vientamese file

2002/09/01  siegel

	* share/po/de.po: updates
	new german version

2002/09/01  Till Kamppeter  <till@mandrakesoft.com>

	* scanner.pm: s/Seiko Epson/Epson/ in subroutine to update ScannerDB from
	Sane.

	* printerdrake.pm: 
	  - Tell users of the HP LaserJet 1000 that they have to upload firmware
	to the printer.
	  - Updated instructions to get Lexmark's inkjet drivers.
	  - Suppressed the display of the "Refresh printer list" and "Specify
	CUPS server" buttons in recommended mode when there is no local network.

2002/08/31  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/hu.po: updated po file
	updated pot file

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/ta.po,
	share/po/fr.po, share/po/nl.po, share/po/it.po, share/po/eu.po,
	share/po/es.po, share/po/de.po, share/po/eo.po, share/po/lv.po,
	share/po/cs.po, share/po/bg.po, share/po/el.po: updated pot file

	* share/advertising/14-mdkexpert.pl, share/advertising/12-mdkstore.pl,
	share/advertising/15-mdkexpert-corporate.pl: no need to translate web
	adresses

	* standalone/drakbackup: fixed use of variables in translatable strings

2002/08/31  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: Fix prompt text saved as filename - Advanced What
	- Other

2002/08/31  siegel

	* share/po/de.po: some upadtes

2002/08/31  Warly  <warly@mandrakesoft.com>

	* share/rpmsrate: add shorewall and iptables in INSTALL section

2002/08/30  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed possible problem with is_installed and
	are_installed.

	* install_steps.pm: fixed call to pkgs::remove.

2002/08/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Swedish file

2002/08/30  siegel

	* share/po/de.po: update german version

2002/08/30  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: 
	  - Fixed bugs in automatic GIMP printer configuration during
	installation.
	  - Worked around a bug of "ls -r xxx*" returning "xxx*" instead of
	nothing when "xxx*" does not exist ("ls" of "busybox" during
	installation).

2002/08/30  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm, drakxtools.spec: 
	  - mcc :
	o kill gtkpng_() and gtk_createpng_() wrappers: if icon is missing,
	    better die while testing rather than make perl display "uncaught
	    code ..."
	  o kill unused timer
	  o use new ln's icons
	  o disable stupid icon highlighting (was made with duplicating
	    manually all icons in gimp and blue-y them there); restore this
	    effect'll need little play with gamma
	  o use ugtk
	  o kill dead code
	  o cleanups
	  o icons:
	    * switch to new icons set
	    * replace pixmap table by a pixbuf one
	    * use pixbufs for backgrouns and icons,
	    * composite background and icons with transparency trough
	      ugtk::compose_pixbufs()
	    * render icons with full alpha blender in left column
	    * comment the different states
	    * simplify callbacks
	  - ugtk :
	  o readd gdkpixbuf support
	  o ensure imlib is used by default to load files, not gdk-pixbuf
	  o compose_with_back(): load a png icon into a pixbuf and call
	    compose_pixbufs with background pixbuf
	  o compose_pixbufs(): render transparent icon onto background into a
	    new pixbuf
	  o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
	    icon into a pixbuf
	    gdk-pixbuf-0-branch also uses it to simplify a lot of code
	  o gtkicons_labels_widget() :
	    * add a new background pixbuf parameter that'll be composited with
	icons
	    * render icons with alpha blender in right area
	    * kill imlib_counter
	    * kill imlib usage for
	    * kill dead code (was dead since i fixed mcc memory leaks)
	
	  - TODO: icon flashing on application launch
	
	  - POSTPONED: merge big cleanup, global replacement of imlib usage by
	gdk-pixbuf
	             from gdk-pixbuf-0-branch since it would impacted drakx
	which is not
	             so good

2002/08/30  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed possible problem with is_installed and
	are_installed.

2002/08/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Swedish file

2002/08/30  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm, drakxtools.spec: 
	  - mcc :
	o kill gtkpng_() and gtk_createpng_() wrappers: if icon is missing,
	    better die while testing rather than make perl display "uncaught
	    code ..."
	  o kill unused timer
	  o use new ln's icons
	  o disable stupid icon highlighting (was made with duplicating
	    manually all icons in gimp and blue-y them there); restore this
	    effect'll need little play with gamma
	  o use ugtk
	  o kill dead code
	  o cleanups
	  o icons:
	    * switch to new icons set
	    * replace pixmap table by a pixbuf one
	    * use pixbufs for backgrouns and icons,
	    * composite background and icons with transparency trough
	      ugtk::compose_pixbufs()
	    * render icons with full alpha blender in left column
	    * comment the different states
	    * simplify callbacks
	  - ugtk :
	  o readd gdkpixbuf support
	  o ensure imlib is used by default to load files, not gdk-pixbuf
	  o compose_with_back(): load a png icon into a pixbuf and call
	    compose_pixbufs with background pixbuf
	  o compose_pixbufs(): render transparent icon onto background into a
	    new pixbuf
	  o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
	    icon into a pixbuf
	    gdk-pixbuf-0-branch also uses it to simplify a lot of code
	  o gtkicons_labels_widget() :
	    * add a new background pixbuf parameter that'll be composited with
	icons
	    * render icons with alpha blender in right area
	    * kill imlib_counter
	    * kill imlib usage for
	    * kill dead code (was dead since i fixed mcc memory leaks)
	
	  - TODO: icon flashing on application launch
	
	  - POSTPONED: merge big cleanup, global replacement of imlib usage by
	gdk-pixbuf
	             from gdk-pixbuf-0-branch since it would impacted drakx
	which is not
	             so good

2002/08/30  baudens

	* share/advertising/list: Temporary fix

	* share/advertising/15-mdkexpert-corporate.pl,
	share/advertising/14-mdkexpert.pl, share/advertising/13-mdkcampus.pl,
	share/advertising/12-mdkstore.pl, share/advertising/11-mdkstore.pl:
	Temporary new texts. Need to be checked and fixed

2002/08/30  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed possible problem with is_installed and
	are_installed.

2002/08/30  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* network/network.pm: fix looping on network step when configuring
	ethernet card

2002/08/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Swedish file
	updated Swedish file

2002/08/30  Pixel  <pixel@mandrakesoft.com>

	* standalone/keyboarddrake: 
	  - use keyboard::keyboard2full_xkb
	  - call setxkbmap with -option and -model
	  - use "/etc/init.d/keytable restart" instead of loadkeys

	* keyboard.pm, Xconfig/default.pm: most of the code of
	Xconfig::default::config_keyboard moved to keyboard::keyboard2full_xkb

	* verify_c: ignore c::from_utf8

	* any.pm: 
	  - set GRP_TOGGLE to '' when no GRP_TOGGLE are used
	  - defaults to previous GRP_TOGGLE if one is available

	* Xconfig/card.pm: make perl_checker happy

	* Xconfig/resolution_and_depth.pm: fix typo (choosing the Flat Panel
	resolution by default)

2002/08/30  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm, drakxtools.spec: 
	  - mcc :
	o kill gtkpng_() and gtk_createpng_() wrappers: if icon is missing,
	    better die while testing rather than make perl display "uncaught
	    code ..."
	  o kill unused timer
	  o use new ln's icons
	  o disable stupid icon highlighting (was made with duplicating
	    manually all icons in gimp and blue-y them there); restore this
	    effect'll need little play with gamma
	  o use ugtk
	  o kill dead code
	  o cleanups
	  o icons:
	    * switch to new icons set
	    * replace pixmap table by a pixbuf one
	    * use pixbufs for backgrouns and icons,
	    * composite background and icons with transparency trough
	      ugtk::compose_pixbufs()
	    * render icons with full alpha blender in left column
	    * comment the different states
	    * simplify callbacks
	  - ugtk :
	  o readd gdkpixbuf support
	  o ensure imlib is used by default to load files, not gdk-pixbuf
	  o compose_with_back(): load a png icon into a pixbuf and call
	    compose_pixbufs with background pixbuf
	  o compose_pixbufs(): render transparent icon onto background into a
	    new pixbuf
	  o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
	    icon into a pixbuf
	    gdk-pixbuf-0-branch also uses it to simplify a lot of code
	  o gtkicons_labels_widget() :
	    * add a new background pixbuf parameter that'll be composited with
	icons
	    * render icons with alpha blender in right area
	    * kill imlib_counter
	    * kill imlib usage for
	    * kill dead code (was dead since i fixed mcc memory leaks)
	
	  - TODO: icon flashing on application launch
	
	  - POSTPONED: merge big cleanup, global replacement of imlib usage by
	gdk-pixbuf
	             from gdk-pixbuf-0-branch since it would impacted drakx
	which is not
	             so good

2002/08/30  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: rc1

2002/08/30  baudens

	* share/advertising/list: Temporary fix

2002/08/30  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* install_steps_newt.pm: Added text for translators

	* share/po/nl.po, share/po/cy.po, share/po/eu.po, share/po/cs.po: updated
	po files

2002/08/30  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/resolution_and_depth.pm: fix typo (choosing the Flat Panel
	resolution by default)

2002/08/30  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: rc1

2002/08/29  Pixel  <pixel@mandrakesoft.com>

	* share/keymaps.tar.bz2: now the only bad one is ro2

	* share/po/it.po, share/po/help-fr.pot, share/po/help-de.pot,
	share/po/es.po, share/po/de.po, share/po/help-es.pot,
	share/po/help-it.pot, share/po/fr.po: 
	  - re-update help-xx.pot after fixing bad drakxid's in xml files
	  - update xx.po's using help-xx.pot
	=> at last, DrakX help is now in sync with xml files :)

	* pixmaps/printer-mdk.png: re-adding with -kb
	removing for re-adding with -kb

	* detect_devices.pm (isRemovableDrive): usb with class "Floppy (UFI)" are
	removable even if they are not media_type fd

	* share/po/help_xml2pm.pl: 
	  - fix missing to_ascii on english part in help-xx.pot
	  - ignore drakxid's in a language but not in english

2002/08/29  baudens

	* share/advertising/09-MDKcampus_icon.png,
	share/advertising/12-MDKstore_icon.png, share/advertising/00-thanks.png,
	share/advertising/10-MDKexpert.png, share/advertising/06-user.png,
	share/advertising/03-graphic_icon.png, share/advertising/03-graphic.png,
	share/advertising/13-Nvert.png, share/advertising/04-develop_icon.png,
	share/advertising/12-MDKstore.png,
	share/advertising/05-contcenter_icon.png,
	share/advertising/02-internet_icon.png,
	share/advertising/02-internet.png, share/advertising/08-games.png,
	share/advertising/11-consul.png, share/advertising/06-user_icon.png,
	share/advertising/07-server.png, share/advertising/04-develop.png,
	share/advertising/10-MDKexpert_icon.png,
	share/advertising/07-server_icon.png,
	share/advertising/08-games_icon.png, share/advertising/01-gnu.png,
	share/advertising/05-contcenter.png, share/advertising/09-MDKcampus.png:
	Remove old images

	* share/advertising/07-desktop.png, share/advertising/14-mdkexpert.png,
	share/advertising/01-thanks.png, share/advertising/02-community.png,
	share/advertising/11-mdkstore.png, share/advertising/12-mdkstore.png,
	share/advertising/04-multimedia.png, share/advertising/05-games.png,
	share/advertising/03-internet.png, share/advertising/06-mcc.png,
	share/advertising/13-mdkcampus.png, share/advertising/10-mnf.png,
	share/advertising/16-thanks.png,
	share/advertising/15-mdkexpert-corporate.png,
	share/advertising/09-server.png, share/advertising/08-development.png:
	New images

	* share/advertising/05-contcenter.pl, share/advertising/09-MDKcampus.pl,
	share/advertising/08-games.pl, share/advertising/11-consul.pl,
	share/advertising/07-server.pl, share/advertising/01-gnu.pl,
	share/advertising/03-graphic.pl, share/advertising/02-internet.pl,
	share/advertising/00-thanks.pl, share/advertising/04-develop.pl,
	share/advertising/06-user.pl, share/advertising/12-MDKstore.pl,
	share/advertising/13-Nvert.pl, share/advertising/10-MDKexpert.pl: Remove
	old texts

	* share/advertising/02-community.pl, share/advertising/01-thanks.pl,
	share/advertising/05-games.pl, share/advertising/09-server.pl,
	share/advertising/04-multimedia.pl, share/advertising/07-desktop.pl,
	share/advertising/10-mnf.pl, share/advertising/08-development.pl,
	share/advertising/06-mcc.pl, share/advertising/03-internet.pl: New text
	(other will come later)

2002/08/29  Daouda Lo  <daouda@mandrakesoft.com>

	* network/adsl.pm: 
	  - dns settings for pppoe
	  - set DNS in adsl config.
	  - update speedtouch link

2002/08/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pcmcia_/probe.c: merge some code from pcmcia-cs-3.2.1 so that
	some pci pcmcia driver
	use i82365 rather than yenta_socket

	* standalone/logdrake: in explain mode, don't display day and hostname to
	have more
	space for the rest

	* drakxtools.spec: meuh
	24mdk

	* my_gtk.pm: ask_browse: display_info needs to be available for rpmdrake

2002/08/29  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* drakperm: Gui for file permission in msec

2002/08/29  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* standalone/drakfont, standalone/drakxtv: English typos (no space before
	colon in English)

	* share/po/es.po: updated po file
	updated pot file

	* share/po/sk.po, share/po/vi.po: updated Slovak and Vietnamese files
	updated pot file

	* share/po/id.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
	share/po/br.po, share/po/th.po, share/po/sl.po, share/po/no.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sv.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/ta.po, share/po/fr.po, share/po/it.po, share/po/de.po,
	share/po/eo.po, share/po/lv.po, share/po/cs.po, share/po/bg.po,
	share/po/el.po, share/po/hu.po: updated pot file

	* share/rpmsrate: removed ami-gnome (the package won't be in 9.0, as it
	doesn't work
	with Gnome2)

	* harddrake/ui.pm: English typos (Quitter->Quit,
	Informations->Information)
	corrected English typos (no space before colon in English)

	* share/po/cy.po, share/po/nl.po, share/po/eu.po: updated pot file
	updated Welsh, Basque and Dutch files

	* harddrake/v4l.pm, standalone/drakbackup: corrected English typos (no
	space before colon in English)

2002/08/29  Pixel  <pixel@mandrakesoft.com>

	* share/keymaps.tar.bz2: now the only bad one is ro2

	* share/po/help_update_english_only.pl: semi-automatic script allowing to
	update help.pm without creating a hell lot of "fuzzy" in po's

	* share/po/Makefile: workaround missing entities in spanish
	adapt to new manual cvs dirs

	* share/po/help_xml2pm.pl: 
	  - fix missing to_ascii on english part in help-xx.pot
	  - ignore drakxid's in a language but not in english
	  - adapt to new manualB xml help
	  - fix tr/// causing havoc in french accents (and other)

	* install2.pm (formatPartitions): create /dev/null as soon as possible on
	to be installed system

	* detect_devices.pm (isRemovableDrive): usb with class "Floppy (UFI)" are
	removable even if they are not media_type fd
	(isRemovableUsb): using "Floppy (UFI)" usb media_type is no good, use
	magical usb2removable instead
	(usb_description2removable): more entries
	(suggest_mount_point): use new function usb2removable

	* share/po/help-eu.pot: not available anymore (=> use the i18n from eu.po)

	* help.pm: update help from xml

	* standalone/drakupdate_fstab: fix check_hard_drives
	in --auto, print the mount points add/removed for use in hotplug
	  - add option --auto
	  - when --auto, ignore actions on partitions when the drive has
	extended partitions

	* devices.pm: allow creation of "/dev/null" device

	* share/po/sk.po, share/po/gl.po, share/po/pt_BR.po, share/po/th.po,
	share/po/et.po, share/po/ja.po, share/po/hr.po, share/po/be.po,
	share/po/ko.po, share/po/sv.po, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/da.po, share/po/ca.po, share/po/ar.po,
	share/po/ro.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/eu.po,
	share/po/lv.po, share/po/hu.po, share/po/id.po, share/po/ru.po,
	share/po/no.po, share/po/sl.po, share/po/tr.po, share/po/mt.po,
	share/po/ga.po, share/po/uk.po, share/po/lt.po, share/po/cy.po,
	share/po/sp.po, share/po/bs.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/pt.po, share/po/ta.po,
	share/po/vi.po, share/po/nl.po, share/po/eo.po, share/po/el.po,
	share/po/bg.po, share/po/cs.po: automatic update to new help.pm (so that
	no fuzzy appears)

	* share/po/help-de.pot, share/po/help-it.pot, share/po/help-fr.pot,
	share/po/help-es.pot: 
	  - re-update help-xx.pot after fixing bad drakxid's in xml files
	  - update xx.po's using help-xx.pot
	=> at last, DrakX help is now in sync with xml files :)
	update help from xml

	* install_steps_gtk.pm: rpm description & group are in utf8, so use
	c::from_utf8

	* standalone/drakgw: drakgw now needs shorewall, so install shorewall if
	needed (fix bug reported by Erwan)

	* share/po/it.po, share/po/es.po, share/po/fr.po, share/po/de.po: 
	  - re-update help-xx.pot after fixing bad drakxid's in xml files
	  - update xx.po's using help-xx.pot
	=> at last, DrakX help is now in sync with xml files :)
	automatic update to new help.pm (so that no fuzzy appears)

2002/08/29  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: GUI feedback during restore.

2002/08/29  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: s/||/or/ between commands, the high-precedence "||" lead to
	problems sometimes.

2002/08/29  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: move STORAGE_OTHER devices in ata controllers (aka
	pseudo raid controllers
	ala pdc)

	* standalone/logdrake: add a scroll bar in embedded mode for mcc

	* standalone/service_harddrake, harddrake/TODO: 25mdk

	* harddrake/ui.pm: embedded mode: exit on "quit" click

	* drakxtools.spec: harddrake service:
	  - Prereq: rpm-helper
	  - fix init-script-without-chkconfig-{post,preun}
	  - s/perl -w/perl/
	  - don't use diags and strict
	gc must how learn to commit
	25mdk

2002/08/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/th.po: fixed Project-Id line

	* share/po/tr.po: updated Turkish file

	* share/po/bs.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
	share/po/sl.po, share/po/af.po, share/po/az.po, share/po/ja.po,
	share/po/ga.po, share/po/uk.po, share/po/ko.po, share/po/sr.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/sp.po,
	share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/eo.po,
	share/po/lv.po, share/po/cs.po, share/po/bg.po, share/po/el.po,
	share/po/ar.po: fixed Project-Id header

2002/08/28  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/card.pm: 
	  - ensure prefer_xf3 is never set when {server} is missing
	  - don't propose xfree3 when no {server} for the card
	  - don't propose xfree4 when no {Driver} for the card

	* detect_devices.pm: 
	  - why did hds() did return removable drives in standalone? changing
	this (this was written in 1999 so no good reason must stand)
	  - remove the ugly isFloppyOrHD
	  - new function get_usb_storage_info which magically links
	/proc/scsi/scsi entries to /proc/bus/usb/devices & usbtable one :)
	  - new function usb_description2removable which tries to categorize the
	removables
	  - new function removables returning various things
	  - new function isRemovableUsb using usb class
	  - new function isFloppyUsb using the usbtable "Removable:floppy"
	  - suggest_mount_point use "Removable:xxx" entries from usbtable, or
	usb_description2removable()

	* drakxtools.spec: 
	  - drakupdate_fstab first appearance
	  - remind me to teach titi how to commit

	* Makefile.config, standalone/drakupdate_fstab: new prog drakupdate_fstab

	* fs.pm: use add2hash_ for setting "username=%" otherwise it causes havoc
	in auto_install's manualFstab
	  - read_fstab, write_fstab: add the possibility to not change
	credentials
	  - use detect_devices::removables()

2002/08/28  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Added automatical configuration of the
	printers in the GIMP.

2002/08/28  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/logdrake: 
	  - fix logdrake display window in embedded mode

2002/08/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: small fix

2002/08/28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/vi.po: updated po files
	Changed encoding of Vietnamese file to be the same as used in vi.po of
	rpmdrake

	* share/po/cy.po, share/po/ca.po, share/po/da.po, share/po/ar.po,
	share/po/bs.po, share/po/af.po, share/po/az.po, share/po/eo.po,
	share/po/el.po, share/po/cs.po, share/po/bg.po: fixed Project-Id header
	updated pot file

	* share/po/br.po, share/po/be.po, share/po/DrakX.pot, share/po/de.po:
	updated pot file

	* share/po/ro.po: updated po files
	updated po files
	updated Italian and Romanian files

	* share/po/tr.po: updated Turkish file
	updated po files
	updated po files

	* share/po/sk.po, share/po/no.po, share/po/mt.po, share/po/sv.po,
	share/po/ta.po, share/po/nl.po: updated po files
	updated po files

	* harddrake/sound.pm: Fixed typo (no space before a colon in English)

	* share/po/gl.po, share/po/pt_BR.po, share/po/ga.po, share/po/pl.po,
	share/po/fi.po: fixed Project-Id header
	updated po files

	* share/po/it.po: updated po files
	updated Italian and Romanian files

	* share/po/th.po: fixed Project-Id line
	updated po files
	updated po files

	* share/po/id.po, share/po/et.po, share/po/hr.po, share/po/wa.po,
	share/po/is.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/fr.po, share/po/eu.po, share/po/es.po, share/po/hu.po: updated
	po files

	* share/po/ru.po, share/po/sl.po, share/po/ja.po, share/po/uk.po,
	share/po/ko.po, share/po/sr.po, share/po/lt.po, share/po/sp.po,
	share/po/lv.po: fixed Project-Id header
	updated po files
	updated po files

2002/08/28  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm (is_same_hd): add ugly support for davfs devices (http://...)
	comparison without the ending "/"

	* partition_table/dos.pm (partition_table::dos::last_usable_sector): don't
	use totalsectors, compute it so that it is cylinder aligned

	* Xconfig/monitor.pm: choose a good_default_monitor based on laptop-or-not
	(thanks to cosmic flo)

	* fs.pm: use add2hash_ for setting "username=%" otherwise it causes havoc
	in auto_install's manualFstab
	  - read_fstab, write_fstab: add the possibility to not change
	credentials
	  - use detect_devices::removables()
	remove deprecated comment (supermount *does* handle auto type nowadays)
	(set_default_options): use $is_removable to know if it is removable
	instead of
	testing the presence of $part->{rootDevice} (this must be old code
	predating
	the avaibility of $is_removable)
	create detect_devices::suggest_mount_point and use it instead of doing
	it in fs::set_removable_mntpoints
	use mkdir_p instead of mkdir
	use new function part2device() to have the file from {device} (fixes
	mounting of ntfs in standalone)
	default option username=% for smb

	* Makefile.config, standalone/drakupdate_fstab: new prog drakupdate_fstab

	* interactive.pm, interactive/gtk.pm: add {callbacks}{advanced}, called
	when "Advance" button is pressed

	* standalone/diskdrake: remove unused $fstab

	* detect_devices.pm: 
	  - why did hds() did return removable drives in standalone? changing
	this (this was written in 1999 so no good reason must stand)
	  - remove the ugly isFloppyOrHD
	  - new function get_usb_storage_info which magically links
	/proc/scsi/scsi entries to /proc/bus/usb/devices & usbtable one :)
	  - new function usb_description2removable which tries to categorize the
	removables
	  - new function removables returning various things
	  - new function isRemovableUsb using usb class
	  - new function isFloppyUsb using the usbtable "Removable:floppy"
	  - suggest_mount_point use "Removable:xxx" entries from usbtable, or
	usb_description2removable()
	create detect_devices::suggest_mount_point and use it instead of doing
	it in fs::set_removable_mntpoints
	use mkdir_p instead of mkdir

	* Xconfig/main.pm: fix calling export_to_install_X in
	configure_everything_auto_install

	* install_steps.pm: 
	  - use $::prefix in any::get_secure_level()
	  - fix any::get_secure_level() not using prefix when it should

	* Xconfig/xfree3.pm, Xconfig/xfree4.pm: Xconfig::xfree3::set_resolution
	and Xconfig::xfree4::set_resolution must not modify parameter $Screen
	before calling Xconfig::xfreeX::set_resolution (otherwise the resolution
	setting is done on only one device which is bad for multi-head)

	* any.pm: 
	  - use $::prefix in any::get_secure_level()
	  - fix any::get_secure_level() not using prefix when it should
	(selectLanguage): fix the ugly use of focus_out for setting langs. Was
	completly rubbish in newt.

	* network/tinyfirewall.pm: better error message

	* partition_table.pm: remove associating 0x35 => 'jfs' since it causes
	types_rev to associate jfs to 0x35 instead of 0x383

	* loopback.pm, devices.pm, install_any.pm: use mkdir_p instead of mkdir

	* install_steps_interactive.pm: bus/usb category prompting is automatic

	* diskdrake/interactive.pm, diskdrake/removable.pm,
	diskdrake/smbnfs_gtk.pm: in "Mount point", by default choose the default
	proposition (asked by dadou for smb)

	* diskdrake/dav.pm: add "Mount" and "Unmount"
	in "Mount point", by default choose the default proposition (asked by
	dadou for smb)

	* Xconfig/resolution_and_depth.pm: on a "Flat Panel" use the flat planel
	resolution (as suggested by Alastair Scott)

	* install_steps_gtk.pm, share/list, Makefile: group icons are not used,
	remove them

2002/08/28  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Printerdrake remembers now whether it was in normal mode or
	in expert
	mode last time.
	OpenOffice.org: Remove default printer tag from the "Generic Printer"
	when Printerdrake adds an entry for the system's default printer.

	* pixmaps/printer-mdk.png, pixmaps/printer.png: Renamed icon of
	Printerdrake so that it does not get overwritten by
	Star Office.

	* standalone/printerdrake: Printerdrake remembers now whether it was in
	normal mode or in expert
	mode last time.
	Renamed icon of Printerdrake so that it does not get overwritten by
	Star Office.

	* printerdrake.pm: Printerdrake remembers now whether it was in normal
	mode or in expert
	mode last time.

2002/08/28  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: 
	  - embeded mode:
	o only display menu bar if not in embedded mode
	  o add a "quit" button in  embedded mode
	  - make my_gtk ui be readable by indentation

	* harddrake/TODO: update

2002/08/27  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/various.pm, standalone/drakboot: use the new fsedit::get_hds

	* detect_devices.pm: set {prefix} for rd/ida/cciss/... (instead of doing
	it in fsedit::hds)

	* fsedit.pm: 
	  - create lvms() which contains what was in hds()
	  - create get_hds() which handle errors when calling hds()
	  - remove commented obsolete code
	  - read_partitions is now read_proc_partitions_raw
	  - readProcPartitions is now read_proc_partitions
	  - read_proc_partitions use fake {start}s so that the empty space is
	computed ok by get_normal_parts_and_holes
	  - verifyHds doesn't exist anymore
	  - part of it is in hds() using compare_with_proc_partitions() and
	use_proc_partitions()
	  - part of it is in install_any::getHds

	* partition_table.pm: 
	  - do not handle clearall in read()
	  - ensure not partition table in written when "readonly" (it must not
	happen, but just in case)

	* diskdrake/interactive.pm: handle "readonly" per hds

	* partition_table/raw.pm (test_for_bad_drives): classify error messages
	(either read, write or something-else)

	* install_interactive.pm: handle "readonly" flag per hard drives instead
	of a global one

	* standalone/diskdrake: use function fsedit::get_hds which handles errors

	* share/po/de.po: remove duplicate entries

	* install_steps_interactive.pm, install_any.pm: remove/simplify error
	hanling (most of it is moved to fsedit.pm)

	* any.pm, bootloader.pm, install2.pm: :x

	* diskdrake/hd_gtk.pm: nicer error message when no devices are available
	(esp. for standalone)

2002/08/27  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: 
	  - new 'previous' button bug fix

2002/08/27  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: display a warning message about packages
	to remove.

	* install_any.pm: added warn about packages to remove.

	* crypto.pm: restore real distrution version used.

2002/08/27  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/nl.po: updated po file

	* share/po/sk.po: updated Slovak file

2002/08/27  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm: handle "readonly" per hds

	* Xconfig/various.pm, standalone/drakboot: use the new fsedit::get_hds

	* my_gtk.pm: 
	  - add ",*-r-*" in wizard fontset
	  - i18n the fontset

	* detect_devices.pm: set {prefix} for rd/ida/cciss/... (instead of doing
	it in fsedit::hds)

	* partition_table/raw.pm (test_for_bad_drives): classify error messages
	(either read, write or something-else)

	* fsedit.pm: 
	  - create lvms() which contains what was in hds()
	  - create get_hds() which handle errors when calling hds()
	  - remove commented obsolete code
	  - read_partitions is now read_proc_partitions_raw
	  - readProcPartitions is now read_proc_partitions
	  - read_proc_partitions use fake {start}s so that the empty space is
	computed ok by get_normal_parts_and_holes
	  - verifyHds doesn't exist anymore
	  - part of it is in hds() using compare_with_proc_partitions() and
	use_proc_partitions()
	  - part of it is in install_any::getHds

	* any.pm: set password2 to password so that upgrading bootloader with an
	existing password works (thanks to Aleksander Adamowski)
	add ntools and ctools in %high_security_groups

	* install_interactive.pm: handle "readonly" flag per hard drives instead
	of a global one

	* standalone/diskdrake: use function fsedit::get_hds which handles errors

	* install_any.pm, install_steps_interactive.pm: remove/simplify error
	hanling (most of it is moved to fsedit.pm)

	* partition_table.pm: 
	  - do not handle clearall in read()
	  - ensure not partition table in written when "readonly" (it must not
	happen, but just in case)

	* diskdrake/hd_gtk.pm: nicer error message when no devices are available
	(esp. for standalone)

2002/08/27  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: catalog restore via HD, CD, tape & network

2002/08/27  siegel

	* share/po/de.po: updates
	updates

2002/08/27  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: 
	  - Bug fix: s/detect_devices::getSNMPModel/printer::getSNMPModel/
	  - Added support for the photo card reader in the HP PSC 2200 series.
	Make number of MB to install in first time dialog changeable without
	breaking the translations.

	* printer.pm: Set default text margins to half an inch and default size
	for images
	to be printed to the full page.

2002/08/26  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/monitor.pm: fix 2 occurences of use of $monitors as a hash
	(thanks to Nora Etukudo)

	* bootloader.pm: correctly handle empty and commented lines in lilo.conf

	* mouse.pm: create /dev/usbmouse symlink for non devfs use

	* detect_devices.pm: dev_is_devfs always return false during install

2002/08/26  Till Kamppeter  <till@mandrakesoft.com>

	* standalone/printerdrake: 
	  - Ask user whether he really wants to set up printing when he starts
	Printerdrake for the first time.
	  - Added titles ("Printerdrake") to all wait messages.

	* printerdrake.pm: Button to close Printerdrake shows "Done" during
	installation and in MCC and "Quit" in standalone mode.
	  - Ask user whether he really wants to set up printing when he starts
	Printerdrake for the first time.
	  - Added titles ("Printerdrake") to all wait messages.

2002/08/26  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/ethernet.pm: 
	  - fix previous button behavior in Proxies configuration

2002/08/26  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm: avoid using serial_probe on non terminal device
	(ttyxx or ttySxx).

2002/08/26  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/rpmsrate: autoselection of tamil fonts when tamil locale is chosen

	* lang.pm: Now console fonts (at least those used by DrakX) include an sfm
	map;
	no need to provide one.
	small fix (ta->ta_IN)

	* share/po/zh_CN.po: updated Chinese file

2002/08/26  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: fix deleting previous report.bug when upgrading
	revert (not needed by gnome-panel)
	move modules::write_pcmcia before install packages

	* Xconfig/monitor.pm: fix 2 occurences of use of $monitors as a hash
	(thanks to Nora Etukudo)

	* bootloader.pm: correctly handle empty and commented lines in lilo.conf

	* mouse.pm: create /dev/usbmouse symlink for non devfs use

	* network/shorewall.pm: ensure net_interface is found in any case

	* fsedit.pm: increase maxsize for / (partitioning with /usr) since it
	contains /tmp and /opt (as requested by Arnaud de Lorbeau)

	* detect_devices.pm: dev_is_devfs always return false during install

	* fs.pm (prepare_write_fstab): use mkdir_p instead of mkdir to handle
	mount points like /mnt/foo/bar (bug reported by David Eastcott)

2002/08/26  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Dialog for printing test pages: Unmark all test pages when
	"No test
	pages" is marked.
	Accelerated printing of the photo test page when CUPS is the spooler,
	the internal image converter of CUPS is faster than ImageMagick.

	* printerdrake.pm: Dialog for printing test pages: Unmark all test pages
	when "No test
	pages" is marked.
	Accelerated printing of the photo test page when CUPS is the spooler,
	the internal image converter of CUPS is faster than ImageMagick.
	Hide buttons to choose network printer auto-detection in the add printer
	wizard when there is no local network (recommended mode).
	Let "samba-client" only be installed when really needed.

2002/08/26  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm: 
	  - lots of cleanups
	  - documente gtkcreate_png()
	  - fix Gdk::DrawingArea usage in gtkpng_pixbuf()
	  - common bring MDK::Common::Math for us
	  - globalize state (aka highlith icon or not)
	code is much more understandable now
	instead of creating a global callback for repainting exposing widgets,
	all Gdk::DrawingArea'll come from gtkpng_pixbuf() whose code is 80 %
	the redrawing callback

2002/08/25  gbeauchesne

	* share/rpmsrate: 
	  - Suggest "OpenOffice.org" instead of "openoffice"
	  - First attempt to get localized installations of OOo

2002/08/25  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/es.po, share/po/da.po: updated Danish and Spanish files

2002/08/25  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakautoinst: fixe explanation use

2002/08/24  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Swedish file

	* lang.pm: ichanged kde default fonts to match what we ship

2002/08/24  Till Kamppeter  <till@mandrakesoft.com>

	* detect_devices.pm, printer.pm, printerdrake.pm: Let command line tools
	for network scanning run under "chroot $refix", otherwise they take ages
	during installation.
	Moved network scanning functions from "detect_devices.pm" to
	"printer.pm" so that they have access to the "$prefix" variable.

2002/08/23  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/zh_TW.po, share/po/hu.po: updated Hungarian and Chinese files

2002/08/23  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/xfree4.pm: fix "screen1 RightOf screen2", it must be "screen2
	RightOf screen1"

	* network/netconnect.pm (read_raw_net_conf): new function to access
	/etc/sysconfig/drakconnect and /etc/sysconfig/drakconnect.$type ensuring
	migration from /etc/sysconfig/draknet and /etc/sysconfig/draknet.$type

	* network/shorewall.pm: remove debug code

	* Xconfig/card.pm: 
	  - fix setting "Screen <number>" for multi-head cards
	  - don't propose XFree3 when using multi-head

	* standalone.pm: add modules network::tinyfirewall and network::shorewall

	* interactive.pm: when standalone, use the name of the program for the
	window title

	* Xconfig/xfreeX.pm (set_resolution): set the resolution on all Screen
	sections (otherwise Xinerama fails (?))

2002/08/23  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: combine file browser subs into generic routine
	catalog restore - check restore media params - verify media
	reworked failure to find restore path treatment
	  - now user gets option to reselect dir, install
	   media, or use the catalog browser for
	   unmountable media
	 - fix eject media typo
	 - create/read tape label for catalog
	 - more GUI crash fixes
	 - catalog browser - can select session or
	   individual files for restore - needs backend
	 - merge with other CVS changes, some language fixes

2002/08/23  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm: 19mdk
	  - ugtk:
	o switch from imlib to gdk-pixbuf
		o kill gtkcreate_imlib()
		o big cleanup by the way
		o support alpha blender [not complete]
		o fix mem leak
		o remove dynamic support of imlib||gdk-pixbuf since:
		  * gtk2 require gdk-pixbuf anyway
		  * imlib sucks
		  * less code/libs in install
	    o kill unused cursors
	    o kill icon flashing
	    o gtkcreate_png_pixbuf() : load a png into a pixbuf
	    o gtkpng_pixbuf() : render a pixbuf into a drawable
	    o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
	      alpha bitmap
	    o add2notebook() : simplify
	fix 95% of mcc memory leaks
	  - ugtk:
	     o switch from imlib to gdk-pixbuf
		o kill gtkcreate_imlib()
		o big cleanup by the way
		o support alpha blender
		o fix mem leak
		o remove dynamic support of imlib||gdk-pixbuf since:
		  * gtk2 require gdk-pixbuf anyway
	    o kill unused cursors
	    o kill icon flashing
	    o gtkcreate_png_pixbuf() : load a png into a pixbuf
	    o gtkpng_pixbuf() : render a pixbuf into a drawable
	    o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
	      alpha bitmap
	    o add2notebook() : simplify
	  - harddrake:
	    o bump version number

	* standalone/draksound: use right sound-slot

	* share/po/fr.po: s/p,bi(Bph,bi(Briques/p,bi(Briph,bi(Briques/

	* network/netconnect.pm, standalone/drakgw: florin fixes for multiple NIC
	boxes

	* harddrake/sound.pm: 20mdk:
	  - florin fixes for firewalling
	  - check that alternative is unknown, not the current driver, before
	saying that there's no alternative.
	  anyway, our only caller cannot get there's with a current unknown
	  driver since he only try listed/know drivers ....
	19mdk
	use right sound-slot
	check that alternative is unknown, not the current driver, before
	saying that there's no alternative.
	anyway, our only caller cannot get there's with a current unknown
	driver since he only try listed/know drivers ....

	* drakxtools.spec: 20mdk:
	  - florin fixes for firewalling
	  - check that alternative is unknown, not the current driver, before
	saying that there's no alternative.
	  anyway, our only caller cannot get there's with a current unknown
	  driver since he only try listed/know drivers ....
	19mdk
	  - ugtk:
	     o switch from imlib to gdk-pixbuf
		o kill gtkcreate_imlib()
		o big cleanup by the way
		o support alpha blender [not complete]
		o fix mem leak
		o remove dynamic support of imlib||gdk-pixbuf since:
		  * gtk2 require gdk-pixbuf anyway
		  * imlib sucks
		  * less code/libs in install
	    o kill unused cursors
	    o kill icon flashing
	    o gtkcreate_png_pixbuf() : load a png into a pixbuf
	    o gtkpng_pixbuf() : render a pixbuf into a drawable
	    o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
	      alpha bitmap
	    o add2notebook() : simplify
	18mdk
	  - ugtk:
	     o switch from imlib to gdk-pixbuf
		o kill gtkcreate_imlib()
		o big cleanup by the way
		o support alpha blender
		o fix mem leak
		o remove dynamic support of imlib||gdk-pixbuf since:
		  * gtk2 require gdk-pixbuf anyway
	    o kill unused cursors
	    o kill icon flashing
	    o gtkcreate_png_pixbuf() : load a png into a pixbuf
	    o gtkpng_pixbuf() : render a pixbuf into a drawable
	    o simplify gtkcreate_png(): render a pixbuf into a pixmap and an
	      alpha bitmap
	    o add2notebook() : simplify
	  - harddrake:
	    o bump version number

2002/08/23  Warly  <warly@mandrakesoft.com>

	* share/logo-mandrake.png: beta 4 logo

2002/08/22  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* share/po/ca.po, share/po/hu.po: updated Hungarian file

2002/08/22  Pixel  <pixel@mandrakesoft.com>

	* network/shorewall.pm: make perl_checker happy
	use $::prefix to access shorewall config files
	  - add network::shorewall
	  - add tinyfirewall during install

	* standalone/tinyfirewall: complete rewrite

	* network/netconnect.pm, tinyfirewall.pm, network/tinyfirewall.pm: 
	  - add network::shorewall
	  - add tinyfirewall during install

	* pixmaps/monitor-1152.png, pixmaps/monitor-1920.png,
	pixmaps/monitor-1400.png, pixmaps/monitor-2048.png,
	pixmaps/monitor-1600.png: re-adding with -kb
	removing for re-adding with -kb

	* standalone/drakgw: use shorewall (need testing)

2002/08/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/cvslog2changelog.pl: uniformize real names

2002/08/21  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed stupid typo for bestKernelPackage.
	added return for bestKernelPackage ;-)

2002/08/21  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* bootlook.pm: add link to draksplash

	* standalone/draksplash: remove warnings

2002/08/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt.po: updated po file

2002/08/21  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm: put back loadkeys_files which *is* used (by
	make_rescue_img)

2002/08/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated po file

	* keyboard.pm, share/keyboards.tar.bz2: merged keyboards with XFree86

2002/08/20  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm: fix pablo... uh no, too hard. fix his typo instead ;p

	* drakxtools.spec: 
	  - fix dangling waiting watch mousecursor (well, please test!)
	  - adding draksplash (nathan)

	* my_gtk.pm: 
	  - in destroy, detect if program is going to leave, in that case
	don't do anything, especially don't set the waiting mouse cursor
	another thing is that calling flush() at this moment causes segfault
	so don't do it and no more segfault :)
	(now, if someone finds out what this 4 is about... but you cares, it
	works :)
	this fixes program ending on an exception
	  - also add END() calling exit() (in case a program forgets to (heurk)
	call exit())

2002/08/20  alus

	* share/po/pl.po: Upper Case
	updated translation

2002/08/20  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: o ECI adsl config fix

2002/08/20  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: make sure kernel is selected during upgrade.

	* pkgs.pm: fixed ldconfig not visible in packages tree.
	fixed ldconfig not selected for installation.
	added bestKernelPackage.

2002/08/20  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* standalone/draksplash: a tool for bootsplash theme creation

	* drakxtools.spec: adding draksplash

	* Makefile.config: adding draksplash in STANDALONEPMS_

2002/08/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/keyboards.tar.bz2, keyboard.pm: merged keyboards with XFree86

	* share/po/ta.po, share/po/hu.po: updated po file
	updated pot file

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/cs.po,
	share/po/bg.po, share/po/el.po: updated pot file

	* lang.pm: Removed fallback languages for "bs" (there are enough native
	translations now)

2002/08/20  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm: 
	  - in destroy, detect if program is going to leave, in that case
	don't do anything, especially don't set the waiting mouse cursor
	another thing is that calling flush() at this moment causes segfault
	so don't do it and no more segfault :)
	(now, if someone finds out what this 4 is about... but you cares, it
	works :)
	this fixes program ending on an exception
	  - also add END() calling exit() (in case a program forgets to (heurk)
	call exit())

	* share/keymaps.tar.bz2: update to correspond to keyboard.pm

	* mouse.pm: fix the use of create_okcancel

	* keyboard.pm: fix pablo... uh no, too hard. fix his typo instead ;p
	  - drop the loadkeys_files (it is unused)
	  - add more precise check of the existence of .bkmap's and that
	share/keymaps.tar.bz2 is up to date

	* install_steps_interactive.pm: firewire configuration is only automatic
	add firewire controller configuration

	* standalone/drakbackup: fix $'s in i18n'ed strings

	* standalone/XFdrake: when restarting X, don't kill kdm/gdm/xdm, they
	don't need this (worse, they don't respawn)

	* install_steps.pm, modules.pm: add firewire controller configuration

	* drakxtools.spec: 
	  - fix dangling waiting watch mousecursor (well, please test!)
	  - adding draksplash (nathan)

2002/08/20  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: remove unused subs
	disable forced "backup before restore" that erases previous backup
	more work towards tracking backed up files for future recovery

2002/08/20  Till Kamppeter  <till@mandrakesoft.com>

	* standalone/scannerdrake: 
	  - Let all occurences of "Seiko Epson" replaced by "Epson" both in the
	scanner names read from the ScannerDB and in the names resulting from
	scanner auto-detection (names from usbtable). So the user gets
	presented "Epson" and usbtable can have "Epson" names where ScannerDB
	can have "Seiko Epson" names.
	  - If a scanner is listed as "unsupported" in ScannerDB, the user gets
	a message instead of scannerdrake silently exiting.
	Fixed parantheses of a "member" function, fixed typos.

	* scanner.pm: 
	  - Let all occurences of "Seiko Epson" replaced by "Epson" both in the
	scanner names read from the ScannerDB and in the names resulting from
	scanner auto-detection (names from usbtable). So the user gets
	presented "Epson" and usbtable can have "Epson" names where ScannerDB
	can have "Seiko Epson" names.
	  - If a scanner is listed as "unsupported" in ScannerDB, the user gets
	a message instead of scannerdrake silently exiting.

	* printer.pm: Taken LPRng from spooler menu in printerdrake.

2002/08/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/logdrake: s/one of the selected service/one of the selected
	services/
	(spoted by Arpad Biro)

	* standalone/draksound: 
	  - simplify
	  - allocate sound slots in the same order as install2.pm (aka in
	modules::probe_category('multimedia/sound') order)
	add draksound: allow to switch between alsa and oss;
	should result in better sound support

	* harddrake/TODO: instead of generating my own list of module descriptions
	from
	list_modules.pm list of sound modules, just
	usemodules::category2modules_and_description

	* standalone/service_harddrake: 
	  - kill dead code
	  - more use of MDK::Common
	  - use draksound wizard
	  - boot: only check for removed/added disks, video card, ethernet
	devices and mouse

	* ugtk.pm: kill debugging prints

	* help.pm: s/enter a disk/insert a disk/ (Arpad Biro)

	* standalone/drakbackup: typo fixed seen by Arpad Biro:
	s/durind/during/
	s/an user/a user/
	s/select select/select/
	s/propogate/propagate/

	* harddrake/data.pm: 
	  - use draksound wizard
	  - boot: only check for removed/added disks, video card, ethernet
	devices and mouse
	don't put dvd burners in both dvd and burners classes but only in
	burners

	* harddrake/Makefile, harddrake/gen_snd_list, harddrake/sound.pm: instead
	of generating my own list of module descriptions from
	list_modules.pm list of sound modules, just
	usemodules::category2modules_and_description
	add draksound: allow to switch between alsa and oss;
	should result in better sound support

	* docs/Partition-ends-after-end-of-disk.txt: typo fix

	* bootlook.pm: s/mkinird/mkinitrd/ (Arpad Biro)

2002/08/19  alus

	* share/po/pl.po: one fix

2002/08/19  Pixel  <pixel@mandrakesoft.com>

	* Makefile.config: remove dir security

	* interactive/gtk.pm: use my_gtk {isWizard} and {isEmbedded} which are
	more accurate than
	$::isWizard && !$my_gtk::pop_it and $::isEmbedded && !$my_gtk::pop_it,
	since
	when the Plug is full, the window is not embedded.

	* fs.pm: fix checking the return value of fsck.jfs

	* my_gtk.pm: in my_gtk object, set {isEmbedded} if embedded and {isWizard}
	if displayed wizard mode

	* Xconfig/monitor.pm (readMonitorsDB): now return a list instead of a hash
	to handle same name entries with different EISA_ID
	(configure_automatic): handle EISA_ID but no VertRefresh/HorizSync
	(happens for some hardware)
	(choose): handle user asking for "Plug'n Play" monitor and ddcxinfos
	failing

	* Xconfig/main.pm: replace "xxx => eval { }" with "xxx => scalar eval {}"

2002/08/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* modules.pm: typo fix spoted by Arpad Biro

	* standalone/drakbackup: s/progess/progress/ (Arpad Biro)

2002/08/19  alus

	* share/po/pl.po: one fix

2002/08/19  Christian Belisle  <cbelisle@mandrakesoft.com>

	* standalone/draksec: 
	  - draksec is now in his own package

2002/08/19  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/network.pm: o remove old /etc/hosts entries for the hostname
	before adding new one

2002/08/19  fcrozat

	* share/rpmsrate: Make sure nautilus-gtkhtml is installed by default for
	GNOME

2002/08/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ta.po: Added Tamil file

	* share/po/pt.po: updated Portuguese file

2002/08/19  Pixel  <pixel@mandrakesoft.com>

	* Makefile.config: remove dir security

	* proxy.pm: add $Id: ChangeLog,v 1.808 2003/03/13 18:59:05 prigaux Exp $

	* interactive/gtk.pm: use my_gtk {isWizard} and {isEmbedded} which are
	more accurate than
	$::isWizard && !$my_gtk::pop_it and $::isEmbedded && !$my_gtk::pop_it,
	since
	when the Plug is full, the window is not embedded.

	* install_any.pm (getAndSaveAutoInstallFloppy): ensure mount fail doesn't
	cause any pb

	* detect_devices.pm: add scsi Optical Device recognition (thanks to
	Michael Riss)
	(without this, a hard drive following the optical device gets assigned
	sda
	whereas sda is the optical device and the hard drive really is sdb)

	* fs.pm: fix checking the return value of fsck.jfs

	* my_gtk.pm: in my_gtk object, set {isEmbedded} if embedded and {isWizard}
	if displayed wizard mode

	* Xconfig/monitor.pm (readMonitorsDB): now return a list instead of a hash
	to handle same name entries with different EISA_ID
	(configure_automatic): handle EISA_ID but no VertRefresh/HorizSync
	(happens for some hardware)
	(choose): handle user asking for "Plug'n Play" monitor and ddcxinfos
	failing

	* Xconfig/main.pm: replace "xxx => eval { }" with "xxx => scalar eval {}"

2002/08/19  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: s/drakconnet/drakconnect/ (Thank you for adding this
	bug, Titi)

2002/08/19  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* modules.pm: add remove_modules

2002/08/18  alus

	* share/po/pl.po: updated translation

2002/08/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ca.po: updated Catalan file

	* share/po/id.po, share/po/da.po: updated Danish and Indonesian files

	* share/po/cs.po, share/po/hu.po: updated Czech and Hungarian files

2002/08/18  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: since lba32 is the default in lilo.conf
	  - write "geometric" when lba32 is not set
	  - don't write lba32 (useless)

2002/08/18  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Fixed HP multi-function device
	configuration during the installation:
	  - Fixed mistyped package name for "mtoolsfm"
	 - Set links for photo card reader auto-detection to work

2002/08/17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/ru.po, share/po/gl.po, share/po/pt_BR.po,
	share/po/br.po, share/po/th.po, share/po/no.po, share/po/et.po,
	share/po/ja.po, share/po/hr.po, share/po/tr.po, share/po/mt.po,
	share/po/ga.po, share/po/be.po, share/po/uk.po, share/po/ko.po,
	share/po/pl.po, share/po/fi.po, share/po/lt.po, share/po/cy.po,
	share/po/ca.po, share/po/da.po, share/po/ar.po, share/po/bs.po,
	share/po/ro.po, share/po/wa.po, share/po/is.po, share/po/af.po,
	share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/vi.po, share/po/fr.po, share/po/it.po, share/po/nl.po,
	share/po/eu.po, share/po/es.po, share/po/de.po, share/po/eo.po,
	share/po/el.po, share/po/cs.po, share/po/bg.po, share/po/lv.po,
	share/po/hu.po: updated po files

2002/08/17  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/card.pm: 
	  - allow to change the detected card
	  - the chosen card can be used for dualhead if it is dualhead

	* Xconfig/resolution_and_depth.pm: sort resolutions to default to
	1280x1024 instead of 1280x960
	if the monitor size is not given, default to 14'

	* any.pm (devfssymlinkf): use "mksymlink" instead of "symlink" so that
	devfsd doesn't give an error when the symlink already exists

	* Xconfig/proprietary.pm: 
	  - fix module not returning true
	  - don't install_matrox_hal when testing

	* Xconfig/main.pm: ensure the chosen resolution is maintained unchanged
	when changing the graphic
	card or monitor.

2002/08/17  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Fixes to make it possible toinstall HP's multi-function
	devices during installation.

	* scanner.pm: Let a newline character be put after the entry in
	/etc/sane.d/dll.conf, so more than one driver name can be added
	without all of them going into one line and then being unreadable.

2002/08/16  alus

	* share/po/pl.po: updated

2002/08/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/sl.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/sk.po: updated Slovak file

	* share/po/da.po, share/po/ko.po: updated Danish and Korean files

2002/08/16  Pixel  <pixel@mandrakesoft.com>

	* any.pm: fix "Security Administrator (login or email)" missing field

	* interactive/newt.pm: fix dialog box with empty buttons (thanks to
	Hamster <hamster@hamsternet.org>)

	* Xconfig/test.pm: raise the testing time from 8 to 12 seconds

	* my_gtk.pm (create_okcancel): do not display "Cancel" when {cancel} is
	empty string

	* bootloader.pm (add_entry): new entry will now keep its label, the
	conflicting one will be renamed "old_xxx" (and not the opposite)

	* diskdrake/interactive.pm: limit max size of loopback to 2GB on FAT

2002/08/16  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: insert a space between "field:" and "description"

	* harddrake/v4l.pm, harddrake/bttv.pm, standalone/drakxtv,
	install_steps_interactive.pm: 
	  - harddrake::bttv is renamed harddrake::v4l
	  - harddrake::v4l handle saa7134 too now (and not only bttv)
	  - harddrake::v4l::config need a new driver parameter in order to be
	able to offer the right cards and tuners list
	  - drakxtv: kill some old comments
	  - add the list of cards supported by saa7134
	  - add a not to remember a potentiel speedup

2002/08/15  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - add --incident : could be used by signal catcher to launch drakbug
	when app crash

	* standalone/drakautoinst: 
	  - explanations

2002/08/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/da.po, share/po/DrakX.pot, share/po/fr.po,
	share/po/fi.po, share/po/de.po: updated Danish and Hungarian files

	* share/po/zh_CN.po, share/po/gl.po, share/po/ga.po: updated Chinese file

	* share/po/hu.po: updated Chinese and hungarian files
	updated Danish and Hungarian files

	* share/po/zh_TW.po: updated Chinese and hungarian files
	updated Chinese file

2002/08/15  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: Allow non-root user to use program with personal
	config.
	Finish multisession support.
	Fix various crash scenarios in GUI in restore mode.
	Fix user restore mode to restore only what is requested.
	View archive contents before restore, user & sys mode.
	Add explanation of config file options for non-X users.

2002/08/14  alus

	* share/po/pl.po: updated translation

2002/08/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ca.po, share/po/da.po: updated Catalan, Danish and Turkish
	files
	updated some po files

	* share/po/et.po, share/po/eu.po, share/po/es.po, share/po/eo.po,
	share/po/el.po: updated Vietnamese file

	* share/po/id.po, share/po/no.po, share/po/ja.po, share/po/hr.po,
	share/po/mt.po, share/po/ko.po, share/po/DrakX.pot, share/po/lt.po,
	share/po/cy.po, share/po/ar.po, share/po/wa.po, share/po/is.po,
	share/po/af.po, share/po/az.po, share/po/zh_TW.po, share/po/zh_CN.po,
	share/po/it.po, share/po/nl.po, share/po/de.po, share/po/cs.po,
	share/po/lv.po, share/po/hu.po: updated some po files

	* share/po/sp.po: Updated Slovak file
	updated some po files

	* share/po/vi.po: updated Vietnamese file
	updated some po files

	* share/po/th.po, share/po/tr.po: updated Catalan, Danish and Turkish
	files

	* share/po/ru.po, share/po/pt_BR.po, share/po/ro.po, share/po/pt.po:
	updated po files

	* share/po/sk.po, share/po/br.po, share/po/sl.po, share/po/be.po,
	share/po/uk.po, share/po/sv.po, share/po/sr.po, share/po/bs.po,
	share/po/bg.po: Updated Slovak file

2002/08/14  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: reduce the width of install window

	* bootloader.pm: fix "You can't install the bootloader on a xfs partition"
	happening in weird cases (thanks to Alan Hughes)

	* standalone/diskdrake: disable embedding of WebDAV configuration since it
	is broken
	$all_hds->{hds} must be filled in any case, not only in --hd

2002/08/14  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: undo advanced_what_user I broke perl_checking
	multisession CD support

2002/08/14  Warly  <warly@mandrakesoft.com>

	* share/compssUsers.server: add LSB group

2002/08/13  alus

	* share/po/pl.po: 2 strings overlapped each other

2002/08/13  Pixel  <pixel@mandrakesoft.com>

	* network/dav.pm: nothing useful for the moment
	use ensure_is_installed

	* interactive/gtk.pm: handle the setting of 'ok' and 'cancel'

	* diskdrake/dav.pm: add checking davfs is installed
	rough WebDAV gui

	* standalone.pm: add ensure_is_installed (which was
	network::smbnfs::check_raw and is often useful)

	* standalone/diskdrake, diskdrake/interactive.pm: rough WebDAV gui

	* network/smbnfs.pm, network/smb.pm, network/nfs.pm: use
	ensure_is_installed

2002/08/13  siegel

	* share/po/de.po: updates

2002/08/13  alus

	* share/po/pl.po: 2 strings overlapped each other
	updated translation

2002/08/13  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed stupid typo.
	allow selecting a choice package according to locales-xx found.

	* crypto.pm: added a true value.

	* share/rpmsrate: removed duplicate aspell-xx as DrakX will take care of
	them now.

2002/08/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/gen_locales.sh: corrected erros that made the script fail

	* share/po/eu.po, share/po/es.po, share/po/DrakX.pot, share/po/ru.po,
	share/po/ro.po, share/po/pl.po, share/po/gl.po, share/po/fi.po,
	share/po/pt_BR.po, share/po/et.po, share/po/zh_TW.po, share/po/eo.po,
	share/po/pt.po, share/po/el.po, share/po/fr.po, share/po/ga.po: updated
	Portuguese and Chinese files

	* share/po/zh_CN.po: updated Chinese file
	updated Portuguese and Chinese files

2002/08/13  Pixel  <pixel@mandrakesoft.com>

	* drakxtools.spec: require latest perl-MDK-Common

	* interactive.pm: remove completly setting 'ok' & 'cancel' since it's
	better done per
	interactive::* to handle correctly the Wizard mode
	button "Previous" and "Next" are not only there in interactive::gtk

	* standalone.pm: add ensure_is_installed (which was
	network::smbnfs::check_raw and is often useful)

	* fsedit.pm, fs.pm: backend davfs (WebDAV) support

	* interactive/gtk.pm: handle the setting of 'ok' and 'cancel'

	* interactive/http.pm, interactive/stdio.pm, interactive/newt.pm: 
	  - handle setting 'ok' && 'cancel'
	  - handle isWizard in newt (basic handling)

	* diskdrake/dav.pm: add checking davfs is installed
	rough WebDAV gui

	* Xconfig/main.pm (export_to_install_X): if monitor is p'n'p, don't save
	it for auto_install

	* network/dav.pm: nothing useful for the moment
	use ensure_is_installed
	backend davfs (WebDAV) support

	* standalone/diskdrake: rough WebDAV gui

	* network/smbnfs.pm, network/smb.pm, network/nfs.pm: use
	ensure_is_installed

	* diskdrake/interactive.pm: rough WebDAV gui
	backend davfs (WebDAV) support

2002/08/13  siegel

	* share/po/de.po: updates

2002/08/13  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: harddrake-ui doesn't have to provides kudzu

	* standalone/drakxtv: add "Australian Optus cable TV" support (need xawtv
	<= 3.76)

	* standalone/service_harddrake: check the config file isn't empty

2002/08/12  alus

	* share/po/pl.po: spell checking
	updated translation

2002/08/12  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: allow removing packages on upgrade.

	* pkgs.pm: fixed stupid change (almost hope it was really changes).
	fix to reduce size of already installed packages.

	* install_steps_interactive.pm: synced to force calling
	selectPackagesAlreadyInstalled in order to have
	installed and upgrade computed (necessary to known if a package is
	already
	installed or will be upgradable to compute size more precisely).

2002/08/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po, share/po/et.po, share/po/zh_TW.po, share/po/vi.po,
	share/po/eu.po, share/po/uk.po, share/po/es.po, share/po/eo.po,
	share/po/el.po: updated po files

	* share/po/zh_CN.po: updated Chinese file
	updated po files

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2, share/Makefile:
	locale name <-> charset correspondances better matching what DrakX uses

	* share/po/bs.po, share/po/br.po, share/po/be.po, share/po/cy.po,
	share/po/ca.po, share/po/cs.po, share/po/bg.po: updated Chinese file

2002/08/12  Pixel  <pixel@mandrakesoft.com>

	* standalone.pm: 
	  - add setExportedVarsInSh and setExportedVarsInCsh
	  - remove setVarsInCsh (obsoleted by setExportedVarsInCsh)

	* bootloader.pm: fix typo

	* interactive.pm: don't switch to 2 buttons dialog box if the labels are
	too long in ask_from_list
	(otherwise it's ugly (reported for XFdrake multi-head choice with 67 &
	58
	chars strings) (fix bug #62)

	* Xconfig/xfreeX.pm: create a backup of XF86Config (XF86Config.old)

	* any.pm: use setExportedVarsInSh for setting /etc/profile.d/proxy.sh so
	that http_proxy
	and ftp_proxy are exported (thanks to Pascal <pascal@vmfacility.fr>)

	* keyboard.pm, network/network.pm, install_steps.pm: 
	  - fix reading previous keyboard config on upgrade (for displaying in
	summary)
	  - ensure keyboard and mouse configuration are not overwritten if not
	explictly modified on upgrade
	  - propagate pci=xxx at install to bootloader (since "pci=bios,biosirq"
	is needed on some box, see http://islay.dyndns.org/taz/index.html for
	more)

	* proxy.pm: allow ftp_proxy beginning with http: (thanks to Christophe
	Combelles)

	* install2.pm: 
	  - fix reading previous keyboard config on upgrade (for displaying in
	summary)
	  - ensure keyboard and mouse configuration are not overwritten if not
	explictly modified on upgrade
	  - propagate pci=xxx at install to bootloader (since "pci=bios,biosirq"
	is needed on some box, see http://islay.dyndns.org/taz/index.html for
	more)
	use $::prefix

	* mouse.pm, Xconfig/default.pm: use $::prefix

	* bootlook.pm: fix embedding

2002/08/12  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* ugtk.pm: consolidate create_factory_menu
	  - ugtk::gtkexpand : new function
	  - harddrake::ui : uses it
	write_on_pixmap: kill unused variable
	tree_set_icon: new function
	create_okcancel isn't in ugtk so don't export it (warning fix)

	* harddrake/ui.pm: print fields values in blue, paint unknown module in
	red
	consolidate create_factory_menu
	  - on exit, kill the running configurator if any
	  - modules::get_parameters : consolidate some code
	  - harddrake::ui : uses it
	  - ugtk::gtkexpand : new function
	  - harddrake::ui : uses it
	  - perl_checker fix
	  - simplifications
	  - put signals ids in %IDs
	  - consolidate duplicated disconnection code into disconnect
	tree_set_icon: new function

	* modules.pm: 
	  - modules::get_parameters : consolidate some code
	  - harddrake::ui : uses it

	* scanner.pm: update TODO list

	* harddrake/TODO: 
	  - on exit, kill the running configurator if any

2002/08/12  Warly  <warly@mandrakesoft.com>

	* share/compssUsers: update LSB text

	* share/logo-mandrake.png: logo for beta 3

	* share/rpmsrate: remove useless 2 GNOME

2002/08/11  alus

	* share/po/pl.po: updated

2002/08/11  Pixel  <pixel@mandrakesoft.com>

	* partition_table/raw.pm: add Acronis bootloader magic

	* share/rpmsrate: adding aspell-LANGS before evolution to workaround the
	choices limitation (=> allow to choose the right aspell-LANG)

	* docs/comparisons: comprehensive feature-to-feature comparison with
	redhat 8.0

	* diskdrake/interactive.pm: allow to enter any mount point even in
	non-expert (why was it still the other way??)

	* drakxtools.spec: add "PreReq: rpm-helper" in drakxtools-http as advised
	by rpmlint

	* bootloader.pm: 
	  - compare_entries is now called same_entries
	  - same_entries try hard to return true even if the files not the same
	but symlinks to the same file
	  - rework add_entry (it handles weird case which used to give old_linux
	and old2_linux even if they are the same)
	  - ensure the old failsafe entry doesn't give any old_failsafe

2002/08/11  alus

	* share/po/pl.po: updated

2002/08/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/sv.po, share/po/sr.po, share/po/sk.po,
	share/po/sp.po, share/po/af.po, share/po/sl.po, share/po/az.po,
	share/po/hr.po, share/po/ar.po, share/po/hu.po: updated some po files

	* share/po/th.po, share/po/tr.po: updated Turkish file

2002/08/11  Pixel  <pixel@mandrakesoft.com>

	* lvm.pm: 
	  - vg_add: do not vgremove the old_name anymore, this is dangerous and
	should not happen
	  - lv_create: fix bug when {primary}{normal} didn't exist
	  - use run_program::get_stdout instead of ``
	  - create and use run() and run_or_die() which takes care of running
	vgscan again when needed
	  - rename LVMname to VG_name

	* diskdrake/interactive.pm: allow to enter any mount point even in
	non-expert (why was it still the other way??)
	rename LVMname to VG_name

	* detect_devices.pm (floppies): module "floppy" can fail to insmod, in
	that case it means
	there's no floppy controller, so don't try fd0 & fd1 which may cause
	havoc
	(esp. segfault) (thanks to rcc)

	* share/rpmsrate: adding aspell-LANGS before evolution to workaround the
	choices limitation (=> allow to choose the right aspell-LANG)

	* docs/comparisons: comprehensive feature-to-feature comparison with
	redhat 8.0

	* diskdrake/hd_gtk.pm, partition_table.pm: rename LVMname to VG_name

	* fsedit.pm: get rid of the duplicated /tmp in for suggestions_mntpoint()
	(thanks to Amaury)
	  - rename LVMname to VG_name
	  - part2hd: allow rootDevice to be a VG_name
	  - add auto_allocate_vgs
	cleanup

	* fs.pm (prepare_write_fstab): no need to read the fstab once again before
	writing since reading takes care of everything, including unknown
	entries (which go to {special}). This fixes a bug when removing existing
	partition with associated mount point. It used to keep the entry in
	fstab, which is wrong (as reported by andré <naderrt@wanadoo.fr>)

	* modules.pm (load): when isStandalone, ignore errors when loading
	unavailable modules (ie have the same behaviour as during install)

	* run_program.pm: add get_stdout (similar to rooted_get_stdout)

	* bootloader.pm: 
	  - compare_entries is now called same_entries
	  - same_entries try hard to return true even if the files not the same
	but symlinks to the same file
	  - rework add_entry (it handles weird case which used to give old_linux
	and old2_linux even if they are the same)
	  - ensure the old failsafe entry doesn't give any old_failsafe

	* network/smb.pm: fix yet another bug regarding credentials during install

	* install_steps_auto_install.pm: nice message when rebootNeeded in
	auto_install (otherwise it reboots without prompting)

2002/08/11  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Setup of HP MF devices on parallel port did
	not work. Fixed.
	Allow setup of MF device if device file name "/dev/printer/<number>" was
	entered.
	If auto-detection of model name fails, ask user always whether he has an
	MF device.
	If SNMP or local auto-detection fails but HPOJ auto-detection succeeds,
	use model name found by HPOJ.

2002/08/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/vi.po, share/po/sv.po: updated po file

2002/08/10  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm: 
	  - fix computing the minimal size for reiserfs resizing
	  - use run_program::run instead of system for calling resizing tools

	* install_any.pm: workaround perl bug another way

2002/08/10  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: GUI fixes, scp, rsync, webDAV, CD, tape support.
	Consolidate all net methods into one configure screen.
	Daemon mode, email fixed. Ran perl_checker and corrected.
	GUI feedback during various backup modes and result report.
	CD/Tape drive/media detection. Start to look at cataloging
	runs for locating restore media.

2002/08/10  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: Removed HP multi-function device configuration from SMB
	and remote LPD printer setup.
	Let the Sony IJP-V100 being treated as an HP multi-function device.
	Taken into account that the HP PhotoSmart 7150 has no photo card reader.
	Use any::get_secure_level() instead of printer::get_security_level().

	* detect_devices.pm: Scanning network for printers did not work during
	installation. Fixed.

	* printer.pm: Use any::get_secure_level() instead of
	printer::get_security_level().

2002/08/09  fcrozat

	* share/rpmsrate: No longer requires metacity-setup (everything can be
	done using gnome-control-center)
	Ensure we install enough GNOME packages when selection GNOME

2002/08/09  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: make sure size of packages is computed.

	* pkgs.pm: take care of packages already installed that will be removed
	(untested).

	* install_any.pm: fixed loadO when getFile is not used (local files).

	* interactive.pm: allow cancel button even for wizard.

	* install_steps_interactive.pm: small update to avoid side effect of bless
	to HASH even if nothing results from
	this.

2002/08/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po: updated Czech file

	* share/po/pt.po: updated Portuguese file

	* share/po/id.po, share/po/fr.po: updated French and Indonesian files

2002/08/09  Pixel  <pixel@mandrakesoft.com>

	* share/keyboards.tar.bz2: fix rights on files

	* tools/make_mdkinst_stage2, share/list.i386, install_any.pm: add fsck.jfs

	* any.pm, modparm.pm, harddrake/ui.pm: 
	  - fix module parameter dialog box handling
	  - enable the cancel on load_module__ask_options

	* bootloader.pm (mkinitrd): when an initrd is already there, it means an
	initrd is needed
	not the contrary (thanks to Damon Lynch for his test)

	* install_steps.pm: remove previous report.bug.gz (otherwise one get a
	report.bug *and* the previous report.bug.gz)
	(report.bug's are not rotated, ddebug.log's and install.log's are)

2002/08/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* modparm.pm: no need anymore to pass extra arguments for harddrake::ui

	* Xconfig/various.pm: perl_checker fixes

	* harddrake/TODO: module parameters're now read from /etc/modules.conf
	before being
	altered

	* harddrake/bttv.pm: resync with bttv-0.7.95, add support for :
	  - tv cards:
	o Hauppauge WinTV PVR
	  o Leadtek|WinFast VC 100
	  - tv tuners:
	  o LG NTSC (newer TAPC series)

	* drakxtools.spec: harddrake changes

	* modules.pm: mergein_conf: return options if they're set

	* harddrake/ui.pm: 
	  - module configuration window:
	o read current options
		o don't display ranges, we cannot really know when a range is
	       needed and so display them in wrong cases (kill code, enable us
	       to simplify modparm::parameters after
		o read & parse modules.conf only when configuring the module, not
	       on each click in the tree
		o move up "require module" since we use it above
		o use get_options accessor instead of direct $conf access
		o split the options string into a hash{option => value}
		o don't call several times interactive->vnew
		o fix busy cursor on window exit because of the previous change

2002/08/08  alus

	* share/po/pl.po: various changes

2002/08/08  Pixel  <pixel@mandrakesoft.com>

	* services.pm (services): better sorting of services

2002/08/08  alus

	* share/po/pl.po: various changes
	corrected errors

2002/08/08  François Pons  <fpons@mandrakesoft.com>

	* fs.pm: make sure fsck is called for ext3 partition (due to possible
	kernel panic on
	corrupted ext3 partition, even after mounting ext3, umounting and
	remounting
	ext2).

2002/08/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/keyboards.tar.bz2, keyboard.pm: Added Tamils TSCII keyboard

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/de.po,
	share/po/eo.po, share/po/lv.po, share/po/cs.po, share/po/bg.po,
	share/po/el.po, share/po/hu.po: updated pot file

	* lang.pm: Added Tamils TSCII keyboard
	Added some support for Tamil (proper KDE default fonts, and define it
	as iso8859-1 encoding for kde)

	* share/po/es.po: updated pot file
	updated Spanish file

2002/08/08  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: 
	  - remove the icons in reallyChooseGroups
	  - add the LSB group
	  - remove buttons to change theme
	  - add F5 to change the theme to the 'white' theme
	  - cleanup the theme code
	workaround a weird pb with gtk: still re-creating help Gtk::Text at each
	step :-/
	  - remove the "help" button
	  - ensure the help box is not created twice (except when changing
	theme)

	* Xconfig/xfreeX.pm (set_resolution): handle the optional $resolution->{Y}
	(@resolutions): add 1280x960
	fix typo
	replace 1152x768 with 1152x864 as it should and used to be

	* install_steps.pm: don't add users in group usb (unneeded (?), anyway
	doesn't do anything since group usb doesn't exist currently)

	* install2.pm: 
	  - remove buttons to change theme
	  - add F5 to change the theme to the 'white' theme
	  - cleanup the theme code

	* services.pm (services): better sorting of services

	* install_any.pm, timezone.pm: use $::prefix in timezone::read
	timezone::read now returns a hash

	* install_gtk.pm: 
	  - remove buttons to change theme
	  - add F5 to change the theme to the 'white' theme
	  - cleanup the theme code
	workaround a weird pb with gtk: still re-creating help Gtk::Text at each
	step :-/
	  - remove the "help" button
	  - ensure the help box is not created twice (except when changing
	theme)

	* Xconfig/various.pm (tvout): rough default value for PAL vs NTSC
	(configure_FB_TVOUT): add ModeLines (Florent Beranger says it displays
	better with them)

	* any.pm: 
	  - write_passwd_user: ensure {pw} is set (at least '')
	  - cleanup dead code
	(ask_window_manager_to_logout): adapt to new gnome
	sort security level descriptions

	* my_gtk.pm: do not hard code icon path
	  - remove buttons to change theme
	  - add F5 to change the theme to the 'white' theme
	  - cleanup the theme code

	* Xconfig/card.pm, Xconfig/monitor.pm, Xconfig/main.pm: when prompting for
	VideoRam, default to the value obtained via DDC

	* Xconfig/resolution_and_depth.pm: handle the pb of resolutions where X
	doesn't imply Y (eg: 1280x1024 and 1280x960)

	* standalone/adduserdrake: 
	  - fix detecting use of MD5 and shadow passwords
	  - cosmetic move of any::addUsers

2002/08/08  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_any.pm, install_steps_interactive.pm: Windows PDC -> Windows
	Domain, don't make samba dirs - samba fixed now

2002/08/08  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* scanner.pm: old hp scanners report themselves as "Processor"s as :
	  - tested in hw lab
	  - written in linux/include/scsi/scsi.h: "TYPE_PROCESSOR.*HP scanners
	use this"
	  - reported by sane-find-sane: "old HP scanners use the CPU id"

	* detect_devices.pm: explain the fscking "Processor" need
	old hp scanners report themselves as "Processor"s as :
	  - tested in hw lab
	  - written in linux/include/scsi/scsi.h: "TYPE_PROCESSOR.*HP scanners
	use this"
	  - reported by sane-find-sane: "old HP scanners use the CPU id"

2002/08/07  Christian Belisle  <cbelisle@mandrakesoft.com>

	* security/shorewall.pm: shorewall-related functions will go here.

2002/08/07  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: added automatic update of lilo image and KDE & GNOME
	background.

	* install2.pm: allow automatic oem patch. add log if successfull patching.

	* install_steps_interactive.pm: do not ask user to select ignored medium.

	* crypto.pm: allow patching of mirror used.

	* pkgs.pm: call rpmReadConfigFiles before installing packages.
	do not read package of ignored medium (contrib) to save memory.

	* install_any.pm: getAndSaveFile now return before writing zero-length
	file if input file doesn't
	exists on invocation.

2002/08/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/vi.po: updated Vietnamese file

2002/08/07  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/card.pm: load glx in any case (well except for nvidia
	proprietary shit)

	* fs.pm: "LABEL=xxx" in fstab handling

	* bootlook.pm: replace glob() with all()

	* network/netconnect.pm (get_profiles): get rid of "glob", clean it up

2002/08/06  alus

	* share/po/pl.po: updated translation

2002/08/06  Daouda Lo  <daouda@mandrakesoft.com>

	* network/tools.pm: 
	  - set the vpi vci correctly according to selected country.

2002/08/06  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: added log to follow dead lock to check what may cause it).

2002/08/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/cvslog2changelog.pl: add warly,jgotti

2002/08/06  Jonathan Gotti  <jgotti@mandrakesoft.com>

	* bootlook.pm: add standalone::explanations for bootsplash configuration

2002/08/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/rpmsrate: Increased the level of "yudit"; it's one of the editors
	with best utf-8
	support, so very useful to have.

	* share/po/fr.po, share/po/wa.po: updated French and Walloon files
	Put _() around two strings in security level choosing

	* share/po/DrakX.pot: updated French and Walloon files

	* any.pm, share/po/pl.po: Put _() around two strings in security level
	choosing

2002/08/06  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/xfree3.pm, Xconfig/xfreeX.pm, Xconfig/xfree4.pm,
	Xconfig/parse.pm: make wacom config work

	* bootloader.pm (get_kernels_and_labels): only take kernels for which we
	have the corresponding /lib/modules/VERSION (otherwise mkinitrd will
	fail)

	* run_program.pm (raw): new function allowing special options like
	{timeout}

	* fsedit.pm: 
	  - add /tmp in %suggestions for server partitioning
	  - tweak some ratio's in %suggestions

	* any.pm (ddcxinfos): use the new run_program::raw with a 20s timeout to
	workaround ddcxinfos going wild using 100% system CPU

	* detect_devices.pm, my_gtk.pm, install_any.pm: make perl_checker happy

	* standalone.pm: add "use run_program" as needed

2002/08/06  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: typo, change /etc/exports explanation in help

2002/08/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: make perl_checker happier :-)
	  - dont detect undef devices
	detect modem too
	  - rename scanner::findScannerUsbport  as scanner::detect
	as in mouse.pm
	  - scanner::detect : detect SCSI scanners too

	* drakxtools.spec: log changes

	* network/modem.pm: nobody pass the second argument of
	network::modem::modem_detect_backend() so let simplify it

	* standalone/scannerdrake: 
	  - rename scanner::findScannerUsbport  as scanner::detect
	as in mouse.pm
	  - scanner::detect : detect SCSI scanners too

	* ugtk.pm: remove old references to rectangle drawing around mcc icons

	* scanner.pm: make perl_checker happier :-)
	  - dont detect undef devices
	  - rename scanner::findScannerUsbport  as scanner::detect
	as in mouse.pm
	  - scanner::detect : detect SCSI scanners too

2002/08/05  Pixel  <pixel@mandrakesoft.com>

	* share/list: switch to thread-multi

	* any.pm, mouse.pm: do the job of devfsd in case devfsd doesn't do it

	* drakxtools.spec: rebuild for perl thread-multi

	* rescue/list.sparc, rescue/list.x86_64, rescue/list.i386,
	rescue/list.ia64, rescue/list, rescue/list.alpha, rescue/list.ppc: 
	  - adapt to thread-multi
	  - packdrake.pm is now out of arch dir

2002/08/05  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_any.pm: smbpasswd call deferred with addToBeDone

2002/08/05  alus

	* share/po/pl.po: removed unused strings
	updated translation, ugh... after second beta so much changes??

2002/08/05  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/logdrake: 
	  - do not show empty wizard when save button clicked.
	  - cleanup (remove all sms stuffs: code and labels)
	  - do not expand mail address

2002/08/05  gbeauchesne

	* Makefile: lib64 fixes
	  - Move xf86Wacom.so modules to {i386,ppc}-specific filelist
	  - Make filelists lib64 aware with LIB variable
	  - Add x86_64-specific filelist

	* share/list.i386, Makefile.config, share/list, share/list.x86_64,
	share/list.ppc: 
	  - Move xf86Wacom.so modules to {i386,ppc}-specific filelist
	  - Make filelists lib64 aware with LIB variable
	  - Add x86_64-specific filelist

2002/08/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* drakxtools.spec: 1.1.9-5mdk
	1.1.9-4mdk

	* my_gtk.pm: the state can be XXX also in flat mode, for disabling
	the setting of the state

2002/08/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/ko.po, share/po/DrakX.pot, share/po/sr.po, share/po/pl.po,
	share/po/fi.po, share/po/lt.po, share/po/cy.po, share/po/ca.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/vi.po, share/po/fr.po, share/po/it.po,
	share/po/nl.po, share/po/eu.po, share/po/es.po, share/po/de.po,
	share/po/eo.po, share/po/el.po, share/po/cs.po, share/po/bg.po,
	share/po/lv.po: updated pot file

	* share/po/sv.po, share/po/da.po, share/po/hu.po: updated pot file
	updated po files

	* share/po/tr.po, share/po/pt.po: updated po files
	updated pot file

2002/08/05  Pixel  <pixel@mandrakesoft.com>

	* tools/Makefile: packdrake.pm is now in vendorlib

	* commands.pm: make perl_checker happy

	* bootlook.pm, standalone/printerdrake, standalone/draksec,
	standalone/drakfloppy, standalone/drakxservices, standalone/drakfont,
	standalone/drakautoinst, my_gtk.pm, standalone/drakconnect,
	standalone/drakgw, standalone/XFdrake, standalone/tinyfirewall,
	standalone/keyboarddrake, standalone/drakTermServ,
	standalone/mousedrake, standalone/scannerdrake: replace "kill USR1" with
	"kill 'USR1'" (and same for USR2)
	(so that 'use strict' works)

	* drakxtools.spec: rebuild for perl thread-multi

	* diskdrake/smbnfs_gtk.pm: adapt to ugtk

	* standalone.pm (install): verify at least one package is not installed
	before displaying a
	wait_message and calling urpmi (thanks to Jure Repinc)
	(is_installed): use run_program and redirect stdout to dave null for
	cleanness

	* Xconfig/card.pm: fix Option's (especially for XFree3)
	don't have Utah GLX the default. XFree4 is the default

	* share/list: switch to thread-multi
	packdrake.pm is now in vendorlib

	* Xconfig/main.pm: call the "Quit" button exit during install (as
	suggested by David Sansome)

	* any.pm, mouse.pm: do the job of devfsd in case devfsd doesn't do it

	* install_steps_interactive.pm: as suggested by Buchan Milne, defaults
	LDAP Server to ldap.DOMAINNAME

	* Xconfig/xfree4.pm: still have HorizSync and VertRefresh for Plug'n Play
	monitors
	(XFree4 still need some help)

	* standalone/drakboot: replace "kill USR1" with "kill 'USR1'" (and same
	for USR2)
	(so that 'use strict' works)
	a few more fixes (thanks Jure Repinc & Richard Burt)

2002/08/05  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_any.pm: smbpasswd call deferred with addToBeDone

2002/08/05  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: Make/Model/Driver list in expert mode: Fixed bug of
	"recommended" driver entries getting a duplicate entry without
	"recommended" when entering the list via double-click on existing queue
	/ "Printer manufacturer, model, driver".
	Finished auto-detection of network and SMB printers.
	Added automatic configuration of HP's multi-function devices when
	connected via HP JetDirect (network).

	* printer.pm: Finished auto-detection of network and SMB printers.
	Added automatic configuration of HP's multi-function devices when
	connected via HP JetDirect (network).

2002/08/05  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* modules.pm: 
	  - export %modules::conf
	  - kill modparm::raw_parameters and modparm::parameter_type
	which get merged back in modparm::parameters
	  - add more parameters to modparm::parameters for harddrake
	 harddrake/ui.pm |   19 ++++++++++---------
	 modparm.pm      |   33 +++++++++------------------------
	   2 files changed, 19 insertions(+), 33 deletions(-)

	* install_steps_gtk.pm, network/network.pm, log.pm, install_steps.pm,
	interactive.pm, bootloader.pm, harddrake/data.pm, steps.pm,
	install_steps_interactive.pm, keyboard.pm, printer.pm, lang.pm,
	fsedit.pm, install2.pm, detect_devices.pm, common.pm, commands.pm:
	s/__END__/1;
	kill "wonderful perl"

	* harddrake/ui.pm: 
	  - export %modules::conf
	  - kill modparm::raw_parameters and modparm::parameter_type
	which get merged back in modparm::parameters
	  - add more parameters to modparm::parameters for harddrake
	 harddrake/ui.pm |   19 ++++++++++---------
	 modparm.pm      |   33 +++++++++------------------------
	   2 files changed, 19 insertions(+), 33 deletions(-)
	no one use second paramater of raw_parameters
	factorize some code in modparm::parameter_type
	s/__END__/1;

	* modparm.pm: 
	  - export %modules::conf
	  - kill modparm::raw_parameters and modparm::parameter_type
	which get merged back in modparm::parameters
	  - add more parameters to modparm::parameters for harddrake
	 harddrake/ui.pm |   19 ++++++++++---------
	 modparm.pm      |   33 +++++++++------------------------
	   2 files changed, 19 insertions(+), 33 deletions(-)
	no one use second paramater of raw_parameters
	factorize some code in modparm::parameter_type

	* standalone/service_harddrake.sh: english fixes

	* standalone/logdrake, scanner.pm, standalone/drakautoinst,
	standalone/drakgw, standalone/scannerdrake: kill $Log (487 useless lines
	supressed from drakxtools)

2002/08/04  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_any.pm, install_steps_interactive.pm: partial rework of Windows
	PDC authentication, still need
	to run smbpasswd after network is up

2002/08/04  Till Kamppeter  <till@mandrakesoft.com>

	* detect_devices.pm, printerdrake.pm: Accelerated network scanning for
	printers by applying "nmap" only to machines which answered to a
	broadcast ping before.
	Completed network/SMB printer auto-detection for recommended mode.
	Started network/SMB printer auto-detection for expert mode.

2002/08/02  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/logdrake: 
	  - expand $email in cron script
	  - disable sms alerts (free sms site too complicated to
	handle). Postponed
	  - mail service should work now
	  - clean up code
	  - give the correct right to cron file to work correctly
	  - fix titi mess

	* standalone/drakbug: 
	  - avoiding looping indefinitalely when selecting items in combo
	  - add commandline arguments: drakbug --report name_app

2002/08/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive/gtk.pm, my_gtk.pm: move interactive::gtk::exit to
	my_gtk::exit so that my_gtk
	apps can call it (and fix busy mouse cursor problem that way)

2002/08/02  jgotti

	* standalone/drakboot: minor bugfix in calling bootloader::read

2002/08/02  Pixel  <pixel@mandrakesoft.com>

	* drakxtools.spec: keyboarddrake now handles choosing toggle key
	(XkbOptions)

2002/08/02  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Corrected strings for printer queue list in main window.

2002/08/02  warly

	* share/rpmsrate, share/compssUsers: add lsb group

2002/08/01  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: drop keyboard unsafe when not unsafe
	anymore
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE

	* Xconfig/various.pm: finish tvout configuration

	* any.pm, Xconfig/xfreeX.pm, standalone/keyboarddrake, install2.pm,
	install_steps.pm, Xconfig/parse.pm, Xconfig/default.pm, commands.pm,
	printerdrake.pm: 
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE

	* bootloader.pm (duplicate_kernel_entry): added

	* keyboard.pm: don't have "unsafe" in /etc/sysconfig/keyboard
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE

2002/08/01  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: Added stuff for scanning network for SMB printer
	shares.

	* detect_devices.pm: Added facility to scan network for SMB/Windows-hosted
	printers.

2002/08/01  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Makefile.config, drakxtools.spec: drakconf is dead

	* harddrake/ui.pm, harddrake/TODO: update

2002/08/01  warly

	* share/logo-mandrake.png: new logo for beta 2

2002/08/01  alus

	* share/po/pl.po: updated translation

2002/08/01  dam's <dams@idm.fr>

	* ugtk.pm: removed fonctions typage

2002/08/01  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/netconnect.pm, network/adsl.pm: 
	  - First ECI adsl support step

2002/08/01  gbeauchesne

	* rescue/make_rescue_img: While stripping libraries, note that we may need
	to have both /lib and
	/lib64 on biarch systems.
	  - MDK::Common'ize for arch() support
	  - Don't grab /lib/i686/ libraries
	  - Update list to use LIB which expands to either lib64 or lib

	* rescue/list.x86_64: Add x86_64-specific filelist

	* docs/HACKING: Add /bin/mknod to command list of sudoers

	* mdk-stage1/disk.c: Add missing includes, <string.h> for bzero()

	* rescue/list: 
	  - MDK::Common'ize for arch() support
	  - Don't grab /lib/i686/ libraries
	  - Update list to use LIB which expands to either lib64 or lib

2002/08/01  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/base.png, share/selected.png, share/rpm-semiselected.png,
	share/rpm-installed.png, share/rpm-unselected.png, share/installed.png,
	share/rpm-base.png, share/semiselected.png, share/unselected.png,
	share/rpm-selected.png: change some png files names according to
	simplification of
	gtkcreate_png call of new my_gtk.pm

	* drakxtools.spec, ugtk.pm, my_gtk.pm: commit according to 1.1.9-1mdk of
	drakxtools, and especially:
	  - integrate patches in my_gtk and ugtk for new rpmdrake:
	  - [ugtk] add "gtkentry" so that we can create an entry and set
	    initial value in one call
	  - [my_gtk::main] don't set the events, to fix keyboard focus
	    problem in entries when embedded
	  - [my_gtk::_create_window] add $::noBorder, to not have a frame
	    in the main window, so that it's possible to end up with
	    windows with no border
	  - [my_gtk] add ask_dir which is a ask_file with only the dir list
	  - [my_gtk] add ask_browse_tree_info to the export tags, and:
	  - add support for parents with no leaves, so that then we can
	    partially build the trees (for speedup)
	  - add "delete_all" and "delete_category" callbacks
	  - use Gtk::CList::clear when removing all the nodes, much
	    speedup

2002/08/01  jgotti

	* bootlook.pm: 
	  - add splash theme section

	* pixmaps/nosplash_thumb.png: add pixmap for drakboot

2002/08/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

	* share/po/vi.po: updated vietnamese file

2002/08/01  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: drop keyboard unsafe when not unsafe
	anymore
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE

	* any.pm: 
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE
	get rid of some $prefix parameter passing (using $::prefix where needed
	instead)

	* Xconfig/various.pm: finish tvout configuration

	* ugtk.pm, my_gtk.pm: move back Gtk->init to "new" and "gtkroot"
	make perl_checker happy

	* Xconfig/parse.pm: 
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE
	BusID needs a string (thanks to Florent BERANGER)

	* standalone.pm: don't display a wait_message in newt, but do suspend

	* install_any.pm: get rid of some $prefix parameter passing

	* pkgs.pm, fsedit.pm: get rid of some $prefix parameter passing (using
	$::prefix where needed instead)

	* loopback.pm (prepare_boot): use $::prefix

	* interactive/gtk.pm: fix the many warnings when {icon} is not given

	* Xconfig/resolution_and_depth.pm: in newt, have the resolutions sorted by
	resolution size (wilplizgg)

	* install_steps.pm: 
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE
	get rid of some $prefix parameter passing
	get rid of some $prefix parameter passing (using $::prefix where needed
	instead)
	bootloader::suggest uses a hash for its options

	* .perl_checker: tune perl_checker

	* Xconfig/xfreeX.pm, standalone/keyboarddrake, install2.pm,
	Xconfig/default.pm, commands.pm, printerdrake.pm: 
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE

	* keyboard.pm: don't have "unsafe" in /etc/sysconfig/keyboard
	  - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}
	  - KBCHARSET is $o->{keyboard}{KBCHARSET}
	  - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in
	sysconfig/keyboard)
	  - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE"
	  - add dialog box to choose GRP_TOGGLE

	* bootloader.pm (duplicate_kernel_entry): added
	get rid of some $prefix parameter passing (using $::prefix where needed
	instead)
	bootloader::suggest uses a hash for its options

2002/08/01  Till Kamppeter  <till@mandrakesoft.com>

	* share/rpmsrate: Added new packages needed by printerdrake.

	* printerdrake.pm: Let packages "nmap" and "scli" get installed by
	printerdrake.
	Printer model auto-detection for ethernet-connected printers when
	setting up TCP/Socket, remote LPD, IPP, or HTTP printers.
	Continued work on scanning the local network for printers.
	In "setup_local()": Renamed variable "@parport" to "@autodetected".
	Do not let list of auto-detected printers get sorted alphabetically, it
	should stay sorted by ports.
	Fixed typo in file name in "check_network()".

2002/08/01  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm: perl_checker fix

	* drakxtools.spec: drakconf is dead
	17mdk: stage 1
	my_gtk:
	  - splitup it into my_gtk and ugtk as done by dams
	  - resync with dams
	  - increase the icon blinkage from 50ms to 100ms
	%postun -n harddrake: return 0 when nothing has to be done

	* ugtk.pm: we already require perl-GTK-GdkImLib so temporary disable
	Gtk::Gdk::Pixbuf support, thus removing all gdk/gtk warnings
	remove INFO warnings
	my_gtk:
	  - splitup it into my_gtk and ugtk as done by dams
	  - resync with dams
	  - increase the icon blinkage from 50ms to 100ms

	* my_gtk.pm: my_gtk:
	  - splitup it into my_gtk and ugtk as done by dams
	  - resync with dams
	  - increase the icon blinkage from 50ms to 100ms

	* tinyfirewall.pm: kill stupide style
	perl_checker fixes

	* standalone/harddrake2: export license
	move embedded and standalone managment from harddrake::ui to
	standalone/harddrake2

	* harddrake/TODO: update
	move embedded and standalone managment from harddrake::ui to
	standalone/harddrake2

	* harddrake/ui.pm: update
	add_icon_path is exported in :various
	perl_checker fixes
	perl_checker fixes
	  - workaround for the busy mouse cursor set by
	gtkset_mousecursor_wait() in my_gtk::destroy
	  - remove debugging prints
	
	  - don't handle "$::isEmbedded ? kill('USR1', $::CCPID) :
	  Gtk->exit(0);", it's done by interactive->exit()
	export license
	move embedded and standalone managment from harddrake::ui to
	standalone/harddrake2

	* standalone/logdrake, harddrake/bttv.pm, standalone/drakconnect,
	standalone/drakbug, standalone/tinyfirewall, standalone/scannerdrake,
	standalone/drakxtv: perl_checker fixes

	* standalone/drakxconf: remove obsolote file

	* Makefile.config: drakconf is dead

	* tools/cvslog2changelog.pl: use new dam's email

	* scanner.pm, harddrake/data.pm: perl_checker fixes
	perl_checker fixes

2002/07/31  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/card.pm, Xconfig/main.pm: 
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	(still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)

	* bootlook.pm, network/network.pm, resize_fat/main.pm,
	network/netconnect.pm, Xconfig/xfreeX.pm, diskdrake/interactive.pm,
	network/ethernet.pm, printer.pm, detect_devices.pm,
	resize_fat/info_sector.pm, install_any.pm: make perl_checker happy again
	(replacing "{xx}->{yy}" by "{xx}{yy}")

	* any.pm (devfssymlinkf): when creating a symlink on the system, use devfs
	name if devfs is mounted

	* standalone/logdrake, standalone/draksec, standalone/drakxservices,
	standalone/drakautoinst, standalone/drakproxy, standalone/tinyfirewall,
	standalone/keyboarddrake, standalone/drakboot, standalone.pm,
	standalone/drakTermServ, standalone/net_monitor, standalone/diskdrake,
	standalone/mousedrake, standalone/drakbackup, standalone/printerdrake,
	standalone/drakfloppy, standalone/drakfont, standalone/drakconnect,
	standalone/drakgw, standalone/scannerdrake, standalone/drakxtv: Handle
	parsing --embedded command line in standalone.pm
	=> allows to remove the somewhat mythical
	$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/

	* standalone/XFdrake: Handle parsing --embedded command line in
	standalone.pm
	=> allows to remove the somewhat mythical
	$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	  (still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)

	* Xconfig/various.pm: make perl_checker happy again (replacing
	"{xx}->{yy}" by "{xx}{yy}")
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	(still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)

2002/07/31  Christian Belisle  <cbelisle@mandrakesoft.com>

	* security/msec.pm: 
	  - Fix page change between checks -> advanced
	  - Factorize options-related functions
	  - s/choose_options/choose_functions
	  - Added security checks page
	  - put the basic button on top (in the advanced page)
	  - move set_server_link in the ignore list temporary

	* security/main.pm: 
	  - Factorize options-related functions
	  - s/choose_options/choose_functions
	  - Added security checks page
	  - factorize functions (many functions -> one function)

2002/07/31  Daouda Lo  <daouda@mandrakesoft.com>

	* share/rpmsrate: 
	  - s/GNOME/X/ for gnome-linuxconf

	* standalone/drakbug: 
	  - many changes
	  - command line support (--report name_of_program), to be used in tools
	  - ergonomy fixes (use table to align widget correctly)

2002/07/31  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* run_program.pm: 
	  - fix $ENV{HOME} value to '/root' if usermode break it

2002/07/31  gbeauchesne

	* c/Makefile.PL: lib64 fixes

2002/07/31  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/cdrom.c: hopefully fix "device or resource busy" problem in
	cdrom
	automatic mode (I messed up between truth value and number in a
	list... the first value is numbered "0" whicih is "false"...)

2002/07/31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/help-it.pot, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/bs.po, share/po/ro.po,
	share/po/wa.po, share/po/is.po, share/po/af.po, share/po/az.po,
	share/po/zh_TW.po, share/po/zh_CN.po, share/po/vi.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/help-fr.pot, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/hu.po: updated pot file

	* share/po/pt.po, share/po/eu.po: updated Portuguese file
	updated pot file

2002/07/31  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/main.pm: 
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	(still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)

	* install_steps_interactive.pm, printerdrake.pm, pkgs.pm, network/adsl.pm,
	modules.pm, commands.pm, install_interactive.pm, install_steps_gtk.pm,
	interactive/stdio.pm, services.pm, keyboard.pm: make new perl_checker
	happy
	make new perl_checker happy (and that's not easy!)

	* any.pm (devfssymlinkf): when creating a symlink on the system, use devfs
	name if devfs is mounted
	replace "$foo" with $foo
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* Xconfig/test.pm: change the location of X test image as told by dadou

	* Xconfig/resolution_and_depth.pm (choose_gtk): ensure the response is one
	of @resolutions (so that Y and maybe bios is kept)
	(to_string): created
	fix using $_ instead of $_[0] (thanks to perl_checker)
	make new perl_checker happy (and that's not easy!)

	* network/modem.pm: replace "$foo" with $foo

	* resize_fat/info_sector.pm, Xconfig/xfreeX.pm: make perl_checker happy
	again (replacing "{xx}->{yy}" by "{xx}{yy}")

	* printer.pm, install_any.pm, detect_devices.pm: make perl_checker happy
	again (replacing "{xx}->{yy}" by "{xx}{yy}")
	replace "$foo" with $foo
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* bootlook.pm, network/netconnect.pm, network/ethernet.pm: make
	perl_checker happy again (replacing "{xx}->{yy}" by "{xx}{yy}")
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* network/tools.pm, install_gtk.pm, network/isdn.pm: replace "$foo" with
	$foo
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* my_gtk.pm (create_box_with_title): create an empty box when there is no
	message
	(also don't set $o->{box} since unused outside of this function)
	replace "$foo" with $foo
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* Xconfig/card.pm: 
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	(still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)
	handle cancel in xfree_and_glx_choose
	default VideoRam choice 4096 when needVideoRam
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* network/network.pm: make perl_checker happy again (replacing
	"{xx}->{yy}" by "{xx}{yy}")
	replace "$foo" with $foo
	  - have is_ip return the 4 parts of the ip address
	  - cleanup
	make new perl_checker happy (and that's not easy!)

	* interactive/gtk.pm: allow "icon" to use the icon path
	make new perl_checker happy (and that's not easy!)

	* Makefile, crypto.pm: make new perl_checker happy

	* Xconfig/monitor.pm: fix keeping the existing name when choosing monitor

	* resize_fat/main.pm: make perl_checker happy again (replacing
	"{xx}->{yy}" by "{xx}{yy}")
	make new perl_checker happy

	* standalone/mousedrake: Handle parsing --embedded command line in
	standalone.pm
	=> allows to remove the somewhat mythical
	$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
	what is needed for usbmouse is "hid mousedev usbmouse" not the weird
	"serial_usb"
	make new perl_checker happy

	* mouse.pm (read): don't look at /dev/mouse symlink to get {device},
	sysconfig/mouse
	gives it, so why bother (this fixes /dev//dev/misc/psaux bug)
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* standalone/logdrake, standalone/tinyfirewall, standalone/drakboot,
	standalone.pm, standalone/drakTermServ, standalone/net_monitor,
	standalone/drakbackup, standalone/printerdrake, standalone/drakconnect,
	standalone/drakxtv, standalone/draksec, standalone/drakxservices,
	standalone/drakautoinst, standalone/drakproxy, standalone/diskdrake,
	standalone/drakfloppy, standalone/drakfont, standalone/scannerdrake:
	Handle parsing --embedded command line in standalone.pm
	=> allows to remove the somewhat mythical
	$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/

	* standalone/keyboarddrake, standalone/drakgw: Handle parsing --embedded
	command line in standalone.pm
	=> allows to remove the somewhat mythical
	$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
	make new perl_checker happy

	* install2.pm: allow acceptLicence to be automatic
	make new perl_checker happy
	make new perl_checker happy (and that's not easy!)

	* diskdrake/interactive.pm: make perl_checker happy again (replacing
	"{xx}->{yy}" by "{xx}{yy}")
	make new perl_checker happy (and that's not easy!)

	* standalone/XFdrake: Handle parsing --embedded command line in
	standalone.pm
	=> allows to remove the somewhat mythical
	$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	  (still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)
	use configure_chooser when there is an existing configuration

	* log.pm, interactive.pm, resize_fat/fat.pm, network/smb.pm, raid.pm,
	partition_table.pm, diskdrake/hd_gtk.pm, install_steps.pm, swap.pm,
	resize_fat/directory.pm, devices.pm, lang.pm, partition_table/raw.pm,
	bootloader.pm, fsedit.pm, network/isdn_consts.pm: make new perl_checker
	happy (and that's not easy!)

	* Xconfig/various.pm: make perl_checker happy again (replacing
	"{xx}->{yy}" by "{xx}{yy}")
	  - add non-wizard ability to XFdrake
	  - first part of ATI TVout support
	(still needs patching initscript, and adding an entry in bootloader)
	  (and testing of course :)
	(info): fix displaying depth

2002/07/31  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: Started working on network printer auto-detection.

	* detect_devices.pm: Added subroutines for ethernet printer
	auto-detection.

2002/07/31  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: 
	  - bump harddrake version
	  - module configuration is saved (todo: read the config)
	initial configuration window for modules. nothing is done yet.
	remove latest (?) gtk warnings
	don't display bogus fields
	in embedded mode, don't kill the main gtk app (aka drakconf) but
	only harddrake
	  - add embedded mode for drakconf
	further simplification
	  - the hw tree and the info text are auto-size now
	  - further ui simplifications
	still more my_gtk simplifications
	 ui.pm |   49 ++++++++++++++++---------------------------------
	 1 files changed, 16 insertions(+), 33 deletions(-)
	  - simplify Gtk::Text filling
	
	  - less gtk warnings get printed
	further my_gtk simplifications
	further my_gtk simplifications
	further use of my_gtk
	  - remove useless realizations
	
	  - simplify ctree and frames creation
	  - make used once callbacks be anonymous functions
	
	  - replace scores of useless ->show() call by one show_all() call
	
	
	 ui.pm |   82
	+++++++++++++++++++++++++++---------------------------------------
	 1 files changed, 34 insertions(+), 48 deletions(-)

	* printer.pm: "cp -a" doesn't need "echo yes|"

	* modparm.pm: split parameters in raw_parameters and parameters.
	raw_parameters is
	used by harddrake to list module options in order to offer a module
	configuration window.

	* harddrake/TODO: update
	  - bump harddrake version
	  - module configuration is saved (todo: read the config)
	in embedded mode, don't kill the main gtk app (aka drakconf) but
	only harddrake
	  - add embedded mode for drakconf
	  - bump version number
	  - fix pcmcia network card detection (no more unknown)
	  - fix scsi detection :
	
		o fix SCSI controllers detection (no more unknown)
	
		o fix misdetection of scsi devices as scsi host adapter
	
		o fix double scsi devices detection (both unknown and real
		  category)
	
	  - update TODO list

	* Makefile: rename a few target:
	  - srpm -> slowsrpm
	  - fastsrpm -> srpm

	* drakxtools.spec: 15mdk (will be released tomorrow before the beta2)
	don't require detect-lst, it'll take harddrake instead :-(
	14mdk

	* harddrake/data.pm: 
	  - bump harddrake version
	  - module configuration is saved (todo: read the config)
	  - bump version number
	  - fix pcmcia network card detection (no more unknown)
	  - fix scsi detection :
	
		o fix SCSI controllers detection (no more unknown)
	
		o fix misdetection of scsi devices as scsi host adapter
	
		o fix double scsi devices detection (both unknown and real
		  category)
	
	  - update TODO list

	* share/po/fr.po: update fr translation

2002/07/30  alus

	* share/po/pl.po: variuos fixes and updates
	updates

2002/07/30  Christian Belisle  <cbelisle@mandrakesoft.com>

	* security/libsafe.pm: 
	  - complete re-write of draksec. splitted all the libsafe related
	functions
	in this file.

	* security/msec.pm, standalone/draksec: 
	  - complete re-write

	* security/main.pm: 
	  -complete re-write of draksec. The main functions will go in this
	file.

2002/07/30  Daouda Lo  <daouda@mandrakesoft.com>

	* Makefile.drakxtools: 
	  - mv drakbug executable from $$SBINDEST to $$BINDEST

2002/07/30  gbeauchesne

	* tools/Makefile, tools/aewm-drakx/Makefile: lib64 fixes

2002/07/30  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/hr.po, share/po/tr.po,
	share/po/mt.po, share/po/ga.po, share/po/be.po, share/po/uk.po,
	share/po/sv.po, share/po/sr.po, share/po/pl.po, share/po/fi.po,
	share/po/lt.po, share/po/sp.po, share/po/cy.po, share/po/ca.po,
	share/po/da.po, share/po/ar.po, share/po/bs.po, share/po/ro.po,
	share/po/wa.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: reflect errata changes

	* install_steps_interactive.pm: have errata in parameter to not break too
	much updates
	8.2->9.0
	s/82errata.php3/90errata.php3/

2002/07/30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po: updated po file

2002/07/30  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: 
	  - call fsck.jfs before mounting read-write (otherwise mount simply
	fails)
	  - propose fsck -y for ext2 when fsck -a fails

	* standalone/drakbackup: never EVER put $xxxx in to-be-translated
	strings!!

	* diskdrake/interactive.pm (Add2LVM): for LVM on RAID, ensure the RAID is
	created & enabled

	* Xconfig/parse.pm: fix handling of commented empty line

	* standalone/drakautoinst: use $o->{interactiveSteps} instead of
	@install_steps_auto_install::graphical_steps

	* keyboard.pm, c/stuff.xs.pl, detect_devices.pm, install_steps.pm: use usb
	keyboard bCountryCode to choose the right keyboard

	* install_steps_interactive.pm: use usb keyboard bCountryCode to choose
	the right keyboard
	  - call fsck.jfs before mounting read-write (otherwise mount simply
	fails)
	  - propose fsck -y for ext2 when fsck -a fails

2002/07/30  Till Kamppeter  <till@mandrakesoft.com>

	* printerdrake.pm: Better placement for waiting message.

	* printer.pm: Fixed a typo and a comment in the "SIGHUP_daemon()"
	function.

2002/07/30  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: further translations
	update fr translation

	* standalone/drakbackup: don't translate useless strings (here: "\n")

	* standalone/drakbug: deush need to learn english

2002/07/29  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (g_auto_install): also save chosen on_services (this is
	the only thing left to do to make it work :)

	* mouse.pm: 
	  - don't display "To activate the mouse, MOVE YOUR WHEEL!" when not
	install
	  - don't display "Please test the mouse" either
	allow to not mess with X config auxmouse
	(that way mousedrake doesn't need to care about it)

	* run_program.pm: fix rooted() when chrooted and saving the result in a
	perl variable

	* Xconfig/resolution_and_depth.pm (configure_auto_install): really use
	resolution_wanted given in $o

	* partition_table.pm: cleanup

	* services.pm (ask_standalone_gtk, ask_install): only return the
	on_services (those
	functions used to return ($l, $on_services) which used in a scalar
	context
	returned $on_services)

	* standalone/mousedrake: 
	  - fix using deprecated Xconfig.pm
	  - document dam's hack for test mouse
	  - cleanup
	  - don't bother reading XFree mouse config
	(using keep_auxmouse_unchanged of mouse::write_conf)

	* diskdrake/interactive.pm: nicer error message when "You can't create a
	new partition
	(since you reached the maximal number of primary partitions).
	First remove a primary partition and create an extended partition."

	* printer.pm: make perl_checker happy

	* standalone/XFdrake: make perl_checker happy
	(ask_for_X_restart): make it work

2002/07/29  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: Fixed some "$prefix" issues in the HPOJ auto-configuration
	and in the Star Office/OpenOffice.org auto-configuration.

2002/07/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: use aliases for stage1 params to reduce kernel msg

2002/07/29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated pot file

2002/07/29  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm: 
	  - don't display "To activate the mouse, MOVE YOUR WHEEL!" when not
	install
	  - don't display "Please test the mouse" either
	allow to not mess with X config auxmouse
	(that way mousedrake doesn't need to care about it)
	disallow big_help (when pressing F1) when testing mouse

	* install_any.pm (g_auto_install): also save chosen on_services (this is
	the only thing left to do to make it work :)

	* drakxtools.spec: remove "Requires: groff" (nobody know why it's there)
	(Pixel)

	* run_program.pm: fix rooted() when chrooted and saving the result in a
	perl variable

	* share/rpmsrate: xpcd is still there (deush)
	  - remove deprecated packages
	  - adapt some to their names

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: fix typo

	* Xconfig/main.pm: restore xdm choice previous behaviour (auto_install)

	* Xconfig/resolution_and_depth.pm (configure_auto_install): really use
	resolution_wanted given in $o

	* fs.pm: fix mke2fs on loopback
	  - use $::prefix for reading/writing (it was missing for writing)
	  - use output_p so that /etc/samba directory is created if needed
	(fix bug reported by David Eastcott)

	* Xconfig/test.pm: try harder to have "xfs" running

	* partition_table.pm: cleanup

	* services.pm (ask_standalone_gtk, ask_install): only return the
	on_services (those
	functions used to return ($l, $on_services) which used in a scalar
	context
	returned $on_services)

	* standalone/mousedrake: 
	  - fix using deprecated Xconfig.pm
	  - document dam's hack for test mouse
	  - cleanup
	  - don't bother reading XFree mouse config
	(using keep_auxmouse_unchanged of mouse::write_conf)

	* Xconfig/default.pm: fix default config for mouse

	* my_gtk.pm: disallow big_help (when pressing F1) when testing mouse

	* printer.pm: make perl_checker happy

	* diskdrake/interactive.pm: nicer error message when "You can't create a
	new partition
	(since you reached the maximal number of primary partitions).
	First remove a primary partition and create an extended partition."
	fix diskdrake::interactive::Options() excepts a value from
	fs::mount_options_pack(), but fs::mount_options_pack() doesn't return
	any
	value (reported by Olivier Thauvin)

	* standalone/XFdrake: make perl_checker happy
	(ask_for_X_restart): make it work

	* bootloader.pm: try to allow /boot on vfat (it used to work)

	* network/smb.pm: 
	  - use $::prefix for reading/writing (it was missing for writing)
	  - use output_p so that /etc/samba directory is created if needed
	(fix bug reported by David Eastcott)

	* install_interactive.pm: fix partition wizard choice updating after
	calling diskdrake

	* install_steps_gtk.pm, install_steps_interactive.pm, install2.pm: ensure
	choosing install-or-upgrade can't be done twice
	(since it's badly handled and hard to handle nicely)

2002/07/29  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakxtv: read and wrote /etc/modules.conf

	* Makefile: 
	  - consolidate duplicated 'use (warn|strict...' into nuke_perl target
	  - thus enable to fix bug reported by gc (aka i only fixed localsrpm
	  nuke, not srpm: one)

	* drakxtools.spec: final changes batch
	  - pixel: don't set release to 14mdk when 13mdk hadn't be released ...
	  - list 13mdk changes
	replace trigger by format test for hw config file conversion

2002/07/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (configureX, configureXBefore, configureXAfter):
	greatly simplified using new Xconfig stuff

	* standalone/XFdrake: 
	  - adapt to new Xconfig modules
	  - try out the new "XFdrake resolution" and "XFdrake monitor" that'll
	get into DrakConf soon

	* Xconfig/xfree3.pm, Xconfig/various.pm, Xconfig/parse.pm,
	Xconfig/xfree.pm, Xconfig/test.pm, Xconfig/xfreeX.pm,
	Xconfig/proprietary.pm, Xconfig/xfree4.pm, Xconfig/monitor.pm,
	Xconfig/default.pm, Xconfig/screen.pm, Xconfig/FILES: 14 new modules,
	will it be enough?? :)

	* any.pm (running_window_manager): return the pids found if wanted
	(ddcxinfos): ensure no probe is done when $::noauto

	* install_steps_gtk.pm, install_gtk.pm, standalone.pm: adapt to new
	Xconfig modules

	* install_any.pm (g_auto_install): no need to handle $o->{X} as a special
	case, it's already done by Xconfig::main::export_to_install_X

	* Xconfig.pm, Xconfigurator.pm, Xconfigurator_consts.pm: thou hast served
	well, you may now lie in peace

	* common.pm (availableRamMB): use a precise constraint on 'Card:Intel 810'
	instead of a regexp

	* Xconfig/card.pm: make perl_checker happy
	rahh, don't commit my test code!
	14 new modules, will it be enough?? :)

	* share/list: CardsNames is not needed anymore

	* interactive.pm: fix "nicer error message when {val} is not set for
	ask_from & list" in case of a reference to a reference (ref is REF
	instead of SCALAR)

	* Xconfig/main.pm: fix displaying info about current configuration
	14 new modules, will it be enough?? :)

	* Xconfig/resolution_and_depth.pm: 
	  - make the gtk resolution chooser work
	  - dropped the differenciation between embedded or not
	14 new modules, will it be enough?? :)

	* mouse.pm (detect): return wacom inside $mouse
	(mouseconfig): reduce the number of "Use of undefined value"
	(set_xfree_conf): created

	* install2.pm: wacom is now inside $mouse

	* install_steps_interactive.pm (configureX): adapt to new Xconfig

2002/07/28  Pixel  <pixel@mandrakesoft.com>

	* Xconfig/main.pm: fix displaying info about current configuration
	14 new modules, will it be enough?? :)

	* Xconfig/resolution_and_depth.pm: 
	  - make the gtk resolution chooser work
	  - dropped the differenciation between embedded or not
	14 new modules, will it be enough?? :)

	* install_steps_gtk.pm, install_gtk.pm, standalone.pm: adapt to new
	Xconfig modules

	* install_any.pm (g_auto_install): no need to handle $o->{X} as a special
	case, it's already done by Xconfig::main::export_to_install_X

	* mouse.pm (detect): return wacom inside $mouse
	(mouseconfig): reduce the number of "Use of undefined value"
	(set_xfree_conf): created

	* install_steps.pm (configureX, configureXBefore, configureXAfter):
	greatly simplified using new Xconfig stuff

	* install2.pm: wacom is now inside $mouse

	* standalone/XFdrake: 
	  - adapt to new Xconfig modules
	  - try out the new "XFdrake resolution" and "XFdrake monitor" that'll
	get into DrakConf soon

	* Xconfig/xfree3.pm, Xconfig/various.pm, Xconfig/parse.pm,
	Xconfig/xfree.pm, Xconfig/test.pm, Xconfig/xfreeX.pm,
	Xconfig/proprietary.pm, Xconfig/xfree4.pm, Xconfig/monitor.pm,
	Xconfig/default.pm, Xconfig/screen.pm, Xconfig/FILES: 14 new modules,
	will it be enough?? :)

	* Xconfig.pm, Xconfigurator.pm, Xconfigurator_consts.pm: thou hast served
	well, you may now lie in peace

	* install_steps_interactive.pm (configureX): adapt to new Xconfig

	* any.pm (running_window_manager): return the pids found if wanted
	(ddcxinfos): ensure no probe is done when $::noauto

	* Xconfig/card.pm: make perl_checker happy
	rahh, don't commit my test code!
	14 new modules, will it be enough?? :)

	* common.pm (availableRamMB): use a precise constraint on 'Card:Intel 810'
	instead of a regexp

	* interactive.pm: fix "nicer error message when {val} is not set for
	ask_from & list" in case of a reference to a reference (ref is REF
	instead of SCALAR)

2002/07/28  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ: Check for/install terminal-server and friends.
	More intelligent error message when
	mkisofs fails.  Cleanup code for use strict. Fix crash when no backup
	dhcpd.conf.

	* standalone/drakbackup: Numerous GUI crash fixes, oddities. Install
	needed packages. Fix email, daemon modes.
	Add rsync, webdav, cd, tape capabilities. Consolidate net method setup
	screens.
	Add CD device capability query.

2002/07/27  alus

	* share/po/pl.po: Fixes. There're some entries concerning mdk 8.2 - they
	should be changed
	globally

2002/07/27  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (add_probeall): use "uniq" to have modules only once in
	ddebug.log (a "uniq"
	was already in modules.conf so it doesn't change the result)

	* detect_devices.pm: use add_probeall for scsi_hostadapter, not add_alias
	(may fix a bug reported by Jure Repinc)

2002/07/27  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Completed implementation of the support for
	HPOJ 0.9: Automatic photo card reader configuration, bugfixes.

2002/07/26  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/logdrake: 
	  - more consistency when back button hit in wizard mode
	  - back button at last stage.

	* standalone/drakbug: 
	  - add browser list in case BROWSER env var isn't set

2002/07/26  François Pons  <fpons@mandrakesoft.com>

	* tools/Makefile: fixed reference to rpmtools perl module.

2002/07/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/rescue-gui.c: 
	  - usage of attribute unused (has not been rebuilt since -W? ;p)
	  - since i polluted the newt-frontend with probing functions, i
	need to have probing functions (doing nothing) here :-((

2002/07/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* harddrake/ui.pm: changed _("") -> "" empty strings must not be
	translated

2002/07/26  Pixel  <pixel@mandrakesoft.com>

	* rescue/list: remove traceroute (c naze dixit gc)

	* share/gen_locales.sh, lang.pm: hy is now using UTF8 locales

	* any.pm, services.pm, install_steps.pm: use
	run_program::rooted_get_stdout instead of `chroot $prefix ...`

	* install_any.pm: use run_program::rooted_get_stdout

	* Xconfigurator.pm: cleanup launching qiv (using run_program)

	* bootloader.pm: 
	  - fix dying when mkinitrd doesn't create an initrd
	  - cleanup

	* run_program.pm (rooted_get_stdout): handle one line return using
	wantarray
	  - also give the ability to redirect to an array ref
	  - add rooted_get_stdout which is alike ``
	add 2 functionalities to run_program:
	  - run_program::run(prog, '>', 'STDOUT', ...)
	run_program::run(prog, '2>', 'STDERR, ...)
	  which will run with verbatim stdout or stderr
	  - run_program::run(prog, '>', \$s, ...)
	  run_program::run(prog, '2>', \$s, ...)
	  which will return the stdout (resp. stderr) of the program in $s

	* rescue/Makefile: ensure rescue is built and uploaded

2002/07/26  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/TODO: dadou said "no expert mode"

	* harddrake/ui.pm: 
	  - s/channel/Channel/
	  - bus_id is for usb devices too
	  - remove obsolete fields info and name
	  - add nbuttons, device, old_device descriptions

	* drakxtools.spec: 13mdk

2002/07/26  François Pons  <fpons@mandrakesoft.com>

	* tools/Makefile: fixed reference to rpmtools perl module.

2002/07/26  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm: First step of automatic HP multi-function device
	configuration with HPOJ 0.9.

	* detect_devices.pm: Added detection of trhe serial number of a USB
	printer (in preparation for HPOJ 0.9 support in printerdrake).

2002/07/25  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix loading ide-cd (big thanks to rcc
	<rickscafe.casablanca@gmx.net> you did
	all the work to resolve the pb)
	=> this fixes ide burner detection

2002/07/25  alus

	* share/po/pl.po: fix
	fix
	one entry more clearly :)

2002/07/25  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/logdrake: 
	  - don't display services that are not installed
	  - word wrap string correctly
	  - cleanup

2002/07/25  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: added log.
	small code changes for upgrade.

	* tools/syncrpms: no more use rpmtools.pm.

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: new logo (simplified
	for 9.0).

2002/07/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po, share/po/id.po, share/po/vi.po: updated po files

2002/07/25  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm: use a function icon_paths instead of @icon_paths
	=> this ensure that $ENV{SHARE_PATH} value (used in @icon_paths) is set
	independently of the loading order of the modules

	* install_steps_interactive.pm: fix loading ide-cd (big thanks to rcc
	<rickscafe.casablanca@gmx.net> you did
	all the work to resolve the pb)
	=> this fixes ide burner detection
	Help "perl -cw" not reporting any warning
	  - for mac free partition, use $freepart instead of $freepart_device,
	$freepart_size ...
	  - replace $timezone::ntp_servers by a function

	* bootloader.pm: let the bootloader::mkinitrd error be seen by the GUI

	* install_steps_newt.pm: please "perl -cw"

	* verify_c: adapt to stuff.xs.pl instead of stuff.xs.pm

	* partition_table.pm: add 0x35 partition table id meaning JFS (under OS/2)
	(thank to Mika Laitio)

	* fs.pm: noreturn is now exported, no need to
	MDK::Common::Various::noreturn()

	* common.pm: remove internal_error (which is now in MDK::Common)

	* partition_table/mac.pm, timezone.pm: Help "perl -cw" not reporting any
	warning
	  - for mac free partition, use $freepart instead of $freepart_device,
	$freepart_size ...
	  - replace $timezone::ntp_servers by a function

2002/07/25  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 12mdk
	final batch of changes
	11mdk

	* harddrake/TODO: still less things to do
	update

	* c/stuff.xs.pl: don't copy struct pciusb_entries on the stack

	* standalone/service_harddrake: merge timeout and cancel cases
	simplify:
	  - we don't need to set media_type, we don't use it
	  - mouse and mass storage media use the same key, let merge their code
	path

	* interactive/newt.pm: typo fix

	* Makefile.drakxtools: fix pixel "i do not need to test" fscking bug that
	broke drakxtools
	build :-)

	* harddrake/ui.pm: remove all gtk's "no callback/signal to disconnect"
	warnings
	add a fields data structure:
	  - put together field translation and field description
	  - this enable to get rid of %reverse_fields usage & creation
	  - this ensure all field names & translations are marked translatables
	for gettext
	  - move $wait declaration around its usage and explicit its destruction
	  - remove usb debugging message needed to trace the null description
	  bug i fixed in ldetect
	  - simplify the device fields rendering "because of" the above
	  - simplify the help window creation/display/destruction (only one
	  statement left)
	  - explicitely call interactive->exit
	handle both old device name and new devfs name

	* share/po/fr.po: update french translation

	* harddrake/data.pm: only do one probeall here (there's still many in
	detect_devices,
	probing caching should go there)

	* Makefile: use spec_test rather than test

2002/07/24  alus

	* share/po/pl.po: fixes
	the last untranslated entry

2002/07/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/cdrom.c, mdk-stage1/disk.c, mdk-stage1/tools.c,
	mdk-stage1/stage1.h, mdk-stage1/tools.h, mdk-stage1/frontend.h,
	mdk-stage1/probing.h, mdk-stage1/stdio-frontend.c,
	mdk-stage1/newt-frontend.c, mdk-stage1/probing.c: enhance (complicate?
	;p) device detection so that scsi and usb
	detection are done only when no ide cdrom with mandrake install
	is detected (speed up), have usb keyboard modules installed
	before any interactive question, honour "noauto" (skip usb
	detection and insmod'ing)

2002/07/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/cs.po,
	share/po/bg.po, share/po/lv.po, share/po/hu.po: updated po files

2002/07/24  Pixel  <pixel@mandrakesoft.com>

	* Makefile, Makefile.drakxtools: add PMS_DIRS in Makefile.config and use
	it everywhere
	(cleaning some ugly stuff in Makefile.drakxtools while doing so)
	=> now adding a new directory only need to be done at one place

	* Xconfig/xfree3.pm, Xconfig/xfreeX.pm, mouse.pm, Xconfig/xfree4.pm,
	Xconfig/parse.pm: new XFree handling library
	  - only keyboard and mice functions are done, but adding the others is
	quite easy
	  - so for now only used in mousedrake
	  - but keyboarddrake and (of course) XFdrake will come

	* Makefile.config: add Xconfig
	add PMS_DIRS in Makefile.config and use it everywhere
	(cleaning some ugly stuff in Makefile.drakxtools while doing so)
	=> now adding a new directory only need to be done at one place

	* standalone/keyboarddrake: use Xconfig::xfree to set the XkbLayout
	(better should&will come)

	* c/stuff.xs.pl, c/Makefile, c/stuff.xs.pm: rename stuff.xs.pm to
	stuff.xs.pl (since it's a prog, not a module)
	(it helps for not having stuff.xs.pm in PMS)

	* Xconfig/xfree.pm (get_both): fix returning one element (eg:
	get_keyboard)
	new XFree handling library
	  - only keyboard and mice functions are done, but adding the others is
	quite easy
	  - so for now only used in mousedrake
	  - but keyboarddrake and (of course) XFdrake will come

	* log.pm: when testing, log on STDERR

2002/07/24  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/data.pm: don't account scanners as unknown devices

	* harddrake/ui.pm: scanners support:
	  - split scannerdrake:val into vendor and description
	  - don't display bogus "val:%HASH"

2002/07/23  alus

	* share/po/pl.po: fuzzy cheched

2002/07/23  Christian Belisle  <cbelisle@mandrakesoft.com>

	* security.pm: removal

2002/07/23  Daouda Lo  <daouda@mandrakesoft.com>

	* security/msec.pm: 
	  - fix typo: s/%%options;/%%options/

2002/07/23  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: manage correctly unselectPackage and use perl-URPM >= 0.50.

2002/07/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/probing.c: s/usb/moreprofessional/ thanks to vdanen

2002/07/23  Pixel  <pixel@mandrakesoft.com>

	* share/po/help-eu.pot: rebuild after replacing \" by "

	* any.pm, interactive.pm: use fuzzy_pidofs (to detect if kwin is running)

	* detect_devices.pm: handle computers with no /proc/scsi/scsi

	* .cvsignore, share/modparm.lst, Makefile: modparm.lst is not used anymore
	(modinfo -p)

2002/07/23  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: further translations update
	update french translation

	* drakxtools.spec: 10mdk changes
	final changes batch
	9mdk
	g Move 2: partition table: hierarchy
	  - Big Move 1: interactive::* hierarchy

	* partition_table_dos.pm, partition_table/dos.pm, partition_table_mac.pm,
	partition_table/sun.pm, partition_table/gpt.pm, partition_table_raw.pm,
	partition_table_lvm_PV.pm, partition_table_empty.pm, standalone.pm,
	partition_table_sun.pm, partition_table_bsd.pm, install_interactive.pm,
	partition_table/raw.pm, partition_table.pm, any.pm,
	partition_table/mac.pm, partition_table/bsd.pm, bootloader.pm,
	diskdrake/hd_gtk.pm, partition_table/empty.pm, fsedit.pm,
	partition_table/lvm_PV.pm, partition_table_gpt.pm: g Move 2: partition
	table: hierarchy

	* Makefile.config, install_steps.pm, install_steps_interactive.pm,
	diskdrake/interactive.pm, Makefile.drakxtools, install_any.pm: g Move 2:
	partition table: hierarchy
	  - Big Move 1: interactive::* hierarchy

	* harddrake/ui.pm: remove dead code
	remove dead args
	about and help windows: only show "OK" button, cancel one has no
	purpose here

	* detect_devices.pm: remove '-' before description for IBM eide hard disks
	g Move 2: partition table: hierarchy

	* standalone/service_harddrake: faster service startup

	* interactive_newt.pm, interactive.pm, standalone/drakautoinst,
	install_steps_stdio.pm, standalone/tinyfirewall, Xconfigurator.pm,
	standalone/drakboot, standalone/diskdrake, standalone/mousedrake,
	install_steps_newt.pm, printerdrake.pm, interactive_gtk.pm,
	install_steps_gtk.pm, interactive/http.pm, interactive/stdio.pm,
	interactive/newt.pm, services.pm, standalone/drakconnect,
	standalone/drakgw, interactive/gtk.pm, interactive_http.pm,
	interactive_stdio.pm, standalone/drakxtv: 
	  - Big Move 1: interactive::* hierarchy

	* Makefile: check make got correct tag from spec file
	fast build: new target (fastsrpm = cvstag localsrpm)
	g Move 2: partition table: hierarchy
	  - Big Move 1: interactive::* hierarchy

	* harddrake/data.pm: s/drakconnet/drakconnect

	* harddrake/TODO: update

2002/07/22  Pixel  <pixel@mandrakesoft.com>

	* any.pm, mouse.pm, install2.pm, detect_devices.pm: when $::noauto,
	hardwire no probing in detect_devices::probeall to ensure no probing is
	never done

	* share/po/help-fr.pot, share/po/help-de.pot, share/po/help-eu.pot,
	help.pm, share/po/.cvsignore, share/po/Makefile, share/po/help-es.pot,
	share/po/help-it.pot: 
	  - update help.pm based on the xml manual
	  - this fixes entities sticked together with no space in between
	  - this also implies a few bad line-wrapping changes,
	    but it needs to be done to have a clean state
	    (we don't have one since 8.2beta where i updated things by hand)
	  - put help-*.pot in CVS so that the files based on the xml manual can
	be updated
	  independently from DrakX.pot & .po's

	* Newt/Makefile, resize_fat/Makefile, c/Makefile: ensure things build as
	they should when perl is upgraded on compilation box
	(using a nice scheme: make || make)

2002/07/22  Till Kamppeter  <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Adapted printerdrake to CUPS 1.1.15 and
	Perl 5.8.0 (for Foomatic).
	Let network also be started during installation when LPRng or PDQ is the
	spooler, so that the user can install queues to remote printers.

2002/07/22  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/tools.pm: hide password in adsl configuration

2002/07/22  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: try avoiding infinite loop.

2002/07/22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/it.po, share/po/nl.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/el.po, share/po/bg.po,
	share/po/lv.po, share/po/hu.po: updated pot file

	* share/po/cs.po: updated Czech file
	updated pot file

2002/07/22  Pixel  <pixel@mandrakesoft.com>

	* c/Makefile, Newt/Makefile, resize_fat/Makefile: ensure things build as
	they should when perl is upgraded on compilation box
	(using a nice scheme: make || make)

	* any.pm, mouse.pm, install2.pm, detect_devices.pm: when $::noauto,
	hardwire no probing in detect_devices::probeall to ensure no probing is
	never done

	* help.pm, share/po/.cvsignore, share/po/Makefile, share/po/help-de.pot,
	share/po/help-fr.pot, share/po/help-eu.pot, share/po/help-es.pot,
	share/po/help-it.pot: 
	  - update help.pm based on the xml manual
	  - this fixes entities sticked together with no space in between
	  - this also implies a few bad line-wrapping changes,
	    but it needs to be done to have a clean state
	    (we don't have one since 8.2beta where i updated things by hand)
	  - put help-*.pot in CVS so that the files based on the xml manual can
	be updated
	  independently from DrakX.pot & .po's

	* share/po/help_xml2pm.pl: 
	  - use new PerlIO instead of iconv
	  - transliterate by hand &ndash and &eacute
	  - move "use utf8" at top
	  - fix the spaces between entities
	(eg: &company-microsoft; &os-windows; must not be MicrosoftWindows)

2002/07/21  Pixel  <pixel@mandrakesoft.com>

	* drakxtools.spec: new snapshot

	* Xconfigurator.pm: fix multi-head auto-choosing in auto install

	* install_any.pm: workaround "traverse_tag" pb in Resolve.pm
	resolve_requested (is it ok??)

2002/07/21  Pixel  <pixel@mandrakesoft.com>

	* drakxtools.spec: new snapshot

	* install_any.pm: workaround "traverse_tag" pb in Resolve.pm
	resolve_requested (is it ok??)

2002/07/21  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: Load "extmod" is a must! (for things like shape and
	dga)

	* Xconfig.pm: fix typo

2002/07/21  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: Load "extmod" is a must! (for things like shape and
	dga)

	* Xconfig.pm: fix typo

	* share/locales-skeleton.tar.bz2: usr/share/locale skeleton is now build
	in gen_locales.pl

	* share/gen_locales.pl, share/gen_locales.sh: build per languages symlinks
	using the new::during_install__lang2charset
	  -> this enables doing the same during install when using ramdisk
	=> no need to have a locale.cz2 anymore
	  (this is now possible since the number of special cases is lower than
	before)

	* lang.pm: 
	  - remove utf_xxx charsets, adding a flag UTF-8 instead
	  - add during_install__lang2charset
	  - when using ramdisk, no locale.cz2 anymore:
	there are 3 main charsets containing everything for all locales, except
	LC_CTYPE
	    by default, there is UTF-8.
	    when asked for GB2312 or BIG5, removing the other main charsets
	  - cleanup comments (use #- instead of #)
	  - various cleanup

	* tools/make_mdkinst_stage2: no more locale.cz2, just keeping the main
	charset /usr/share/locale/UTF-8

2002/07/21  Pixel  <pixel@mandrakesoft.com>

	* share/locales-skeleton.tar.bz2: usr/share/locale skeleton is now build
	in gen_locales.pl

	* share/gen_locales.pl, share/gen_locales.sh: build per languages symlinks
	using the new::during_install__lang2charset
	  -> this enables doing the same during install when using ramdisk
	=> no need to have a locale.cz2 anymore
	  (this is now possible since the number of special cases is lower than
	before)

	* lang.pm: 
	  - remove utf_xxx charsets, adding a flag UTF-8 instead
	  - add during_install__lang2charset
	  - when using ramdisk, no locale.cz2 anymore:
	there are 3 main charsets containing everything for all locales, except
	LC_CTYPE
	    by default, there is UTF-8.
	    when asked for GB2312 or BIG5, removing the other main charsets
	  - cleanup comments (use #- instead of #)
	  - various cleanup

	* tools/make_mdkinst_stage2: no more locale.cz2, just keeping the main
	charset /usr/share/locale/UTF-8

2002/07/20  Daouda Lo  <daouda@mandrakesoft.com>

	* standalone/drakbug: 
	  - complete app list

2002/07/20  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator_consts.pm: shorter and nicer XF86Config's

	* mouse.pm: devfssymlinkf doesn't have any return value, so don't check it

	* Xconfig.pm (getinfoFromXF86Config): move here setting prefer_xf3 based
	on current choice on system
	shorter and nicer XF86Config's

	* install_gtk.pm: 
	  - rename updateCardAccordingName into add_to_card__using_Cards
	  - rename cardConfigurationAuto into probe_cards
	  - cleanup the simple XF86Config used during install

	* install_steps.pm: call config_dvd with $have_devfsd

	* install_steps_gtk.pm: 
	  - rename updateCardAccordingName into add_to_card__using_Cards
	  - rename cardConfigurationAuto into probe_cards

	* any.pm: try very hard to make rdvd work:
	  - if not using devfs, it worked so keeping things unchanged
	  - if using devfs, using the new dynamic rawdevice.script script to
	bind a
	rawdevice on demand
	pb: can't have both a devfs and a non-devfs config,
	    the /etc/sysconfig/rawdevices solution gives errors with devfs
	    (since the dvd is not REGISTERed yet)
	please perl_checker
	fix typo
	(devfssymlinkf): use devfs names for devfs/conf.d/xxx.conf, but not for
	the
	symlink in /dev (which is used when devfs is not)
	devfssymlinkf doesn't have any return value, so don't check it

	* Xconfigurator.pm: 
	  - $in and $do_pkgs are no more global
	=> it's now easier to keep track of interactive vs non-interactive
	functions
	  - rename updateCardAccordingName into add_to_card__using_Cards
	  - rename cardConfigurationAuto into probe_cards
	  - and a few other function renamings
	shorter and nicer XF86Config's

2002/07/19  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: 
	  - reorganize monitor tree
	  - merge XF3 & XF4 server/module choosing
	  - replace {eide} by {EISA_ID} (=> {monitor} cleanup)
	  - ensure a few "Cancel" are more better handled
	  - ensure the default monitor in the monitor tree is the last chosen
	one

	* Xconfigurator_consts.pm: 
	  - fix good_default_monitor (must not be 1600x1200!)
	  - add r128 & radeon in XF4 drivers list

	* interactive_gtk.pm: reduce "Use of uninitialized value" in a heavy used
	place
	(useful when debugging)

	* Xconfig.pm: read monitor's VendorName & ModelName

2002/07/19  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: 
	  - check if speedtouch_mgmt exist before installing it

2002/07/19  François Pons  <fpons@mandrakesoft.com>

	* any.pm: revert changes so that DrakX work again.

	* install_any.pm: select default_packages directly during setPackages.

	* install_steps_interactive.pm: make sure unselectMostPackages is called
	(so that changes in default_packages
	are taken into account... but is may be any changes here ?).

2002/07/19  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator_consts.pm: 
	  - fix good_default_monitor (must not be 1600x1200!)
	  - add r128 & radeon in XF4 drivers list
	fix default_monitors to adapt new MonitorsDB

	* mouse.pm (devfssymlinkf): use devfs_device instead of device when
	available

	* partition_table.pm: handling devfs names for cdrom/hds on ide/scsi
	(needs testing)

	* any.pm (devfssymlinkf): try devices::to_devfs when devfs_device is not
	provided
	(devfssymlinkf): use devfs_device instead of device when available

	* detect_devices.pm: help perl_checker
	handling devfs names for cdrom/hds on ide/scsi (needs testing)

	* devices.pm: add functions to_devfs and from_devfs. These only work for
	devices entries
	which can go devfs -> normal and normal -> devfs

	* interactive_gtk.pm: reduce "Use of uninitialized value" in a heavy used
	place
	(useful when debugging)

	* Xconfig.pm: read monitor's VendorName & ModelName
	(readCardsDB): add handling BAD_FB_RESTORE & BAD_FB_RESTORE_XF3

	* Xconfigurator.pm: 
	  - reorganize monitor tree
	  - merge XF3 & XF4 server/module choosing
	  - replace {eide} by {EISA_ID} (=> {monitor} cleanup)
	  - ensure a few "Cancel" are more better handled
	  - ensure the default monitor in the monitor tree is the last chosen
	one
	partly cleanup monitor re-configuration (work in progress)

2002/07/19  Christian Belisle  <cbelisle@mandrakesoft.com>

	* any.pm: 
	  - remove any msec related functions
	  - remove 'use security::msec'

2002/07/19  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/adsl.pm: 
	  - check if speedtouch_mgmt exist before installing it

2002/07/19  François Pons  <fpons@mandrakesoft.com>

	* any.pm: revert changes so that DrakX work again.

	* install_any.pm: select default_packages directly during setPackages.
	fix typo on what_provides (for pitchounette :-)).
	added what_provides.

	* standalone.pm: fix typo on last commit.
	added what_provides.

	* install_steps_interactive.pm: make sure unselectMostPackages is called
	(so that changes in default_packages
	are taken into account... but is may be any changes here ?).

2002/07/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file

2002/07/19  Pixel  <pixel@mandrakesoft.com>

	* standalone/XFdrake: rename $i in $X (to have the same as
	Xconfigurator.pm)

	* interactive.pm: nicer error message when {val} is not set for ask_from &
	list

	* Xconfigurator.pm: partly cleanup monitor re-configuration (work in
	progress)
	  - don't write XF86Config when no {card}{server}
	  - don't write XF86Config-4 when no {card}{driver}
	  - workaround mixing values from existing config and
	cardConfigurationAuto()
	  - fix asking VideoRam
	  - fix device0 in XF86Config
	  - use "device1", "device2"... for "Device" Identifier
	  - restore having a nice VendorName + BoardName
	(since Identifier is not very useful)
	  - get {card}{Chipset} from existing XF86Config
	  - use $::prefix
	  - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
	  - drop {card}{flags}, the few flags are moved directly to {card}
	  - force_xf4 is now a global in Xconfigurator
	  - create new functions for better modularity: multi_head_config,
	xfree_and_glx_choices, xfree_and_glx_choose
	  - for ppc, allow choosing DRI or not
	  - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
	wether
	to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
	are only flags allowing or not DRI/UTAH.
	  - {card}{use_xf4} is dropped. New function using_xf4 has this
	functionality. The flags are now:
	  - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
	  - error if $force_xf4 && !{driver} || !{driver} && !{server}
	  - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
	!{server}
	  - {card}{description} contains what used to be {card}{identifier}
	  - rename {card}{type} to {card}{card_name}
	  - drop {monitor}{type}

	* install_steps.pm: don't pass the prefix parameter, not needed/wanted
	anymore

	* Xconfigurator_consts.pm: fix default_monitors to adapt new MonitorsDB

	* Xconfig.pm (readCardsDB): add handling BAD_FB_RESTORE &
	BAD_FB_RESTORE_XF3
	  - use "device1", "device2"... for "Device" Identifier
	  - restore having a nice VendorName + BoardName
	(since Identifier is not very useful)
	  - get {card}{Chipset} from existing XF86Config
	  - use $::prefix
	  - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
	  - drop {card}{flags}, the few flags are moved directly to {card}
	  - force_xf4 is now a global in Xconfigurator
	  - create new functions for better modularity: multi_head_config,
	xfree_and_glx_choices, xfree_and_glx_choose
	  - for ppc, allow choosing DRI or not
	  - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
	wether
	to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
	are only flags allowing or not DRI/UTAH.
	  - {card}{use_xf4} is dropped. New function using_xf4 has this
	functionality. The flags are now:
	  - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
	  - error if $force_xf4 && !{driver} || !{driver} && !{server}
	  - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
	!{server}
	  - {card}{description} contains what used to be {card}{identifier}
	  - rename {card}{type} to {card}{card_name}
	  - drop {monitor}{type}

2002/07/19  Christian Belisle  <cbelisle@mandrakesoft.com>

	* any.pm: 
	  - remove any msec related functions
	  - remove 'use security::msec'

2002/07/19  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* standalone/drakconnect: 
	  - any::setup_thiskind_backend changed in any::load_category_no_message

2002/07/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt.po: updated Portuguese file

2002/07/19  Pixel  <pixel@mandrakesoft.com>

	* standalone/XFdrake: rename $i in $X (to have the same as
	Xconfigurator.pm)

	* Xconfigurator.pm: 
	  - don't write XF86Config when no {card}{server}
	  - don't write XF86Config-4 when no {card}{driver}
	  - workaround mixing values from existing config and
	cardConfigurationAuto()
	  - fix asking VideoRam
	  - fix device0 in XF86Config
	  - use "device1", "device2"... for "Device" Identifier
	  - restore having a nice VendorName + BoardName
	(since Identifier is not very useful)
	  - get {card}{Chipset} from existing XF86Config
	  - use $::prefix
	  - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
	  - drop {card}{flags}, the few flags are moved directly to {card}
	  - force_xf4 is now a global in Xconfigurator
	  - create new functions for better modularity: multi_head_config,
	xfree_and_glx_choices, xfree_and_glx_choose
	  - for ppc, allow choosing DRI or not
	  - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
	wether
	to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
	are only flags allowing or not DRI/UTAH.
	  - {card}{use_xf4} is dropped. New function using_xf4 has this
	functionality. The flags are now:
	  - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
	  - error if $force_xf4 && !{driver} || !{driver} && !{server}
	  - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
	!{server}
	  - {card}{description} contains what used to be {card}{identifier}
	  - rename {card}{type} to {card}{card_name}
	  - drop {monitor}{type}

	* interactive.pm: nicer error message when {val} is not set for ask_from &
	list

	* Xconfig.pm: 
	  - use "device1", "device2"... for "Device" Identifier
	  - restore having a nice VendorName + BoardName
	(since Identifier is not very useful)
	  - get {card}{Chipset} from existing XF86Config
	  - use $::prefix
	  - drop obsolete stuff: Ramdac, Dacspeed, Clockchip
	  - drop {card}{flags}, the few flags are moved directly to {card}
	  - force_xf4 is now a global in Xconfigurator
	  - create new functions for better modularity: multi_head_config,
	xfree_and_glx_choices, xfree_and_glx_choose
	  - for ppc, allow choosing DRI or not
	  - need flag {card}{use_DRI_GLX} and {card}{use_UTAH_GLX} deciding
	wether
	to use DRI_GLX or UTAH_GLX. That way, {card}{DRI_GLX}, {card}{UTAH_GLX}
	are only flags allowing or not DRI/UTAH.
	  - {card}{use_xf4} is dropped. New function using_xf4 has this
	functionality. The flags are now:
	  - using XF4 if {driver} && !{prefer_xf3} otherwise using XF3
	  - error if $force_xf4 && !{driver} || !{driver} && !{server}
	  - internal error if $force_xf4 && {prefer_xf3} || {prefer_xf3} &&
	!{server}
	  - {card}{description} contains what used to be {card}{identifier}
	  - rename {card}{type} to {card}{card_name}
	  - drop {monitor}{type}

	* install_steps.pm: don't pass the prefix parameter, not needed/wanted
	anymore

2002/07/18  Christian Belisle  <cbelisle@mandrakesoft.com>

	* standalone/draksec: create the main() function in security.pm

	* security.pm: Re-Addition: will contain the security related (but not
	related to any apps)
	funtioncs and the draksec interface.
	removing

	* security/msec.pm: 
	  - add prefix var in file names
	  - remove useless expert_mode var
	  - add get_options(): will be used to get various options from msec
	move the msec related functions from any.pm to msec.pm. create
	sec_options

2002/07/18  Damien Chaumette  <dchaumette@mandrakesoft.com>

	* network/netconnect.pm: . draknet renamed in drakconnect

2002/07/18  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixes allowNVIDIA_rpms against perl-URPM.
	really fixes it.
	fixes error if package is not found (regression fixed).

	* pkgs.pm: removed all the commented out code obsoleted.
	fix speed improvement for computeGroupSize by computing closure directly
	(in
	order to have an approximative size, not the real one).
	add back change CD support.

	* standalone/XFdrake: fixes with new urpm library of urpmi.

2002/07/18  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: 
	  - set $::prefix
	  - drop $o->{root} (was "/tmp/root-perl-install" when testing but
	completly unused)

	* standalone/XFdrake, install_steps_interactive.pm: don't pass the prefix
	parameter, not needed/wanted anymore

	* Xconfigurator.pm, Xconfigurator_consts.pm, Xconfig.pm: 
	  - %standard_monitors are now in Cards+, dropping them
	  - multi head support generalized, now based on Cards+ MULTI_HEAD
	  - fix some ModeLines being written twice in XF86Config
	  - remove setting DefaultFbBpp to 32
	(since it is the default in all my tests)

	* common.pm, install_any.pm: use $::prefix instead of $::o->{prefix}

2002/07/18  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_any.pm, install_steps_interactive.pm: add support/option for
	Windows(tm) authentication via winbind

2002/07/18  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: 7mdk changes
	6mdk final changes

	* harddrake/bttv.pm: useless standalone dependancy for pixel fscking
	checker

	* Makefile: faster startup: remove use (diagnostics|vars|strict) in srpm
	target as
	in local target (dams fsck)

	* harddrake/TODO: update

	* harddrake/data.pm: s/draknet/drakconnect/
	  - bump version number
	  - move scsi & ata controllers, tv-audio, dvd, burners, ... in their
	own "non configurable" sections

2002/07/18  warly

	* share/logo-mandrake.png: install logo for 9.0 beta 1

2002/07/18  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fix speed improvement for computeGroupSize by computing closure
	directly (in
	order to have an approximative size, not the real one).
	add back change CD support.

2002/07/18  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm, Xconfigurator_consts.pm, Xconfig.pm: 
	  - %standard_monitors are now in Cards+, dropping them
	  - multi head support generalized, now based on Cards+ MULTI_HEAD
	  - fix some ModeLines being written twice in XF86Config
	  - remove setting DefaultFbBpp to 32
	(since it is the default in all my tests)

2002/07/17  alus

	* share/po/pl.po: some more fixes
	some little changes

2002/07/17  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: added missing use pkgs.

2002/07/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* pkgs.pm: spell right harddrake (two 'd') in @preferred

	* tools/cvslog2changelog.pl: add daouda chaumette cbelisle

2002/07/17  Pixel  <pixel@mandrakesoft.com>

	* install_gtk.pm: normalize Modeline to ModeLine

	* common.pm: add function "internal_error" (a specialized "die")

	* drakxtools.spec: the new XFdrake needs latest ldetect-lst

	* Makefile (test_pms): exclude urpm from uses

	* printer.pm, printerdrake.pm: use {XXX} instead of {'XXX'} (as detected
	by new perl_checker)
	remove "$_ =~ " (as detected by new perl_checker)

	* any.pm: move the "if !$::testing" for not modifying inittab in function
	runlevel()
	(was in install_steps.pm)

	* commands.pm: remove "$_ =~ " (as detected by new perl_checker)

	* Xconfigurator.pm, Xconfigurator_consts.pm, install_steps.pm,
	standalone/XFdrake, Xconfig.pm: Big Xconfigurator.pm cleanup/rework
	  - use $X instead of $o (to avoid name conflict with DrakX's $o)
	  - {flag}{noclockprobe} unused, dropping it
	  - rename {memory} into "VideoRam"
	  - rename {ramdac} into {Ramdac}
	  - rename {chipset} into {Chipset}
	  - rename {clockchip} into {Clockchip}
	  - rename {keyboard}{xkb_model} into {keyboard}{XkbModel}
	  - rename {keyboard}{xkb_keymap} into {keyboard}{XkbLayout}
	  - drop {mouse}{chordmiddle} (obsolete)
	  - drop {mouse}{cleardtrrts} (obsolete, was not written to XF4 config)
	  - &testConfig is unused, removing it
	  - as a concequence, {clocklines} is never set, dropping it
	  - when UNSUPPORTED remove {driver}, instead of setting
	{flag}{unsupported}
	  - Cards+ now only provide {Chipset} for cards needing it
	  => {flag}{needChipset} not needed anymore
	  - moved setting needVideoRam in Cards+ (via NEEDVIDEORAM)
	  (hoping it will work: since the regexp was broken, it was never done.
	   (it was applied on the module field of pcitable, instead of the
	description))
	  - dropped modelines_text_Trident_TG_96xx case (it has never been used)
	  - rename %xkb_options into %XkbOptions
	  - rename {DRI_glx} into {DRI_GLX}, the value now comes from Cards+
	  instead of regexp'ing {identifier}
	  - rename {Utah_glx} into {UTAH_GLX}, the value now comes from Cards+
	  instead of regexp'ing {identifier}
	  - rename {Utah_glx_EXPERIMENTAL} into {UTAH_GLX_EXPERIMENTAL}, the
	value now comes from Cards+
	  instead of regexp'ing {identifier}
	  - very_bad_card and bad_card are now the same, the value now comes
	from
	  Cards+ (BAD_FB_RESTORE & BAD_FB_RESTORE_XF3)
	  - drop unused @accelservers
	  - remove $modelines_text_apple, use $modelines_text_ext instead
	  - don't use a <Section "Modes"> together with <UseModes "Mac Modes">,
	put
	  directly modelines in Section "Monitor"
	  (why should ppc behave differently than others!?)
	  - replace (conflicting) ModeLines "1280x1024 @ 74 Hz" and
	  "1280x1024 @ 76 Hz" with "1280x1024 @ 75 Hz" (from ddcxinfos)
	  - drop ModeLine "640x480 @ 72 Hz"
	  (it conflicts, and anyway, it has no real use nowadays :)
	  - drop comments about HorizSync, VertRefresh and ModeLine's from
	  XF86Config
	  - drop many unneeded stuff from XF86Config:
	  AutoRepeat, Xqueue, Xleds, NoTrapSignals, XkbTypes, XkbKeycodes,
	  XkbCompat, XkbRules, LeftAlt/RightAlt/ScrollLock/RightCtl
	  - drop section comments from XF86Config
	  - drop XF86_Mono configuration
	  (it doesn't work anyway, seems like it needs a special ModeLine?)
	  - drop 320x200 with XF86_SVGA (who can use this!?)
	  - do not write Screen section "accel" if the server configured is not
	an
	  accel one
	  - drop the "Generic VGA" Device section for XF4
	  (this device is unused)
	  - drop {monitor}{vendor}, {monitor}{model}, {card}{vendor},
	{card}{model},
	  {card}{board} (only description strings, not useful for running the
	server)
	  - use x_res instead of wres for things like 1024 in 1024x768

2002/07/17  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: added missing use pkgs.

2002/07/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* pkgs.pm: spell right harddrake (two 'd') in @preferred

2002/07/17  Pixel  <pixel@mandrakesoft.com>

	* install_gtk.pm: normalize Modeline to ModeLine

	* common.pm: add function "internal_error" (a specialized "die")

	* drakxtools.spec: the new XFdrake needs latest ldetect-lst

	* Makefile (test_pms): exclude urpm from uses

	* printer.pm, printerdrake.pm: use {XXX} instead of {'XXX'} (as detected
	by new perl_checker)
	remove "$_ =~ " (as detected by new perl_checker)

	* any.pm: move the "if !$::testing" for not modifying inittab in function
	runlevel()
	(was in install_steps.pm)

	* commands.pm: remove "$_ =~ " (as detected by new perl_checker)

	* Xconfigurator.pm, Xconfigurator_consts.pm, install_steps.pm,
	standalone/XFdrake, Xconfig.pm: Big Xconfigurator.pm cleanup/rework
	  - use $X instead of $o (to avoid name conflict with DrakX's $o)
	  - {flag}{noclockprobe} unused, dropping it
	  - rename {memory} into "VideoRam"
	  - rename {ramdac} into {Ramdac}
	  - rename {chipset} into {Chipset}
	  - rename {clockchip} into {Clockchip}
	  - rename {keyboard}{xkb_model} into {keyboard}{XkbModel}
	  - rename {keyboard}{xkb_keymap} into {keyboard}{XkbLayout}
	  - drop {mouse}{chordmiddle} (obsolete)
	  - drop {mouse}{cleardtrrts} (obsolete, was not written to XF4 config)
	  - &testConfig is unused, removing it
	  - as a concequence, {clocklines} is never set, dropping it
	  - when UNSUPPORTED remove {driver}, instead of setting
	{flag}{unsupported}
	  - Cards+ now only provide {Chipset} for cards needing it
	  => {flag}{needChipset} not needed anymore
	  - moved setting needVideoRam in Cards+ (via NEEDVIDEORAM)
	  (hoping it will work: since the regexp was broken, it was never done.
	   (it was applied on the module field of pcitable, instead of the
	description))
	  - dropped modelines_text_Trident_TG_96xx case (it has never been used)
	  - rename %xkb_options into %XkbOptions
	  - rename {DRI_glx} into {DRI_GLX}, the value now comes from Cards+
	  instead of regexp'ing {identifier}
	  - rename {Utah_glx} into {UTAH_GLX}, the value now comes from Cards+
	  instead of regexp'ing {identifier}
	  - rename {Utah_glx_EXPERIMENTAL} into {UTAH_GLX_EXPERIMENTAL}, the
	value now comes from Cards+
	  instead of regexp'ing {identifier}
	  - very_bad_card and bad_card are now the same, the value now comes
	from
	  Cards+ (BAD_FB_RESTORE & BAD_FB_RESTORE_XF3)
	  - drop unused @accelservers
	  - remove $modelines_text_apple, use $modelines_text_ext instead
	  - don't use a <Section "Modes"> together with <UseModes "Mac Modes">,
	put
	  directly modelines in Section "Monitor"
	  (why should ppc behave differently than others!?)
	  - replace (conflicting) ModeLines "1280x1024 @ 74 Hz" and
	  "1280x1024 @ 76 Hz" with "1280x1024 @ 75 Hz" (from ddcxinfos)
	  - drop ModeLine "640x480 @ 72 Hz"
	  (it conflicts, and anyway, it has no real use nowadays :)
	  - drop comments about HorizSync, VertRefresh and ModeLine's from
	  XF86Config
	  - drop many unneeded stuff from XF86Config:
	  AutoRepeat, Xqueue, Xleds, NoTrapSignals, XkbTypes, XkbKeycodes,
	  XkbCompat, XkbRules, LeftAlt/RightAlt/ScrollLock/RightCtl
	  - drop section comments from XF86Config
	  - drop XF86_Mono configuration
	  (it doesn't work anyway, seems like it needs a special ModeLine?)
	  - drop 320x200 with XF86_SVGA (who can use this!?)
	  - do not write Screen section "accel" if the server configured is not
	an
	  accel one
	  - drop the "Generic VGA" Device section for XF4
	  (this device is unused)
	  - drop {monitor}{vendor}, {monitor}{model}, {card}{vendor},
	{card}{model},
	  {card}{board} (only description strings, not useful for running the
	server)
	  - use x_res instead of wres for things like 1024 in 1024x768

2002/07/16  alus

	* share/po/pl.po: unused string removed

2002/07/16  cbelisle

	* standalone/draksec: re-write the part setting the security admin

	* security.pm: draksec - initial commit. preparing for the advanced
	section.

	* any.pm: draksec:
	  - rewrite the function to set the security admin
	  - remove ugly buttons, 'advanced' button will come later

2002/07/16  dchaumette

	* standalone/drakbug, standalone/interactive_http/authorised_progs,
	standalone/drakxconf: o finish moving draknet to drakconnect in
	standalone

2002/07/16  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: update with newer perl-URPM.
	added log (finding packages to upgrade or computing installed flag)

	* install_steps.pm: removed useless package selection cleaning.

	* install_steps_gtk.pm: code cleanup.

	* install_steps_interactive.pm: improve a little.
	fixed missing upgrade.
	added wait message when finding packages to upgrade.

	* install2.pm: fixed reference to step 'selectPackagesToUpgrade'.

	* install_any.pm: fixed die when choosePackages step is redone.

	* crypto.pm: allow upgrade (if any) by using version at 8.2.

2002/07/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* any.pm: small english fix thx to vdanen

	* share/po/id.po, share/po/sk.po, share/po/ru.po, share/po/gl.po,
	share/po/pt_BR.po, share/po/br.po, share/po/th.po, share/po/sl.po,
	share/po/no.po, share/po/et.po, share/po/ja.po, share/po/hr.po,
	share/po/tr.po, share/po/mt.po, share/po/ga.po, share/po/be.po,
	share/po/uk.po, share/po/ko.po, share/po/DrakX.pot, share/po/sv.po,
	share/po/sr.po, share/po/pl.po, share/po/fi.po, share/po/lt.po,
	share/po/sp.po, share/po/cy.po, share/po/ca.po, share/po/da.po,
	share/po/ar.po, share/po/bs.po, share/po/ro.po, share/po/wa.po,
	share/po/is.po, share/po/af.po, share/po/az.po, share/po/zh_TW.po,
	share/po/zh_CN.po, share/po/pt.po, share/po/vi.po, share/po/fr.po,
	share/po/nl.po, share/po/it.po, share/po/eu.po, share/po/es.po,
	share/po/de.po, share/po/eo.po, share/po/lv.po, share/po/el.po,
	share/po/cs.po, share/po/bg.po, share/po/hu.po: reflect typo fix in
	any.pm in the po's so that the translation are not broken

	* mdk-stage1/stage1.c: extend a bit fatal error when trying to execute
	/usr/bin/runinstall2 and it's not possible

2002/07/16  Pixel  <pixel@mandrakesoft.com>

	* standalone/drakTermServ: fix "$" in translated string

	* Makefile: don't display etags command (too long, not nice)

2002/07/15  daouda

	* standalone/drakbug: 
	  - isStandalone is set in standalone.pm, removed

	* standalone/draksec: 
	  - isStandalone is set in standalone.pm, removed.
	  - set isStandalone to 1 to center wait messages

2002/07/15  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: synced.

	* install_any.pm: synced with other module updated.

	* c/stuff.xs.pm: cleaned no more used method.

	* pkgs.pm: made upgrade almost work again (need testing and
	remove/deselect still doesn't
	work properly).

	* install_steps.pm: code re-organisation (a little).

	* install_steps_gtk.pm: fixed flag usage (still check selected package to
	upgrade but already selected
	are correctly shown).

2002/07/15  Pixel  <pixel@mandrakesoft.com>

	* ChangeLog: revert titi's error

2002/07/11  Pixel  <pixel@mandrakesoft.com>

	* rescue/list.i386: switch to vendor_perl

2002/07/10  daouda

	* standalone/drakbug: 
	  - code update
	  - use local http server for test.

2002/07/10  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm, install_steps_gtk.pm, crypto.pm, share/list, pkgs.pm,
	install_any.pm, install2.pm, install_steps_interactive.pm: use perl-URPM
	instead of rpmtools.

	* tools/Makefile: use vendor_perl instead of site_perl (check of
	rpmtools.pm and packdrake.pm presence).

2002/07/10  Pixel  <pixel@mandrakesoft.com>

	* tools/Makefile: nicer use of vendor_perl instead of site_perl (check of
	rpmtools.pm and
	packdrake.pm presence) ... i had forgot to commit :-(

	* ftp.pm: don't let Timeout kill us

	* modparm.pm: rollback titi's modif

	* detect_devices.pm: cleanup

	* share/list: add integer.pm (needed by Time::Local (needed by Net::FTP))

2002/07/10  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* drakxtools.spec: list and describe all gui tools from drakxtools
	enhance cohenrency: step 1
	  - ide and scsi devices use channel rather than bus to store their
	  physical connection, which is more logic (at least for eide)
	  - all devices have their connection bus in bus field, not in bus for
	  {pci,usb,...} and interface_type for {scsi,eide,other_block_devices}
	
	  - detect_devices:getIDE() : add eide_hds hash in order to be able to
	  split info field between model and vendor
	
	  - harddrake::ui : code reduction allowed by the above changes
	fix parrallel build
	fix perl depandancy on new perl

	* diskdrake/interactive.pm, detect_devices.pm, install_steps.pm,
	harddrake/ui.pm: enhance cohenrency: step 1
	  - ide and scsi devices use channel rather than bus to store their
	  physical connection, which is more logic (at least for eide)
	  - all devices have their connection bus in bus field, not in bus for
	  {pci,usb,...} and interface_type for {scsi,eide,other_block_devices}
	
	  - detect_devices:getIDE() : add eide_hds hash in order to be able to
	  split info field between model and vendor
	
	  - harddrake::ui : code reduction allowed by the above changes

	* modparm.pm: typo fix
	no need to test two times if modinfo is executable in normal (ie not
	in drakx) case ...

	* Makefile, Makefile.drakxtools: remove all
	(use\s+(diagnostics|vars|strict)' instances

2002/07/09  Pixel  <pixel@mandrakesoft.com>

	* Makefile: have MDK::Common's in TAGS

	* detect_devices.pm: rewrite getSCSI, now handling scanners

	* share/list: adapt to new perl 5.8.0

	* common.pm, modparm.pm: move join_lines to common

2002/07/09  Pixel  <pixel@mandrakesoft.com>

	* Makefile: have MDK::Common's in TAGS

	* detect_devices.pm: rewrite getSCSI, now handling scanners

	* share/list: adapt to new perl 5.8.0

	* common.pm, modparm.pm: move join_lines to common

2002/07/09  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/TODO: fix boot freeze on hw change: initscript was running us
	with stdout
	redirected to /dev/null; just use a small sh wrapper to fix it
	update

	* standalone/service_harddrake.sh: 
	  - redirect stderr
	  - remove old commented stuff
	fix boot freeze on hw change: initscript was running us with stdout
	redirected to /dev/null; just use a small sh wrapper to fix it

	* Makefile.drakxtools: fix boot freeze on hw change: initscript was
	running us with stdout
	redirected to /dev/null; just use a small sh wrapper to fix it

	* standalone/service_harddrake: 
	  - configurator got displayed
	  - move timeout around configurator asking (still not 100% ok)
	time out after 200 seconds
	fix boot freeze on hw change: initscript was running us with stdout
	redirected to /dev/null; just use a small sh wrapper to fix it

	* drakxtools.spec: fix url
	add harddrake service wrapper
	really final changes
	final batch of changes for -3mdk ?
	fix boot freeze on hw change: initscript was running us with stdout
	redirected to /dev/null; just use a small sh wrapper to fix it

	* Makefile.config: add harddrake service wrapper to installed files

	* harddrake/ui.pm: 
	  - add channel: primary/slave for eide deivces
	  - get rid of ->{set,get}_user_data
	ensure we don't mix scsi and pci devices

	* harddrake/bttv.pm: log only if options set
	typo fix
	only log explanations in standalone mode

	* share/po/Makefile: fake make so that its builtin rule to create file
	from file.sh doesn't
	nuke service_harddrake with it wrapper

2002/07/08  daouda

	* standalone/drakbug: 
	  - detect package automatically when app is chosen

2002/07/08  Pixel  <pixel@mandrakesoft.com>

	* Makefile: create the list_modules symlink
	make test_pms should now work (was pb with list_modules.pm)

	* install_steps.pm, any.pm: mtools config so that "mdir a:" accesses the
	usb floppy if one is there

	* diskdrake/hd_gtk.pm: do not display "Clear all" (and the other per kind
	buttons) for the raid tab

	* install_steps_interactive.pm: in case the licence is refused, ask for
	confirmation

	* diskdrake/interactive.pm: make Clear_all work on a LVM VG
	make Clear_all remove partitions from raids

2002/07/08  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/TODO: remove fixed stuff

	* Makefile.drakxtools: s/PHONY/.PHONY/
	  - simplifications
	  - harddrake support is complete

	* drakxtools.spec: update
	fix post: add start argument
	service changes batch for 2mdk
	rpmlint fixes
	parrallel build
	1.1.8-2mdk
	  - enhance descriptions
	  - various spec clean
	split-up between harddrake and harddrake-ui
	complete changelog
	  - obsoletes/provides libdetect-lst, libdetect-lst-devel, detect,
	detect-lst
	  - don't restart harddrake on install
	  - some stuff moved into Makefile.drakxtools
	  - fix harddrake menu entry
	  - fix build

	* harddrake/data.pm: cache @devices so that hw probe is only done once

	* standalone/harddrake2: no need to 'use strict' in "binary"

	* standalone/service_harddrake: 
	  - only work on start
	  - add "please wait" message
	  - really don't cry when no previous config
	skip configuration on firt run
	skip hw classes without configurator (which'll have a configurator
	after porting updfstab)

	* harddrake/ui.pm: 
	  - rehide "run config tool" button when it has been displayed in
	another hw class
	don't display "run config tool" button if no configurator availlable
	  - center the main window
	  - remove drakx decorations
	mice:
	  - s/nbuttons/Number of buttons/
	  - delete qw(MOUSETYPE XMOUSETYPE unsafe)
	don't delete info field in normal path
	  - eide devices: split up info field into vendor and model fields
	  - complete help
	hummm ... eide: 0->master, 1->slave :-(
	  - remove save_report menu entry, this is done by service_harddrake
	  - move $in declaration near where it's used
	eide hard disks : print master/slave for bus_location

2002/07/08  daouda

	* Makefile.config: 
	  - add drakbug

	* drakxtools.spec: 
	  - add dir recursively

	* standalone/drakbug: 
	  - detect package automatically when app is chosen
	  - standalone app

2002/07/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/mount.c: small readability & size enhancement

2002/07/08  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: in case the licence is refused, ask for
	confirmation
	help perl_checker

	* diskdrake/hd_gtk.pm: do not display "Clear all" (and the other per kind
	buttons) for the raid tab

	* diskdrake/interactive.pm: make Clear_all work on a LVM VG
	make Clear_all remove partitions from raids

	* Makefile: create the list_modules symlink
	make test_pms should now work (was pb with list_modules.pm)

2002/07/08  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* harddrake/ui.pm: 
	  - remove save_report menu entry, this is done by service_harddrake
	  - move $in declaration near where it's used
	eide hard disks : print master/slave for bus_location
	  - remove dead stuff
	  - comment some stuff
	minor simplication
	various cleanups:
	  - move all harddrake modules to harddrake namespace
	 - replace two use by require so that it's not done at compil time
	   but at runtime
	 - there was a missing $ in harddrake::ui.pm

	* harddrake/TODO: update todo list

	* install_steps_interactive.pm, standalone/draknet, harddrake/bttv.pm,
	standalone/harddrake2, standalone/service_harddrake, harddrake/data.pm:
	various cleanups:
	  - move all harddrake modules to harddrake namespace
	 - replace two use by require so that it's not done at compil time
	   but at runtime
	 - there was a missing $ in harddrake::ui.pm

	* drakxtools.spec: 
	  - some stuff moved into Makefile.drakxtools
	  - fix harddrake menu entry
	  - fix build
	fixes for missing files
	enhanced description

	* modules.pm: 
	  - s/snd-card/snd/
	  - make some code clearer

	* Makefile.drakxtools: 
	  - simplifications
	  - harddrake support is complete

	* scanner.pm: this doesn't need either "#!/usr/bin/perl" nor "use lib
	qw(/usr/lib/libDrakX);"

	* standalone/drakxtv: 
	  - fix options handling
	  - use "perl -w"
	  - s/bttv/harddrake::bttv/ due to recent changes

2002/07/07  daouda

	* drakxtools.spec: 
	  - directory should exist before mv'ing things (mkdir
	%%buildroot%%_initrddir)

2002/07/07  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm: smarter raidAutoStartRaidtab
	great new raidAutoStartRaidtab allowing to handle existing software
	raids
	even when RAID_AUTORUN is not supported by kernel (which is the case for
	us
	since md.o is a not builtin the kernel)

	* fsedit.pm: great new raidAutoStartRaidtab allowing to handle existing
	software raids
	even when RAID_AUTORUN is not supported by kernel (which is the case for
	us
	since md.o is a not builtin the kernel)

	* devices.pm: use c::total_sectors() instead of BLKGETSIZE

	* diskdrake/interactive.pm, raid.pm: ensure the raid is disactivated and
	marked dirty on any actions that destroy the raid

2002/07/07  daouda

	* Makefile: 
	  - remove share/wizard.rc in DISTFILE

	* drakxtools.spec: 
	  - directory should exist before mv'ing things (mkdir
	%%buildroot%%_initrddir)
	  - mv typo in %install section (titi sux)

2002/07/07  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm: smarter raidAutoStartRaidtab
	great new raidAutoStartRaidtab allowing to handle existing software
	raids
	even when RAID_AUTORUN is not supported by kernel (which is the case for
	us
	since md.o is a not builtin the kernel)
	remove detect_devices::check (including the annoying log about no
	modules for the pci entry)

	* modules.pm: new "append_to_etc_modules" function
	remove detect_devices::check (including the annoying log about no
	modules for the pci entry)

	* fsedit.pm: great new raidAutoStartRaidtab allowing to handle existing
	software raids
	even when RAID_AUTORUN is not supported by kernel (which is the case for
	us
	since md.o is a not builtin the kernel)

	* any.pm: small regexp cleanup

	* fs.pm, partition_table.pm: for greater symmetry with smb, drop isNfs in
	favour of isThisFs('nfs', ...)

	* interactive_newt.pm: make the buttons work in all cases
	  - workaround segfaults
	  - ensure the perl values are set when calling the clicked_may_quit
	callback

	* devices.pm: use c::total_sectors() instead of BLKGETSIZE

	* diskdrake/interactive.pm, raid.pm: ensure the raid is disactivated and
	marked dirty on any actions that destroy the raid

2002/07/06  Pixel  <pixel@mandrakesoft.com>

	* any.pm (ask_users): the user name length must be <= 32

	* diskdrake/interactive.pm (as suggested by Alexander Skwar)
	  - in interactive::check_type, check if the package (like jfsprogs) is
	installed
	  - use interactive::check_type where usefull
	  - cleanup

	* Makefile.config: standalone/drakbug doesn't exist! (why did deush add
	it???)
	it is standalone/harddrake2, not standalone/harddrake (poor deush must
	be loosing his brain :p)

	* diskdrake/hd_gtk.pm: s/check_type/diskdrake::interactive::check_type/
	  - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
	  - remove unused wizard.rc
	(as suggested by Alexander Skwar)
	  - in interactive::check_type, check if the package (like jfsprogs) is
	installed
	  - use interactive::check_type where usefull
	  - cleanup

	* fsedit.pm: /root and /mnt must "remain within the root filesystem" (ie
	can't be used as mountpoints), dixit redhat
	(package_needed_for_partition_type): return the package needed for a
	partition type
	(check_type): cleanup

	* install_any.pm (setDefaultPackages): use
	fsedit::package_needed_for_partition_type to get things like jfsprogs

	* fs.pm: supermount now handles fs=auto, using it :)

	* Makefile.drakxtools, my_gtk.pm, share/wizard.rc, drakxtools.spec: 
	  - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
	  - remove unused wizard.rc

2002/07/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* Makefile.config: add the harddrake service which was missing

	* printer.pm: try to simplify

	* harddrake/ui.pm: simplify: use reverse
	  - help system:
	  - add an help entry in help menu;
	   - begin to describe information fields
	
	   - reformat license in about window
	
	  - information frame (mostly fixing incoherency between various hw
	  classes fields)
	
	   - s/media type/media class/
	
	   - s/info/Hardware id/
	
	   - s/device/device file/
	
	   - split description into manufacturer/description
	
	   - eide devices:
	
		  - rename bus as bus_location
	
	       - set interface_type as bus
	
	   - scsi devices:
	
	       - set bus to SCSI
	
		  - set bus_location to bus:id fields
	
	   - don't print pci subids when non set
	
	   - remove fields that were already used above (vendor id subvendor
	     subid pci_bus pci_device pci_function)
	
	  - no need to return window after program exit
	
	  - print usage if needed
	
	  - embed hardware tree in a "detected hardware" frame
	
	  - cleanups:
	
	   - rename widget2 as frame
	
	   - remove dead commented code

	* drakxtools.spec: add harddrake2 service

	* standalone/icons/harddrake2/webcam.png,
	standalone/icons/harddrake2/harddrake.png,
	standalone/icons/harddrake2/keyboard.png,
	standalone/icons/harddrake2/ide_hd.png,
	standalone/icons/harddrake2/cable.png,
	standalone/icons/harddrake2/video.png,
	standalone/icons/harddrake2/tape.png,
	standalone/icons/harddrake2/joystick.png,
	standalone/icons/harddrake2/harddisk.png,
	standalone/icons/harddrake2/usb.png,
	standalone/icons/harddrake2/memory.png,
	standalone/icons/harddrake2/hw_network.png,
	standalone/icons/harddrake2/scsi_hd.png,
	standalone/icons/harddrake2/unknown.png,
	standalone/icons/harddrake2/floppy.png,
	standalone/icons/harddrake2/hw_printer.png,
	standalone/icons/harddrake2/scanner.png,
	standalone/icons/harddrake2/cd.png,
	standalone/icons/harddrake2/isdn.png,
	standalone/icons/harddrake2/tv.png,
	standalone/icons/harddrake2/sound.png,
	standalone/icons/harddrake2/scsi.png,
	standalone/icons/harddrake2/cpu.png,
	standalone/icons/harddrake2/hw_mouse.png,
	standalone/icons/harddrake2/modem.png,
	standalone/icons/harddrake2/K7.png: add harddrake2 icons

2002/07/06  Pixel  <pixel@mandrakesoft.com>

	* any.pm (ask_users): the user name length must be <= 32

	* commands.pm: adapt to new modprobe.pm

	* diskdrake/hd_gtk.pm: 
	  - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
	  - remove unused wizard.rc
	(as suggested by Alexander Skwar)
	  - in interactive::check_type, check if the package (like jfsprogs) is
	installed
	  - use interactive::check_type where usefull
	  - cleanup

	* diskdrake/interactive.pm (as suggested by Alexander Skwar)
	  - in interactive::check_type, check if the package (like jfsprogs) is
	installed
	  - use interactive::check_type where usefull
	  - cleanup
	(Resize): resize2fs handles ext3 :)

	* install_any.pm (setDefaultPackages): use
	fsedit::package_needed_for_partition_type to get things like jfsprogs
	when merge_fstabs, handle in a different way mtab and fstab (or
	manualFstab)
	=> this allows to force the type&options in manualFstab

	* fsedit.pm (package_needed_for_partition_type): return the package needed
	for a partition type
	(check_type): cleanup

	* docs/comparisons: various remarks about mandrake

	* partition_table_lvm_PV.pm: Allows people having PVs on unpartitioned
	disks to install
	(but no way to create such beasts)

	* Makefile.config: standalone/drakbug doesn't exist! (why did deush add
	it???)
	it is standalone/harddrake2, not standalone/harddrake (poor deush must
	be loosing his brain :p)
	add harddrake pm's

	* partition_table.pm: Allows people having PVs on unpartitioned disks to
	install
	(but no way to create such beasts)
	cleanup

	* fs.pm: supermount now handles fs=auto, using it :)
	when merge_fstabs, handle in a different way mtab and fstab (or
	manualFstab)
	=> this allows to force the type&options in manualFstab

	* Makefile.drakxtools, my_gtk.pm, share/wizard.rc, drakxtools.spec: 
	  - move diskdrake.rc from /etc/gtk to /usr/share/libDrakX
	  - remove unused wizard.rc

2002/07/06  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/lsnetdrake: simplify

	* Makefile: add harddrake to DISTFILES

	* printer.pm: try to simplify

	* harddrake/TODO: add bits regarding eide and scsi

	* standalone/harddrake2: add missing 'use lib' due to harddrak::ui changes

	* harddrake/ui.pm: simplify: use reverse
	  - help system:
	  - add an help entry in help menu;
	   - begin to describe information fields
	
	   - reformat license in about window
	
	  - information frame (mostly fixing incoherency between various hw
	  classes fields)
	
	   - s/media type/media class/
	
	   - s/info/Hardware id/
	
	   - s/device/device file/
	
	   - split description into manufacturer/description
	
	   - eide devices:
	
		  - rename bus as bus_location
	
	       - set interface_type as bus
	
	   - scsi devices:
	
	       - set bus to SCSI
	
		  - set bus_location to bus:id fields
	
	   - don't print pci subids when non set
	
	   - remove fields that were already used above (vendor id subvendor
	     subid pci_bus pci_device pci_function)
	
	  - no need to return window after program exit
	
	  - print usage if needed
	
	  - embed hardware tree in a "detected hardware" frame
	
	  - cleanups:
	
	   - rename widget2 as frame
	
	   - remove dead commented code

	* harddrake/data.pm: add a configurator for sound

	* standalone/icons/harddrake2/cable.png,
	standalone/icons/harddrake2/tape.png,
	standalone/icons/harddrake2/usb.png,
	standalone/icons/harddrake2/hw_network.png,
	standalone/icons/harddrake2/unknown.png,
	standalone/icons/harddrake2/hw_printer.png,
	standalone/icons/harddrake2/scanner.png,
	standalone/icons/harddrake2/isdn.png,
	standalone/icons/harddrake2/cd.png,
	standalone/icons/harddrake2/scsi.png,
	standalone/icons/harddrake2/hw_mouse.png,
	standalone/icons/harddrake2/K7.png,
	standalone/icons/harddrake2/webcam.png,
	standalone/icons/harddrake2/harddrake.png,
	standalone/icons/harddrake2/keyboard.png,
	standalone/icons/harddrake2/ide_hd.png,
	standalone/icons/harddrake2/harddisk.png,
	standalone/icons/harddrake2/joystick.png,
	standalone/icons/harddrake2/video.png,
	standalone/icons/harddrake2/memory.png,
	standalone/icons/harddrake2/scsi_hd.png,
	standalone/icons/harddrake2/floppy.png,
	standalone/icons/harddrake2/sound.png,
	standalone/icons/harddrake2/tv.png, standalone/icons/harddrake2/cpu.png,
	standalone/icons/harddrake2/modem.png: add harddrake2 icons

2002/07/05  daouda

	* Makefile.config: 
	  - add harddrake drakbug drakTermServ to STANDALONEPMS_

	* drakxtools.spec: 
	  - snapshot
	  - new entries:
	o harddrake2 : new hardware detection && configuration tool
		o drakbugreport: bug reporting tool a la Kde (not working!)
		o drakTermServ : configuration tool for diskless stations.

2002/07/05  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (prepare_write_fstab): for supermount, have "none" as the device
	(cleaner, and
	more coherent with the "supermount" script (tx to FredC))

2002/07/05  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* install_steps_interactive.pm: minimize startup: only load
	harddrake::bttv if the user click on "tv
	card" field in the hw summary window
	use harddrake::bttv to let people configure their tv card if it's
	misdetected

	* harddrake/ui.pm: remove uneeded "#!/...", standalone, lib, ... (this is
	a module)
	POSIX is no more used too.

	* harddrake/bttv.pm: remove device test: there're only two harddrake::bttv
	users,
	install_steps_interactive.pm and drakxtv which both have already
	tested that a bttv managed tv card is there.
	  - add more tv cards
	  - enable users to select number of buffers for mmap()
	  - better description for pll setting
	
	  - add tooltips help for some entries
	tv cards list:
	
		- split multi-cards entries
	
	     - reverse the hash (needed since now bttv card types are not
	       anymore unique)
	
		- complete the list from various sources
	
		- use a tree to display the list, it's clearer now since it's
	       splitted by vendors
	
	  - longer message
	  - remove uneeded stuff for modules ("#!/..", "use lib..", "use
	  standalone", ...)
	
	  - simplify bttv options managment:
	
	   - use if_, thanks MDK::Common
	
	   - s/mapn/map by using a hash at first
	
	   - s/mapn{if}/map{if_}
	
	  - don't read/write modules.conf here, drakx take care of that for us
	
	thus, the test program became:
	
	#!/usr/bin/perl
	
	use strict;
	use lib qw(/usr/lib/libDrakX);
	
	use standalone;
	use bttv;
	use interactive;
	use modules;
	
	modules::read_conf;
	bttv::config('interactive'->vnew());
	modules::write_conf;
	spec29: bttv configuration part of drakxtv.
	it can be used by:
	
	#!/usr/bin/perl
	
	use strict;
	use lib qw(/usr/lib/libDrakX);
	
	use standalone;
	use harddrake::bttv;
	use interactive;
	
	bttv::config('interactive'->vnew());

	* drakxtools.spec: fix typo
	fix dirs1/dirs2 mismatch
	  - M-q descriptions
	  - simplify file lists building
	  - we can use several -f on one "%%files" line

	* standalone/drakxtv: if we're root and there's a tv card managed by bttv,
	offer to
	configure bttv trough harddrake::bttv

	* tools/cvslog2changelog.pl: typo fix

	* harddrake/data.pm: remove uneeded "#!/.." and "use lib"

2002/07/05  François Pons  <fpons@mandrakesoft.com>

	* Makefile: 
	  - handle /lib/i686 case
	  - replace Mandrake/RPMS with Mandrake/RPMS*

2002/07/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pcmcia/cardmgr.c, mdk-stage1/pcmcia/lex_config.c,
	mdk-stage1/pcmcia/vg468.h, mdk-stage1/pcmcia/cardmgr.h,
	mdk-stage1/pcmcia/bulkmem.h, mdk-stage1/pcmcia/i82365.h,
	mdk-stage1/pcmcia/cirrus.h, mdk-stage1/pcmcia/config.h,
	mdk-stage1/pcmcia/driver_ops.h, mdk-stage1/pcmcia/version.h,
	mdk-stage1/pcmcia/cistpl.h, mdk-stage1/pcmcia/cs.h,
	mdk-stage1/pcmcia/Makefile, mdk-stage1/pcmcia/ds.h,
	mdk-stage1/pcmcia/pcmcia.h, mdk-stage1/pcmcia/cs_types.h,
	mdk-stage1/pcmcia/yacc_config.c, mdk-stage1/pcmcia/tcic.h,
	mdk-stage1/pcmcia/yacc_config.h, mdk-stage1/pcmcia/pcmcia_probe.c:
	pcmcia is now pcmcia_ (it was to begin with a clean branch of unmodified
	sources)

2002/07/05  Pixel  <pixel@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: make it work with "use
	strict"
	do not look at the mar files anymore, only use kernel/modules.pl (and so
	list_modules.pm)

	* diskdrake/interactive.pm: handle comments in fstab

	* fs.pm (merge_info_from_fstab): try to keep options from merged fstab IF
	the entry is for the same mountpoint AND the same device
	handle comments in fstab

	* share/rpmsrate: add gnupg in "4 SYSTEM", so that rpm do not *Require*
	gnupg, only suggest it very strongly :)

	* mdk-stage1/usb-resource/update-usb-ids.pl: 
	  - do not use mar files for the list of modules, use list_modules.pm
	via kernel/modules.pl instead
	  - use read_pcitable to parse usbtable

2002/07/05  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* harddrake/ui.pm: remove uneeded "#!/...", standalone, lib, ... (this is
	a module)
	POSIX is no more used too.

	* drakxtools.spec: fix typo
	fix dirs1/dirs2 mismatch
	  - M-q descriptions
	  - simplify file lists building
	  - we can use several -f on one "%%files" line
	  - add preliminary harddrake support
	
	  - clean %post
	
	  - bump version number

	* harddrake/bttv.pm: 
	  - remove uneeded stuff for modules ("#!/..", "use lib..", "use
	standalone", ...)
	  - simplify bttv options managment:
	
	   - use if_, thanks MDK::Common
	
	   - s/mapn/map by using a hash at first
	
	   - s/mapn{if}/map{if_}
	
	  - don't read/write modules.conf here, drakx take care of that for us
	
	thus, the test program became:
	
	#!/usr/bin/perl
	
	use strict;
	use lib qw(/usr/lib/libDrakX);
	
	use standalone;
	use bttv;
	use interactive;
	use modules;
	
	modules::read_conf;
	bttv::config('interactive'->vnew());
	modules::write_conf;
	spec29: bttv configuration part of drakxtv.
	it can be used by:
	
	#!/usr/bin/perl
	
	use strict;
	use lib qw(/usr/lib/libDrakX);
	
	use standalone;
	use harddrake::bttv;
	use interactive;
	
	bttv::config('interactive'->vnew());

	* Makefile: don't use sed when not needed

	* install_steps_interactive.pm: minimize startup: only load
	harddrake::bttv if the user click on "tv
	card" field in the hw summary window
	use harddrake::bttv to let people configure their tv card if it's
	misdetected

	* harddrake/data.pm: remove uneeded "#!/.." and "use lib"

2002/07/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm, install_steps_auto_install.pm,
	install2.pm, network/ethernet.pm, network/isdn.pm, commands.pm,
	printerdrake.pm, mouse.pm, network/netconnect.pm, install_any.pm,
	install_steps.pm, detect_devices.pm, bootloader.pm: adapt to new
	modules.pm

	* c/stuff.xs.pm: adapt to new ldetect

	* modules.pm: reworked, cleaned:
	  - the list of modules is moved to kernel/list_modules.pm (and a few
	functions too)
	  - new "add_probeall" function (similar to "add_alias")
	  -> used for scsi_hostadapter and usb-interface
	  - "load_multi" removed in favour of "load" which is now more powerful
	  - load_thiskind renamed load_category
	  - get_that_type renamed probe_category
	  - %modules::drivers dropped (handled for list_modules)
	still more cleanup to come

	* rescue/make_rescue_img: adapt to the move all.modules ->
	kernel/all.modules  and  all.kernels -> kernel/all.kernels

	* modparm.pm: rework, cleanup, simplify and make it work

	* install2: create symlink list_modules.pm in current directory for
	testing purpose

	* Makefile: when building the tar for drakxtools, handle specially
	list_modules.pm
	adapt to the move all.modules -> kernel/all.modules  and  all.kernels ->
	kernel/all.kernels

	* mdk-stage1/pci-resource/update-pci-ids.pl: new directory "kernel"
	containing:
	  - all.modules all.kernels update_kernel
	  - part of perl-install/modules.pm now in kernel/list_modules.pm and
	kernel/modules.pl
	  - update_kernel cleaned (it doesn't mention module names anymore, it
	is now in kernel/modules.pl)
	  - cleanup Makefile
	  - mdk-stage1 doesn't depend on perl-install anymore
	(more precisely mdk-stage1/pci-resource/update-pci-ids.pl)

	* any.pm: reworked & cleaned the kernel modules part
	  - adapt to new modules.pm
	  - adapt to new modparm.pm
	  - renamed setup_thiskind to load_category
	  - renamed setup_thiskind_backend to load_category_no_message

	* share/po/Makefile: make the "clean" rule less verbose

2002/07/04  daouda

	* standalone/draknet: 
	  - don't display clear password

2002/07/04  fcrozat

	* share/rpmsrate: Fix GNOME2 packages
	Install urw-fonts when installing XFree

2002/07/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated Turkish file

	* share/po/fr.po: updated French file

	* lang.pm: Changed some languages to defautl to utf-8
	removed X11_NOT_LOCALIZED (now Gnome2 fully supports right-to-left
	languages)

2002/07/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm, install_steps_auto_install.pm,
	install2.pm, network/ethernet.pm, network/isdn.pm, commands.pm,
	printerdrake.pm, mouse.pm, network/netconnect.pm, install_any.pm,
	install_steps.pm, detect_devices.pm, bootloader.pm: adapt to new
	modules.pm

	* c/stuff.xs.pm: adapt to new ldetect

	* modules.pm: reworked, cleaned:
	  - the list of modules is moved to kernel/list_modules.pm (and a few
	functions too)
	  - new "add_probeall" function (similar to "add_alias")
	  -> used for scsi_hostadapter and usb-interface
	  - "load_multi" removed in favour of "load" which is now more powerful
	  - load_thiskind renamed load_category
	  - get_that_type renamed probe_category
	  - %modules::drivers dropped (handled for list_modules)
	still more cleanup to come

	* getpkgs_deps, do_resize_fat: removed since unused

	* Makefile, rescue/make_rescue_img: adapt to the move all.modules ->
	kernel/all.modules  and  all.kernels -> kernel/all.kernels

	* modparm.pm: rework, cleanup, simplify and make it work

	* install2: create symlink list_modules.pm in current directory for
	testing purpose

	* mdk-stage1/pci-resource/update-pci-ids.pl: new directory "kernel"
	containing:
	  - all.modules all.kernels update_kernel
	  - part of perl-install/modules.pm now in kernel/list_modules.pm and
	kernel/modules.pl
	  - update_kernel cleaned (it doesn't mention module names anymore, it
	is now in kernel/modules.pl)
	  - cleanup Makefile
	  - mdk-stage1 doesn't depend on perl-install anymore
	(more precisely mdk-stage1/pci-resource/update-pci-ids.pl)

	* tools/specific_arch: simplified using MDK::Common

	* any.pm: reworked & cleaned the kernel modules part
	  - adapt to new modules.pm
	  - adapt to new modparm.pm
	  - renamed setup_thiskind to load_category
	  - renamed setup_thiskind_backend to load_category_no_message

	* share/po/Makefile: make the "clean" rule less verbose

2002/07/04  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* harddrake/TODO: add harddrake2 todo list

	* harddrake/data.pm: get rid of 'use vars'
	remove wait_message hack for printerdraker, better use class_discard
	harddrake2: "the return of the vengeance son"
	  - harddrake/data.pm: the data structure
	  - harddrake/ui.pm: the ui code
	
	  - standalone/service_harddrake: the init.d service (which need a few
	polishing (timeout, ...)
	
	  - standalone/harddrake2: the ui caller which need to be dadou/ln -fied

	* harddrake/ui.pm: don't stack signals on config buttons
	  - remove no more used @pid_launched
	  - better GUI reactivity: don't wait for config tool to complete, just
	  "fork and forget" [(c) us air force] and refuse to run another
	  config tool until the first one to complete
	print "Running $configurator ..." in status bar while running a config
	tool
	  - POSIX is needed for POSIX::wait
	  - move strict and standalone require at top
	
	  - c is unused
	
	  - comment exceptions in devices loop (ie skip classes without any
	  devices or any detector
	
	  - optimize away $pid
	fix move from harddrake.pm to harddrake/data.pm:
	
	  - menu does appear
	
	  - information fields are translated from raw to english again
	harddrake2: "the return of the vengeance son"
	
	  - harddrake/data.pm: the data structure
	
	  - harddrake/ui.pm: the ui code
	
	  - standalone/service_harddrake: the init.d service (which need a few
	polishing (timeout, ...)
	
	  - standalone/harddrake2: the ui caller which need to be dadou/ln -fied

	* detect_devices.pm: add tapes() for harddrake2

	* standalone/harddrake2, standalone/service_harddrake: harddrake2: "the
	return of the vengeance son"
	  - harddrake/data.pm: the data structure
	  - harddrake/ui.pm: the ui code
	
	  - standalone/service_harddrake: the init.d service (which need a few
	polishing (timeout, ...)
	
	  - standalone/harddrake2: the ui caller which need to be dadou/ln -fied

2002/07/03  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/probing.c: fixed static definition when non static
	declaration (gcc limitation).
	added conditional code around network detection.

2002/07/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/mar/mar-extract-only.c, mdk-stage1/minilibc.c,
	mdk-stage1/newt/newt.c, mdk-stage1/bzlib/bzlib.c,
	mdk-stage1/newt/listbox.c, mdk-stage1/newt-frontend.c,
	mdk-stage1/disk.c, mdk-stage1/modules.c, mdk-stage1/stage1.c,
	mdk-stage1/newt/checkboxtree.c, mdk-stage1/mar/mar-frontend.c,
	mdk-stage1/Makefile.common, mdk-stage1/url.c, mdk-stage1/newt/textbox.c,
	mdk-stage1/newt/grid.c, mdk-stage1/dhcp.c, mdk-stage1/init.c,
	mdk-stage1/automatic.c, mdk-stage1/newt/entry.c: compile with -W

2002/07/02  daouda

	* my_gtk.pm: 
	  - fill a combo by default :
	gtkcombo_setpopdown_strings($combo_widget,@strings)

2002/07/02  gbeauchesne

	* c/smp.c: 
	  - TODO: Update ia64 check with /proc/pal/cpuX ?
	  - TODO: Update x86_64 check when SMP machines are actually available
	  - Conditionalize compilation of main() with TEST macro

2002/07/02  Pixel  <pixel@mandrakesoft.com>

	* network/smb.pm: try harder to find the full list of servers available,
	using "smbclient -L" to
	check the workgroup masters

2002/07/01  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm (raw_hd_mount_point): nicer default mount point

2002/06/28  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm, network/smb.pm, network/smbnfs.pm: 
	  - add authentification in diskdrake --smb (esp. for windows NT)
	  - use "credentials=" to put the passwords
	(ideas and investigations from Stew Benedict,
	integrated by Pixel, but need testing)
	Known bug: if you want to change the password when there are 2 entries
	in fstab
	  using the same username=/password=, writing the credentials is done in
	random order,
	  => you've got one chance in 2 that the password is changed :-(

	* fs.pm: 
	  - add authentification in diskdrake --smb (esp. for windows NT)
	  - use "credentials=" to put the passwords
	(ideas and investigations from Stew Benedict,
	integrated by Pixel, but need testing)
	Known bug: if you want to change the password when there are 2 entries
	in fstab
	  using the same username=/password=, writing the credentials is done in
	random order,
	  => you've got one chance in 2 that the password is changed :-(
	handle spaces in mount points and devices (using \040)

2002/06/27  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakTermServ, standalone/icons/drakTS.620x57.png: Add
	drakTermServ application and icon.

2002/06/26  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, install_steps_interactive.pm, install2.pm: ensure
	licence step is asked in any case (ie. even when selectLanguage is
	automatic)

	* any.pm: "my" variables where needed

2002/06/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po, share/po/ar.po: Updated po files

2002/06/19  Frederic Lepied  <flepied@mandrakesoft.com>

	* Makefile: corrected rules to make distributable rpms.

2002/06/19  François Pons  <fpons@mandrakesoft.com>

	* patch/patch-oem-hp.pl: added patch-oem.pl file used to generate HP
	Mandrake Linux 8.2.

2002/06/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: remove a few drivers so that hd.img and network.img are
	possible with latest BOOT kernel

2002/06/19  Pixel  <pixel@mandrakesoft.com>

	* standalone/fileshareset: use "wide links = no" for exporting via samba
	(thanks to Jan Schäfer)

	* fs.pm: mounting of ntfs after install really mount the partition (thanks
	to Buchan Milne)

2002/06/18  daouda

	* my_gtk.pm: 
	  - add gtkset_text, gtkprepend_text, gtkappend_text for entry widgets

2002/06/18  Frederic Lepied  <flepied@mandrakesoft.com>

	* Makefile.drakxtools: manage security subdir.

	* Makefile: added targets to build test and distribution rpms and srpms
	(localrpm,
	localsrpm, rpm, srpm).
	added security to the installed directories

	* pam.net_monitor, diskdrake/diskdrake.html, drakxtools.spec,
	apps.net_monitor: ripped from the srpm

2002/06/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

2002/06/17  cbelisle

	* standalone/draksec: added server, user and network advanced options

	* any.pm: draksec: customize entries for each options (lists, checkboxes
	and text boxes)
	Added user,server and network advanced options

	* security/msec.pm: 
	  - Customize entries for each options (checkboxes, text boxes and
	lists)
	added network, server and user advanced options

2002/06/15  alus

	* share/po/pl.po: updates

2002/06/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: Catalan doesn't have French fallback anymore

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2002/06/11  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm: added /tmp in @suggestions_mntpoints (as suggested by
	Philippe Coulon)

2002/06/10  cbelisle

	* standalone/draksec: Add an entry for the security user email

	* security/msec.pm: Initial commit

	* any.pm: Add security user email entry in draksec

2002/06/10  daouda

	* network/tools.pm: 
	  - choose country according to timezone.

2002/06/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/syncrpms: english fix

2002/06/10  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pm: s/class/class_/ for ldetect 0.4

2002/06/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* timezone.pm: remove duplicate entry in ntp_servers

	* interactive_gtk.pm, my_gtk.pm: split ask_browse_tree_info from
	interactive_gtk
	to my_gtk between widgets creation and real
	stuff so that we can now call it with widgets
	places differently

2002/06/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated po file

2002/06/05  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: adapt to new lilo

2002/06/05  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: use -ff for mkreiserfs, do not use -q for mkreiserfs

	* bootloader.pm: adapt to new lilo

2002/06/05  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: use -ff for mkreiserfs, do not use -q for mkreiserfs

2002/06/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stage1.c, install_steps_interactive.pm, any.pm,
	install_steps_gtk.pm, mdk-stage1/network.c, mdk-stage1/disk.c: english
	fixes thx to vincent meyer

2002/06/03  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: have the /root/drakx/auto_install.cfg.pl replay style
	instead of weird style
	with clearall unset & auto_allocate set

2002/05/29  alus

	* share/po/pl.po: little fixes

2002/05/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive_gtk.pm: remove typo fix when it's not a fix :-)
	small typo
	remove typo (hopefully really a typo ;p)

	* any.pm: be a bit more polite

2002/05/27  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: make sure patch is always read after defcfg to take
	precedance.

2002/05/27  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: have usb-interface1 for ehci-hcd

2002/05/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* Xconfigurator.pm: dams fixes a bug in the install :-)

2002/05/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: xtraceroute needs 3d

2002/05/15  alus

	* share/po/Changelog: info about polish translation

2002/05/14  alus

	* share/po/pl.po: polish finished
	updated polish translation
	polish updated to near finished. Fuzzy removed and checked

2002/05/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* docs/HACKING: libncurses* also for the sucking neuneux

2002/05/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pl.po, share/po/id.po: updated po file

2002/05/13  alus

	* share/po/pl.po: mostly finished polish translation.!!

2002/05/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* docs/HACKING: libbzip2* and more explanations about failing compilation

	* mdk-stage1/Makefile, mdk-stage1/ppp/pppd/ipcp.c, mdk-stage1/probing.c:
	adapt to gcc-3.1

2002/05/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: Put back xcin as default XIM for zh_TW.Big5

	* share/po/eu.po: small corrections

2002/04/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/usb-resource/update-usb-ids.pl: support USB2 controllers as
	well

2002/04/29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po, share/po/hu.po: updated po files

2002/04/26  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixed some machine with two present i830 CGC but only
	one in reality.

	* detect_devices.pm: updated usbMice to take care of device declared as
	Mouse:USB in usbtable (was
	not the case !)

2002/04/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2002/04/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* bootlook.pm: a few english fixes

	* any.pm: fixes
	english fixes from v meyer
	a few english fixes thx to vincent meyer

2002/04/19  alus

	* share/po/pl.po: It's only about 100 entries to the end

2002/04/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated Dutch file

	* share/po/hu.po: updated po file

2002/04/18  alus

	* share/po/pl.po: 3 more long messages
	one entry
	stil working....

2002/04/17  alus

	* share/po/pl.po: Mostly finished polish translation
	translations, fixes etc...

2002/04/17  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: final candidate.

	* rescue/tree/etc/oem: final candidate.
	add gcc-cpp to oem install.

2002/04/16  alus

	* share/po/pl.po: still working
	Few fixes
	Updated translation. Many strings is not yet translated...

2002/04/16  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: sync with oem-prepare
	fixed stupid error.
	forget packdrake module invocation.
	fixed to support non standard rpm filename.

	* tools/oem-prepare: add gcc-cpp to always installed.
	disable unselection of some package (gmc, all gcc3.0 stuff).

2002/04/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: only main version of automake

2002/04/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated po file

2002/04/16  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: handle "Cancel" on NIS / LDAP server
	dialog box

2002/04/15  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: ipchains now conflicts with iptables

2002/04/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eu.po: Another small fix
	Small corrections

2002/04/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ro.po: merged with drakfloppy strings

2002/04/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/mt.po: updated Maltese file

2002/04/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eu.po: small typo correction

2002/04/10  warly

	* share/rpmsrate: autofs -> 2

2002/04/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: time to remove ipchains/2.2 stuff since now ipchains
	and iptables
	packages conflict

2002/04/09  Pixel  <pixel@mandrakesoft.com>

	* partition_table_dos.pm, partition_table_gpt.pm,
	partition_table_empty.pm, partition_table_bsd.pm,
	partition_table_sun.pm, partition_table_mac.pm: nicer debug "bag magic"
	error message (thanks to Brian J. Murrell)

2002/04/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fixed a bunch of things

	* install_steps_interactive.pm, install_interactive.pm, network/isdn.pm,
	partition_table.pm, install_steps_gtk.pm, Xconfigurator.pm,
	printerdrake.pm, network/tools.pm, diskdrake/interactive.pm,
	network/netconnect.pm, fsedit.pm, diskdrake/removable_gtk.pm,
	network/network.pm, printer.pm, interactive_stdio.pm: fix a few english
	strings

2002/04/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: merged with
	drakfloppy strings

2002/04/07  Yves Duret <yduret@mandrakesoft.com>

	* standalone/drakfloppy: moving from his own rpm to drakxtools

	* Makefile.config: add drakfloppy to STANDALONEPMS_

2002/04/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt

2002/04/04  sdupont

	* standalone/drakbackup: please yduret, do not commit these changes on cvs
	before to test it.
	you can say "bugs fixes" only if you have corrected  some errors but not
	if you create it!
	the backup on cd was disabled because the backend is not available for
	moment.

	* standalone/drakfont: remove uninteresting yduret changes,
	would it be possible to know what are your "bugs fixies" ?
	to yduret: I'm the creator of this program so please do not remove my
	changes.

2002/06/05  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: use -ff for mkreiserfs, do not use -q for mkreiserfs

2002/06/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stage1.c, install_steps_interactive.pm, any.pm,
	install_steps_gtk.pm, mdk-stage1/network.c, mdk-stage1/disk.c: english
	fixes thx to vincent meyer

2002/06/03  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: have the /root/drakx/auto_install.cfg.pl replay style
	instead of weird style
	with clearall unset & auto_allocate set

2002/05/29  alus

	* share/po/pl.po: little fixes

2002/05/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive_gtk.pm: remove typo fix when it's not a fix :-)
	small typo
	remove typo (hopefully really a typo ;p)

	* any.pm: be a bit more polite

2002/05/27  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: make sure patch is always read after defcfg to take
	precedance.

2002/05/27  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: have usb-interface1 for ehci-hcd

2002/05/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* Xconfigurator.pm: dams fixes a bug in the install :-)

2002/05/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: xtraceroute needs 3d

2002/05/15  alus

	* share/po/Changelog: info about polish translation

2002/05/14  alus

	* share/po/pl.po: polish finished
	updated polish translation
	polish updated to near finished. Fuzzy removed and checked

2002/05/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* docs/HACKING: libncurses* also for the sucking neuneux

2002/05/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pl.po, share/po/id.po: updated po file

2002/05/13  alus

	* share/po/pl.po: mostly finished polish translation.!!

2002/05/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* docs/HACKING: libbzip2* and more explanations about failing compilation

	* mdk-stage1/Makefile, mdk-stage1/probing.c: adapt to gcc-3.1

2002/05/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: Put back xcin as default XIM for zh_TW.Big5

	* share/po/eu.po: small corrections

2002/04/29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po, share/po/hu.po: updated po files

2002/04/26  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixed some machine with two present i830 CGC but only
	one in reality.

	* detect_devices.pm: updated usbMice to take care of device declared as
	Mouse:USB in usbtable (was
	not the case !)

2002/04/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2002/04/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* bootlook.pm: a few english fixes

	* any.pm: fixes
	english fixes from v meyer
	a few english fixes thx to vincent meyer

2002/04/19  alus

	* share/po/pl.po: It's only about 100 entries to the end

2002/04/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated Dutch file

	* share/po/hu.po: updated po file

2002/04/18  alus

	* share/po/pl.po: 3 more long messages
	one entry
	stil working....

2002/04/17  alus

	* share/po/pl.po: Mostly finished polish translation
	translations, fixes etc...

2002/04/16  alus

	* share/po/pl.po: still working
	Few fixes
	Updated translation. Many strings is not yet translated...

2002/04/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: only main version of automake

2002/04/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated po file

2002/04/16  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: handle "Cancel" on NIS / LDAP server
	dialog box

2002/04/15  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: ipchains now conflicts with iptables

2002/04/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eu.po: Another small fix
	Small corrections

2002/04/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ro.po: merged with drakfloppy strings

2002/04/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/mt.po: updated Maltese file

2002/04/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eu.po: small typo correction

2002/04/10  warly

	* share/rpmsrate: autofs -> 2

2002/04/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: time to remove ipchains/2.2 stuff since now ipchains
	and iptables
	packages conflict

2002/04/09  Pixel  <pixel@mandrakesoft.com>

	* partition_table_dos.pm, partition_table_gpt.pm,
	partition_table_empty.pm, partition_table_bsd.pm,
	partition_table_sun.pm, partition_table_mac.pm: nicer debug "bag magic"
	error message (thanks to Brian J. Murrell)

2002/04/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fixed a bunch of things

	* install_steps_interactive.pm, install_interactive.pm, network/isdn.pm,
	partition_table.pm, install_steps_gtk.pm, Xconfigurator.pm,
	printerdrake.pm, network/tools.pm, diskdrake/interactive.pm,
	network/netconnect.pm, fsedit.pm, diskdrake/removable_gtk.pm,
	network/network.pm, printer.pm, interactive_stdio.pm: fix a few english
	strings

2002/04/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/mt.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: merged with
	drakfloppy strings

2002/04/07  Yves Duret <yduret@mandrakesoft.com>

	* standalone/drakfloppy: moving from his own rpm to drakxtools

	* Makefile.config: add drakfloppy to STANDALONEPMS_

2002/04/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt

2002/04/04  sdupont

	* standalone/drakbackup: please yduret, do not commit these changes on cvs
	before to test it.
	you can say "bugs fixes" only if you have corrected  some errors but not
	if you create it!
	the backup on cd was disabled because the backend is not available for
	moment.

	* standalone/drakfont: remove uninteresting yduret changes,
	would it be possible to know what are your "bugs fixies" ?
	to yduret: I'm the creator of this program so please do not remove my
	changes.

2002/04/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt

2002/04/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* c/Makefile.PL: rpmlib 4.0.4 now also needs libpopt

2002/04/03  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: setting /etc/sysconfig/msec for chkconfig which
	doesn't use $ENV{SECURE_LEVEL} anymore

2002/04/03  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: setting /etc/sysconfig/msec for chkconfig which
	doesn't use $ENV{SECURE_LEVEL} anymore

2002/04/02  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: do not have "root=" with no root (needed for memtest)
	(thanks to Borsenkow Andrej)

	* share/rpmsrate: add tmpwatch (since it is not mandatory any more)

2002/03/30  Yves Duret <yduret@mandrakesoft.com>

	* standalone/drakbackup, standalone/drakfont: bugs fixes, code clean up,
	more mdkish..

2002/03/26  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Fixed several problems related to HP
	multi-function devices:
	  - Parallel multi-function devices worked only on the first (onboard)
	parallel
	port.
	  - HP LaserJet 2200 needs HPOJ for printing via USB.
	  - For the HP OfficeJet D series the scanning instructions were not
	shown.
	  - HPOJ does not work with HP PhotoSmart 10xx, 11xx, and 12xx.

2002/03/22  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: cleaned gtkpowerpack

2002/03/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: use /root rather than /tmp for some temp files (security
	suxx)

2002/03/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/list: rpm 4.0.4

	* mdk-stage1/network.c: don't save DHCP_HOSTNAME if the value is void

2002/03/20  sdupont

	* standalone/drakfont: fixing problems
	exchanging: ttmkfdir by  /usr/X11R6/bin/mkttfdir
	which generate correct fonts.dir

	* standalone/drakbackup: remove backup on cd

2002/03/20  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* standalone/drakxtv: use log for what is not related to explanations

2002/03/19  François Pons  <fpons@mandrakesoft.com>

	* tools/updatehdlist: take care of commercial medium (not syncable).

2002/03/19  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* standalone/drakxtv: 
	  - default tv norm is pal rather than ntsc (because of alphabetical
	sort) since it's the most used tv norm
	  - figure out tv norm & country (aka frequency table) from locales
	
	  - add a hash based on lang in order to do this
	
	  - add --no-guess if one doesn't want drakxtv to automagically guess tv
	  norm and geographic area through locales (lang.pm)
	
	  - log with standalone::explanations:
	
		 - guessed values from locales: language, tv norm and country
	
		 - runned command to scan for tv channels
	
	  	 - ~/.xawtv creation
	
	
	  - s/bcast/broadcast/ in displayed messages
	
	  - add -h and --help support

2002/03/18  dam's  <damien@mandrakesoft.com>

	* install_gtk.pm, mouse.pm, my_gtk.pm: corrected create_xpm API

2002/03/18  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: fixed to support rpm filename incoherent to standard
	naming for commercial
	packages (commercial are *really* shit (almost, for the hope) all the
	time ?)

2002/03/16  dam's  <damien@mandrakesoft.com>

	* network/ethernet.pm: we now consider dhcp provide GATEWAY and internet
	connection.

2002/03/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po, share/po/ar.po: updated po file

2002/03/16  Pixel  <pixel@mandrakesoft.com>

	* network/ethernet.pm: small cleanup on untested code (need testing:)

2002/03/16  dam's  <damien@mandrakesoft.com>

	* network/ethernet.pm: we now consider dhcp provide GATEWAY and internet
	connection.

2002/03/16  Pixel  <pixel@mandrakesoft.com>

	* network/ethernet.pm: small cleanup on untested code (need testing:)

2002/03/15  fabman

	* share/po/es.po: updated bad lilo/grub/yaboot translation
	updated spanish translations

2002/03/15  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: force mkinitrd *really* for bootsplash.
	force initrd regeneration for oem on some case (maybe the cause of
	bootsplash
	perturbation, as maintainer don't even known why it is running correctly
	:-)

	* pkgs.pm: do not try to get synthesis if hdlist is available as an handle
	on file (typical
	for updates).

	* share/rpmsrate: remove doublon on NVIDIA_nforce.
	update to 6mdk for NVIDIA_nforce*

2002/03/15  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: yet again add some dropped entities from drakx-help.xml
	add the dropped &linux-mandrake; &mandrake-linux; and a few &os-linux;

	* install_steps_interactive.pm: 
	  - remove obsolete code
	  - the result is to use directly $availableC instead $size2install
	which was min($availableC, $max_size)

2002/03/15  dam's  <damien@mandrakesoft.com>

	* share/po/ja.po: reverted ' \n' from pablo because I managed to correct
	the way we wrap for the advertising

	* install_steps_gtk.pm: submitting widget instead of style (style/font
	initialization bug from gtk

	* my_gtk.pm: corrected get_text_coord : widget instead of style, and
	handling of ugly language (/ja|zh/)

2002/03/15  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: do not try to get synthesis if hdlist is available as an handle
	on file (typical
	for updates).

	* rescue/tree/etc/oem: update lang according to lang.pm of 8.2 (remove
	@euro appended for 8.1).

2002/03/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: added xx_YY -> keyboard lines in addition of xx -> keyboard
	ones

2002/03/15  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: yet again add some dropped entities from drakx-help.xml
	add the dropped &linux-mandrake; &mandrake-linux; and a few &os-linux;
	s/Linux Mandrake/Mandrake Linux/ (from the drakx-help.xml not merged)

	* keyboard.pm (unpack_keyboards): return undef on error

2002/03/15  dam's  <damien@mandrakesoft.com>

	* share/po/ja.po: reverted ' \n' from pablo because I managed to correct
	the way we wrap for the advertising

	* install_steps_gtk.pm: submitting widget instead of style (style/font
	initialization bug from gtk

	* my_gtk.pm: corrected get_text_coord : widget instead of style, and
	handling of ugly language (/ja|zh/)

2002/03/15  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: update lang according to lang.pm of 8.2 (remove
	@euro appended for 8.1).

2002/03/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: added xx_YY -> keyboard lines in addition of xx -> keyboard
	ones

2002/03/15  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: s/Linux Mandrake/Mandrake Linux/ (from the
	drakx-help.xml not merged)

	* keyboard.pm (unpack_keyboards): return undef on error

2002/03/15  dam's  <damien@mandrakesoft.com>

	* share/po/ja.po: reverted ' \n' from pablo because I managed to correct
	the way we wrap for the advertising

	* install_steps_gtk.pm: submitting widget instead of style (style/font
	initialization bug from gtk

	* my_gtk.pm: corrected get_text_coord : widget instead of style, and
	handling of ugly language (/ja|zh/)

2002/03/15  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: update lang according to lang.pm of 8.2 (remove
	@euro appended for 8.1).

2002/03/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: added xx_YY -> keyboard lines in addition of xx -> keyboard
	ones

2002/03/15  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: s/Linux Mandrake/Mandrake Linux/ (from the
	drakx-help.xml not merged)

	* keyboard.pm (unpack_keyboards): return undef on error

2002/03/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ja.po: updated po file

2002/03/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakxtv: english

2002/03/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/da.po, share/po/no.po: updated po files

	* share/po/eu.po: updated po file

	* lang.pm: changed LANGUAGE for basque

	* share/po/ja.po: added \n in advertising

2002/03/14  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: CHARSET"iso-8859-1" and CHARSET"iso-8859-15" is no good
	for english which has CHARSET"C", adding it

	* share/rpmsrate.server: obsolete

2002/03/14  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* standalone/drakxtv: 
	  - add SECAM to france description to ease user comprehension
	  - remove unused variables
	  - revert gc & dam's (also known as the usual suckers) garbage
	  who'ven't the hardware to test:
	
		- explain in source why we don't try to install xawtv (see below)
	
		- just display a message if xawtv isn't installed
		  since drakx should have installed it
	
		- let it be runned as root again (how many times i'm
		  supposed to restore this behaviour)
	
		- retest with a tv card
	
	  - use %ENV rather than relying on shell ~ expansion
	
	  - if tv card wasn't detected, ask the user to spam us
	
	  - factorize $in->exit() out of scan4tvchannels()
	
	  - add to TODO list the possibility to install xawtv if needed
	
	  - check scantv return value and display an error message
	
	  - also if the wrapper was runned on console, display a nice
	  message saying one can now run xawtv under X11

2002/03/14  warly

	* share/rpmsrate: add commercial apps

2002/03/14  Yves Duret <yduret@mandrakesoft.com>

	* standalone/logdrake: fix some bug
	fix * bug in field matching/ not matching

2002/03/13  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: new gfx

2002/03/13  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: sync with oem (removed mach32 server).
	sync with oem.
	remove bzflag.
	synced with oem script.

	* rescue/tree/etc/oem: remove Mach32 XF3.3.6 server too.
	remove Mach8 and Mono driver for oem only.
	remove bzflag.
	fixed closure selection on sub groups (like 3D),
	moved some big package out of oem,
	minor fixes.

2002/03/13  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: new gfx

2002/03/13  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: sync with oem (removed mach32 server).
	sync with oem.
	remove bzflag.
	synced with oem script.

	* rescue/tree/etc/oem: remove Mach32 XF3.3.6 server too.
	remove Mach8 and Mono driver for oem only.
	remove bzflag.
	fixed closure selection on sub groups (like 3D),
	moved some big package out of oem,
	minor fixes.

2002/03/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po, share/po/eu.po: updated po files

2002/03/13  warly

	* share/rpmsrate: add aspell-fr and en for gabber require

2002/03/13  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed closure selection on sub groups (like 3D),
	moved some big package out of oem,
	minor fixes.

	* tools/oem-prepare: synced with oem script.

2002/03/13  gbeauchesne

	* share/rpmsrate: 
	  - Add openoffice with weight = 2

2002/03/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po, share/po/vi.po, share/po/cs.po, share/po/hu.po,
	share/po/eu.po: updated po files

	* lang.pm: small console font changes
	set default console fotns for latin1/0 to lat1-16 and lat0-16;
	the font lat0-sun16 is missing some chars of iso-8859-1/15 !

2002/03/13  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: add gcc and gcc-c++ in @preferred

2002/03/13  warly

	* share/rpmsrate: add aspell-fr and en for gabber require

2002/03/12  dam's  <damien@mandrakesoft.com>

	* network/network.pm: onboot option only in expert mode
	corrected domainname bug; added onboot option

2002/03/12  dam's  <damien@mandrakesoft.com>

	* standalone/drakbackup, standalone/drakfont: minor bug correction

	* standalone/net_monitor: greater timeout

	* network/tools.pm, network/netconnect.pm: changed timeout for testing
	internet connection

2002/03/12  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: remove synthesis if not found (filesize is 0)

	* Xconfigurator.pm: avoid Utah GLX only if > 800MB, not if <= 800MB (!)

	* install_any.pm: added fix to support update hdlist renaming (ie hdlist
	of update are always hdlist.cz).
	remove old synthesis file, to make sure gzip can build a new one.

	* share/rpmsrate: added nforce support (hack by adding kernel version
	inside)

2002/03/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

	* share/po/ga.po: fixed email address

	* share/po/zh_TW.po: updated po file

2002/03/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, bootloader.pm: don't have "quiet" boot in the server
	meta_class

	* pkgs.pm: "fam" is not a naughtyServers
	remove the old "boa" comment
	adapt naughtyServers for 8.2

2002/03/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: a few missing translations

2002/03/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt.po, share/po/ga.po, share/po/de.po, share/po/az.po,
	share/po/pt_BR.po, share/po/nl.po, share/po/ja.po, share/po/id.po,
	share/po/ar.po, share/po/mt.po, share/po/eo.po, share/po/da.po: updated
	po files

	* share/po/eu.po, share/po/it.po: updated po files
	merged with new strings from manuals

	* share/po/DrakX.pot, share/po/fr.po: merged with new strings from manuals

	* share/po/be.po, share/po/bg.po, share/po/et.po, share/po/hr.po,
	share/po/ko.po, share/po/is.po, share/po/pl.po, share/po/no.po,
	share/po/fi.po, share/po/el.po, share/po/lt.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/bs.po,
	share/po/cs.po, share/po/af.po: updated po files (finished merging with
	manual strings)
	updated po files

	* share/po/hu.po: updated po files
	updated po files

	* share/po/cy.po: updated po file
	updated po files

	* share/po/es.po: updated Spanish

	* share/po/sp.po, share/po/zh_CN.po, share/po/sr.po, share/po/tr.po,
	share/po/ru.po, share/po/wa.po, share/po/sv.po, share/po/th.po,
	share/po/sk.po, share/po/sl.po, share/po/vi.po, share/po/uk.po,
	share/po/ro.po, share/po/zh_TW.po: updated po files (finished merging
	with manual strings)

2002/03/11  dam's  <damien@mandrakesoft.com>

	* Makefile.config: added drakproxy

	* standalone/drakxtv: added embedded mode

2002/03/11  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: for updates, make tree as flat instead in order to
	see all packages.

2002/03/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: webmin: 3

	* standalone/drakxtv: 
	  - install xawtv when necessary instead of
	telling people to use urpmi (titi sucks)
	  - prints out a message when no tv card
	has been detected

	* share/po/fr.po: small ortograf

2002/03/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po, share/po/it.po, share/po/eu.po: merged with new strings
	from manuals

	* share/po/DrakX.pot: merged with new strings from manuals
	updated GErman file

	* share/po/de.po: updated GErman file

	* share/po/es.po: updated Spanish

2002/03/11  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (fullname2mouse): workaround when "1 Button" is not found

	* install_steps.pm, install2.pm: 
	  - default security level now set in miscellaneousBefore
	  - default security level is 3 in meta_class server

	* install_any.pm: 
	  - fix the setting of compssUsersChoices in auto_install when it is
	empty
	  - set the default compssUsersChoices adapted to the server meta_class

	* share/rpmsrate: remove phpgroupware from OFFICE (since it appeas twice,
	the rate is 4, and it requires apache, and ...)

	* Makefile: upload the various compssUsers* (esp. compssUsers.server)

	* install_steps_gtk.pm: 
	  - remove the hack for not displaying Utilities in classic meta_class
	  - new compssUsers groups for the server meta_class

	* share/compssUsers: remove "Utilities" here instead of removing it
	hackily in install_steps_gtk

	* share/compssUsers.server: fix the path=Utilities for the Utilities
	section

2002/03/11  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Small text fix.
	Security fix: Give a warning that SMB passwords can easily be revealed
	by normal users when printing on a Windows-hosted printer is set up.

	* detect_devices.pm: Reverted parts of the last change, they broke in
	non-DevFS environments (e. g. during installation).

2002/03/11  warly

	* share/rpmsrate: add bwbserver_linux in rpmsate for BeeWeb server

	* share/compssUsers.server: remove ICEWM choice

2002/03/11  Yves Duret <yduret@mandrakesoft.com>

	* tools/cvslog2changelog.pl: added yduret entry in user.

2002/03/11  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: add Rage Mobility as bad card for XF4 (was already bad
	card for XF3) (gégé report).

2002/03/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: updated help file

	* share/po/de.po, share/po/DrakX.pot: updated GErman file

2002/03/11  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm (Mount_point): when files exist in the chosen
	mount point, propose migration

	* install_steps_interactive.pm: search /commercial/i instead of
	/Application/ before showing the commercial license

	* standalone/drakboot, bootloader.pm: fix Stew sucks

	* install2.pm, install_steps.pm: 
	  - default security level now set in miscellaneousBefore
	  - default security level is 3 in meta_class server

	* install_steps_gtk.pm: 
	  - remove the hack for not displaying Utilities in classic meta_class
	  - new compssUsers groups for the server meta_class
	search /commercial/i instead of /Application/ before showing the
	commercial license

	* install_any.pm: 
	  - fix the setting of compssUsersChoices in auto_install when it is
	empty
	  - set the default compssUsersChoices adapted to the server meta_class

	* Makefile: upload the various compssUsers* (esp. compssUsers.server)

	* share/compssUsers: remove "Utilities" here instead of removing it
	hackily in install_steps_gtk

	* share/compssUsers.server: fix the path=Utilities for the Utilities
	section

2002/03/11  yduret

	* standalone/scannerdrake: re-re-re-re-re-re-uncomment the pkgs check
	line.

2002/03/10  chipaux

	* share/po/fr.po: Corrected few typo mistakes.

2002/03/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps.pm: gcize damienization

	* share/rpmsrate: put userdrake together with drakconf so that
	userdrake is not missing (till)

2002/03/10  siegel

	* share/po/help_xml2pm.pl: added tag filename

	* any.pm: added missing i18n _()

	* share/po/de.po: update
	and still fixes ...
	updates
	update

2002/03/10  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Protect the Star Office/OpenOffice.org configuration against
	manual changing of the "update-alternatives" assignment of the "lpr"
	command.

	* detect_devices.pm: Made USB printer auto-detection more stable and
	reliable.

2002/03/10  yduret

	* standalone/scannerdrake: added ASK DEVICE support

	* scanner.pm: added ASK support for more interactiveness during
	configuration

2002/03/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dhcp.c: comply better to ClientID stuff

2002/03/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po: updated po file

2002/03/09  yduret

	* standalone/scannerdrake: added sum up at the end
	uncomment line that checks if sane rpm is installed or not (thx gc).
	i sux,

2002/03/08  dam's  <damien@mandrakesoft.com>

	* standalone/drakproxy: drakproxy rewritten
	working drakproxy

	* install_steps.pm: corrected network up/down when network install

	* standalone/drakfont: ergonomy changed to fit in mcc
	corrected network up/down when network install

	* network/network.pm: proxy settings corrected

2002/03/08  fabman

	* share/po/es.po: updated spanish translation

2002/03/08  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed allowNVIDIA_rpms to take care of new kernel naming
	conventions.

	* standalone/XFdrake: fixed NVIDIA support to use newer kernel naming
	conventions.

	* Xconfigurator.pm: fixed possible additional XFree packages not installed
	if server is already
	installed.

2002/03/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: missing translations + a few changes

	* mdk-stage1/probing.c: have 4 seconds of delay for usb stuff
	to show up rather than seconds

2002/03/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po, share/po/it.po: updated po files

	* share/po/es.po: corrected typo

	* share/po/da.po: updated Danish file

	* lang.pm, share/locales-skeleton.tar.bz2: Added symlinks in
	locales-skeleton so non primary chinese encodings
	can work

	* share/po/ar.po: updated po file

	* share/po/cy.po: removed the "translation" of licence, it was random
	text.

2002/03/07  dam's  <damien@mandrakesoft.com>

	* share/po/fr.po, modparm.pm: corrected

2002/03/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/newt-frontend.c: english fix thx to till & phil

2002/03/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po: updated po file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
	share/po/af.po: updated pot file

2002/03/07  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: removing quota choices for reiserfs

2002/03/07  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor: make gc happy

	* modparm.pm, share/po/fr.po: corrected

	* standalone/draknet: corrected network/internet restart when already
	connected

	* network/netconnect.pm: corrected bad previous behaviour

	* standalone/drakfont: corrected bad system command

	* share/advertising/02-internet_icon.png,
	share/advertising/05-contcenter_icon.png,
	share/advertising/10-MDKexpert_icon.png, share/advertising/06-user.pl,
	share/advertising/08-games.pl, share/advertising/02-internet.pl,
	share/advertising/03-graphic_icon.png, share/advertising/07-server.pl,
	share/advertising/12-MDKstore_icon.png,
	share/advertising/06-user_icon.png,
	share/advertising/07-server_icon.png, share/advertising/09-MDKcampus.pl,
	share/advertising/10-MDKexpert.pl, share/advertising/05-contcenter.pl,
	share/advertising/04-develop.pl,
	share/advertising/09-MDKcampus_icon.png,
	share/advertising/12-MDKstore.pl, share/advertising/03-graphic.pl,
	share/advertising/04-develop_icon.png,
	share/advertising/08-games_icon.png: changed icon sizes

2002/03/07  fcrozat

	* share/rpmsrate: Evolution is not dependent on GNOME selection (not
	require gnome-core)

2002/03/07  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: avoid destroying some files in /etc.

	* install_steps_interactive.pm: fixed package tree with a given medium.

	* any.pm: fix autologin sometimes activated without user intervention.

2002/03/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: generate_automatic_stage1_params: also save
	the interface number in case the machine will
	have several interfaces; clean code a bit

	* mdk-stage1/network.c: better error msg regarding pcmcia net
	adapters supported either with pcmcia.img
	or network.img (amaury sucks)

	* install_steps_auto_install.pm: in replay mode, since
	$o->{interactiveSteps}
	exists, we can't simply ||= @graphical_steps,
	we need to push to ensure that the
	@graphical_steps is always honoured

	* standalone/drakgw: 
	  - call net_monitor to disable internet
	connection before network-restart
	  - user return value when status'ing the
	  initscripts rather than grepping their
	  text output

	* modules.pm: try to avoid segfaulting probeall stuff
	add ns83820 gigabit (goes to other.img)

	* rescue/rescue-doc: english fixes thx to phil

2002/03/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* standalone/drakfont: Added a missing _( ) around a text

	* share/po/vi.po, share/po/cy.po, share/po/hu.po, share/po/id.po: updated
	po files

	* share/po/ko.po, share/po/ca.po, share/po/tr.po: commented out the
	translations using argument switching (not yet handled by DrakX)

	* bootlook.pm, standalone/drakboot: i18n changes

	* keyboard.pm: corrected the locale->keyboard list building
	make keyboard selection choose first the 5 first chars of lang;
	then the 2 first chars;

	* share/po/eu.po: commented out the translations using argument switching
	(not yet handled by DrakX)
	updated po file

2002/03/07  Pixel  <pixel@mandrakesoft.com>

	* any.pm: fix fileshare custom config
	fix *some* stew errors

	* bootloader.pm: "--timeout=" must be after terminal
	add --timeout=... for "terminal serial ..." line in grub's menu.lst
	fix *some* stew errors

	* install_any.pm: don't have the adsl & modem passwords in report.bug

	* detect_devices.pm (zips__faking_ide_scsi): fix returned value in
	standalone
	(getSCSI): don't call isFloppyOrHD for ZIPs (lowers the number of kernel
	error when there is no floppy)

	* fs.pm: removing quota choices for reiserfs

2002/03/07  Stew Benedict  <sbenedict@mandrakesoft.com>

	* any.pm, bootlook.pm, standalone/drakboot, bootloader.pm: drakboot
	functionality for PPC

2002/03/07  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed bug of network not being started by Printerdrake
	during installation.

2002/03/07  warly

	* share/compssUsers.server, share/compssUsers, share/rpmsrate: update
	server, merge with normal rpmsrate

2002/03/06  dam's  <damien@mandrakesoft.com>

	* standalone/drakautoinst: corrected HASH and ARRAY label

2002/03/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ja.po, share/po/no.po, share/po/cy.po: updated po file

2002/03/06  Pixel  <pixel@mandrakesoft.com>

	* standalone/fileshareset (nfs_exports::update_server): ensure portmap is
	running

2002/03/06  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: corrected font stuff

	* standalone/drakautoinst: corrected HASH and ARRAY label

2002/03/06  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: no 3D with Utah GLX (XF 3.3) if more than 800 MB.

	* pkgs.pm: fixed error when using multiple removable media and user
	aborted installation
	(for some other error) and hdlists cannot be retrieved.
	add save of synthesis too when partitions are reformated, so that urpmi
	is happy after.
	fixed when hdlist gives no new package (new name) but only obsoleted
	package or
	updated package, ie security updates may appreciate.

	* install_any.pm: update for newer pkgs module (fix for abort during
	installation).

	* rescue/tree/etc/oem: allow oem script to be executable from standard cd
	set (powerpack or other).

2002/03/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ja.po: updated po file
	updated pot file

	* share/po/fr.po, share/po/cy.po, share/po/id.po, share/po/zh_TW.po:
	updated pot file
	updated some po files

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/nl.po, share/po/wa.po,
	share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: updated pot file

2002/03/06  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: add @preferred libxpm4

	* lang.pm: fix typo in %xim (for chineese)
	  - create the kde share/config's directory, so that kde config files
	are created in any case
	  - in user_only localedrake, ensure the /etc/sysconfig/i18n is taken
	into account when ~/.i18n doesn't exist (thanks to F.Crozat)

	* install_any.pm: ensure the fstab is kept on upgrade
	(g_auto_install): use "interactiveSteps" field instead of pushing in
	@install_steps_auto_install::graphical_steps

	* standalone/localedrake: when called by kcontrol with --apply, don't
	modify kde config files, kcontrol takes care of it more nicely

	* diskdrake/interactive.pm: translate the actions
	choose to activate crypto. type password. unselect encryption. Select
	encryption again, you were not asked for password. Fixed
	use formatError

	* bootloader.pm (add_append): don't add to entries of type 'other'

	* devices.pm (find_free_loop): fix

	* install_steps_interactive.pm, install_steps.pm: ensure the fstab is kept
	on upgrade

	* fsedit.pm: do not allow encrypted /var

2002/03/06  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* standalone/drakxtv: print an error message if xawtv isn't installed
	fix conflict between i18n and complete signal handler (ie return key
	and not value)

2002/03/06  warly

	* share/rpmsrate: remove abiword

2002/03/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pcmcia_/probe.c: an old sucking PCI card needs oldskool
	i82365 :-((, ugly patch

2002/03/05  warly

	* share/rpmsrate: add Fred Bastok modif
	remove too many duplicate in i18n packages that are now automatically
	added

2002/03/05  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* modules.pm: Add USB2 controller

2002/03/05  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: corrected expert option in install mode
	added expert mode

	* my_gtk.pm: greater interstice

	* modparm.pm: cosmetic
	gzipped modules handled

2002/03/05  fcrozat

	* share/rpmsrate: Install xlockmore when installing gnome, since
	xscreensaver can't lock
	root desktop..

2002/03/05  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: deactivate v4l module if DRI is enabled and r128
	driver used.

	* install_steps.pm: added auto restore of some files (/etc/profile) needed
	by upgrade (from .rpmnew).
	added log for hasNetwork (so that we can understand why installUpdates
	do nothing).

	* crypto.pm: avoid trying to find hdlist-updates.cz in existing medium
	(instead of ftp one).

	* fs.pm: fixed hd install to allow using specific directory.

	* install_any.pm: fix duplicate synthesis.hdlist.xxx file present in
	/var/lib/urpmi, and
	furthermore uncompressed :-(
	fixed possible bug when generating synthesis file for urpmi
	installation.

2002/03/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dhcp.c, mdk-stage1/dhcp.h, mdk-stage1/network.c: save
	dhcp_hostname for stage2

	* install_any.pm: fix bug in generating automatic stage1
	params for http

	* modules.pm: aironet core sucking thing

2002/03/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sr.po, share/po/sp.po: updated po files

2002/03/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: if mem=nopentium is given on cmdline, have it after
	install

	* modules.pm (extract_modules): created (was done in load_raw)

2002/03/05  Stew Benedict  <sbenedict@mandrakesoft.com>

	* Xconfigurator.pm: use UseFBDev for r128 - PPC

2002/03/05  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Added support for HP's newest MF devices: HP OfficeJet
	D series, HP LaserJet 33xx MFP.
	Fixed bug of printerdrake sometimes assuming the user has an MF device
	when he has typed the device file name in the expert mode.

2002/03/05  yduret

	* bootlook.pm: fix nobody bug

	* standalone/logdrake: mail alert: use eval {} to catch wizcancel

2002/03/04  dam's  <damien@mandrakesoft.com>

	* modparm.pm: corected weirdness, I suck

2002/03/04  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fix scroll total to match reality.
	fixed interpretation of size of package when doing an install (this can
	be
	severe, need testing).

2002/03/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cy.po, share/po/id.po: updated po file

2002/03/03  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm (gtkicons_labels_widget): since style is not set either, use
	the widget and ask it the style->font. This *works*
	(gtkicons_labels_widget): pass the style instead of directly passing the
	font

2002/03/03  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Let Star Office/OpenOffice.org configuration corrcet a bug
	in the PostScript produced by these programs so that the Euro symbol is
	printed correctly.

2002/03/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated po file

2002/03/02  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: better name for windobe new 0x42 special id (their
	own LVM marker)

	* detect_devices.pm: better jaz detection (thanks to Randy Welch)

2002/03/02  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Replaced "Open Office" by "OpenOffice.org".

2002/03/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po, share/po/da.po, share/po/vi.po, share/po/hu.po: updated
	po files

	* share/po/tr.po: updated po file

2002/03/02  Pixel  <pixel@mandrakesoft.com>

	* share/list: add lvreduce & lvextend

	* detect_devices.pm: fix ide zip name when there are already some other
	SCSI drives
	ZIPs and Jazz's are not floppies

	* diskdrake/interactive.pm (Resize): ensure we call lv_resize from lvm and
	adjust_* for normal partitions, even for destructive resizes

2002/03/02  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Replaced "Open Office" by "OpenOffice.org".

2002/03/01  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: fix gc's bulshit

2002/03/01  dam's  <damien@mandrakesoft.com>

	* services.pm: corrected translation used for shell command

	* my_gtk.pm: style & font correction

2002/03/01  François Pons  <fpons@mandrakesoft.com>

	* share/rpmsrate: updated INSTALL category with NOCOPY new flag added.

	* rescue/tree/etc/oem: added ext3 support.

	* share/rpmsrate.server: synced with rpmsrate INSTALL category.

	* install_any.pm: reset correct setup_postinstall_rpms calling.
	removed some card where 3D is not installed by default:
	Riva128, Radeon 8500 and Rage Mobility card.
	removed staling debug code.
	fixed bad copied package (if one is not found).

	* tools/oem-prepare: added handling of newer rpmsrate format with INSTALL
	category.

	* pkgs.pm: added pixel comments for handling INSTALL category and NOCOPY
	handling.
	only copy package in INSTALL category with a rate of at least 2.

2002/03/01  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: a few missing trads
	please translators, keep two newlines when
	there are two newlines in original string,
	it's on purpose

2002/03/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
	share/po/af.po: updated po files

	* share/po/fr.po: fixed two typos
	small corrections (non breakable spaces)

2002/03/01  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: handle leaving X for both Xdrakres and XFdrake (=>
	Xdrakres completly obsolete)

	* standalone/localedrake: restrict localedrake to installed lang

	* lang.pm: restrict localedrake to installed lang
	add 'C' in %charset2kde_font (so that english has normal fonts)

	* bootloader.pm: 
	  - do not indent "disk=... bios=..."
	  - $lilo->{first_hd_device} can be used to tell which drive is the
	first one
	for the BIOS. Useful when the bootloader is installed on a partition and
	not
	on the MBR.
	read "disk=/dev/xxx bios=0x8x" and save it

	* any.pm: restrict localedrake to installed lang
	ask which hard drive is the booting one when there is mixed kind of
	drives
	(scsi+ide, ide2+ide) and the bootloader is not installed on MBR

2002/03/01  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Reduced the paths to search for Star/Open Office, on systems
	without these applications installed the search needed a significant
	time.

2002/03/01  François Pons  <fpons@mandrakesoft.com>

	* share/rpmsrate: updated INSTALL category with NOCOPY new flag added.

	* share/rpmsrate.server: synced with rpmsrate INSTALL category.

	* install_any.pm: removed staling debug code.
	fixed bad copied package (if one is not found).

	* pkgs.pm: added pixel comments for handling INSTALL category and NOCOPY
	handling.
	only copy package in INSTALL category with a rate of at least 2.

2002/03/01  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dhcp.c: add hostname/domain in dhcp negociation,
	thx to david@eastcott.net

	* share/po/fr.po: please translators, keep two newlines when
	there are two newlines in original string,
	it's on purpose

2002/03/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po, share/po/zh_TW.po, share/po/hu.po: updated po files

2002/03/01  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: handle leaving X for both Xdrakres and XFdrake (=>
	Xdrakres completly obsolete)

	* detect_devices.pm: add is_a_recent_computer()

	* any.pm: call dcop as user

	* lang.pm: add 'C' in %charset2kde_font (so that english has normal fonts)
	switch en_GB, *_CH, da, es@tradicional and wa to iso-8859-15

	* bootloader.pm: read "disk=/dev/xxx bios=0x8x" and save it

	* mouse.pm: special case for non detected usb interface on a box with no
	mouse.
	we *must* find out if there really is no usb, otherwise the box may
	not be accessible via the keyboard (if the keyboard is USB)
	the only way to know this is to make a full pci probe

2002/02/28  dam's  <damien@mandrakesoft.com>

	* standalone/drakbackup: bugfixs
	corrected translation for crontab

	* modparm.pm: corrected modinfo path for isa modules during install

2002/02/28  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: try to fix if no chosen width has been found.
	removed Radeon 8500 from DRI capable cards.

	* rescue/tree/etc/oem: added curl as a bonus for oem install (it will be
	used by urpmi)
	added a2ps as a bonus (it fetch tetex where oem limited disk usage do
	not agree
	a lot).
	fixed bad copy of install packages.

	* tools/oem-prepare: added curl as a bonus for oem install (it will be
	used by urpmi)
	added a2ps as a bonus (it fetch tetex where oem limited disk usage do
	not agree
	a lot).
	fixed bad copy of INSTALL packages.

2002/02/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install2.pm: more precise msg when can't access kernel modules because
	we still have many dumb people on cooker asking what's going on

	* install_steps_interactive.pm: small english fix

2002/02/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/de.po, share/po/no.po: updated po files
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/is.po, share/po/hu.po,
	share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

	* share/po/sv.po: updated Swedish file
	updated pot file

2002/02/28  Pixel  <pixel@mandrakesoft.com>

	* rescue/make_rescue_img: resolve conflicts for short keytable names (eg:
	"no" could be either "no-dvorak" or "no-latin1")

	* keyboard.pm (loadkeys_files): ensure each file appear only once

2002/02/28  siegel

	* share/po/de.po: and another part of updates
	updates

2002/02/28  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* share/po/fr.po: last translation but not least.
	further updates
	update french translation

2002/02/28  dam's  <damien@mandrakesoft.com>

	* share/themes-marble3d.rc: rechanged bg for camille

	* standalone/drakbackup: corrected translation for crontab

2002/02/28  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed bad copy of install packages.

	* tools/oem-prepare: fixed bad copy of INSTALL packages.

	* Xconfigurator.pm: removed Radeon 8500 from DRI capable cards.

2002/02/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/aliases, rescue/list: include /sbin/fsck.ext3 since our users are
	so dumb

2002/02/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/zh_TW.po: updated Chinese file

2002/02/28  Pixel  <pixel@mandrakesoft.com>

	* rescue/make_rescue_img: resolve conflicts for short keytable names (eg:
	"no" could be either "no-dvorak" or "no-latin1")

	* keyboard.pm (loadkeys_files): ensure each file appear only once

	* bootloader.pm: add "nowarn" in lilo.conf

	* install_steps.pm, fs.pm: use the "soft" option by default for /mnt/nfs
	and for "diskdrake --nfs"

2002/02/28  sdupont

	* standalone/drakfont: including 'su' mode on drakfont.

2002/02/28  siegel

	* share/po/de.po: updated missing strings

2002/02/28  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Re-activated function to specify a CUPS server in
	another network and to switch to manual CUPS configuration.
	  - Fixes/Improvements on Star Office/Open Office support:
	o When one switches the spooler, the entries of the printers under the
	     old spooler are removed from Star Office/Open Office
	   o Printers on remote CUPS servers (which are known through
	broadcasting)
	     can be added to Star Office/Open Office

	* share/rpmsrate.server, share/rpmsrate: Added "curl" to install section,
	it is needed by printerdrake.

	* printer.pm: 
	  - Fixes/Improvements on Star Office/Open Office support:
	o When one switches the spooler, the entries of the printers under the
	     old spooler are removed from Star Office/Open Office
	   o Printers on remote CUPS servers (which are known through
	broadcasting)
	     can be added to Star Office/Open Office

2002/02/27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eu.po: updated Basque file

2002/02/27  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: 
	  - Improved fully automatic adding of printer queue:
	o Ask for a queue name if more than one printer is detected
	   o Let user confirm the model automatically chosen from the database
	   o Set correct paper size according to the language/country
	  - When one chooses a "CUPS + GIMP-Print" driver now all important
	options
	  are displayed directly (without needing "Advanced" button).
	  - Made less warning appearing on the console from where "printerdrake"
	was
	  called.

2002/02/27  fabman

	* share/po/es.po: converted to UTF-8

2002/02/27  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm: fix missing version listed when doing update.

2002/02/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: a few translations

	* mdk-stage1/rescue-gui.c, rescue/restore_ms_boot, rescue/list.i386,
	rescue/make_rescue_img: add "restore Windows Boot Loader" to rescue

	* install_steps_interactive.pm: formatAlaTex for congratz msg
	xfs + bootdisk = warning_msg

	* share/rpmsrate: flightgear is now fully lowercase
	glaxium

	* mdk-stage1/pcmcia_/probe.c: add Keld Jørn Simonsen <keld@dkuug.dk>'s O2
	Micro
	CardBus controller, and two other PCI entries which
	have close descriptions

	* mdk-stage1/pcmcia_/merge_from_pcitable: misc
	also report when pcitable is "too old"
	write a short perl program to easily merge new
	cardbus controllers from pcitable into probe.c

2002/02/27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eu.po: updated po file

2002/02/27  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: simplify pyDict

	* install_steps_interactive.pm: ensure a keyboard is only once available,
	either in advanced or normal, but
	not in both (tx2fredl)

	* share/po/da.po: 
	  - it is UTF-8
	  - fix line splitting

	* lang.pm: workaround iso-8859-1 charset based languages not displayed
	correctly at install
	  - %lang2country is the authority, so if the country given by
	%lang2country doesn't exist in KDE, return C
	  - fix be,sp,sr
	  - s/def/default/ (typo)
	  - add some utf kde fonts

2002/02/27  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* share/po/fr.po: update french translation

	* standalone/drakxtv: 
	  - simplify an ACTION||fallback;fallback into ACTION;fallback
	  - print a message saying that xawtv can be used now at the end of the
	channels auto-probing in case of direct use from cl and not from
	  XawTV wrapper (from qa test) aka let the world be better :-)

	* share/po/br.po: minor update
	update brezhoneg translation

2002/02/26  dam's  <damien@mandrakesoft.com>

	* modparm.pm: corrected bad sprintf

2002/02/26  fabman

	* share/po/es.po: updated spanish translations

2002/02/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: version 8.2

2002/02/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po, share/po/sv.po, share/po/hu.po: updated po files

2002/02/26  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm, diskdrake/removable.pm,
	diskdrake/interactive.pm: propose some mount points for
	removable/nfs/smb

	* install_steps_interactive.pm: if no sound card are detected AND the user
	selected things needing a sound card, propose a special case for ISA
	cards

	* share/rpmsrate: add sndconfig in INSTALL (installed when user say Yes
	when asked for a ISA
	sound card)

	* my_gtk.pm (@icon_paths): ease testing

2002/02/26  siegel

	* share/po/de.po: updates

2002/02/26  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: corrected ttf/TTF and xfs restart

	* share/logo-mandrake.png: new logo

2002/02/26  fabman

	* share/po/es.po: updated spanish translations

2002/02/26  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fix translation of test program.

2002/02/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dietlibc/libstdio/fclose.c: don't segfault when fclose(NULL)

	* share/po/fr.po: 
	  - explain where to put nbsp spaces, explain
	what's nbsp spaces, explain how to compose them
	  - add a few missing nbsp spaces
	  - translate a few more things

2002/02/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
	share/po/af.po: updated pot file

	* any.pm: fixed English typo

2002/02/26  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm, diskdrake/removable.pm,
	diskdrake/interactive.pm: propose some mount points for
	removable/nfs/smb

	* Xconfigurator.pm: make perl_checker happy
	have "Ok  More  Show all" instead of "Ok  Cancel  Show all"
	set the locale properly instead of setting the translated messages in
	the script

	* any.pm: 
	  - zips() now return devices ending with "4", raw_zips() is the old
	zips()
	  - rdvd handling
	  - add .conf for /etc/devfs/conf.d/ files
	(devfssymlinkf): use /etc/devfs/conf.d/name.conf instead of putting the
	symlink in lib/dev-state

	* share/rpmsrate: add sndconfig in INSTALL (installed when user say Yes
	when asked for a ISA
	sound card)
	add xine in VIDEO 4

	* install_steps.pm: 
	  - zips() now return devices ending with "4", raw_zips() is the old
	zips()
	  - rdvd handling
	  - add .conf for /etc/devfs/conf.d/ files
	don't add mem=nopentium anymore. kernel people says it's not needed and
	bad
	for performance. It also means any bug must be addressed to them
	create /dev/dvd for DVDs

	* my_gtk.pm (@icon_paths): ease testing

	* lang.pm: create bindtextdomain which does only part of the load_mo job

	* install_steps_interactive.pm: if no sound card are detected AND the user
	selected things needing a sound card, propose a special case for ISA
	cards

	* detect_devices.pm: 
	  - zips() now return devices ending with "4", raw_zips() is the old
	zips()
	  - rdvd handling
	  - add .conf for /etc/devfs/conf.d/ files
	cleanup

	* fs.pm: 
	  - zips() now return devices ending with "4", raw_zips() is the old
	zips()
	  - rdvd handling
	  - add .conf for /etc/devfs/conf.d/ files

2002/02/26  Stew Benedict  <sbenedict@mandrakesoft.com>

	* Xconfigurator_consts.pm: Ti Powerbook uses non-std 1152x768, rather than
	1152x864

2002/02/26  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* standalone/drakxtv: use "xvt -T" rather than "xvt --title": now not only
	we support rxvt
	and xterm but konsole too.
	the only one missing is gnome-terminal which has -t but not -T
	update comments
	  - remove useless "no_edit => 1"
	  - use interactive_gtk to determine if we're runned under X11 (ie
	authorized acces to X11 server, X11 context, ...)
	  - add a note to remember that we should add a method to detect if we
	  run under X11 if/when we implement interactive_qt
	  - simplify code :
		* remove is_tv and simplify its code to be a one-liner (replace a
		  foreach by a scalar context)
		* use format to prevent reverse lookup on scantv run thus
		  enabling to reverse the initial hash table
	  - all cases (newt, gtk, wt/wo xvt, ...) have been re tested on real
	hw.

2002/02/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated po file

2002/02/26  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: remove passwords and realnames from report.bug

2002/02/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated po file

2002/02/26  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: remove passwords and realnames from report.bug

2002/02/25  dam's  <damien@mandrakesoft.com>

	* any.pm, modparm.pm: corrected modules parameters functions

	* standalone/drakfont: debug

2002/02/25  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: fixes for cursor or
	nasty pixel displayed using syslinux-1.67-3mdk

2002/02/25  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: don't put accents for bootloader, we can just use 7bit
	chars
	(titi sucks bigtime)
	add a few nbsp spaces

	* rescue/list: add mt-st DAT stuff for joeghi (ghibo)

2002/02/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

2002/02/25  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: ignore-table is a global flag, so put it there (when
	needed)

	* standalone/drakboot: add --testing

	* modules.pm, install_steps.pm, fs.pm, detect_devices.pm: use ide-scsi for
	ide zips

	* install_steps_interactive.pm: sort the list of keyboards

2002/02/25  Thierry Vignaud  <tvignaud@mandrakesoft.com

	* share/po/fr.po: fix a typo (thanks gc)

2002/02/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ru.po, share/po/sp.po, share/po/ca.po, share/po/th.po,
	share/po/uk.po, share/po/es.po, share/po/eo.po, share/po/ro.po,
	share/po/sv.po, share/po/sr.po, share/po/da.po, share/po/el.po,
	share/po/et.po, share/po/cs.po, share/po/tr.po, share/po/az.po,
	share/po/eu.po: updated some po files

2002/02/24  Pixel  <pixel@mandrakesoft.com>

	* share/keyboards.tar.bz2: fix permission

2002/02/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cy.po, share/po/Makefile: updated Welsh file

	* share/po/zh_CN.po, share/po/DrakX.pot, share/po/eu.po, share/po/vi.po,
	share/po/wa.po, share/po/zh_TW.po: udated Vietnamese file

	* install_steps_interactive.pm: removed useless _( ) around a string
	displayed in English only

	* share/po/be.po, share/po/bg.po, share/po/sk.po, share/po/ar.po,
	share/po/sl.po, share/po/br.po, share/po/bs.po, share/po/sv.po,
	share/po/af.po: updated some po files

2002/02/23  Pixel  <pixel@mandrakesoft.com>

	* interactive_newt.pm: 
	  - use simplify_string to ensure multi-line and too long strings are
	not used
	(hacky, but no other solution)
	  - set $::setstep like interactive_gtk is doing (??)

	* partition_table_empty.pm: handle MBR containing the same character (0 or
	"l")

	* diskdrake/interactive.pm: not_edit'able filesystem type (allow esp. a
	nicer newt version)

	* devices.pm (devices::make): following a good advice from Andrej
	Borsenkow, return the
	file even if the device file doesn't exist the caller will fail or not.
	The
	advantage is better compatibility than raising an exception
	devices::make doesn't mknod with devfs

	* detect_devices.pm: no need to catch the exception from devices::make
	anymore
	devices::make doesn't mknod with devfs

	* fs.pm: nicer error message when mount fails

	* share/rpmsrate: adding gphoto2

	* install_steps_interactive.pm: when passwords do not match, focus on
	first password entry, not the second (thanks to garrick)

	* Xconfigurator_consts.pm: remove Option "sw_cursor" for "SiS 6326" since
	it's already handled in Xconfigurator.pm

	* my_gtk.pm: fix @icon_paths to include /usr/share/libDrakX/pixmaps
	(thanks to garrick)

	* modules.pm: remove "-f" option for insmod

2002/02/23  siegel

	* share/po/de.po: fixed silly error
	updates

2002/02/23  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Added automatic configuration of printers
	in Star Office and Open Office.

2002/02/22  dam's  <damien@mandrakesoft.com>

	* share/advertising/02-internet.pl, share/advertising/07-server.pl,
	share/advertising/11-consul.pl, share/advertising/09-MDKcampus.pl,
	share/advertising/01-gnu.pl, share/advertising/13-Nvert.pl,
	share/advertising/06-user.pl, share/advertising/10-MDKexpert.pl,
	share/advertising/04-develop.pl, share/advertising/05-contcenter.pl,
	share/advertising/12-MDKstore.pl, share/advertising/03-graphic.pl,
	share/advertising/08-games.pl: corrected advertising text

	* share/po/fr.po: corrected bad translation

	* my_gtk.pm: corrected icon paths

2002/02/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: exit the pur_gtk version after launching the wizard
	version

	* any.pm: better rephrasing
	change name and description of security levels

	* share/rpmsrate: powermanga: 2 -> 3

2002/02/22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po, share/po/DrakX.pot: updated Danish file

	* lang.pm: start of support of kde fonts
	fixed some keyboard names

	* keyboard.pm: fixed some keyboard names
	added the two ?win_toggle choices
	some info useful for keyboard handling

	* share/keyboards.tar.bz2: fixed some keyboard names

	* share/po/hu.po: updated hungarian file

2002/02/22  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: even smarted process to kill selection

	* lang.pm: fix 2 entries in charset2kde_font
	  - remove non needed entries in lang2country
	  - fix syntax errors
	  - rename kdefont in charset2kde_font
	  - much cleanup
	use invalid instead of unknown for errors when checking
	put back the less deep langs
	have the tree less deep (esp. nicer when not displaying UTF-8 entries)
	not translating in console installs (esp. newt) when the font is missing
	restrict the langs displayed to non utf8 during install
	fix warning message
	disable perl warnings when checking
	make perl_checker happy

	* devices.pm: add atibm (thanks to Robin Pollard)

	* bootloader.pm: put ignore-table to disable lilo's partition table
	checking
	(esp. the checking of the CHS geometry vs linear geometry)

	* Xconfigurator_consts.pm: fix syntax typo

	* Makefile: 
	  - exclude urpm from perl_checker
	  - add checking keyboard.pm

	* install_steps_interactive.pm, install2.pm, install_steps.pm: not
	translating in console installs (esp. newt) when the font is missing

	* keyboard.pm: use invalid instead of unknown for errors when checking
	change the message
	disable perl warnings when checking
	  - add checks for the various data structures
	  - fix another typo for usb2drakxkbd
	fix typo

	* share/rpmsrate: add procmail in SYSTEM 4
	add samba-doc samba-winbind samba-swat

	* Xconfigurator.pm: workaround set_active failing

	* any.pm: use the setupBootloader help instead of setupBootloaderGeneral
	restrict the langs displayed to non utf8 during install

2002/02/22  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakxtv: update TODO list;
	explain what is HRC

	* share/po/fr.po: further translations
	update french translation

2002/02/21  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: corrected icon list

2002/02/21  fabman

	* share/po/es.po: updated spanish po file

2002/02/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: spacecup no more exists
	armagetron is nice, no use to install gltron as well
	autoconf2.5 and automake1.5

	* interactive.pm: when not in X and needs su, use consolehelper now
	use consolehelper when no "kdeinit: kwin" process
	is running

2002/02/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/Makefile, share/po/hu.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/no.po, share/po/fi.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2002/02/21  Pixel  <pixel@mandrakesoft.com>

	* lvm.pm, install_any.pm: ensure lvm tools don't need to be all installed
	at the same time

	* lang.pm, tools/make_mdkinst_stage2: LC_COLLATE and LC_CTYPE are
	getFile'd (cuz they are big, causing the .cz2 to be *big*)

	* share/rpmsrate: add kinput2-wnn4

2002/02/21  siegel

	* share/po/de.po: update

2002/02/21  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Removed "Manual configuration" button when "Local
	Printer" dialog is started from the queue modification menu (Recommended
	mode).
	Improved matching of printer names resulting from auto-detection with
	names in the database.

2002/02/21  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: final batch of typos fixes (next time, please run a
	check speller)
	fix more typos
	update french translation;
	fix typos

	* diskdrake/interactive.pm: shorter displayed message

2002/02/21  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: changed button label

	* standalone/icons/gmon.png, standalone/icons/categ.png,
	standalone/icons/verti.png, standalone/icons/drakbackup.540x57.png,
	standalone/icons/net_c.png, standalone/icons/ic82-system-40.png,
	standalone/icons/wiz_drakgw.png, standalone/icons/ic-drakfont-48.png,
	standalone/icons/ic82-back-up-16.png,
	standalone/icons/wiz_scannerdrake.png,
	standalone/icons/ic82-discdurwhat-40.png,
	standalone/icons/ic82-tape-40.png, standalone/icons/ic82-network-40.png,
	standalone/icons/smbnfs_default.png, standalone/icons/smbnfs_server.png,
	standalone/icons/hori.png, standalone/icons/wiz_draknet.png,
	standalone/icons/smbnfs_mounted.png, standalone/icons/wiz_firewall.png,
	standalone/icons/wiz_default_up.png,
	standalone/icons/ic82-back-up-32.png, standalone/icons/ic82-CD-40.png,
	standalone/icons/ic82-systemeplus-40.png,
	standalone/icons/ic82-back-up-48.png,
	standalone/icons/ic82-dossier-32.png, standalone/icons/net_d.png,
	standalone/icons/ic82-moreoption-40.png,
	standalone/icons/smbnfs_has_mntpoint.png, standalone/icons/tradi.png,
	standalone/icons/wiz_printerdrake.png,
	standalone/icons/wiz_default_left.png,
	standalone/icons/eth_card_mini2.png, standalone/icons/net_u.png,
	standalone/icons/ic82-users-40.png, standalone/icons/mdk_logo.png,
	standalone/icons/ic82-others-40.png, standalone/icons/ic82-when-40.png,
	standalone/icons/draknet_step.png, standalone/icons/drakfont.620x57.png,
	standalone/icons/ic82-where-40.png: added new gfx only standalone

	* pixmaps/categ.png, pixmaps/verti.png, pixmaps/ic82-moreoption-40.png,
	pixmaps/ic82-system-40.png, pixmaps/net_c.png,
	pixmaps/ic-drakfont-48.png, pixmaps/ic82-CD-40.png,
	pixmaps/ic82-when-40.png, pixmaps/ic82-back-up-32.png,
	pixmaps/draknet_step.png, pixmaps/ic82-dossier-32.png,
	pixmaps/ic82-back-up-48.png, pixmaps/smbnfs_server.png,
	pixmaps/ic82-discdurwhat-40.png, pixmaps/smbnfs_default.png,
	pixmaps/gmon.png, pixmaps/drakbackup.540x57.png,
	pixmaps/smbnfs_mounted.png, pixmaps/wiz_printerdrake.png,
	pixmaps/wiz_default_left.png, pixmaps/wiz_default_up.png,
	pixmaps/drakfont.620x57.png, pixmaps/ic82-tape-40.png,
	pixmaps/wiz_draknet.png, pixmaps/net_d.png,
	pixmaps/ic82-systemeplus-40.png, pixmaps/wiz_drakgw.png,
	pixmaps/mdk_logo.png, pixmaps/ic82-users-40.png,
	pixmaps/ic82-back-up-16.png, pixmaps/hori.png, pixmaps/tradi.png,
	pixmaps/smbnfs_has_mntpoint.png, pixmaps/eth_card_mini2.png,
	pixmaps/wiz_firewall.png, pixmaps/net_u.png, pixmaps/ic82-where-40.png,
	pixmaps/ic82-others-40.png, pixmaps/ic82-network-40.png,
	pixmaps/wiz_scannerdrake.png: removed gfx not used during install

2002/02/21  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm: fixed another not seen 8.1 reference in label.
	fixed 8.1 release hard coded.

2002/02/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fi.po: updated pot file
	updated Finnish file

	* help.pm: updated help file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/Makefile, share/po/hu.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2002/02/21  Pixel  <pixel@mandrakesoft.com>

	* share/themes/blueHeart-button4.png, share/themes-DarkMarble.rc,
	install_gtk.pm, share/themes/DarkMarble-button3_out.png,
	share/themes.rc, share/themes/blueHeart-brown_bg1.png,
	share/themes/DarkMarble-button3_in.png, share/themes-blueHeart.rc,
	share/themes/DarkMarble-check_on.png,
	share/themes/blueHeart-button1.png,
	share/themes/DarkMarble-check_off.png,
	share/themes/blueHeart-button2.png, share/themes/DarkMarble-gloom2.png,
	share/themes/DarkMarble-button3_in_prelight.png,
	share/themes/DarkMarble-button3_out_prelight.png: remove DarkMarble and
	blueHeart themes

	* bootloader.pm: have devfs=nomount for failsafe

	* Makefile.config, share/po/Makefile: make a difference between PMS and
	ALLPMS. For install, only use PMS

	* lvm.pm: ensure lvm tools don't need to be all installed at the same time

	* Makefile: template.in stuff removed
	make a difference between PMS and ALLPMS. For install, only use PMS

	* pkgs.pm: smarter choosing of processes to kill

	* tools/i386/netboot/make_boot_network: cleanup

	* modules.pm: add aic7xxx_old

	* install_any.pm: ensure lvm tools don't need to be all installed at the
	same time
	(remove_bigseldom_used): remove xf86Wacom.so & mkfs.xfs
	DarkMarble theme is removed
	(kdeicons_postinstall): remove this obsolete code
	no special case for installing imwheel

	* lang.pm, tools/make_mdkinst_stage2: LC_COLLATE and LC_CTYPE are
	getFile'd (cuz they are big, causing the .cz2 to be *big*)

	* network/smbnfs.pm, network/nfs.pm: nicer conditional displaying of nfs
	comment

2002/02/21  siegel

	* share/po/de.po: update
	snapshot

2002/02/21  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Added "type => 'list'" to the printer modification
	menu, it appeared as a drop-down list during the installation.

2002/02/21  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakxtv: more translatable strings;
	hide scantv output on console;
	check that we're under X11 before running scantv in an xterm

2002/02/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/doc/UPDATEMODULES: add an example on modules with options
	first line comment no more necessary
	s/row/column/, silly me

	* standalone.pm: explanations stuff: no reason to use "updated" at a place
	when we
	use "modified" at the rest of the locations..

2002/02/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/es.po: updated Spanish file
	updated Spanish file

2002/02/20  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (ejectCdrom): display "files still open:" for all
	processes when umounting fail

	* pkgs.pm: much simpler & stronger killing of still running processes

	* mouse.pm: USB|Generic is 3 button mice, add a USB 2 Button entry

2002/02/20  dam's  <damien@mandrakesoft.com>

	* share/themes-marble3d.rc: updated theme

	* network/adsl.pm: mgmt install corrected

2002/02/20  daouda

	* share/rpmsrate: 
	  - same weight for rfbdrake in NETWORKING_REMOTE_ACCESS
	NETWORKING_REMOTE_ACCESS_SERVER

2002/02/20  fcrozat

	* share/rpmsrate: Remove mozilla-psm from list, it is merged in mozilla

2002/02/20  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem, tools/oem-prepare: synced with newer rpmsrate of
	DrakX and newer method to select INSTALL packages.

	* standalone/XFdrake: fixed NVIDIA package in urpmi db by directly using
	urpm library instead of
	parsing (now removed) depslist.ordered file.

	* Xconfigurator.pm: fixed default value if selecting a card (use previous
	one or existing one).
	added XFree 4 driver choice if Other|Unlisted is chosen.
	fixed cancel on card selection so that previous choice is not lost.

	* Xconfigurator_consts.pm: added @allbutfbdrivers and @alldrivers for
	listing XFree 4 drivers.

2002/02/20  gbeauchesne

	* share/rpmsrate: 
	  - Add gcc3.0-c++ and libstdc++3.0-devel
	  - Prefer gcc3.0-java over gcc-java
	  - Remove BasiliskII-sheepnet since it does no longer exist
	  - Add/prefer BasiliskII-jit over BasiliskII

2002/02/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po: updated FRench file

	* share/po/es.po: updated Spanish file
	updated Spanish file
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/bg.po, share/po/ga.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/eu.po, share/po/az.po,
	share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
	share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2002/02/20  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: fix s/SILO/LILO/

	* fsedit.pm: have "with /usr" translated

	* install_steps_interactive.pm (loadSavePackagesOnFloppy): add a "Cancel"
	button

	* steps.pm: move installUpdates after configureX (workaround for bad
	timeouts during installing updates)

	* install_steps.pm, any.pm, standalone/draksec: factorize and update the
	reading of previous security level

2002/02/20  siegel

	* share/po/de.po: update

2002/02/20  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: update french translations

2002/02/20  dam's  <damien@mandrakesoft.com>

	* share/advertising/13-Nvert.pl: changed toll free

	* my_gtk.pm: added mcc kill if wait message

	* standalone/logdrake: cosmetic change, mcc compliance

2002/02/20  daouda

	* share/rpmsrate: 
	  - same weight for rfbdrake in NETWORKING_REMOTE_ACCESS
	NETWORKING_REMOTE_ACCESS_SERVER

2002/02/20  fcrozat

	* share/rpmsrate: Remove mozilla-psm from list, it is merged in mozilla

2002/02/20  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm, install_any.pm: fixed INSTALL category in rpmsrate for copying
	file when changing cd (was an
	limitation in read_rpmsrate when a package having a category and INSTALL
	caused
	INSTALL to be dropped).

2002/02/20  gbeauchesne

	* share/rpmsrate: 
	  - Add gcc3.0-c++ and libstdc++3.0-devel
	  - Prefer gcc3.0-java over gcc-java
	  - Remove BasiliskII-sheepnet since it does no longer exist
	  - Add/prefer BasiliskII-jit over BasiliskII

2002/02/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/advertising/07-server.pl, share/advertising/01-gnu.pl: Improved
	English strings

	* share/po/hu.po, share/po/es.po, share/po/ar.po: updated Hungarian and
	Spanish files

2002/02/20  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: remove fsck_option (obsolete)

	* share/po/fr.po: fix s/SILO/LILO/

	* fsedit.pm: have "with /usr" translated

	* install_steps_interactive.pm (loadSavePackagesOnFloppy): add a "Cancel"
	button

	* steps.pm: move installUpdates after configureX (workaround for bad
	timeouts during installing updates)

	* install_steps.pm, any.pm, standalone/draksec: factorize and update the
	reading of previous security level

2002/02/20  siegel

	* share/po/de.po: snapshot

2002/02/19  dam's  <damien@mandrakesoft.com>

	* share/advertising/Makefile: new Makefile to install ads

2002/02/19  fcrozat

	* share/rpmsrate: 
	  -Install gnome-vfs-extras when installing nautilus (to get samba
	browsing)
	  -don't install nautilus-mozilla, it is pulled by nautilus

2002/02/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* any.pm: english fix

2002/02/19  Pixel  <pixel@mandrakesoft.com>

	* share/advertising/Makefile: advertising installation cleanup

	* diskdrake/smbnfs_gtk.pm: ugly hack to fix die

2002/02/19  siegel

	* share/po/de.po: updates for beta 3

2002/02/19  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Changed button texts of "Do you want to auto-detect?"
	dialog.

2002/02/19  dam's  <damien@mandrakesoft.com>

	* share/advertising/Makefile: new Makefile to install ads

2002/02/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* any.pm: report_bug: find syslog in /var/log if it's not in /tmp, add
	$prefix in front of /var/* when missing
	since we give "lilo.conf" in drakbug_report, let's also
	give "menu.lst"

2002/02/19  Pixel  <pixel@mandrakesoft.com>

	* share/advertising/Makefile: advertising installation cleanup

2002/02/19  siegel

	* share/po/de.po: updates for beta 3

2002/02/19  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Changed button texts of "Do you want to auto-detect?"
	dialog.

2002/02/19  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: setting help

	* share/advertising/10-MDKexpert.png, share/advertising/07-server.png,
	share/advertising/05-contcenter.png, share/advertising/03-graphic.png,
	share/advertising/12-MDKstore_icon.png,
	share/advertising/06-user_icon.png,
	share/advertising/04-develop_icon.png,
	share/advertising/12-MDKstore.png, share/advertising/00-thanks.png,
	share/advertising/06-user.png, share/advertising/02-internet_icon.png,
	share/advertising/04-develop.png,
	share/advertising/05-contcenter_icon.png,
	share/advertising/10-MDKexpert_icon.png, share/advertising/13-Nvert.png,
	share/advertising/11-consul.png, share/advertising/03-graphic_icon.png,
	share/advertising/02-internet.png, share/advertising/07-server_icon.png,
	share/advertising/01-gnu.png, share/advertising/08-games.png,
	share/advertising/09-MDKcampus.png,
	share/advertising/09-MDKcampus_icon.png,
	share/advertising/08-games_icon.png: re-adding with -kb
	removing for re-adding with -kb
	added advertising for translation

	* share/advertising/essi.p: blah
	added advertising for translation

	* my_gtk.pm: new icon handler

	* Makefile.config: addde share/advertising/*.pl for translation

	* share/advertising/Makefile: new Makefile to install ads

	* share/advertising/00-thanks.pl, share/advertising/06-user.pl,
	share/advertising/08-games.pl, share/advertising/list,
	share/advertising/09-MDKcampus.pl, share/advertising/01-gnu.pl,
	share/advertising/11-consul.pl, share/advertising/13-Nvert.pl,
	share/advertising/02-internet.pl, share/advertising/07-server.pl,
	share/advertising/10-MDKexpert.pl, share/advertising/04-develop.pl,
	share/advertising/05-contcenter.pl, share/advertising/12-MDKstore.pl,
	share/advertising/03-graphic.pl: added advertising for translation

2002/02/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* any.pm: report_bug: find syslog in /var/log if it's not in /tmp, add
	$prefix in front of /var/* when missing
	since we give "lilo.conf" in drakbug_report, let's also
	give "menu.lst"

2002/02/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/vi.po, share/po/hu.po: updated Vietnamese and Hungarian files

2002/02/19  Pixel  <pixel@mandrakesoft.com>

	* share/advertising/Makefile: advertising installation cleanup

	* install2.pm: anchor the -IP match at the end of the string
	move loading /tmp/network from stage1 before doing the auto_install
	stuff to
	allow the -IP feature on auto_install file name

	* share/rpmsrate: add grub in 4 SYSTEM

2002/02/19  Till Kamppeter <till@mandrakesoft.com>

	* standalone/printerdrake, printer.pm: Assured that the default page size
	is "Letter" for US/Canada and "A4" for the rest of the world.
	The "Description" field of a printer queue is filled in with printer
	manufacturer and model by default.
	Removed unused varaiables in /usr/sbin/printerdrake.

	* printerdrake.pm: Changed button texts of "Do you want to auto-detect?"
	dialog.
	Assured that the default page size is "Letter" for US/Canada and "A4"
	for the rest of the world.
	The "Description" field of a printer queue is filled in with printer
	manufacturer and model by default.
	Removed unused varaiables in /usr/sbin/printerdrake.

	* install_steps_interactive.pm: Replaced "a4" and "letter" by "A4" and
	"Letter" so that Foomatic recognizes
	the paper sizes.
	Also use "Letter" paper for "en_CA" and "fr_CA" locales.

2002/02/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: when no net device found, print a msg to tell
	that now most pcmcia network adapters are supported
	with network.img

2002/02/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: updated help file

	* share/po/sp.po, share/po/zh_CN.po, share/po/DrakX.pot, share/po/th.po,
	share/po/es.po, share/po/fr.po, share/po/sr.po, share/po/de.po,
	share/po/sk.po, share/po/tr.po, share/po/eu.po, share/po/sl.po,
	share/po/vi.po, share/po/uk.po, share/po/wa.po, share/po/sv.po,
	share/po/zh_TW.po, share/po/it.po: updated pot file

2002/02/18  Pixel  <pixel@mandrakesoft.com>

	* lang.pm, standalone/localedrake: 
	  - handle --kde_lang with optionally --kde_country
	  - handle --apply

	* install_steps_gtk.pm: s/hbox/vbox for "Select Install Class"

2002/02/18  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: new gfx

2002/02/18  fcrozat

	* share/rpmsrate: Install Guppi when installing gnumeric

2002/02/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: titi sucks again

2002/02/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sk.po: updated Slovak ile
	updated pot file

	* help.pm: updated help file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/lt.po, share/po/ar.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/bs.po,
	share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
	updated pot file

2002/02/18  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm: 
	  - remove media_type cdrom-burner, use {capacity} instead
	  - use /proc/sys/dev/cdrom/info to fill in the {capacity}

	* diskdrake/smbnfs_gtk.pm: 
	  - add Cancel
	  - move "click here" in "Search servers" on the right side
	  - remove Export
	  - fix bug

	* share/rpmsrate: raise xsane in SCANNER (Yves Duret)
	raise mkisofs & cdrecord in BURNER

	* Xconfigurator.pm: workaround not having the right to connect to our new
	created test server.
	info about the pb (sorry for the french):
	quand on lance le serveur
	  - via xdm/kdm/startx, ca utilise xauth, xhost est fermé
	  - via X/xinit, xhost est ouvert sur localhost, xauth n'est pas utilisé
	  *sauf* si X/xinit est lancé à partir d'un X *et* .Xauthority est non
	vide.
	    dans ce cas, xhost est fermé, et aucun xauth n'est ajouté
	    une conséquence, c'est que XFdrake ne peut pas accéder au X de
	    test si XFdrake est lancé sous X ou "xauth list" est non vide
	      exception: quand on lance le xdm/kdm en root, xhost n'est pas
	fermé,
	         pas contre il est fermé en root & startx.

	* any.pm (fileshare_config): rework the custom message and launch
	userdrake
	(report_bug): add lilo.conf

	* standalone/localedrake: 
	  - handle --kde_lang with optionally --kde_country
	  - handle --apply
	change the message & ask wether to logout or not

	* lang.pm: 
	  - handle --kde_lang with optionally --kde_country
	  - handle --apply
	(lang2kde_lang): add missing valid_kde_langs
	fuzzy language finding between available langs when it doesn't match
	(useful for upgrades where fr_FR was fr_FR@euro)

	* diskdrake/interactive.pm: remove cdrom-burner from media_type set

	* install_steps_gtk.pm: s/hbox/vbox for "Select Install Class"

	* fs.pm (mount_options_unpack): add usrquota and grpquota for
	ext2/ext3/reiserfs/xfs
	  - remove media_type cdrom-burner, use {capacity} instead
	  - use /proc/sys/dev/cdrom/info to fill in the {capacity}

	* share/compssUsers: add EDITORS in Development/Development
	add EDITORS in Development/Development

2002/02/18  yduret

	* bootlook.pm: remove aurora part (commented for the moment)

	* standalone/scannerdrake: HP OfficeJet support
	scsi/parport preliminary support

	* scanner.pm: update
	scsi parport preliminary support
	no more show unsupported scanner
	common output for ScannerDB update from sane *.desc files and from
	usbtable

2002/02/17  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/interactive.pm: warn_if_renumbered now also done at install

2002/02/17  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: have icewm-light in any case (to be used as a failsafe
	window manager)
	add hotplug, usbutils and usbview with the new flag USB

	* install_any.pm: hotplug now handled via rpmsrate and the USB flag
	add some log to know why umounting /tmp/image fail

	* diskdrake/interactive.pm: warn_if_renumbered now also done at install
	force scalar context for warp_text

	* share/po/id.xsl, share/po/help_xml2pm.pl: use xsltproc as a filter to
	remove entities

	* share/po/Makefile (clean): remove .memdump

	* any.pm (autologin): do not allow empty user name since no autologin can
	already be achieved by choosing "No"

	* install2.pm: do not use run_program::xxx, use directly "system" so that
	stdout is kept unchanged during "postInstall" execution

	* network/smb.pm: fix typo (s/nfs/smbfs/)

2002/02/17  siegel

	* help.pm: new version for 8.2

	* share/po/de.po: new german version

	* share/po/help_xml2pm.pl: added check for missing xsltproc
	fix perl warnings after adding -w

	* share/po/.cvsignore: added .memdump

	* share/po/Makefile: allow me to work with a symlink to doc in this
	directory

2002/02/16  Pixel  <pixel@mandrakesoft.com>

	* lvm.pm: 
	  - LVs "device" field were containing "/dev/vg/number" whereas it must
	be "vg/name"
	  - added lv_resize

	* diskdrake/interactive.pm: add Resize'ing mounted XFS on LVM

	* crypto.pm (mirrors): add a timeout via "alarm" (needs testing)

2002/02/16  Pixel  <pixel@mandrakesoft.com>

	* Xconfig.pm: 
	  - prefer XKB available from existing XF86Config over
	/etc/sysconfig/keyboard KEYTABLE
	  - fix translating from /etc/sysconfig/keyboard KEYTABLE to XKB

	* diskdrake/interactive.pm: add Resize'ing mounted XFS on LVM

	* interactive_newt.pm: do not trash error messages if testing

	* lang.pm (country2lang): created
	(write): ensure it doesn't fail when kdeglobals is not writable (eg: the
	directory doesn't exist)
	(list): return the languages in a "specific" order (favours non utf8
	over utf8)

	* crypto.pm (mirrors): add a timeout via "alarm" (needs testing)

	* install_steps_interactive.pm (setupSCSI): when "clicked", ask "Do you
	have any SCSI interfaces" instead
	of assuming there is a SCSI interface and asking the driver name

	* lvm.pm: 
	  - LVs "device" field were containing "/dev/vg/number" whereas it must
	be "vg/name"
	  - added lv_resize
	  - call pvcreate with "-y -ff"
	  - created LVs are notFormatted

	* interactive.pm: 
	  - fix non X + testing + su
	  - since "interactive" takes care of "format" for type "combo", remove
	"format" (so that interactive_newt which switch to type "list" don't
	apply
	"format" once again)

	* standalone/localedrake: handle --kde_country=<country>

2002/02/16  Pixel  <pixel@mandrakesoft.com>

	* lang.pm (country2lang): created
	(write): ensure it doesn't fail when kdeglobals is not writable (eg: the
	directory doesn't exist)
	(list): return the languages in a "specific" order (favours non utf8
	over utf8)
	fix call to update_gnomekderc

	* standalone/localedrake: handle --kde_country=<country>

2002/02/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

	* share/po/sk.po, share/po/cs.po, share/po/es.po: updated Czech, Spanish
	and Slovak files

2002/02/16  Pixel  <pixel@mandrakesoft.com>

	* lang.pm: fix call to update_gnomekderc
	remove unused & unneeded special %lang2kde_lang
	  - add lang::check
	  - fix utf-ko -> utf_ko
	  - fix utf-14 -> utf_14
	  - modify share/config/kdeglobals
	  - add charset2kde_charset, lang2country, lang2kde_lang

2002/02/15  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: embedded mode correction

	* my_gtk.pm: highlight in gtk icon widget

	* share/themes/mdk-check_on.png, share/themes/mdk-toggle_off.png,
	share/themes/mdk-toggle_on.png, share/themes/mdk-check_off.png: new gfx

	* share/step-red.xpm, share/step-orange.xpm, share/step-orange-click.xpm,
	share/step-green-click.xpm, share/step-green.xpm, share/step-red-on.xpm,
	share/step-orange-on.xpm, share/step-green-on.xpm,
	share/step-red-click.xpm: new gfx
	new gfx

2002/02/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/vi.po, share/po/fi.po, share/po/DrakX.pot, share/po/fr.po,
	share/po/wa.po, share/po/da.po, share/po/cs.po, share/po/hu.po,
	share/po/eu.po: updated Basque file; fixed a msgid change

	* share/po/sv.po: updated Swedish file
	updated Basque file; fixed a msgid change

2002/02/15  Pixel  <pixel@mandrakesoft.com>

	* run_program.pm: remove assigning STDIN to /dev/null since:
	  - programs should not use STDIN
	  - the "postInstall" script for auto_install's is more happy still
	having the STDIN.

	* diskdrake/smbnfs_gtk.pm, pixmaps/smbnfs_has_mntpoint.png,
	pixmaps/smbnfs_default.png, pixmaps/smbnfs_mounted.png,
	pixmaps/smbnfs_server.png: add icons showing if a mount-point is
	associated or if the share is mounted

	* pkgs.pm: fix typo

	* diskdrake/interactive.pm: use the new warp_text

	* install_steps.pm: use lang::charset2kde_charset

	* standalone/localedrake: lang::write doesn't need the filename anymore

	* any.pm: use 'combo' instead of 'type' for bootloader choice and security
	choice
	(requested by fredb&dadou)

	* interactive_gtk.pm: force scalar for Gtk::Label->new with warp_text

	* interactive.pm: favour "combo" over "list" in any case

	* Makefile (check): add lang::check checking

2002/02/15  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: update translation

2002/02/14  Pixel  <pixel@mandrakesoft.com>

	* standalone/lsnetdrake: adapt to the neater network::smb and network::nfs

	* network/smb.pm, network/smbnfs.pm, network/nfs.pm: cleaner & OOed code,
	with more code sharing

	* interactive_gtk.pm, diskdrake/interactive.pm: use the new warp_text
	feature

	* my_gtk.pm (ctree_set_icon): new function

	* diskdrake/smbnfs_gtk.pm: some cleanup, icons showing wether a
	mount-point is associated are coming

	* standalone/diskdrake: fix expert and testing options handling

2002/02/14  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: embedded mode
	drakfont embedde mode

	* share/step-red-on.xpm, share/step-red.xpm, share/step-orange.xpm,
	share/step-orange-on.xpm, share/step-orange-click.xpm,
	share/step-green-click.xpm, share/step-red-click.xpm,
	share/step-green-on.xpm: new gfx

2002/02/14  erwan

	* tools/i386/netboot/ni5010/pxegrub, tools/i386/netboot/epic100/stage1,
	tools/i386/netboot/epic100/stage2, tools/i386/netboot/3c90x/pxegrub,
	tools/i386/netboot/rtl8139/pxegrub, tools/i386/netboot/ni5210/nbgrub,
	tools/i386/netboot/otulip/stage1, tools/i386/netboot/otulip/stage2,
	tools/i386/netboot/exos205/nbgrub, tools/i386/netboot/eepro/stage1,
	tools/i386/netboot/eepro/stage2, tools/i386/netboot/3c529/nbgrub,
	tools/i386/netboot/smc9000/pxegrub, tools/i386/netboot/ne2100/stage1,
	tools/i386/netboot/ne2100/stage2, tools/i386/netboot/exos205/pxegrub,
	tools/i386/netboot/sis900/nbgrub, tools/i386/netboot/ne/stage1,
	tools/i386/netboot/ne/stage2, tools/i386/netboot/tulip/nbgrub,
	tools/i386/netboot/sk_g16/nbgrub, tools/i386/netboot/eepro100/pxegrub,
	tools/i386/netboot/tiara/nbgrub, tools/i386/netboot/rtl8139/stage1,
	tools/i386/netboot/rtl8139/stage2, tools/i386/netboot/tiara/pxegrub,
	tools/i386/netboot/lance/nbgrub, tools/i386/netboot/depca/nbgrub,
	tools/i386/netboot/ni6510/stage1, tools/i386/netboot/3c90x/nbgrub,
	tools/i386/netboot/ni6510/stage2, tools/i386/netboot/smc9000/stage1,
	tools/i386/netboot/smc9000/stage2, tools/i386/netboot/3c509/pxegrub,
	tools/i386/netboot/3c509/stage1, tools/i386/netboot/3c509/stage2,
	tools/i386/netboot/sis900/pxegrub, tools/i386/netboot/ne2100/pxegrub,
	tools/i386/netboot/3c595/nbgrub, tools/i386/netboot/eepro/pxegrub,
	tools/i386/netboot/wd/nbgrub, tools/i386/netboot/ns8390/nbgrub,
	tools/i386/netboot/ni5210/stage1, tools/i386/netboot/ni5010/nbgrub,
	tools/i386/netboot/ni5210/stage2, tools/i386/netboot/exos205/stage1,
	tools/i386/netboot/exos205/stage2, tools/i386/netboot/eepro100/nbgrub,
	tools/i386/netboot/3c529/stage1, tools/i386/netboot/3c529/stage2,
	tools/i386/netboot/sis900/stage1, tools/i386/netboot/tulip/stage1,
	tools/i386/netboot/sis900/stage2, tools/i386/netboot/tulip/stage2,
	tools/i386/netboot/sk_g16/stage1, tools/i386/netboot/w89c840/nbgrub,
	tools/i386/netboot/sk_g16/stage2, tools/i386/netboot/tiara/stage1,
	tools/i386/netboot/tiara/stage2, tools/i386/netboot/depca/stage1,
	tools/i386/netboot/lance/stage1, tools/i386/netboot/3c90x/stage1,
	tools/i386/netboot/depca/stage2, tools/i386/netboot/lance/stage2,
	tools/i386/netboot/3c90x/stage2, tools/i386/netboot/otulip/pxegrub,
	tools/i386/netboot/tulip/pxegrub, tools/i386/netboot/epic100/nbgrub,
	tools/i386/netboot/3c595/stage1, tools/i386/netboot/ni5210/pxegrub,
	tools/i386/netboot/3c595/stage2, tools/i386/netboot/w89c840/pxegrub,
	tools/i386/netboot/wd/stage1, tools/i386/netboot/wd/pxegrub,
	tools/i386/netboot/wd/stage2, tools/i386/netboot/otulip/nbgrub,
	tools/i386/netboot/ns8390/stage1, tools/i386/netboot/eepro/nbgrub,
	tools/i386/netboot/ni5010/stage1, tools/i386/netboot/ns8390/stage2,
	tools/i386/netboot/ni5010/stage2, tools/i386/netboot/ne2100/nbgrub,
	tools/i386/netboot/ni6510/pxegrub, tools/i386/netboot/eepro100/stage1,
	tools/i386/netboot/eepro100/stage2, tools/i386/netboot/ne/nbgrub,
	tools/i386/netboot/depca/pxegrub, tools/i386/netboot/ne/pxegrub,
	tools/i386/netboot/w89c840/stage1, tools/i386/netboot/rtl8139/nbgrub,
	tools/i386/netboot/w89c840/stage2, tools/i386/netboot/sk_g16/pxegrub,
	tools/i386/netboot/lance/pxegrub, tools/i386/netboot/ni6510/nbgrub,
	tools/i386/netboot/smc9000/nbgrub, tools/i386/netboot/3c529/pxegrub,
	tools/i386/netboot/3c595/pxegrub, tools/i386/netboot/ns8390/pxegrub,
	tools/i386/netboot/epic100/pxegrub, tools/i386/netboot/3c509/nbgrub: New
	version of grub (0.91) with allstage and pxegrub

	* tools/i386/netboot/3c507/pxegrub, tools/i386/netboot/3c507/stage1,
	tools/i386/netboot/3c507/stage2, tools/i386/netboot/3c503/nbgrub,
	tools/i386/netboot/3c503/pxegrub, tools/i386/netboot/3c507/nbgrub,
	tools/i386/netboot/3c503/stage1, tools/i386/netboot/3c503/stage2:
	Fixning some file missing in netboot

2002/02/14  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed obsoletes management according to urpmi code.

2002/02/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ga.po, share/po/cy.po, share/po/is.po, share/po/ar.po,
	share/po/sl.po, share/po/ro.po: Instead of temporary removingfiles from
	CVS put a rule in Makefile to
	don't use them (thanks Thierry)
	updated some po files; removed the ones too lowly translated for the 8.2

	* share/po/pt_BR.po: updted Brazilian file
	updated some po files; removed the ones too lowly translated for the 8.2

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/az.po,
	share/po/ru.po, share/po/hr.po, share/po/ko.po, share/po/nl.po,
	share/po/ja.po, share/po/sv.po, share/po/hu.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/bs.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated some po files; removed the ones
	too lowly translated for the 8.2

	* share/po/vi.po: updated Vietnamese file
	updated some po files; removed the ones too lowly translated for the 8.2

	* share/po/Makefile: Instead of temporary removingfiles from CVS put a
	rule in Makefile to
	don't use them (thanks Thierry)

2002/02/14  Pixel  <pixel@mandrakesoft.com>

	* standalone/lsnetdrake: adapt to the neater network::smb and network::nfs

	* network/smbnfs.pm, network/smb.pm, network/nfs.pm: cleaner & OOed code,
	with more code sharing

	* interactive.pm: if testing, don't use kdesu

	* install_steps.pm: gzip report.bug

	* interactive_gtk.pm, diskdrake/interactive.pm: use the new warp_text
	feature

	* standalone/diskdrake: fix expert and testing options handling

	* my_gtk.pm (ctree_set_icon): new function

	* c/stuff.xs.pm: undef'ing some macros used by 2 independent sources et
	still needed :-(
	#include iconv.h is needed even when C_RPM is undefined

	* diskdrake/smbnfs_gtk.pm: some cleanup, icons showing wether a
	mount-point is associated are coming

2002/02/14  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/br.po: update
	convert to utf-8

	* standalone/drakxtv: uses xawtv internal strings instead of frequencies
	tables ids as values
	in %freqtables in order to enhance drakxtv robustness when
	translators'll
	arrive. thus we'll pass right strings to scantv instead of translated
	ones
	explain how we manage the "all frequencies" case
	display sorted tv norms

2002/02/13  erwan

	* tools/i386/netboot/device.map, tools/i386/netboot/makeImages: Adding
	missing file on netboot

	* tools/i386/netboot/make_boot_network, tools/i386/netboot/grub: updating
	grub in netboot

2002/02/13  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: avoid generating headers for copying file in
	postinstall-rpm directory.
	make sure not to crash if a package that should have been in CD1 is
	somewhere
	else.
	fixed stupid typo.
	removed all @needToCopy... variables and now use INSTALL category in
	rpmsrate.

	* share/rpmsrate: updated INSTALL category with the merge of DrakX
	obsoleted list (it will use
	INSTALL now :-)

	* pkgs.pm: added extension to setSelectedFromCompssList.

	* share/rpmsrate.server: synced INSTALL category with standard rpmsrate.

2002/02/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Danish and Hungarian files

	* share/po/da.po: updated Danish file
	updated Danish and Hungarian files

2002/02/13  Pixel  <pixel@mandrakesoft.com>

	* network/nfs.pm: $server->{ip} is no more mandatory

	* network/smb.pm: don't show shares ending with "$"
	$server->{ip} is no more mandatory

	* any.pm (setupBootloader): switch from "list" to "combo"

	* fs.pm (fstab_to_string): unsetting mount points in standalone will now
	work
	  - handle WORM type in /proc/scsi/scsi
	  - added media_type cdrom-burner
	  - adapting to new media_type
	  - nicer fd&hd testing

	* diskdrake/smbnfs_gtk.pm: have the fstab entries shown by default

	* detect_devices.pm, diskdrake/interactive.pm: 
	  - handle WORM type in /proc/scsi/scsi
	  - added media_type cdrom-burner
	  - adapting to new media_type
	  - nicer fd&hd testing

2002/02/13  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: When one visited the help page of a remote CUPS printer
	afterwards the full
	printer modification menu was shown, not only the one for remote CUPS
	printers. This is fixed now.

2002/02/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po, share/po/DrakX.pot: updated Czech and Walloon files

	* share/po/cs.po: updated Czech file
	updated Czech and Walloon files

2002/02/12  Pixel  <pixel@mandrakesoft.com>

	* devices.pm: i prefer /(.*?)(\d+)$/ to /(.*\D)(\d+)$/

2002/02/12  Till Kamppeter <till@mandrakesoft.com>

	* detect_devices.pm: In the USB auto-detection checked whether and where
	the device node was
	created.

2002/02/12  dam's  <damien@mandrakesoft.com>

	* share/step-red.xpm, share/step-orange.xpm, share/step-orange-click.xpm,
	share/themes/mdk-check_on.png, share/step-green-click.xpm,
	share/step-green.xpm, share/step-red-click.xpm,
	share/themes/mdk-check_off.png: new gfx

	* standalone/drakbackup, network/network.pm: bug correction

2002/02/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
	share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2002/02/12  Pixel  <pixel@mandrakesoft.com>

	* devices.pm: i prefer /(.*?)(\d+)$/ to /(.*\D)(\d+)$/

	* docs/README.pxe: cleanup the .cfg

	* share/rpmsrate: 
	  - move bootsplash from SYSTEM to X
	  - lower Aurora

2002/02/12  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed:
	  - Endless loop when entering printerdrake during installation in
	recommended
	mode without local printer
	  - Printerdrake was not closed when one was in the "Add Printer"
	sequence
	  during installation and one clicked another installation item (entries
	  on left hand side)
	  - When configuring printing only after installation Printerdrake tried
	to
	  check the installed queues without Foomatic being installed (bug was
	  already in 8.1, but noone discovered it).
	  - CUPS died when one tried to add a (local) printer in recommended
	mode
	  after installation.
	  - Improved text for the dialog telling that no local printer was
	detected.
	  - The list of auto-detected printers appeared as drop-down menu and
	not as
	  a list.

	* detect_devices.pm: In the USB auto-detection checked whether and where
	the device node was
	created.
	Fixes on device auto-detection:
	  - Made USB printer auto-detection routine in "detect_devices.pm"
	creating
	the appropriate device nodes (needed for USB printers being recognized
	  during installation).
	  - Fixed "devices.pm" to be able to handle device files with numbers
	geater
	  than 9 (ex: /dev/usb/lp10).

	* standalone/printerdrake: 
	  - Assure that Foomatic is installed before checking existing printer
	queues.

	* devices.pm: Fixes on device auto-detection:
	  - Made USB printer auto-detection routine in "detect_devices.pm"
	creating
	the appropriate device nodes (needed for USB printers being recognized
	  during installation).
	  - Fixed "devices.pm" to be able to handle device files with numbers
	geater
	  than 9 (ex: /dev/usb/lp10).

	* printer.pm: Added forgotten '$prefix'es.
	Fixed:
	  - Endless loop when entering printerdrake during installation in
	recommended
	mode without local printer
	  - Printerdrake was not closed when one was in the "Add Printer"
	sequence
	  during installation and one clicked another installation item (entries
	  on left hand side)
	  - When configuring printing only after installation Printerdrake tried
	to
	  check the installed queues without Foomatic being installed (bug was
	  already in 8.1, but noone discovered it).
	  - CUPS died when one tried to add a (local) printer in recommended
	mode
	  after installation.
	  - Improved text for the dialog telling that no local printer was
	detected.
	  - The list of auto-detected printers appeared as drop-down menu and
	not as
	  a list.

2002/02/11  dam's  <damien@mandrakesoft.com>

	* share/list: added modinfo

	* network/netconnect.pm: added cancel for first step

2002/02/11  François Pons  <fpons@mandrakesoft.com>

	* any.pm: fixed syntax error...

	* Xconfigurator.pm: avoid testing fbdev driver.

	* install_steps.pm: added Aurora or bootsplash for getting a need on frame
	buffer.
	added fbdev for GeForce Integrated.

2002/02/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po, share/po/vi.po, share/po/hu.po: updated Danish,
	Hungarian and Vietnamese files

2002/02/11  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: booh, fpons was faster than me on "bootsplash wanting
	fb". Keeping my solution ;p

	* c/stuff.xs.pm: "standard_charset" and "iconv" are needed even when C_RPM
	is undefined

	* any.pm: allow to edit the initrd field (thx to randy.k.wilson)

	* install_any.pm (@needToCopy): add "ntp"

2002/02/11  warly

	* share/rpmsrate: remove dev from INSTALL, the sun is rising, and there
	are no more needs to have ppp in the INSTALL section, as the darkness is
	going away...

2002/02/10  Pixel  <pixel@mandrakesoft.com>

	* any.pm: in case there is both ata66 (hde) and ata33 hard drives, go to
	expert
	questions directly (it would need a semi_auto asking on which drive the
	bios
	boots...)

2002/02/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated Dutch file

2002/02/09  daouda

	* share/rpmsrate: 
	  - add rfbdrake to NETWORKING_REMOTE_ACCESS and
	NETWORKING_REMOTE_ACCESS_SERVER

2002/02/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: updated help.pm file

	* share/po/fi.po, share/po/DrakX.pot, share/po/help_xml2pm.pl,
	share/po/es.po, share/po/fr.po, share/po/sv.po, share/po/da.po,
	share/po/de.po, share/po/hu.po, share/po/it.po, share/po/eu.po: merged
	with the manual help

2002/02/09  warly

	* share/rpmsrate: add ppp in INSTALL
	add dev in INSTALL

2002/02/08  dam's  <damien@mandrakesoft.com>

	* pixmaps/wiz_drakgw.png, pixmaps/wiz_default_up.png,
	pixmaps/wiz_firewall.png, pixmaps/wiz_draknet.png: new gfx

	* network/network.pm: corrected wireless modules

2002/02/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, share/locales-skeleton.tar.bz2: Added choice of charset for
	various languages

2002/02/08  Pixel  <pixel@mandrakesoft.com>

	* docs/SHORTCUTS: add F1 & F2

2002/02/08  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Added instructions for scanning on HP's MF devices to
	the printer help page.
	HP PhotoSmart printers do not scan, so do not show how to scan with
	them.
	Do not let dialogs of network configuration correction appear embedded
	in the "Add printer" wizard.
	Completed wizard mode for adding a printer in both recommended and
	expert mode.

	* printer.pm: Enabled transferring queues of HP multi-function devices
	between spoolers.
	CUPS 1.1.13 dies on SIGHUP, do normal restart instead.
	Completed wizard mode for adding a printer in both recommended and
	expert mode.

2002/02/08  warly

	* share/rpmsrate: add bootsplash in system 4

2002/02/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2002/02/07  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm: fix error causing a bad window sizing when there is
	a horiz scroll

2002/02/07  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: fixed shadow when testing X

2002/02/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/help_xml2pm.pl: fixed email address

2002/02/07  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/smbnfs_gtk.pm: 
	  - don't pop the "do you want to install samba?"
	  - rwindow is not a window when embedded, so set_default_size only if
	possible

	* my_gtk.pm: make perl_checker happy
	ensure no more than one child is in the Plug

	* interactive.pm: fix (causing XFdrake to use a combo instead of a list)

	* interactive_gtk.pm: fix error causing a bad window sizing when there is
	a horiz scroll
	(exit): ensure USR1 is sent to mcc

	* Xconfigurator.pm: allow to edit the hsyncrange and vsyncrange when
	choosing monitor "Custom"

	* install2.pm, install_steps.pm: create and use miscellaneousAfter (so
	that SECURE_LEVEL is set *after* asking)

	* diskdrake/interactive.pm (Options): wrap the help text

	* standalone/diskdrake: handle --embedded xxx xxx

2002/02/07  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* standalone/drakxtv, Makefile.config: add drakxtv (scantv gui)

	* standalone/localedrake: fix pixel stuff: don't restart wm on cancel

2002/02/07  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: beta 2

	* printerdrake.pm: corrected wizard pb

	* my_gtk.pm: wizard fixes

2002/02/07  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (mount): precise the type when mounting in standalone (for smb,
	nfs would not need it)

	* diskdrake/smbnfs_gtk.pm: 
	  - don't pop the "do you want to install samba?"
	  - rwindow is not a window when embedded, so set_default_size only if
	possible

	* interactive.pm: fix (causing XFdrake to use a combo instead of a list)

	* my_gtk.pm: ensure no more than one child is in the Plug

	* standalone/diskdrake: handle --embedded xxx xxx

	* interactive_gtk.pm (exit): ensure USR1 is sent to mcc

2002/02/06  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: removed ugly pink and ugly left bar for wizard mode

2002/02/06  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem, tools/oem-prepare: better handling of group linked
	to hardware or options.

2002/02/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: have frozen-bubble in GAMES at level 4

2002/02/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po, share/po/fi.po, share/po/DrakX.pot: updated French file

2002/02/06  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Automatic configuration of the scanning part of HP's
	multi-function devices.

	* printerdrake.pm: Added some stuff for the Wizard mode.
	Automatic configuration of the scanning part of HP's multi-function
	devices.
	Updated automatic package installation in printerdrake, no "kups" and
	"qtcups" any more, but "gpr", "a2ps", and "hpoj", updated also
	"rpmsrate" and "rpmsrate.server" appropriately.

	* share/rpmsrate.server, share/rpmsrate: Added scanning packages to
	INSTALL section, for HP MF device installation by printerdrake.
	Updated automatic package installation in printerdrake, no "kups" and
	"qtcups" any more, but "gpr", "a2ps", and "hpoj", updated also
	"rpmsrate" and "rpmsrate.server" appropriately.

2002/02/05  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Added automatic configuration of HPOJ for
	HP's multi-function devices.

2002/02/05  dam's  <damien@mandrakesoft.com>

	* standalone/logdrake: wizard updated
	correction for mcc.

2002/02/05  François Pons  <fpons@mandrakesoft.com>

	* share/rpmsrate.server: synced with normal rpmsrate for Basque
	management.

	* install2.pm: auto_allocate for oem mode is not needed as oem script
	create all necessary partition.

	* install_any.pm: add support for Basque (no KDE).

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: newer syslinux 1.67.

	* share/rpmsrate: add support for Basque (no netscape in such case)

	* rescue/tree/etc/oem: select preferred kernel as kernel-\d.

	* install_steps.pm: fixed logic, when someone want /root/drakx,
	it has to check /root/drakx and not /root only.

2002/02/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/tree/sbin/modprobe: don't do insmod -f, it's not really necessary
	and it taints the kernel (pabo)

	* rescue/tree/etc/profile: use LD_LIBRARY_PATH in rescue so that PATH'ing
	in /mnt
	can really be used

2002/02/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/es.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
	share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
	share/po/it.po, share/po/id.po, share/po/pl.po, share/po/no.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2002/02/05  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: fix "help lilo when there is hdd with no hdc drive"

	* Xconfigurator.pm: testFinalConfig now always returns true if test is
	skipped because of a bad_card (back to the old behaviour, this was no
	good (the aim is to enable changing the monitor when test is skipped))

	* share/po/fr.po: fix "Details" translated in "Détails de la partition"
	but is used at different
	place where the meaning has nothing to do with "partitions"

2002/02/05  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Added automatic configuration of HPOJ for
	HP's multi-function devices.

2002/02/05  warly

	* share/compssUsers.server: remove non server group from rpmsrate.server
	add utilities group in compssUser.server
	(webmin,ssh-server,wizards,monitoring)

	* share/rpmsrate.server: begin rpmsrate.server cleaning

2002/02/05  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: fix "help lilo when there is hdd with no hdc drive"

	* Xconfigurator.pm: testFinalConfig now always returns true if test is
	skipped because of a bad_card (back to the old behaviour, this was no
	good (the aim is to enable changing the monitor when test is skipped))

2002/02/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: log the "chkconfig --del gpm" when there is a serial
	mouse

2002/02/04  dam's  <damien@mandrakesoft.com>

	* standalone/logdrake: corrected typo. Yvounet, check your code!!
	embedded, explain

	* my_gtk.pm: bug correction

	* standalone/drakfont, services.pm, network/netconnect.pm: applied cooker
	guy english review

2002/02/04  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added v4l module all the time (along with dbe already
	present).

2002/02/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps.pm: have numlock activated when isLaptop rather than
	$o->{pcmcia}

2002/02/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/zh_CN.po, share/po/no.po, share/po/fi.po,
	share/po/DrakX.pot, share/po/th.po, share/po/es.po, share/po/fr.po,
	share/po/sr.po, share/po/el.po, share/po/et.po, share/po/sk.po,
	share/po/tr.po, share/po/eu.po, share/po/sl.po, share/po/vi.po,
	share/po/uk.po, share/po/eo.po, share/po/nl.po, share/po/wa.po,
	share/po/sv.po, share/po/zh_TW.po: updated some po files

2002/02/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: fix creating /etc/security/msec/server

	* share/po/fr.po: fix "More" translation

2002/02/04  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Made HP multi-function devices configured
	with HPOJ being displayed correctly by printerdrake.

	* detect_devices.pm: Replace "Hewlett-Packard" by "HP" when HP device is
	detected on a parallel port.

2002/02/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: update french translations

2002/02/03  Pixel  <pixel@mandrakesoft.com>

	* any.pm: force a few more "list"s instead of "combo" boxes
	since "format" is now handled for combo boxes, combo boxes are used in
	much too many places. Fix this by forcing type "list" for some cases,
	and using type "list" when a ask_from has only one entry

	* interactive.pm: since "format" is now handled for combo boxes, combo
	boxes are used in much too many places. Fix this by forcing type "list"
	for some cases, and using type "list" when a ask_from has only one entry

	* bootloader.pm: 
	  - fix some vga text modes 80x30
	  - chmod 600 lilo.conf when a password is given
	  - fix general "append"
	(thanks to David Eastcott)
	"password" works without "restricted", not the other way round (reported
	by David Eastcott)
	fix typo

2002/02/03  warly

	* share/rpmsrate.server: synchronize with current cooker rpmsrate

2002/02/03  Pixel  <pixel@mandrakesoft.com>

	* any.pm: force a few more "list"s instead of "combo" boxes
	since "format" is now handled for combo boxes, combo boxes are used in
	much too many places. Fix this by forcing type "list" for some cases,
	and using type "list" when a ask_from has only one entry

	* interactive.pm: since "format" is now handled for combo boxes, combo
	boxes are used in much too many places. Fix this by forcing type "list"
	for some cases, and using type "list" when a ask_from has only one entry

	* bootloader.pm: fix typo
	help lilo when there is hdd with no hdc drive (needs testing!)

2002/02/03  warly

	* share/rpmsrate.server, share/compssUsers.server: add rpmsrate.server and
	compssUsers.server

2002/02/03  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: help lilo when there is hdd with no hdc drive (needs
	testing!)

2002/02/03  warly

	* share/rpmsrate.server, share/compssUsers.server: add rpmsrate.server and
	compssUsers.server

2002/02/02  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: XFree is now 4.2

	* standalone/fileshareset: fix dropping samba sections which don't have
	any "path="

2002/02/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po, share/po/DrakX.pot: updated Swedish file

	* share/po/fr.po: merged again French file to recover some lost strings;
	and added non breakable spaces at all the needed places as required
	by French typography

2002/02/01  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm: please perl_checker

	* install_interactive.pm: use from_Mb for choosing the size of the windows
	partition

	* install_steps.pm: create symlink /etc/security/msec/server in security >
	3

2002/02/01  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: First steps of the implementation for the "Add printer"
	wizard.

	* detect_devices.pm: Made auto-detection working for HP DeskJet 840C on
	USB
	General improvements for reliability of USB printer auto-detection

2002/02/01  yduret

	* pixmaps/wiz_scannerdrake.png: readding it with -kb option (i am still
	jeune and boulet)
	rm for readding with -kb option (i am jeune and boulet)

	* standalone/logdrake: ergo fix thx dadou report
	fix --explain=foo bug that prevent to show anything

	* bootlook.pm: ergo fix thx dadou report...

2002/02/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* services.pm, standalone/drakbackup, printerdrake.pm,
	standalone/logdrake: changed some strings to make translation easier

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/no.po, share/po/fi.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2002/02/01  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm: please perl_checker

	* install_interactive.pm: use from_Mb for choosing the size of the windows
	partition

	* Xconfigurator.pm: testFinalConfig now returns false if test is skipped
	because of a bad_card or
	verybad_card and $skip_badcard is not set

2002/01/31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, share/keyboards.tar.bz2, keyboard.pm: Added Tamil language and
	keyboard choices (KDE is translated to Tamil)

2002/01/31  yduret

	* pixmaps/wiz_scannerdrake.png: on rajoute la zolie image

2002/01/30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* Xconfigurator.pm: Added setting of model=jp106 for Japanese keyboard

	* keyboard.pm, share/keyboards.tar.bz2: Added Bulgarian "phonetic"
	keyboard

	* lang.pm: Enabled "ms" language in the language selection list (there are
	Gnome and KDE
	translations for it)

	* share/po/be.po, share/po/zh_CN.po, share/po/no.po, share/po/fi.po,
	share/po/es.po, share/po/bg.po, share/po/de.po, share/po/et.po,
	share/po/el.po, share/po/ru.po, share/po/br.po, share/po/uk.po,
	share/po/eo.po, share/po/bs.po, share/po/nl.po, share/po/ro.po,
	share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/hu.po:
	updated some po files

2002/01/30  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: add gnome-core in GNOME (used to be required?)

	* Xconfigurator_consts.pm, Xconfigurator.pm: move "what is the
	running_window_manager" and "ask_window_manager_to_logout" to any.pm

	* any.pm (ask_window_manager_to_logout, running_window_manager): created
	from Xconfigurator and cleaned
	(selectLanguage): if $langs is empty, don't ask for "other languages"

	* pixmaps/wiz_printerdrake.png: re-adding with -kb
	removing for re-adding with -kb

	* standalone/localedrake: now works in normal user: it modifies the
	~/.i18n (todo: handle kde crazy variables?)

	* lang.pm: handle read'ing and write'ing to a specified file (useful
	example: ~/.i18n)

2002/01/30  sdupont

	* standalone/drakbackup: complex merging....
	change /var/drakbackup to /var/lib/drakbackup
	crontab update
	mail report update
	sendmail update
	require rpm mode
	code optimisation
	remove about gi
	new help function

2002/01/29  Till Kamppeter <till@mandrakesoft.com>

	* pixmaps/wiz_printerdrake.png: Added logo for the "Add Printer" wizard of
	printerdrake.

	* printer.pm, printerdrake.pm: Prepared printerdrake for the "Add printer"
	wizard.
	Improvements for the selection of a local printer, especially when no or
	one printer was detected.

2002/01/29  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: icons placements are better

2002/01/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakbug_report, standalone/drakautoinst, install2.pm,
	install_any.pm, install_steps.pm, log.pm, docs/README, pkgs.pm: move
	/root/* files (ddebug.log, install.log, report.bug,
	auto_inst.cfg.pl, replay_install.img) to /root/drakx/,
	and also save stage1.log there

	* partition_table_raw.pm: add new pixel-made grub signature

	* crypto.pm: update land2tzs accordingly to new url2land
	Add url2land entries for nl, it, at

	* any.pm: move /root/* files (ddebug.log, install.log, report.bug,
	auto_inst.cfg.pl, replay_install.img) to /root/drakx/,
	and also save stage1.log there
	rephrase a little bit highest level
	to not refer to "level 4" anymore
	use formatAlaTeX for describing security levels

	* install_steps_interactive.pm: fix thanks to chipaux msg about mkbootdisk

2002/01/29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po, share/po/sv.po, share/po/hr.po, share/po/de.po,
	share/po/DrakX.pot, help.pm, share/po/it.po, share/po/eu.po,
	share/po/es.po: updated pot file with help messages from manual

2002/01/29  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm: handle "format" for combo's

	* bootloader.pm: use the new format for combo's to clean code handling
	{vga} field

	* diskdrake/hd_gtk.pm: look diskdrake.rc in another directory

	* any.pm: use the new format for combo's to clean code handling {vga}
	field
	handle the case where samba and/or nfs-utils are not installed

	* install_steps.pm: move the various bootloader::add_append's in
	setupBootloaderBefore

	* diskdrake/smbnfs_gtk.pm: handle the case where samba and/or nfs-utils
	are not installed

	* install_steps_interactive.pm: visually unselect X and docs when minimal
	install
	"With X" choice is now working
	handle "Cancel" on language selection

2002/01/29  Till Kamppeter <till@mandrakesoft.com>

	* pixmaps/wiz_printerdrake.png: Added logo for the "Add Printer" wizard of
	printerdrake.

	* printer.pm, printerdrake.pm: Prepared printerdrake for the "Add printer"
	wizard.
	Improvements for the selection of a local printer, especially when no or
	one printer was detected.

2002/01/29  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* interactive.pm: fix pixel's minimal example using interactive.

2002/01/29  yduret

	* docs/interactive/ask_from_list, docs/interactive/wait_message,
	docs/interactive/ask_from_treelist, docs/interactive/ask_from_listf,
	docs/interactive/ask_from: added some snipet coe for example

	* standalone/logdrake: logdrake is now under gi/perl-install/standalone

2002/01/29  Pixel  <pixel@mandrakesoft.com>

	* diskdrake/hd_gtk.pm: look diskdrake.rc in another directory

	* install_steps.pm: move the various bootloader::add_append's in
	setupBootloaderBefore

2002/01/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: do the few new translations

	* standalone.pm: try to reflect hierarchy for */*.pm

2002/01/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/zh_CN.po, share/po/no.po, share/po/fi.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
	share/po/sk.po, crypto.pm, share/po/tr.po, share/po/eu.po,
	printerdrake.pm, standalone/draknet, share/po/vi.po, share/po/ko.po,
	share/po/uk.po, share/po/nl.po, share/po/bs.po, share/po/ja.po,
	standalone/drakbackup, share/po/wa.po, share/po/sv.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/hu.po, share/po/af.po,
	share/po/id.po: Corrected various English typos

2002/01/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: fix typo

	* partition_table.pm: warn if partitions have been renumbered due to a
	partition being added or removed

	* diskdrake/interactive.pm: don't warn_if_renumbered during install
	warn if partitions have been renumbered due to a partition being added
	or removed

2002/01/28  siegel

	* share/po/de.po: new german version

2002/01/28  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Replaced "sleep" commands by a subroutine which waits
	exactly until CUPS is ready.
	CUPS >= 1.1.12 needs to "know" all devices, let CUPS restart if a device
	is not "known" to it.

	* printer.pm: Removed debug helper line.
	Replaced "sleep" commands by a subroutine which waits exactly until CUPS
	is ready.
	CUPS >= 1.1.12 needs to "know" all devices, let CUPS restart if a device
	is not "known" to it.

2002/01/28  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/br.po: update brezhoneg translations

	* share/po/fr.po: more french translations

2002/01/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/zh_CN.po, share/po/no.po, share/po/fi.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
	share/po/sk.po, crypto.pm, share/po/tr.po, share/po/eu.po,
	printerdrake.pm, standalone/draknet, share/po/vi.po, share/po/ko.po,
	share/po/uk.po, share/po/nl.po, share/po/bs.po, share/po/ja.po,
	standalone/drakbackup, share/po/wa.po, share/po/sv.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/hu.po, share/po/af.po,
	share/po/id.po: Corrected various English typos

2002/01/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: fix typo

	* diskdrake/interactive.pm, partition_table.pm: warn if partitions have
	been renumbered due to a partition being added or removed

2002/01/28  dam's  <damien@mandrakesoft.com>

	* network/tools.pm, network/netconnect.pm: debug network testing

2002/01/28  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: updated color of
	scroll bar and reduced its size.

	* bootloader.pm: fixed get_append if key=mem.
	timeout passed to 10 instead of 5.

2002/01/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: update games rates

2002/01/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2002/01/28  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (remove_advertising): ensure removing /tmp/drakx-images
	can't fail

	* any.pm: simpler&nicer solution for writing kppprc in utf8
	have kppprc strings in utf8

	* detect_devices.pm: remove test code

	* install_steps.pm, bootloader.pm: cleanup perImageAppend code (hopefully
	handling nicely the mem=nopentium case)

	* diskdrake/smbnfs_gtk.pm: don't use wait_message's when waiting (waiting
	is usually very short), use a waiting cursor instead.
	(the wait_message's were causing bad interactivity stuff)

2002/01/27  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm: add a minimal example

	* services.pm: 
	  - move the require on my_gtk to ask_standalone_gtk
	  - cleanup

	* Makefile.config: 
	  - adapt to new diskdrake modules
	  - add logdrake to STANDALONEPMS_

	* my_gtk.pm: strange protection against ensure_focus generating a "focus"
	event causing a
	dead-loop (reminder: ensure_focus helps ensuring a widget is focused)

	* Makefile.drakxtools, standalone.pm, Makefile, diskdrake_interactive.pm,
	install_interactive.pm, diskdrake.pm: 
	  - adapt to new diskdrake modules
	  - some cleanup in drakxtools build

	* diskdrake/removable.pm: remove debugging code
	new diskdrake modules (diskdrake_interactive is now
	diskdrake::interactive, diskdrake is now diskdrake::hd_gtk, others
	created from diskdrake.pm)

	* diskdrake/interactive.pm, diskdrake/hd_gtk.pm,
	diskdrake/removable_gtk.pm: new diskdrake modules (diskdrake_interactive
	is now diskdrake::interactive, diskdrake is now diskdrake::hd_gtk,
	others created from diskdrake.pm)

	* diskdrake/smbnfs_gtk.pm: fix updating the actions
	new diskdrake modules (diskdrake_interactive is now
	diskdrake::interactive, diskdrake is now diskdrake::hd_gtk, others
	created from diskdrake.pm)

	* network/nfs.pm: find_exports: add a timeout

	* fs.pm: new function fstab_to_string

	* standalone/diskdrake: handle --removable *and* --removable=<dev>
	handle --removable=<dev>
	  - new options --hd, --nfs, --smb, --removable
	  - adapt to new diskdrake modules
	  - save $all_hds->{current_fstab} to know if /etc/fstab must be saved

2002/01/25  fabman

	* share/po/es.po: updated spanish translation

2002/01/25  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: add devfsd

	* install_any.pm: remove_advertising: use rm_rf since we don't have the
	real list of files (the .pl's are not in @advertising_images)

	* mdk-stage1/pci-resource/update-pci-ids.pl: remove 'ncr53c8xx'

2002/01/25  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Less important options only shown when
	"Advanced" button clicked.
	Handling of cursor position in the main window improved.
	Handling of empty printer queue list in main window improved.
	Removed line breaks from longer texts, so that text flows into window
	nicely
	Minor text improvements.

2002/01/25  dam's  <damien@mandrakesoft.com>

	* install_any.pm: advertising engine updated

	* share/logo-mandrake.png: beta logo

	* install_steps_gtk.pm: corrected decy
	advertising engine updated

2002/01/25  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: please find a better fix

2002/01/25  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: prefer default linux-{smp,enterprise,secure} over simple
	linux
	fix spelling

	* Makefile: call clean-rpmsrate

	* mdk-stage1/pci-resource/update-pci-ids.pl: remove 'ncr53c8xx'

2002/01/25  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm, install_any.pm: advertising engine updated

	* share/po/fr.po: typo

	* share/logo-mandrake.png: beta logo

2002/01/25  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: please find a better fix

2002/01/25  Pixel  <pixel@mandrakesoft.com>

	* mdk-stage1/Makefile: ensure errors propagate

	* bootloader.pm: prefer default linux-{smp,enterprise,secure} over simple
	linux
	fix spelling

	* Makefile: call clean-rpmsrate

	* mdk-stage1/pci-resource/Makefile: silly shell
	ensure errors propagate

2002/01/25  dam's  <damien@mandrakesoft.com>

	* share/po/fr.po: typo
	corrected too long label Mise à niveau deas paquetages seule. please
	find a better FIX

2002/01/25  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: cosmetic changes.

	* pkgs.pm: fixed try opening to trigger changeCD callback.

2002/01/24  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: 
	  - add msec in any install
	  - use BIGMEM flag for kernel-enterprise
	  - use SMP flag for kernel-smp
	(those 2 goes together with Warly's clean-rpmsrate)
	add flag DOCS which should work together with !excludedocs

	* any.pm: ensure grub is installed if grub is chosen

	* install_any.pm: 
	  - add DOCS (based on !excludedocs)
	  - set BIGMEM and SMP flags
	(since kernel-smp and kernel-enterprise sub-numbers are better handled
	by
	 rpmsrate together with Warly's clean-rpmsrate)

	* install_steps_interactive.pm, install2.pm: minimal install now handles
	excludedocs

	* install_steps.pm: log excludedocs
	minimal install now handles excludedocs
	put devfs=mount only if devfsd is installed

	* diskdrake_interactive.pm: truncate lvm name to 63 characters since
	longer vg names are not allowed

2002/01/24  Till Kamppeter <till@mandrakesoft.com>

	* detect_devices.pm, printer.pm, printerdrake.pm: Fixed bug of empty menu
	entry appearing after adding a new printer.
	Modified "Local Printer" dialog to be more newbie-friendly.

2002/01/23  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm: updated speedtouch code to use pppoa3

	* my_gtk.pm: removed font loading

2002/01/23  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: fixed to allow multiple mem=xxx parameter (especially
	mem=nopentium).

	* install_steps.pm: restored mem=nopentium.
	removed mem=nopentium.

2002/01/23  Pixel  <pixel@mandrakesoft.com>

	* standalone/fileshareset: name mangling max length set to 12
	use name mangling for samba labels

2002/01/23  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: New user interface in main window
	More printer info in printer modification window
	Better support for remote CUPS printers

2002/01/22  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: improved widget_icons

	* install_steps.pm: added net_cnx_pg output when configuring network in
	auto install

2002/01/22  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: added support to save already existing synthesis file.

	* install_any.pm: changed code to build synthesis file, check if they have
	not already been copied
	from mirror, or build them using parsehdlist.

2002/01/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: Translate a few things more

2002/01/22  Pixel  <pixel@mandrakesoft.com>

	* diskdrake_interactive.pm: cleanup error messages (and fix diskdrake's)
	defaults to ext3 instead of ext2

	* interactive.pm: add "quit_if_double_click" and "tree_expanded" flags
	(request from till)
	add feature "allow_empty_list" for "list" entries (disables the special
	cases for 0 and 1 element lists)

	* install_any.pm, diskdrake.pm: cleanup error messages (and fix
	diskdrake's)

	* install_interactive.pm, raid.pm: defaults to ext3 instead of ext2

	* partition_table.pm: remove unused auto_win_extended stuff
	handle extended partitions with no partitions inside (esp. for the first
	hda5 & windows XP)

	* bootloader.pm: 
	  - fix default not being formatted like labels for lilo
	  - check the label is not already used *case-sensitively*
	  - check a kernel_or_dev is given

	* any.pm: 
	  - remove the default entry when that entry is removed
	  - use allow_empty_list for displaying the entries
	  - fix default not being formatted like labels for lilo
	  - check the label is not already used *case-sensitively*
	  - check a kernel_or_dev is given

	* fsedit.pm: yet again better error reporting
	defaults to ext3 instead of ext2

	* standalone/drakboot, bootlook.pm: fix yves's code duplication of
	lilo_choice (use $::lilo_choice in bootlook)

	* interactive_gtk.pm: add "quit_if_double_click" and "tree_expanded" flags
	(request from till)

	* install_steps_interactive.pm: cleanup error messages (and fix
	diskdrake's)
	better messages for the minimal installs

	* standalone/diskdrake: yet again better error reporting
	cleanup error messages (and fix diskdrake's)

	* share/rpmsrate: move mandrake-mime from SYSTEM to X
	lower sndconfig

2002/01/22  fcrozat

	* share/rpmsrate: Really install gnome control center when installing
	GNOME

2002/01/22  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: added mem=nopentium for any Athlon or Duron processor.

2002/01/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* Makefile: exclude standalone from testing

	* share/po/fr.po: resolve small conflict

2002/01/22  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: add the new "mii" module to 'net_raw'

	* install_steps_interactive.pm: better messages for the minimal installs
	fix a few cancel's (reported by slegros)
	don't ask security level in non-expert

	* install_steps_gtk.pm, install_interactive.pm: fix a few cancel's
	(reported by slegros)

	* share/rpmsrate: move mandrake-mime from SYSTEM to X
	lower sndconfig

2002/01/21  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm, my_gtk.pm: hopefully better dialog box sizing

	* install_steps_interactive.pm, install2.pm: can't call
	any::config_libsafe so early during install, move it where msec is
	called

	* any.pm: quiet perl's warning

2002/01/21  dam's  <damien@mandrakesoft.com>

	* install_steps.pm: fixed network conf in auto install
	corrected network down

	* my_gtk.pm: removed debug print
	icons widget improvment : icon placment, highlighting

2002/01/21  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: increase the size of the "Choose action" box

	* diskdrake_interactive.pm: remove the "Active" partition feature

	* interactive_gtk.pm, my_gtk.pm: hopefully better dialog box sizing

	* install2.pm: can't call any::config_libsafe so early during install,
	move it where msec is called

	* install_steps_interactive.pm: can't call any::config_libsafe so early
	during install, move it where msec is called
	cleanup, update, enhance security level choice

	* standalone/draksec: cleanup, update, enhance security level choice

	* install_steps.pm: remove deprecated msec groups adding
	cleanup

	* tools/i386/netboot/stage2.3c90x, tools/i386/netboot/grub: newer grub

	* any.pm: quiet perl's warning
	cleanup, update, enhance security level choice
	when creating users, add handling of xgrp/rpm/adm/wheel groups in high
	security
	fix advice about "usermod -G"

	* tools/i386/netboot/menu.lst.example: add gateway parameter

2002/01/21  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: new ugly icon

	* install_steps.pm: corrected network down

2002/01/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2002/01/21  Pixel  <pixel@mandrakesoft.com>

	* share/fonts.tar.bz2: add helvR12_iso15

	* install_steps_interactive.pm: """ When I choose a / partition smaller
	than 200 MB, the installation
	gives me an error message complaining that my system does not
	    have enough free space for the installation, although basesystem
	install
	    require less than 100 MB. """
	up to around 250MB, minimal install is chosen.
	questions are: base system only, or no X, or normal.

2002/01/21  siegel

	* share/po/de.po: updates

	* standalone/drakbackup: fixed i18n bugs

2002/01/20  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: call msec with run_commands=0 to fix the network reloading
	(causing various problems, esp. "Net::FTP: Timeout" at X config step)

2002/01/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakbackup: sorry, _("$_") is not allowed

2002/01/20  Pixel  <pixel@mandrakesoft.com>

	* share/po/fr.po: fix "`msgid' and `msgstr' entries do not both end with
	'\n'"

	* install2.pm: call msec with run_commands=0 to fix the network reloading
	(causing various problems, esp. "Net::FTP: Timeout" at X config step)

2002/01/20  yduret

	* timezone.pm: added Italy (time.ien.it) in

2002/01/19  Stew Benedict  <sbenedict@mandrakesoft.com>

	* standalone/drakbackup: Rework English syntax in drakbackup - hopefully
	I've got the intent correct ;^)

2002/01/19  Till Kamppeter <till@mandrakesoft.com>

	* detect_devices.pm: Replaced USB printer auto-detection by a more
	reliable method.

2002/01/18  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: changed Update -> Upgrade for installation
	class.

2002/01/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/draknet: 
	  - move 'use standalone' up to comply to 'explanations'
	  - fix an english typo, s/connexion/connection/

	* standalone/drakgw: 
	  - move 'use standalone' up to comply to 'explanations'
	  - write higher-level 'explanations'
	  - small fix, s/`ls ..`/glob(..)/

	* standalone/scannerdrake: 
	  - move 'use standalone' up to comply to 'explanations'
	  - fix a small english problem

	* share/po/fr.po: reduce a lot of fuzzy and untranslations
	large stuff from printerdrake, drakbackup and drakfont still to do :-)

	* c/stuff.xs.pm, standalone/printerdrake, standalone/net_monitor,
	standalone/drakautoinst, standalone/keyboarddrake,
	standalone/localedrake, standalone/livedrake, standalone/drakboot,
	standalone/draksec, standalone/tinyfirewall, standalone/mousedrake,
	standalone/drakxservices, standalone.pm, standalone/drakproxy,
	standalone/XFdrake, standalone/diskdrake, standalone/adduserdrake,
	standalone/drakxconf, log.pm, standalone/logdrake,
	standalone/drakbackup, standalone/drakfont: 
	  - write the 'common' part of the 'explanations' stuff,
	with nice help from Pixel for the tough Perl part
	  - move 'use standalone' up in all standalone apps,
	  to comply to 'explanations'

2002/01/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2,
	share/fonts.tar.bz2: changes to get in line with new XFree86

2002/01/18  Pixel  <pixel@mandrakesoft.com>

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2: find the X11
	locale on the box so that XI18N_OBJS's and common are included

2002/01/18  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: add update flag for urpmi medium.

	* install_steps_interactive.pm: even if user cancel update of package on
	tree, allow urpmi to install the medium.
	avoid downNetwork as no difference are made between ethernet or ppp.
	fixed typo.
	allow cancel when installUpdates.

	* crypto.pm: add update medium for crypto for urpmi (flag update).
	fixed typo.
	allow selection/deselection of update medium (for cancel of
	installation).

	* install_steps_gtk.pm: allow choosePackageTree to display a cancel if a
	specific medium has been given.

2002/01/18  Pixel  <pixel@mandrakesoft.com>

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2: find the X11
	locale on the box so that XI18N_OBJS's and common are included

2002/01/18  sdupont

	* standalone/drakfont: update warning messages (qa).

	* standalone/drakbackup: fix traduction problems and more ...

2002/01/17  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm, diskdrake_interactive.pm: better error message when auto
	allocate doesn't do anything

2002/01/17  dam's  <damien@mandrakesoft.com>

	* network/tools.pm, network/netconnect.pm: draknet : success message only
	if success

	* my_gtk.pm: added timeout for redrawing icon widget

2002/01/17  fcrozat

	* share/rpmsrate: kdebase-nsplugins will be installed by default when
	selecting KDE

2002/01/17  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: avoid upgrading a package by selection on files unless it has
	been obsoleted.

2002/01/17  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: check the mountpoint is valid for encrypting (disallow "/"
	and "/usr")

	* fsedit.pm, diskdrake_interactive.pm: better error message when auto
	allocate doesn't do anything
	check the mountpoint is valid for encrypting (disallow "/" and "/usr")

	* fs.pm: do not create /swap

	* services.pm: move service apcupsd from Printing to System

	* bootloader.pm: fix many disks bios remapping (esp. booting on scsi when
	ide is present)

2002/01/17  sdupont

	* standalone/drakbackup: stable version for qa pkg.
	(without unstables options)

2002/01/16  Pixel  <pixel@mandrakesoft.com>

	* any.pm: fix cancel on scsi module loading

2002/01/16  sdupont

	* standalone/drakbackup: update send mail.
	(pixel mode. ;))

2002/01/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: installUpdates: use formatAlaTeX

2002/01/16  Pixel  <pixel@mandrakesoft.com>

	* any.pm: fix cancel on scsi module loading

	* install_steps_interactive.pm: don't drop default_packages in "Base
	system only"

	* standalone/fileshareset: add locking to ensure things are in a proper
	state

2002/01/15  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: advertising engine amelioration

	* my_gtk.pm: automatic icon placement in icon_labels_widget

2002/01/15  Pixel  <pixel@mandrakesoft.com>

	* diskdrake_interactive.pm: remove the test trick
	encrypted filesystem handling:
	  - using losetup
	  - add "Options" for partitions in diskdrake (expert mode)

	* c/stuff.xs.pm, fs.pm, share/list, fsedit.pm, devices.pm, install_any.pm,
	diskdrake.pm: encrypted filesystem handling:
	  - using losetup
	  - add "Options" for partitions in diskdrake (expert mode)

2002/01/15  dam's  <damien@mandrakesoft.com>

	* network/isdn_consts.pm: updated

2002/01/15  Pixel  <pixel@mandrakesoft.com>

	* diskdrake_interactive.pm: remove the test trick
	encrypted filesystem handling:
	  - using losetup
	  - add "Options" for partitions in diskdrake (expert mode)

	* c/stuff.xs.pm, fs.pm, share/list, fsedit.pm, devices.pm, install_any.pm,
	diskdrake.pm: encrypted filesystem handling:
	  - using losetup
	  - add "Options" for partitions in diskdrake (expert mode)

	* any.pm: have ddcxinfos take the best result of every run

2002/01/15  sdupont

	* standalone/drakfont: fix progress bar problem.
	some gi updates:
	  - windows font importation.
	 - advanced font importation.
	 - licence interface.
	 - ...

	* standalone/drakbackup: new ./drakbackup --show-conf
	fix daemon problem (media to use).
	update informations on drakbackup report mail.
	__ 3290 lines.
	man pages fr created.
	some code cleaning on backend mode. (all_user_list && return_path)
	new functions on backend mode:
		- show-conf
		- debug
	        - help
	        - version.

2002/01/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: 
	  - eata is SCSI adapter, not 'disk' adapter
	  - have eata module in boot floppies

	* mdk-stage1/pci-resource/update-pci-ids.pl: we need also "big" modules in
	pci ids

	* share/rpmsrate: have lbreakout weigthed 4 instead of 2

	* mdk-stage1/modules.c: suggest other.img in file-not-found-in-archive
	(sugg David Faure
	and Pixel)

2002/01/14  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: fix typo (making auto installs working again)

2002/01/13  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: s/lbreakout/lbreakout2/

	* install_steps_interactive.pm: cleanup

2002/01/13  sdupont

	* standalone/drakbackup: some updates ...
	in "more option" steps user could choose to receive a report by mail for
	each backups.
	ftp backup work.
	fix time problems.
	remove doc from file.
	security fix for configuration file.

2002/01/11  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: advertising engine works !
	champagne.
	still some display bugs, but they will be corrected later.
	need new ads and adequat description file
	new advertising engine

	* install_any.pm: modifications for new avertising engine

	* my_gtk.pm: new icons placement

2002/01/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/zh_CN.po, share/po/fi.po, share/po/DrakX.pot,
	share/po/th.po, share/po/es.po, share/po/fr.po, share/po/sr.po,
	share/po/de.po, share/po/el.po, share/po/et.po, share/po/sk.po,
	share/po/tr.po, share/po/ar.po, share/po/az.po, share/po/eu.po,
	share/po/sl.po, share/po/vi.po, share/po/eo.po, share/po/wa.po,
	share/po/sv.po, share/po/zh_TW.po, share/po/Makefile, share/po/af.po,
	share/po/it.po: updated Spanish file; merged help-* files

2002/01/11  sdupont

	* standalone/drakbackup: update header pixmaps.
	correction of message problem.

	* pixmaps/drakfont.620x57.png, pixmaps/BDO-drakebackup1.png,
	pixmaps/drakbackup.540x57.png: update pixmaps for drakbakup & drakfont.

	* standalone/drakfont: update header pixmaps.

2002/01/10  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: domainname corection

	* network/network.pm: domainname corection
	corrected network domainname pb

	* install2.pm: corrected read_resolv => read_conf

2002/01/10  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: english taste inspired by daminette.

2002/01/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/lsparts: better looking output of type of partition (%x => %0x)

2002/01/09  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, standalone/net_monitor, standalone/draknet,
	network/network.pm, network/modem.pm, network/netconnect.pm: big merge
	from update 8.1 with cvs
	First part. Part 2 following

	* my_gtk.pm: added bold option in text creation. Some corrections

	* install_steps_interactive.pm: corrected fpons typo

2002/01/09  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed too many package selected for No X or With X
	option of minimal installation.

	* install_steps_interactive.pm: avoid asking for minimal install for
	upgrade.

	* crypto.pm: fix incomplete prefix for update mirror when adding an entry
	for urpmi.

	* pkgs.pm: use rpm version comparison function.

	* c/stuff.xs.pm: added rpmvercmp.

2002/01/09  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed too many package selected for No X or With X
	option of minimal installation.

	* install_steps_interactive.pm: avoid asking for minimal install for
	upgrade.

	* crypto.pm: fix incomplete prefix for update mirror when adding an entry
	for urpmi.

	* pkgs.pm: use rpm version comparison function.

	* c/stuff.xs.pm: added rpmvercmp.

2002/01/09  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed too many package selected for No X or With X
	option of minimal installation.

	* install_steps_interactive.pm: avoid asking for minimal install for
	upgrade.
	fixed stupid.

	* crypto.pm: fix incomplete prefix for update mirror when adding an entry
	for urpmi.

	* pkgs.pm: use rpm version comparison function.

	* c/stuff.xs.pm: added rpmvercmp.

2002/01/08  dam's  <damien@mandrakesoft.com>

	* install2.pm: cosmetik

2002/01/08  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: added eval around pixmap drawing for advertising.

2002/01/08  Pixel  <pixel@mandrakesoft.com>

	* standalone/drakbackup: another round of bad use of _() fixes.
	fixed bad use of _().

2002/01/08  sdupont

	* standalone/drakbackup: drakbackup work ...
	incremental backup and restore work.

2002/01/08  François Pons  <fpons@mandrakesoft.com>

	* Makefile: again fixed dam's sucking, please dam's check what you write
	before commiting.

	* standalone/drakautoinst: removed stupid invocation of _("$_"), is it
	correct code to change it to $_ only ?

2002/01/08  François Pons  <fpons@mandrakesoft.com>

	* Makefile: again fixed dam's sucking, please dam's check what you write
	before commiting.

	* standalone/drakautoinst: removed stupid invocation of _("$_"), is it
	correct code to change it to $_ only ?

2002/01/08  François Pons  <fpons@mandrakesoft.com>

	* Makefile: again fixed dam's sucking, please dam's check what you write
	before commiting.

2002/01/07  François Pons  <fpons@mandrakesoft.com>

	* steps.pm: changed installUpdates after summary (to get corrected
	timezone).

	* install_any.pm: separated setDefaultPackages from setPackages because it
	is used by allowing
	only base system to be installed (allow remade a better package
	selection).

	* crypto.pm: added bestMirror method to retrieve a good mirror (according
	to timezone) and
	add salt with random number to avoid using always the same.

	* install2.pm: added option to only upgrade packages.

	* install_steps_interactive.pm: added minimal type of install support.

	* share/list: fixed to match newer menu package.

2002/01/07  François Pons  <fpons@mandrakesoft.com>

	* steps.pm: changed installUpdates after summary (to get corrected
	timezone).

	* install_any.pm: separated setDefaultPackages from setPackages because it
	is used by allowing
	only base system to be installed (allow remade a better package
	selection).

	* crypto.pm: added bestMirror method to retrieve a good mirror (according
	to timezone) and
	add salt with random number to avoid using always the same.

	* install2.pm: added option to only upgrade packages.

	* install_steps_interactive.pm: added minimal type of install support.

	* share/list: fixed to match newer menu package.

2002/01/07  dam's  <damien@mandrakesoft.com>

	* Makefile: socmetic
	typo
	added debug mode for the whole install

	* my_gtk.pm: removed print
	new pack_start functions, powerpack sub added (code from adrien)
	incorporated adrien's code to generalize pack functions
	minor bug fixes

	* install_steps.pm, network/netconnect.pm: corrected network connection
	during install

	* install2: added debug mode for the whole install

2002/01/07  François Pons  <fpons@mandrakesoft.com>

	* steps.pm: changed installUpdates after summary (to get corrected
	timezone).

	* install_any.pm: separated setDefaultPackages from setPackages because it
	is used by allowing
	only base system to be installed (allow remade a better package
	selection).

	* crypto.pm: added bestMirror method to retrieve a good mirror (according
	to timezone) and
	add salt with random number to avoid using always the same.

	* install2.pm: added option to only upgrade packages.

	* install_steps_interactive.pm: added minimal type of install support.

	* share/list: fixed to match newer menu package.

	* Makefile: fixed overwriting of install2 filtering, keep diagnostic and
	strict for debug mode.

2002/01/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: also log server name for HTTP install

2002/01/04  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, install_steps.pm, network/tools.pm, my_gtk.pm,
	network/netconnect.pm: corrected minor bugs in network (among others bug
	"modifying read only values")
	recode upNetwork and downNetwork (it might work, at least if you are
	lucky);

2002/01/04  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: corrected minor bugs in network (among others bug "modifying
	read only values")
	recode upNetwork and downNetwork (it might work, at least if you are
	lucky);
	corrected font display : no useless font->height, but ascent + descent
	updated

	* network/isdn_consts.pm: changed asus isdn hisax identify

	* network/adsl.pm, install_steps.pm, network/tools.pm,
	network/netconnect.pm: corrected minor bugs in network (among others bug
	"modifying read only values")
	recode upNetwork and downNetwork (it might work, at least if you are
	lucky);

2002/01/04  François Pons  <fpons@mandrakesoft.com>

	* http.pm, install2.pm, steps.pm, install_any.pm: added update
	installation support to install (big modifs need testing).

	* pkgs.pm: allow to use same identifier for security medium (1u).
	re-install urpmi.
	allow some error to be catched.
	added update installation support to install (big modifs need testing).

	* crypto.pm: removed test code.
	allow to use same identifier for security medium (1u).
	re-install urpmi.
	allow some error to be catched.
	added update installation support to install (big modifs need testing).

	* install_steps_interactive.pm: removed obsoleted comment.
	allow to use same identifier for security medium (1u).
	re-install urpmi.
	allow some error to be catched.
	added update installation support to install (big modifs need testing).

	* install_steps_gtk.pm: fixed empty flat package selection when giving a
	limit to medium.
	added update installation support to install (big modifs need testing).

	* install_steps.pm: allow to use same identifier for security medium (1u).
	re-install urpmi.
	allow some error to be catched.
	fix for auto updates.
	added update installation support to install (big modifs need testing).

2002/01/04  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm: enable easy patch-adding of pcitable and usbtable
	entries

2002/01/03  dam's  <damien@mandrakesoft.com>

	* standalone/drakbackup: user can be equal to 500

2002/01/03  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: updated code to create synthesis file (including
	provides on files).

2002/01/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ar.po: updated Arabic file

2002/01/03  Pixel  <pixel@mandrakesoft.com>

	* install2.pm, Xconfig.pm: save the output of ddcxinfos before
	modprobe'ing i810fb, and use that output for Xconfig (when i810fb is
	modprobe'd, ddc probe doesn't work anymore)

	* install_steps_interactive.pm, install_steps_gtk.pm: fix english messages

	* share/rpmsrate: as asked by Vincent Danen, lower uucp and raise sudo

	* pkgs.pm: prefer gcc-cpp

	* interactive_gtk.pm, interactive.pm: toggle Advanced/Basic button

	* any.pm: fix english messages
	save the output of ddcxinfos before modprobe'ing i810fb, and use that
	output for Xconfig (when i810fb is modprobe'd, ddc probe doesn't work
	anymore)

2002/01/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: changed @euro locales to plain names; now old currencies ones
	are obsolete

2001/12/31  sdupont

	* standalone/drakfont: new fixed size and add a head pixmap (to update).

	* standalone/drakbackup: lots of update ...
	  - cron work.
	 - backup incremental & normal work.
	 - corrupted backup data files supported.
	 - error messages updated.
	 - aff list of backup data files pbs.
	 - test all backup files before to restore it.

2001/12/30  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: format home directories with "-m 0" for ext2&ext3, so that the
	root reserved part is 0% (and not 5%)

2001/12/30  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: format home directories with "-m 0" for ext2&ext3, so that the
	root reserved part is 0% (and not 5%)

2001/12/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectMouse): when selecting a usb mouse,
	call setup_thiskind with
	at_least_one=1 (so that pci_class probe is used and so unknown
	serial_usb
	recognised (cf ldetect))

	* modules.pm (load_thiskind): allow $probe_type to be given, allowing
	forced pci probe (unsafe)

	* any.pm (setup_thiskind_backend): when at_least_one==1, try load_thiskind
	forcing
	pci_class probe when no modules is found.

2001/12/28  sdupont

	* standalone/drakbackup: update select data on backup cd

2001/12/27  sdupont

	* standalone/drakbackup: fix of user selection during restore step.
			remove return_file_date.
			change algo for incremental backup.

2001/12/26  sdupont

	* standalone/drakbackup: some gi corrections & update.
	 incremental restore.

2001/12/22  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: s/use pkgs/require pkgs/ since pkgs::versionCompare is
	only used during install

	* my_gtk.pm: export gtkcolor (used in install_steps_gtk)
	make perl_checker happy

2001/12/22  sdupont

	* pixmaps/backup_bot.png, pixmaps/cdrom.png, pixmaps/backup_time.png,
	pixmaps/backup_bot2.png, pixmaps/backup_left.png, pixmaps/net.png,
	pixmaps/backup_hd.png, pixmaps/backup_title.png,
	pixmaps/backup_left2.png, pixmaps/filedialog.png, pixmaps/hd.png,
	pixmaps/backup_options.png, pixmaps/backup_net.png: remove old
	drakbackup pixmaps files.

	* pixmaps/ic82-back-up-16.png, pixmaps/ic82-discdurwhat-40.png,
	pixmaps/ic82-tape-40.png, pixmaps/ic82-moreoption-40.png,
	pixmaps/ic82-where-40.png, pixmaps/ic82-system-40.png,
	pixmaps/ic82-others-40.png, pixmaps/ic82-systemeplus-40.png,
	pixmaps/ic82-network-40.png, pixmaps/ic82-CD-40.png,
	pixmaps/ic82-when-40.png, pixmaps/ic82-back-up-32.png,
	pixmaps/ic82-users-40.png, pixmaps/ic82-dossier-32.png,
	pixmaps/ic82-back-up-48.png: drakbackup designer icons.

	* standalone/drakbackup: add pixmaps on backup step.
	new designer pixmaps on drakbackup.

2001/12/21  sdupont

	* standalone/drakbackup: some update in file name parsing...
	etc ...

	* pixmaps/BDO-drakebackup1.png: drakbackup

2001/12/20  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: API changed, so call changed

	* share/logo-mandrake.png: new ayo logo

2001/12/20  sdupont

	* standalone/drakbackup: update the todo header
	the REQUIRE header
	& code cleaning
	  - tar -cvf tarfilename --after-date="sept 1, 2000" /home
	   l.380 incremental: date -> if already exist do find -m ... | tar ...
	   non incremental: date + delete old before the backup
	  - correct detection of backups during restore.
	  - gi for other media during restore. hd-> ok
	  - backend for build backup update and support
	  incremental backups.
	  - real incremental backup
	update resore & help.

2001/12/19  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: update graphical backend

2001/12/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: add dl2k.o (nic module) per request of nplanel

2001/12/19  sdupont

	* standalone/drakbackup: 
	  - gi for other media during restore. hd-> ok
	  - backend for build backup update and support
	incremental backups.
	  - real incremental backup
	add other media source during restore.
	  - update help & license.
	  - code cleaning.
	  - ask during whqt sys step if user want to backup critical
	  files, like /etc/passwd /etc/group /etc/fstab
	  - use preserve permissions during tar
	  - begin of total backup step.( all partitions wanted, windows
	partitions for example!)
	  - remove replace mode (backup_*_version is enought)

2001/12/18  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: fixed dam's sucking (syntax error only, code is
	untested).

2001/12/18  Pixel  <pixel@mandrakesoft.com>

	* any.pm: fix typos

2001/12/18  sdupont

	* standalone/drakfont: include new pixmap on main menu.

	* standalone/drakbackup: sort lists in all lists selection.
			correct use of incremental backup
			parse of restore & system state.
	fix restore user selection problems
	fix build backup data selection problems
	ect ...
	drakbackup -> drakxtools.rpm

	* pixmaps/ic-drakfont-48.png: drakfont pixmap...

2001/12/18  yduret

	* standalone/logdrake: fix console mode : exit now

2001/12/18  Pixel  <pixel@mandrakesoft.com>

	* any.pm: fix typos

2001/12/17  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: power graphical backend update : text is now
	centered

	* my_gtk.pm: power graphical backend update : text is now centered
	updated new graphical backend

2001/12/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive_gtk.pm, standalone/drakgw: drakgw for gold

	* tools/pcmcia_config.patch: remove permanently (using
	patch_pcmcia_config.pl now)

2001/12/17  Pixel  <pixel@mandrakesoft.com>

	* fs.pm, any.pm, install2.pm, bootloader.pm: clean_tmp now means using
	tmpfs

2001/12/17  sdupont

	* standalone/drakbackup:
	________________________________________________________________
	DONE:
	incremental backups have depends whith replace options.
	     gtklist not maximized.
	     restore mode.
	     view date during restore
	     view size of file, date & hours during backup on CD
	________________________________________________________________

2001/12/17  Pixel  <pixel@mandrakesoft.com>

	* fs.pm, any.pm, install2.pm, bootloader.pm: clean_tmp now means using
	tmpfs

2001/12/14  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: new picture for 8.2.

2001/12/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: change again way of selection
	PCI entries :
	what's in mar files --> what's given by modules (e.g. just
	as update_kernel does)

2001/12/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install2.pm: use "askdisplay" to ask a question at begining of install
	for what
	display you want to use during install

	* Makefile, tools/patch_pcmcia_config.pl: externalize patch_pcmcia_config
	(from make_boot_img)
	because we need it in perl-install/Makefile also

	* mdk-stage1/rescue-gui.c, rescue/make_rescue_img, rescue/rescue-doc,
	rescue/Makefile: have a bunch of Rescue documentation directly
	available from the Rescue-menu following suggestions
	by Denis among others

2001/12/12  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: enable easy screenshot'ing
	  - ensure /usr is formatted if / is
	  - remove /var/lib/rpm if /var is kept

	* common.pm, docs/README: enable easy screenshot'ing

2001/12/12  Stew Benedict  <sbenedict@mandrakesoft.com>

	* rescue/make_rescue_img: larger rescue image on PPC to accomodate huge
	xfs module

	* bootloader.pm: mods to address new yaboot's lack of symlink ability, xfs
	initrd load

2001/12/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stage1.c, mdk-stage1/dhcp.c, mdk-stage1/stage1.h: support
	"filename" in DHCP answers and give this
	to stage2 as --kickstart parameter

2001/12/11  Stew Benedict  <sbenedict@mandrakesoft.com>

	* Xconfigurator_consts.pm, keyboard.pm: finish journalled fs usage - PPC,
	add "\n" keyboard.pm, new modelines

2001/12/10  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: added network package not present in @needToCopy
	(package that may be installed
	by DrakX to avoid re-asking of CD1).

	* bootloader.pm: added safe guard against looping symlink.

2001/12/10  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, any.pm, bootloader.pm: 
	  - fix bootloader::add_append
	  - add handling of serial console

	* http.pm, install_any.pm: enable http:// in auto_install file location

2001/12/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: no need to give kernelVersion to bootloader::suggest

	* install_any.pm (kernelVersion): looks at /boot/vmlinuz

	* bootloader.pm (suggest, add_kernel): much cleanup

	* diskdrake.pm: fix call to fileshare_config

2001/12/05  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: updateed logo

2001/12/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile, mdk-stage1/pcmcia_/cardmgr.c: 
	  - fix problems with sockets not initialized (disabling
	hotplug support -> cardmgr handles sockets)
	  - fix problems with PCMCIA net adapters now using PCI
	  modules, by adding PCMCIA base code in `network.img'

2001/12/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: no need to give kernelVersion to bootloader::suggest

	* pkgs.pm (selectPackage): hard coded preference to simple kernel

	* install_any.pm (kernelVersion): looks at /boot/vmlinuz

	* diskdrake.pm: fix call to fileshare_config

	* steps.pm: createBootdisk now after setupBootloader (together with dumber
	install_any::kernelVersion)

	* network/tools.pm: fix missing ";" (thanks to Robert Fox)

	* bootloader.pm (suggest, add_kernel): much cleanup

	* fs.pm: fix type "smb" vs "smbfs", and handle options in fs::mount

2001/12/05  sdupont

	* pixmaps/backup_bot2.png: update pixmaps

	* standalone/drakbackup: todo : scp ssl sftp rsync connections perl || c ?
	done : bzip2 backup
	merge

2001/12/04  dam's  <damien@mandrakesoft.com>

	* standalone/drakbackup: corrected pixmap path
	corrected pixmap path

	* Makefile.config: added drakbackup drakfont

2001/12/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* any.pm, mdk-stage1/log.c, docs/README: save stage1.log and have it in
	report.bug

	* mdk-stage1/automatic.c, mdk-stage1/doc/TECH-INFOS: support shorter
	versions of automatic keywords to beat problems with very long kernel
	commandlines

	* install_interactive.pm: try to not get something poorly wrapped

	* c/stuff.xs.pm: floppy_info: add missing close(fd)

2001/12/04  Pixel  <pixel@mandrakesoft.com>

	* network/smb.pm: cleaner smbclient call

	* install_steps.pm: re-enable supermount by default

2001/12/04  sdupont

	* pixmaps/backup_bot.png, pixmaps/backup_left.png: correct colors
	problems.

	* standalone/drakbackup: bzip2 ok for compression to see: decomp without
	pbs whith tar.gz and tar.bz2
	todo: update mode -> decomp + update tar file + recomp

2001/12/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_interactive.pm: try to not get something poorly wrapped

2001/12/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: re-enable supermount by default

	* network/smb.pm: cleaner smbclient call

2001/12/04  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fix bad parsing of package to copy (when one doen't
	exist anymore) in
	postinstall_rpms directory.

2001/12/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_interactive.pm: try to not get something poorly wrapped

2001/12/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: re-enable supermount by default

	* network/smb.pm: cleaner smbclient call

2001/12/04  dam's  <damien@mandrakesoft.com>

	* network/network.pm: additional package for wlan

	* network/tools.pm: corrected pipe reading

2001/12/04  François Pons  <fpons@mandrakesoft.com>

	* any.pm: make sure lilo is installed on automatic mode.

	* install_any.pm: fix bad parsing of package to copy (when one doen't
	exist anymore) in
	postinstall_rpms directory.

2001/12/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_interactive.pm: try to not get something poorly wrapped

	* mdk-stage1/modules.c: fpons is a sucking chief

	* modules.pm, mdk-stage1/usb-resource/update-usb-ids.pl,
	mdk-stage1/Makefile, mdk-stage1/.cvsignore, mdk-stage1/probing.c:
	support install from USB CDROMS (using usb-storage)

2001/12/04  Pixel  <pixel@mandrakesoft.com>

	* network/smb.pm: cleaner smbclient call

2001/12/04  sdupont

	* standalone/drakbackup: last update... for cooker
	drakbackup deamon -> ok
	drakbackup cvs -> to do (only for /etc)
	drakbackup wizard -> only last step
	drakbackup cd -> device detection and ask for only iso file.
	drakbackup net -> do rsync
	drakbackup begin -> todo : update initial message
	update help and about.

2001/12/04  dam's  <damien@mandrakesoft.com>

	* network/network.pm: additional package for wlan

2001/12/04  François Pons  <fpons@mandrakesoft.com>

	* any.pm: make sure lilo is installed on automatic mode.

	* mdk-stage1/modules.c: fixed gégé sucking.

2001/12/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules.c: fpons is a sucking chief

2001/12/04  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/modules.c: fixed gégé sucking.

2001/12/04  sdupont

	* standalone/drakbackup: update...

2001/12/03  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: removed use gtk

2001/12/03  François Pons  <fpons@mandrakesoft.com>

	* tools/updatehdlist: initial revision, simple way to update a local set
	of medium from /RPMS.

2001/12/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules.c: typo of last commit (unused variable -> could not
	compile)

2001/12/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/hu.po, share/po/es.po: updated Hungarian
	and Spanish files

2001/12/03  sdupont

	* standalone/drakbackup: update
	option step.
	write other file content.
	restore gi.

2001/12/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2001/12/01  sdupont

	* standalone/drakbackup: do not include browser cache.

2001/11/30  François Pons  <fpons@mandrakesoft.com>

	* docs/spec-DrakX-8.0.html: added spec (forgotten for quite a long)

2001/11/30  gbeauchesne

	* partition_table_gpt.pm: 
	  - cleanups from mainline

	* modules.pm: Suckiness fixes from mainline (gc):
	  - Do parse /proc/modules in reverse order
	  - Fix "convert old scsi_hostadapter's to new probeall" scheme

	* bootloader.pm: 
	  - Don't forget to link the initrd to the real image in /boot/efi/ too
	  - Remove DEBUG printouts in install_efi_boot_menu

2001/11/30  Pixel  <pixel@mandrakesoft.com>

	* network/smb.pm, any.pm, Makefile.drakxtools, standalone/diskdrake,
	Makefile.config, diskdrake.pm: fileshare should be ok, handle diskdrake
	--fileshare, fix smb import

2001/11/30  sdupont

	* pixmaps/backup_left2.png: drakbackup pixmap

	* standalone/drakbackup: backend mode-> ok for hd
	we can use drakbackup !.
	todo :
		backend mode:
			- net
			- cd
	
		advanced mode:
			- device detection (cd writer)
	
		wizard:
			- end of this step.
	
		gi:
			- option step in adnanced step to choice
			for example tar.gz or tar.gz2 ...
	update
	restore step 1 & 2.
	adv step -> ok
	todo: wizard ...
	little update!
	
	variables correction in advanced step.
	wizard user question, sys question & daemon

2001/11/29  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* share/rpmsrate: Remove linux_logo

2001/11/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: add wvlan_cs

	* mdk-stage1/modules.c: remove unneeded handling of "alias
	scsi_hostadapter"

	* mdk-stage1/stage1.c: add another expert_third_party_modules at the end
	of enabling-pcmcia-stuff

2001/11/29  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: remove the export tree for nfs/smb feature, remove some
	test code
	tentative version with export/import nfs/smb tree (committed to have it
	in CVS as the export tree is already deprecated)

	* standalone/fileshareset: 
	  - allow root to export everything
	  - remove empty mntpoint (from smb)

2001/11/29  sdupont

	* standalone/drakbackup: just update....
	advanced: users correction during save.
	user pass, user login, path to save local or on host
	          combo for network protocol.
	wizrad:   already to do!
	CDRW burn:     todo: devices detection (see to_fond_cd).
	code cleaning.

	* standalone/drakfont: cleanning code.

2001/11/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: 
	  - fix pixel sucks of not parsing /proc/modules in
	reverse order
	  - be more in sync regarding names of pcmcia drivers

	* any.pm: add modules.conf in report.bug

2001/11/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/zh_CN.po, share/po/zh_TW.po: updated Chinese file

2001/11/28  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (read_conf): fix "convert old scsi_hostadapter's to new
	probeall"

	* standalone/drakbackup: make check_what_user works

	* standalone/fileshareset: better description
	gr_mem in getgrent is space separated, not comma separated
	add samba handling. Should be finished now :)

2001/11/28  sdupont

	* pixmaps/backup_bot2.png, pixmaps/quit.png: drakbackup pixmaps.

	* standalone/drakbackup: no important changement!
	clean code
	update!
	for gc & Warly: some fixes, correction of advanced, wizard and after
	advanced steps.
	the user have a better gestion during advanced step, the protocols ftp,
	sftp, scp, rsync
	are now include in advanced step..... etc ;-)
	todo: when checkbuttonbox are clicked for user choice set it to 0 or 1
	juste after.
	clean code.
	new after advanced step, correction of checkbuttons problems & new
	pixmaps.

2001/11/27  dam's  <damien@mandrakesoft.com>

	* share/logo-mandrake.png: updated, cooker style

2001/11/27  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: avoid problem of array reference badly evaluated.

2001/11/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/mailchangelog.pl: beurk
	changelog is at linux-mandrake not mandrakesoft

	* install_steps.pm: i810 -> no FB at boot

2001/11/27  Pixel  <pixel@mandrakesoft.com>

	* partition_table_gpt.pm (generate_guid): cleanup

	* any.pm (setupBootloader): s/last/return/

2001/11/27  sdupont

	* standalone/drakbackup: advanced step...
	update.
	advanced mode ... and ...
	read and use user list correctly, advanced step user list.

	* pixmaps/hd.png, pixmaps/net.png, pixmaps/cdrom.png: pixmaps for
	drakbackup.

2001/11/26  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* tools/i386/netboot/stage2.rtl8139: add rtl8139 netboot file that works

	* tools/i386/netboot/stage1.rtl8139: add rtl8139 netboot file that works
	stage1/stage2 of rtl8139 didn't work

2001/11/26  dam's  <damien@mandrakesoft.com>

	* common.pm, my_gtk.pm: new features for new mcc

2001/11/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: getAndSaveAutoInstallFloppy: don't die when output'ing
	of
	auto_inst.cfg is not possible

2001/11/26  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: add $o->{excludedocs} feature

	* Makefile.drakxtools: remove unneeded files (*.bs and .exists)

	* interactive_gtk.pm: cleanup

2001/11/26  sdupont

	* standalone/drakbackup: new gi, advanced step.
	update.
	gawk cmds.
	better use for read and save conf. file now on
	/etc/draxtools/drakbackup/drakbackup.cfg

	* pixmaps/backup_hd.png, pixmaps/backup_options.png,
	pixmaps/backup_net.png, pixmaps/backup_time.png: png files for
	DrakBackup.

2001/11/25  Pixel  <pixel@mandrakesoft.com>

	* standalone/fileshareset: first version. for the moment, only nfs.

2001/11/25  sdupont

	* standalone/drakbackup: update of read_conf_file and default mode.

2001/11/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po, share/po/es.po: updated Spanish and Danish files

2001/11/24  sdupont

	* standalone/drakfont: about...

	* standalone/drakbackup: update
	update gi ,build of system, user, other, options interfaces.
	advanced step.

2001/11/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: package for pcmcia is now called "pcmcia-cs"

	* any.pm, detect_devices.pm: pcmcia: /var/run/stab is nor
	/var/lib/pcmcia/stab
	yes it probably doesn't bring anything valuable but it's
	how life is :-)

2001/11/23  sdupont

	* standalone/drakbackup: radio buttons & information message.
	change gi interface, include help, about and pixmaps (backup_*.png on
	standalone/pixmaps directory)

2001/11/22  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: removed loading of agpgart module for i810 card.

2001/11/22  sdupont

	* standalone/drakfont: about button & GPL license.

	* standalone/drakbackup: update gi.
	TODO: separate all the boxes.
	include wizard and advanced in pixmaps.
	update
	notebook gi.

2001/11/21  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2,
	mdk-stage1/init-data/msgboot-blank.img.bz2,
	mdk-stage1/init-data/msgboot.img.bz2: fixed typo in help.msg

	* Xconfigurator.pm: hack for SiS 640 for laptop.

	* install_any.pm: fixed install_urpmi to build a correct urpmi db.

2001/11/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: i810fb
	migrate pcmcia in drakx to use in-kernel version (only
	for 2.4, though --> pcmcia in 2.2 no longer supported)

	* install_steps_interactive.pm, Makefile, c/Makefile.PL: migrate pcmcia in
	drakx to use in-kernel version (only
	for 2.4, though --> pcmcia in 2.2 no longer supported)

	* install2.pm: i810fb

	* mdk-stage1/stage1.c, mdk-stage1/pcmcia_/lex_config.c,
	mdk-stage1/pcmcia_/cardmgr.c, mdk-stage1/pcmcia_/yacc_config.c,
	mdk-stage1/pcmcia_/Makefile, mdk-stage1/Makefile,
	mdk-stage1/pcmcia_/pcmcia.h, mdk-stage1/pcmcia_/ds.h,
	mdk-stage1/pcmcia_/probe.c: migrate to pcmcia support from kernel,
	patching untouched imported
	sources from pcmcia-cs-3.1.29, to ease further updates of vendor
	code (start from a clean pcmcia_ subdir)

2001/11/21  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm (suggestions_mntpoint): if there's no server suggestion, use
	the simple
	one, so that 'simple' is the only one required when someone modifies
	%fsedit::suggestions

2001/11/20  gbeauchesne

	* partition_table.pm: 
	  - Add isEfi() to isOtherAvailableFS() test so that install doesn't
	suggest
	to format /boot/efi by default. That way, we could preserve (shame on
	us)
	  EFI boot partition generated by Windows XP 64 bits...

2001/11/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pcmcia_/lex_config.c, mdk-stage1/pcmcia_/cardmgr.c,
	mdk-stage1/pcmcia_/bulkmem.h, mdk-stage1/pcmcia_/cardmgr.h,
	mdk-stage1/pcmcia_/vg468.h, mdk-stage1/pcmcia_/driver_ops.h,
	mdk-stage1/pcmcia_/i82365.h, mdk-stage1/pcmcia_/cirrus.h,
	mdk-stage1/pcmcia_/version.h, mdk-stage1/pcmcia_/cistpl.h,
	mdk-stage1/pcmcia_/yacc_config.c, mdk-stage1/pcmcia_/cs_types.h,
	mdk-stage1/pcmcia_/cs.h, mdk-stage1/pcmcia_/yacc_config.h,
	mdk-stage1/pcmcia_/ds.h, mdk-stage1/pcmcia_/tcic.h,
	mdk-stage1/pcmcia_/probe.c: Initial revision
	version 3.1.29

2001/11/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive_stdio.pm: for po i can't use $ for string interpolation

2001/11/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* services.pm, standalone/scannerdrake: Corrected English errors

	* share/po/hu.po, share/po/cs.po: updated pot file
	updated Czech and Hungarian files

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/no.po, share/po/fi.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/af.po:
	updated pot file

2001/11/19  Pixel  <pixel@mandrakesoft.com>

	* any.pm (setupBootloader): fix typo
	(setupBootloader): fix typo

2001/11/19  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Last correction was wrong, reverted it.

2001/11/19  yduret

	* standalone/scannerdrake: added dynamic support

2001/11/16  Pixel  <pixel@mandrakesoft.com>

	* any.pm: syntax cleanup
	  - a little cleanup
	  - in case there is both scsi and ide hard drives, go to expert
	questions
	directly (it would need a semi_auto asking on which drive the bios
	boots...)

2001/11/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: updated help file

	* keyboard.pm: Added Swedish dvorak keyboard

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/help_xml2pm.pl, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/no.po, share/po/fi.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file

2001/11/12  sdupont

	* standalone/drakbackup: new backup tool.
	backend_mode with options.
	        begin interactive mode.

2001/10/29  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: code correction

2001/10/29  gbeauchesne

	* rescue/list.ia64: 
	  - Add xfs_repair and efibootmgr

2001/10/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* fs.pm, loopback.pm, fsedit.pm, bootloader.pm: revert back to /initrd

	* modules.pm: here too
	CDCEther looks good, I add it

2001/10/29  Pixel  <pixel@mandrakesoft.com>

	* tools/pcmcia_config.patch: adapt for new pcmcia-cs

2001/10/29  sdupont

	* standalone/drakfont: Copyright (C)
	correction of warning & code cleaning.
	the end.... i think...
	updated
	uninstall interface & progress bar
	uninstall interface : lists & progress bar
	new progress bar update
	todo: second list

2001/10/28  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: cleaning

2001/10/27  daouda

	* devices.pm, my_gtk.pm, Xconfig.pm: return value at end of module

	* share/rpmsrate: 
	  - increase icewm weight.

2001/10/26  dam's  <damien@mandrakesoft.com>

	* standalone/drakautoinst, standalone/drakfont: progress bar hack

2001/10/26  Pixel  <pixel@mandrakesoft.com>

	* mdk-stage1/pcmcia_config.patch: was duplicated in gi/tools

	* partition_table_gpt.pm, partition_table_raw.pm: no adjust start and end
	on GPT

2001/10/26  sdupont

	* standalone/drakfont: updated.
	search correct progress bar mode implementation.
	updated
	fix some bugs & interface progress implementation.
	TODO:
	progress before backend.
		search if directory already exist before custom install.

2001/10/25  dam's  <damien@mandrakesoft.com>

	* standalone/drakautoinst: simple variables handled, code compression.
	The new and shiny drakautoinst is coming. P|-|34R
	The new drakautoinst is coming. P|-|34R

	* pixmaps/mdk_logo.png: additional logo

	* standalone/drakfont: code correction

2001/10/25  sdupont

	* standalone/drakfont: merge differents versions.
	file sector, list of fonts for advanced install...
	applications choice, license widget, help widget.

2001/10/24  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: updated
	updated
	updated, lot of bugs.
	updated

	* my_gtk.pm: added set_editable

2001/10/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/lsparts, mdk-stage1/rescue-gui.c, mdk-stage1/frontend.h,
	mdk-stage1/.cvsignore, rescue/install_bootloader,
	rescue/tree/etc/rc.sysinit, rescue/Makefile,
	mdk-stage1/stdio-frontend.c, rescue/guessmounts, mdk-stage1/Makefile,
	rescue/tree/etc/issue, rescue/make_rescue_img,
	mdk-stage1/newt-frontend.c: 
	  - add a GUI to the rescue
	  - provide guessmounts with better efficiency and output, go to
	console, and reboot
	  - provide install_bootloader which runs lilo from /mnt if it seems
	safe
	  - add lsparts to rescue, which prints partitions with detected types

2001/10/24  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm: replace /initrd with /lib/initrd
	(hds): in case of GPT, allow ext2 to be replaced by any kind of
	partitions (esp. EFI)

	* partition_table.pm, partition_table_gpt.pm, partition_table_bsd.pm,
	partition_table_raw.pm: add methods first_usable_sector and
	last_usable_sector

	* fs.pm, loopback.pm, bootloader.pm: replace /initrd with /lib/initrd

2001/10/24  sdupont

	* standalone/drakfont: scroll
	`
	import_status & progress.
	gi update.

2001/10/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* services.pm: tagged as translatable some left out strigns

2001/10/23  sdupont

	* standalone/drakfont: gi update
	doc and progress bar.
	gui: install from directory
	gui supported.

2001/10/23  yduret

	* share/po/fr.po: fixed fohtes grammar

2001/10/22  dam's  <damien@mandrakesoft.com>

	* network/tools.pm: speedtouch config : added usa vpi vci

2001/10/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules.c: oops forgot to umount after "updatemodules"...

2001/10/22  Pixel  <pixel@mandrakesoft.com>

	* rescue/tree/etc/profile: fix PATH (have /mnt/bin /mnt/usr/bin ...)

2001/10/21  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed connection device setting for "oki4w" driver.

2001/10/19  gbeauchesne

	* partition_table_gpt.pm: 
	  - Use /dev/random through devices::make() instead of /dev/urandom
	  - Localize file descriptor
	  - Capitalize error message if no /dev/random found

	* partition_table.pm: 
	  - s/Win98 FAT32/FAT32/
	  - s/Partition that contains an EFI file system/EFI (FAT-12/16/32)/
	  - Add "FAT32" to @important_types for IA-64 & /boot/efi

2001/10/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stdio-frontend.c: small fix

2001/10/19  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm: OOize can_raw_add

	* partition_table.pm: handle empty $hd->{primary}{raw} (happens with no
	partitions on ia64)
	  - raw_add, can_raw_add moved to partition_table_raw
	  - using raw_removed

	* partition_table_dos.pm: better handling of CHS overflow (mainly for non
	cylinder-boundary aligned part (like ia64))

	* partition_table_raw.pm (adjustEnd): in case the end is totalsectors,
	don't adjust since totalsectors / cylinder_size may not be an integer
	(zero_MBR): defaults to GPT on ia64
	(raw_add, can_raw_add, raw_removed): created, can now be overloaded in
	partition_table_*.pm's
	(get_geometry): keep the total_sectors as given by c::total_sectors,
	don't try to recompute it based on nb_cylinders (for hds where
	total_sectors is not a multiple of nb_cylinders)

	* common.pm: cleanup

	* partition_table_gpt.pm: fix ending is last sector, not next one
	add TODO for partition entry guid
	  - writing partition table now works
	  - creating a new partition table now works (except GUIDs generation)

2001/10/18  dam's  <damien@mandrakesoft.com>

	* network/tools.pm: corrected GET_FL and co

2001/10/18  François Pons  <fpons@mandrakesoft.com>

	* standalone/XFdrake: fix ia64 glitches with /usr/X11R6/lib/X11/Cards (now
	use rgb.txt instead).

2001/10/18  Pixel  <pixel@mandrakesoft.com>

	* partition_table_gpt.pm: 
	  - add checksum verif on partition entries
	  - detect the type of partition since the partition table types seem
	quite poor
	read part of GPT partition table working

	* fsedit.pm: 
	  - add checksum verif on partition entries
	  - detect the type of partition since the partition table types seem
	quite poor

	* partition_table.pm: read part of GPT partition table working
	shorter GPT name

	* detect_devices.pm: safer modprobe ide-floppy

2001/10/18  sdupont

	* standalone/drakfont: change Fontmap ghostscript file.
	drakfont support now .gsf fonts
	end of backend......
	update

2001/10/17  dam's  <damien@mandrakesoft.com>

	* standalone/draksec: typo

2001/10/17  sdupont

	* standalone/drakfont: implementation of type1 fonts removing.
	ghostscript, xfs and staroffice tested and supported.

2001/10/16  dam's  <damien@mandrakesoft.com>

	* standalone/draksec: correct bad level display

	* standalone/interactive_http/Makefile: makes rpmlint happy

2001/10/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: print checks

	* rescue/tree/etc/rc.sysinit: better phrasing

2001/10/16  Stew Benedict  <sbenedict@mandrakesoft.com>

	* rescue/devices.pl, mdk-stage1/pci-resource/update-pci-ids.pl,
	rescue/list.ppc: typo in update kernel by /me
	fine-tune sanity_check for ppc
	move /dev/nvram from list.ppc to devices.pl

2001/10/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

2001/10/15  yduret

	* scanner.pm: wonderful perl forgotten

2001/10/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: have "other.img" drivers also
	supported

2001/10/12  sdupont

	* standalone/drakfont: support all installations, and support xfs,
	ghostcript, staroffice.
	todo aplli: openoffice, gimp, abiword, netscape & other browsers...
	todo or to see: --strong  ttmkfdir -c ???
	emd of backend..

2001/10/11  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: multiple card configuration bug corrected.
	allelluia.

	* network/tools.pm: aded use c

	* standalone/drakfont: code review

2001/10/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* interactive_stdio.pm, install_steps_stdio.pm: stdio mode works again

2001/10/11  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: ensure postInstallNonRooted is done *before* ejecting cdrom

2001/10/11  sdupont

	* docs/drakfont/drakfont.log, docs/drakfont/drakfont.pdf,
	docs/drakfont/drakfont.dvi: clean directory..

	* docs/drakfont/drakfont.aux, docs/drakfont/dia_srcs/drakfont.dia,
	docs/drakfont/dia_srcs/drakfont_uninstall.dia,
	docs/drakfont/dia_srcs/drakfont_install.dia: delete all bads files...

	* standalone/drakfont: improved....
	improved && implement remove fonts for xfs
	improved
	improved
	optimisation
	correction of option install --replace
	dialog of install options
	correction of install option.

	* docs/drakfont/drakfont.jpg, docs/drakfont/drakfont_install.jpg,
	docs/drakfont/drakfont_uninstall.jpg, docs/drakfont/mandrake.ps: jpg &
	ps with -kb option
	clean...2

2001/10/10  dam's  <damien@mandrakesoft.com>

	* standalone/drakfont: typo
	improved options handling

	* standalone/net_monitor: ergo and features improvments, pipe handling
	correction

	* network/tools.pm: updated

2001/10/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, share/locales-skeleton.tar.bz2: enabled Maltese language

2001/10/10  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm: normalize the default type entry ("entry")

	* interactive_gtk.pm: fix typo (on clicked_may_quit)

2001/10/10  sdupont

	* standalone/drakfont: option replace for "install from" &
	windows_import...
	update install dir
	better for --install
	new version of drakfont. in perl langage.

	* docs/drakfont/drakfont.jpg, docs/drakfont/drakfont.aux,
	docs/drakfont/drakfont.log, docs/drakfont/drakfont.pdf,
	docs/drakfont/drakfont.tex, docs/drakfont/Makefile,
	docs/drakfont/drakfont_install.jpg, docs/drakfont/drakfont.dvi,
	docs/drakfont/drakfont_uninstall.jpg, docs/drakfont/mandrake.ps: docs
	drakfont

2001/10/10  yduret

	* standalone/scannerdrake: first apparition on earth..

	* Makefile.config: added scannerdrake

2001/10/09  dam's  <damien@mandrakesoft.com>

	* network/tools.pm: removed trash
	connection test is now in background, corrects the interface freeze
	problem

	* pixmaps/net_u.png: new pixmap for draknet/net_monitor

	* standalone/net_monitor, standalone/draknet: connection test is now in
	background, corrects the interface freeze problem

2001/10/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

2001/10/09  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: fix detecting read-only drives (like memory-sticks)

	* partition_table.pm: make perl_checker happy

	* partition_table_raw.pm: fix detecting read-only drives (like
	memory-sticks)
	make perl_checker happy

	* modules.pm, detect_devices.pm, install2.pm: ensure floppies() takes care
	of usb-storage if possible, so that patch on usb floppy works

2001/10/09  Stew Benedict  <sbenedict@mandrakesoft.com>

	* Xconfigurator_consts.pm, keyboard.pm, Xconfigurator.pm: move to Linux
	keycodes on PPC, add additional Apple modelines

	* install_steps_interactive.pm: re-enable PPC bootloader setup

2001/10/08  dam's  <damien@mandrakesoft.com>

	* c/stuff.xs.pm: added FL_GET and FL_SET

2001/10/08  François Pons  <fpons@mandrakesoft.com>

	* modules.pm: keep isp and gdth module for hd.img (as well as all.rdz) as
	they have been
	removed from the skip list for stage1.

	* rescue/tree/etc/oem: added silly modification to avoid using more than 7
	partition for DAC960 (/home
	and /var are not created in the current state).

2001/10/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: ia64

	* mdk-stage1/Makefile: 8.1 -> cooker

2001/10/08  Pixel  <pixel@mandrakesoft.com>

	* modules.pm, partition_table.pm: yet a few other ataraid cases

2001/10/06  Stew Benedict  <sbenedict@mandrakesoft.com>

	* partition_table_raw.pm, partition_table.pm: updates to accomodate IBM
	PPC systems with DOS partition table

2001/10/05  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: added (missing) creation of
	/hd/boot/grub/device.map (needed for
	CompactSmartArray).

2001/10/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: kdegames : 2 -> 4

2001/10/04  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fix (work around) parted problem when it refuse to
	use all disk space for
	partition.
	added another psacct log file in touch.
	fixed typo on scalar reference for psacct bug.
	updated with 8.1 OEM ProSuite.

	* tools/oem-prepare: updated with 8.1 OEM ProSuite.

2001/10/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po: updated Hungarian file

2001/10/04  Pixel  <pixel@mandrakesoft.com>

	* partition_table_dos.pm: is little-endian, so use "V" instead of "I"

2001/10/03  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: synced with oem script.
	removed 3D games not installed by default.

	* rescue/tree/etc/oem: fixed typo in produced patch.
	added extension to pro suite CD (added kernel-enterprise to possibly
	installable
	and install kernel22).
	removed 3D games not installed by default.
	added missing xmms-arts.
	allow halting.

2001/10/03  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm: yet another ataraid support patch

2001/10/02  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fix previous hack.
	added hack to do "/sbin/depmod -a" for NVIDIA driver.

2001/10/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/probing.c: new pci-ids.h

	* mdk-stage1/usb-resource/update-usb-ids.pl: better look

	* share/po/fr.po: small fix

	* standalone/drakgw: don't call pkgs_install when no package needs to be
	installed

2001/10/02  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm: bloody ataraid detection

	* devices.pm: ataraid devices support

2001/10/01  François Pons  <fpons@mandrakesoft.com>

	* share/rpmsrate: fixed bad format for BOOKS used in DEVELOPMENT.

	* rescue/tree/etc/oem: added CHARSET support, removed kernel22 and
	kernel-enterprise from list of
	package installable in oem mode, added possibility to set language on
	/etc/oem
	script invocation.

	* install_steps_interactive.pm: avoid chooseCD on oem install.

	* install_steps_gtk.pm: avoid asking for changing CD on oem install.

	* install_any.pm: use $boot_medium for default medium in oem install,
	avoid using kernel22 or
	kernel-enterprise in oem install (space available is too tight on CD oem
	version).

	* tools/oem-prepare: synced with oem script.

2001/10/01  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: reword it so that it reflects
	what's in the marfiles

2001/10/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bg.po: updated Bulgarian file

2001/09/29  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* docs/README: New adress where to find the kernel BOOT

2001/09/29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

2001/09/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/drvinst: don't install usb keyboard drivers more than once
	try to fix usb keyboards

2001/09/27  kjx

	* share/po/zh_CN.po: translating

2001/09/26  gbeauchesne

	* install_any.pm: 
	  - Suggest /boot/efi on IA-64 for the first VFAT partition found,
	instead
	of /mnt/windows

	* bootloader.pm: 
	  - bootloader.pm (suggest): don't search for dos (or windows) boot
	partition
	on IA-64 since ELILO can only boot Linux.
	  - bootloader.pm (write_lilo_conf): don't cry if we don't have
	/boot/boot.b
	  or boot/message on IA-64.

	* rescue/list.ia64: 
	  - Add file list for "rescue" disk

	* share/list.ia64, partition_table.pm: 
	  - partition_table.pm: Add XFS suggestion for IA-64
	  - share/list.ia64: misc updates and additions wrt. XFS, ReiserFS

2001/09/25  baudens

	* share/po/fr.po: s/Linux Mandrake/Mandrake Linux/
	Remove totally crazy translation.
	Translators, please use your brain!

2001/09/25  gbeauchesne

	* partition_table.pm: 
	  - Add ReiserFS and Ext3fs entries for IA-64

2001/09/25  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (naughtyServers): cleanup comments

2001/09/25  warly

	* share/rpmsrate: put gtk-themes _and_ sawfish-themes to 4 so that it is
	installed for newbie and drakfirsttime does not fail.
	put gtk-themes to 4 so that it is installed for newbie and drakfirsttime
	does not fail.

2001/09/25  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: allow non ejectable medium to allow all
	hdlists on the bootable medium.
	make current boot medium already selected if multiple hdlist are on this
	boot medium.

2001/09/25  warly

	* share/rpmsrate: put gtk-themes _and_ sawfish-themes to 4 so that it is
	installed for newbie and drakfirsttime does not fail.
	put gtk-themes to 4 so that it is installed for newbie and drakfirsttime
	does not fail.

2001/09/24  dam's  <damien@mandrakesoft.com>

	* share/po/fr.po: corrected translation

2001/09/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stage1.c, mdk-stage1/mount.c, mdk-stage1/mount.h,
	mdk-stage1/disk.c: hd.img now detects partition types... backport from
	DrakX :-)

2001/09/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated Dutch file

2001/09/24  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (mount_part): fix for iso loopback mounted

	* share/po/fr.po: fix

2001/09/24  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/isdn.pm: type assignation bug fix
	corrected type assignation

	* share/po/fr.po: corrected bad translation

	* standalone/draknet: corrected type assignation

2001/09/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* bootloader.pm: fix add_append (there was a ) at the end of the parameter
	value)

2001/09/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po, share/po/tr.po, share/po/es.po: updated Spanish, Korean
	and Turkish files

2001/09/24  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (mount_part): fix for iso loopback mounted

	* share/po/fr.po: fix

2001/09/24  warly

	* share/rpmsrate: lower arkeia

2001/09/24  dam's  <damien@mandrakesoft.com>

	* modules.pm: corrected isdn firmware

	* network/adsl.pm, network/isdn.pm: type assignation bug fix
	corrected type assignation

	* share/po/fr.po: corrected bad translation

	* standalone/draknet: corrected type assignation

2001/09/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* bootloader.pm: fix add_append (there was a ) at the end of the parameter
	value)

2001/09/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po, share/po/tr.po, share/po/es.po: updated Spanish, Korean
	and Turkish files

2001/09/24  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: fix small error merging existing fstab

	* share/po/fr.po: fix

	* diskdrake.pm: do not propose to mount/umount removable medias (disabled
	for now)

	* diskdrake_interactive.pm: hide the supermount checkbox in standalone

2001/09/24  warly

	* share/rpmsrate: lower arkeia

2001/09/24  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm, network/ethernet.pm: bug fix

	* modules.pm: corrected isdn firmware

	* network/isdn.pm, network/adsl.pm: type assignation bug fix
	corrected type assignation

	* standalone/draknet: corrected type assignation

	* install_any.pm, rescue/tree/etc/oem: added isdn-light to be copied on hd
	during install

2001/09/24  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: deactivated Riva128 3D hw acceleration and too many
	problems reported with it.

	* share/rpmsrate: allow rpm build for non expert who choose development.

	* install_steps.pm: disable wins in /etc/nsswitch.conf (after installed
	packages).

2001/09/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po, share/po/tr.po, share/po/es.po: updated Spanish, Korean
	and Turkish files

2001/09/24  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: fix small error merging existing fstab
	add "iocharset=" for cdrom

	* install_steps.pm: 
	  - disable supermount by default
	  - cleanup nsswitch.conf wins removing

	* diskdrake.pm: do not propose to mount/umount removable medias (disabled
	for now)

	* diskdrake_interactive.pm: hide the supermount checkbox in standalone

2001/09/24  siegel

	* share/po/de.po: new german version

2001/09/24  warly

	* share/rpmsrate: lower arkeia

2001/09/24  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm, network/ethernet.pm: bug fix

2001/09/24  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: deactivated Riva128 3D hw acceleration and too many
	problems reported with it.

	* share/rpmsrate: allow rpm build for non expert who choose development.
	removed any reference to XFree86-glide-module or Glide_XXX packages.

	* pkgs.pm: sort mediums by number, in allMediums() else they will be in
	hash keys orders in
	install_steps_interactive::chooseCD().

	* install_steps.pm: disable wins in /etc/nsswitch.conf (after installed
	packages).

2001/09/24  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: add "iocharset=" for cdrom

	* install_steps.pm: 
	  - disable supermount by default
	  - cleanup nsswitch.conf wins removing

2001/09/24  François Pons  <fpons@mandrakesoft.com>

	* share/rpmsrate: removed any reference to XFree86-glide-module or
	Glide_XXX packages.

	* pkgs.pm: sort mediums by number, in allMediums() else they will be in
	hash keys orders in
	install_steps_interactive::chooseCD().

2001/09/24  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: File permission settings during install were not done.
	Fixed.

2001/09/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: misc typo correction

	* install_steps.pm: voodoo cards don't like performing 3d accel in fb mode

2001/09/23  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: add "Graphical Environment" in meta_class server

	* share/rpmsrate: simplify (for the moment)
	do not force X flag, have it selected for any "Graphical Environment"

	* share/compssUsers, install_any.pm: do not force X flag, have it selected
	for any "Graphical Environment"

2001/09/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps.pm: voodoo cards don't like performing 3d accel in fb mode

2001/09/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po, share/po/hu.po: updated Czech and Hungarian file

	* share/po/zh_TW.po: updated Chinese file

2001/09/23  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: add "Graphical Environment" in meta_class server

	* fsedit.pm: add magic SWAPSPACE2

	* bootloader.pm: allow bootloader on fat partitions

	* share/compssUsers, share/rpmsrate, install_any.pm: do not force X flag,
	have it selected for any "Graphical Environment"

2001/09/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: version is 8.1

2001/09/22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bs.po: updated Bosnian file

2001/09/22  Pixel  <pixel@mandrakesoft.com>

	* fs.pm, install2.pm: 
	  - cleanup noatime option setting
	  - cleanup exec option setting (must noexec => 0 instead of exec => 1)

	* bootloader.pm (suggest): fix kernel 2.2 secure adding in menu

2001/09/22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bg.po: updated Bulgarian file

2001/09/22  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (suggest): fix kernel 2.2 secure adding in menu

2001/09/22  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Added support for automatic /dev/... file permissions
	setting by devfsd.
	Improved matching of auto-detection results with database entries.
	Given hint to the user to select the correct model when matching fails.

	* printer.pm: Added support for automatic /dev/... file permissions
	setting by devfsd.

2001/09/21  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm: avoid detecting plip for live upgrade.

2001/09/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: use "us" XKB file for Korean keyboard, otherwise some
	functionality is lost
	small fix for "vn" keyboard (enable toggle key)

	* share/po/ko.po: updated Korean file
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/vi.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: updated pot file

	* printerdrake.pm: small fix

2001/09/21  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: When one changes the driver of a freshly
	added printer, the cursor was not pointed to the old driver, fixed.
	Fixed paper size not set according to chosen language during
	installation.

2001/09/21  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm: typo

2001/09/21  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: reworked medium management.
	moved com_license to parent package (as code that show the license is
	now
	available even for non gtk install).

	* Xconfigurator.pm: S3 ViRGE is a bad card for testing on live upgrade.

	* pkgs.pm, install_any.pm: reworked medium management.

	* detect_devices.pm: avoid detecting plip for live upgrade.

	* install_steps_interactive.pm: avoid keeping testing code.
	reworked medium management.
	added code to support changeable cdrom, set a unique copy of license for
	installing commercial application as package variable (exported).

2001/09/21  gbeauchesne

	* share/po/no.po: remove trailing '\n'

2001/09/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hu.po, share/po/no.po: updated pot file
	updated pot file
	updated Norwegian and Hungarian files
	updated pot file

	* help.pm: updated help file

	* share/po/help_xml2pm.pl: updated pot file

	* printerdrake.pm: small fix
	changed text strings to be more translator friendly
	(NEVER EVER cut a phrase)

	* share/po/zh_CN.po, share/po/ru.po, share/po/vi.po: updated pot file
	updated pot file
	corrected extra \n
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: updated pot file
	updated pot file
	updated pot file

	* keyboard.pm: adapted keyboard priority numbers (it is useless to give a
	multichoice with a
	value higher than 90)

	* share/po/zh_TW.po: updated pot file
	updated pot file

2001/09/21  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm: write password in lilo.conf even if it's also done by
	msec, otherwise lilo will fail with restricted only

	* install_steps.pm: Ensure $o->{superuser}{name} is temporary

	* share/rpmsrate, install_any.pm: add HIGH_SECURITY flag, use it for
	libsafe and kernel22-secure

2001/09/21  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Added a forgotten "_( ... )".

2001/09/21  warly

	* share/rpmsrate: add gnomemeeting and openmcu

2001/09/20  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm (partition_with_diskdrake): ensure the $::expert
	flag modifications in
	diskdrake do not escape from diskdrake

	* install_steps_interactive.pm (choosePartitionsToFormat): do not propose
	check bad blocks for xfs and jfs

2001/09/20  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: don't reapply the conf, if already applied.
	usefull for dhcp, because the network should be restarted after
	configured

	* network/adsl.pm: test if microcode is there

	* bootlook.pm: removed blocking die

2001/09/20  fcrozat

	* share/rpmsrate: Add gnome-user-docs to GNOME install
	Install Mdk eazel engine for gnome

2001/09/20  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: take care not probing in /dev/ for finding package to upgrade,
	this cause
	problem in live_upgrade.

	* Xconfigurator.pm: added VideoRam for ET 6x00 card.

	* network/netconnect.pm: tried to fix damien sucking.

2001/09/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: misc

2001/09/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated Turkish file

	* share/po/cs.po: updated Czech file

	* share/po/nl.po, share/po/da.po, share/po/zh_TW.po: updated Danish,
	Chinese and Dutch files

2001/09/20  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm (partition_with_diskdrake): ensure the $::expert
	flag modifications in
	diskdrake do not escape from diskdrake

	* share/rpmsrate: raise i18n fonts

	* fsedit.pm (hds): do a get_major_minor where needed

	* lang.pm: replace xcin by chinput as per Alex request

	* install_steps_interactive.pm (choosePartitionsToFormat): do not propose
	check bad blocks for xfs and jfs

2001/09/20  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed flow of the program for the "recommended" mode of
	the installation.

2001/09/20  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: don't reapply the conf, if already applied.
	usefull for dhcp, because the network should be restarted after
	configured

	* mouse.pm: text positionning

	* standalone/net_monitor: less gethostbyname

2001/09/20  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: take care not probing in /dev/ for finding package to upgrade,
	this cause
	problem in live_upgrade.

	* network/netconnect.pm: tried to fix damien sucking.

2001/09/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po, share/po/da.po, share/po/zh_TW.po: updated Danish,
	Chinese and Dutch files

2001/09/20  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: raise i18n fonts
	s/telnet-server/telnet-server-krb5/

	* fsedit.pm (hds): do a get_major_minor where needed

	* fs.pm (add2all_hds): allow both "smbfs" and "smb" as fs type

	* lang.pm: replace xcin by chinput as per Alex request

	* printerdrake.pm: back out the modif from till as asked by till

2001/09/20  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Make it possible to configure more than 1 printer in a
	"recommended" mode installation.

2001/09/19  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/netconnect.pm, network/ethernet.pm: network
	restart at better place

2001/09/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: chromium and tuxracer don't work well with Riva

2001/09/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/it.po: updated pot file
	updated help xml

	* help.pm: updated help file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/bg.po, share/po/sr.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/nl.po, share/po/ja.po,
	share/po/sv.po, share/po/hu.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/gl.po,
	share/po/ca.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
	share/po/af.po: updated pot file

	* share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/de.po:
	updated help xml

	* share/po/wa.po: updated pot file
	updated pot file

2001/09/19  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/netconnect.pm, network/ethernet.pm: network
	restart at better place

2001/09/19  fcrozat

	* share/rpmsrate: Add mdk-eazel-engine

	* share/po/fr.po: Fix french mistakes

2001/09/19  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: added code to check if package are really installed.

	* Xconfigurator.pm: Rage 128 doesn't like XF3 at all.
	make only bad card Riva128 for testing XF4.
	Riva128 is now a bad card.

2001/09/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/init.c: raklet quoting

	* share/rpmsrate: chromium and tuxracer don't work well with Riva

2001/09/19  Pixel  <pixel@mandrakesoft.com>

	* loopback.pm (create): don't use seek to create big files otherwise you
	get hole and
	swapon doesn't like it

	* any.pm (ask_users): default icon "man"

	* lang.pm: compatibility with older $o->{lang} names (for auto_installs)

	* install2.pm: initial support for server install
	compatibility with older $o->{lang} names (for auto_installs)

	* install_steps_gtk.pm: initial support for server install

	* printerdrake.pm: help perl_checker

	* pkgs.pm, share/rpmsrate, install_any.pm: 
	  - gmc instead of nautilus for non-latin1 installs
	  - introduce CHARSET flag and use it

2001/09/19  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Network is now only required (and checked) for remote
	printers.
	Several buglets fixed in remote CUPS server dialog.

	* printerdrake.pm: Removed a forgotten debug help line from the code.
	Fixed typo in dialog text of high/paranoid security.
	Network is now only required (and checked) for remote printers.
	Several buglets fixed in remote CUPS server dialog.

2001/09/18  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: don't ask to connect if lan or dhcp

2001/09/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install2.pm: don't create bootdisk by default

	* share/po/fr.po: misc

2001/09/18  Pixel  <pixel@mandrakesoft.com>

	* any.pm (write_passwd_user): fix setting "pw" field (for auto_installs)

	* install_steps_gtk.pm, pkgs.pm: tentative to correct install time for big
	installs

2001/09/18  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, my_gtk.pm: corrected Speedtouch -> speedtouch

	* network/netconnect.pm: don't ask to connect if lan or dhcp

	* standalone/drakgw: debug

2001/09/18  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: added X group with SYSTEM.
	finally work arounded rpm bug by flepied.

	* detect_devices.pm: added back full pci probe for stage2 command lspci.
	removed full pci probe for stringlist (used for generating report_bug).

	* install_steps_interactive.pm: now finally really fixed printer label in
	summary dialog.
	fixed printer description in summary (again).
	fixed no printer displayed (at least, print Remote CUPS server).

	* commands.pm: make lspci a full pci probe instead of safe pci probe.

2001/09/18  gbeauchesne

	* Xconfigurator.pm: 
	  - Force XFree 4 on IA-64. No XFree 3.3.X there...

	* tools/ia64/elilo.efi: 
	  - elilo 3.1

2001/09/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install2.pm: don't create bootdisk by default

	* standalone/drakautoinst: have "manual" and "replay" translated

	* share/po/fr.po: misc

2001/09/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po, share/po/hu.po: updated Dutch and Hungarian files

2001/09/18  Pixel  <pixel@mandrakesoft.com>

	* lang.pm, share/gen_locales.sh, share/locales-skeleton.tar.bz2: 
	  - remove ISO-8859-5, KOI8-R and KOI8-U
	  - cleanup packdrake extracting locales
	  - cleanup/fixes lang.pm

	* install_steps.pm: fix setting kdmrc for latin1

	* any.pm (write_passwd_user): fix setting "pw" field (for auto_installs)

	* install_steps_gtk.pm, pkgs.pm: tentative to correct install time for big
	installs

2001/09/17  François Pons  <fpons@mandrakesoft.com>

	* rescue/list: updated for rpm 4.0.3.

	* rescue/tree/etc/oem: updated for 8.1, contains workaround for bug of
	"rpm --root" but need more testing.

	* standalone/XFdrake: removed comment.
	added support to configure NVIDIA driver if everything is correctly
	installed.

2001/09/17  Pixel  <pixel@mandrakesoft.com>

	* fs.pm, fsedit.pm: 
	  - '--' to separate options for supermount + small workaround (ro and
	exec before --)
	  - fix nfs in manualFstab (for auto_installs, reported by David
	Eastcott)

2001/09/17  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Fixed bug of /etc/foomatic/defaultspooler not been written
	in expert install.

2001/09/17  dam's  <damien@mandrakesoft.com>

	* network/network.pm: no expert mode needed to choose gateway

2001/09/17  François Pons  <fpons@mandrakesoft.com>

	* rescue/list: updated for rpm 4.0.3.

	* rescue/tree/etc/oem: updated for 8.1, contains workaround for bug of
	"rpm --root" but need more testing.

	* printerdrake.pm: add eval around installing lexmark-driver
	(proprietary).

	* Xconfigurator.pm: deactivating bad card test (too).

	* standalone/XFdrake: removed comment.
	added support to configure NVIDIA driver if everything is correctly
	installed.

2001/09/17  odin

	* share/po/fr.po: updated fr.po

2001/09/17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: Added choice of "English|Ireland (euro)" so people wanting
	English language but also euro symbol can choose it.
	fixed Belgian keyboard

	* share/po/fr.po, share/po/wa.po, share/po/es.po: updated Spanish and
	Wallon files; corrected error syntax in French file

	* lang.pm: Added choice of "English|Ireland (euro)" so people wanting
	English language but also euro symbol can choose it.

2001/09/17  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: 
	  - '--' to separate options for supermount + small workaround (ro and
	exec before --)
	  - fix nfs in manualFstab (for auto_installs, reported by David
	Eastcott)
	(mount): do not hand update /etc/mtab for nfs mounts, already done by
	mount(8)
	(set_default_options): disable iocharset= and codepage= for supermount

	* partition_table.pm (adjust_main_extended): do not use linux extended

	* detect_devices.pm (pci_probe): log full pci probes

	* standalone/drakbug_report: fix

	* fsedit.pm: 
	  - '--' to separate options for supermount + small workaround (ro and
	exec before --)
	  - fix nfs in manualFstab (for auto_installs, reported by David
	Eastcott)

2001/09/17  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Fixed bug of /etc/foomatic/defaultspooler not been written
	in expert install.
	Do not die when "chkconfig" fails (needed for "security_check").
	Added "-q" option to foomatic-configure (should not get interactive).
	Added handling of high and paranoid security levels.

	* printerdrake.pm: /etc/foomatic/defaultspooler was not written in expert
	mode installation.
	Added handling of high and paranoid security levels.

2001/09/17  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: add eval around installing lexmark-driver
	(proprietary).

2001/09/17  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (pci_probe): log full pci probes

	* fs.pm (set_default_options): disable iocharset= and codepage= for
	supermount

2001/09/17  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: add eval around installing lexmark-driver
	(proprietary).

2001/09/17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: updated help file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/vi.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2001/09/17  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (pci_probe): log full pci probes

2001/09/16  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (getAndSaveAutoInstallFloppy): skip it on ia64

	* pkgs.pm (read_rpmsrate): fix bug

2001/09/16  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Fixed bug which prevented from printing the option list
	during install.
	Fixed bug which prevents printerdrake from running without PDQ
	installed.

2001/09/16  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (getAndSaveAutoInstallFloppy): skip it on ia64
	more up to my need ALL flag in compssUsersChoice
	remove auto-install special case (initialisation of compssUsersChoice)

	* share/rpmsrate: 
	  - cleanup packages appearing twice in rpmsrate
	  - handle a few case of packages appearing twice
	  - special case for packages appearing in INSTALL section (flag
	dropped)
	  - new special flag ALL for compssUsersChoice

	* pkgs.pm: more up to my need ALL flag in compssUsersChoice
	  - cleanup packages appearing twice in rpmsrate
	  - handle a few case of packages appearing twice
	  - special case for packages appearing in INSTALL section (flag
	dropped)
	  - new special flag ALL for compssUsersChoice

	* rescue/make_rescue_img: use new mkdir_p, rm_rf and cp_af from
	MDK::Common

2001/09/16  siegel

	* share/po/help_xml2pm.pl: added "systemitem"

2001/09/16  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Fixed bug which prevents printerdrake from running without
	PDQ installed.

2001/09/16  dam's  <damien@mandrakesoft.com>

	* mouse.pm, my_gtk.pm: bugfix + cosmetic changes

2001/09/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: updated help.pm file

	* share/po/hu.po: updated Hungarian file
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/nl.po, share/po/ja.po,
	share/po/wa.po, share/po/sv.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/vi.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/bs.po, share/po/da.po, share/po/zh_TW.po,
	share/po/cs.po, share/po/af.po: updated pot file

2001/09/16  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: "please click on ..." for removable, nfs, smb.

	* fsedit.pm: enhance lvm handling (mostly standalone)
	  - cleanup & enhance raid mdstat reading (now works with or without
	devfs mounted)
	  - chunk size is buggy?

	* install_any.pm (getAndSaveAutoInstallFloppy): skip it on ia64
	more up to my need ALL flag in compssUsersChoice
	remove auto-install special case (initialisation of compssUsersChoice)
	use new mkdir_p, rm_rf and cp_af from MDK::Common

	* share/rpmsrate: 
	  - cleanup packages appearing twice in rpmsrate
	  - handle a few case of packages appearing twice
	  - special case for packages appearing in INSTALL section (flag
	dropped)
	  - new special flag ALL for compssUsersChoice

	* verify_c: add special case for c::to_utf8

	* pkgs.pm: more up to my need ALL flag in compssUsersChoice
	  - cleanup packages appearing twice in rpmsrate
	  - handle a few case of packages appearing twice
	  - special case for packages appearing in INSTALL section (flag
	dropped)
	  - new special flag ALL for compssUsersChoice
	use new mkdir_p, rm_rf and cp_af from MDK::Common

	* services.pm, install2.pm, lang.pm, commands.pm, loopback.pm,
	tinyfirewall.pm, raid.pm, keyboard.pm, printerdrake.pm, fs.pm, mouse.pm,
	network/netconnect.pm, timezone.pm, network/adsl.pm, install_steps.pm,
	any.pm, printer.pm, rescue/make_rescue_img, bootloader.pm: use new
	mkdir_p, rm_rf and cp_af from MDK::Common

	* diskdrake_interactive.pm, lvm.pm: enhance lvm handling (mostly
	standalone)

	* devices.pm (make): ensure it never returns a non-absolute name
	(it happened with make("foo") when cwd=/dev and /dev/foo existed)

2001/09/16  siegel

	* share/po/help_xml2pm.pl: added "systemitem"
	added commet explainig that help.pm is automatically generated.

	* .cvsignore: added .*.sw? for vim users

2001/09/16  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Added possibility to list command line
	options for the printers and to give the users help for printing
	Fixed bug of sometimes appearing the wron dialog after printing test
	pages

2001/09/15  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: fix options appearing twice in fstab

	* install_steps.pm, any.pm, c/stuff.pm: i18n kdmrc

	* lang.pm (load_mo): ensure the locale is set (was broken in non-gtk
	installs)

	* install_steps_auto_install.pm (enteringStep): do not translate in
	ja|ko|zh

2001/09/15  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: fix options appearing twice in fstab

	* install_steps.pm, any.pm, c/stuff.pm: i18n kdmrc

	* lang.pm (load_mo): ensure the locale is set (was broken in non-gtk
	installs)

	* install_steps_auto_install.pm (enteringStep): do not translate in
	ja|ko|zh

2001/09/15  civileme

	* help.pm: Added a dialog in English for users selecting a printing system
	since no other
	OS seems to offer such a choice during install.

2001/09/15  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: better connection testing

	* network/tools.pm: more timeout

	* network/adsl.pm: avoid asking 2 times to restart the ethernet card

	* mouse.pm: readded darea realization

2001/09/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/rpmsrate: make gtk-themes installed when Gnome is choosen

	* share/po/es.po: updated Spanish file

	* share/po/wa.po, share/po/hu.po: updated Hungarian file

2001/09/15  Pixel  <pixel@mandrakesoft.com>

	* Makefile.config, tools/Makefile: add aewm-drakx

	* install_steps_gtk.pm: makes cancel on mouse selection works even better
	  - add and use aewm-drakx
	  - add some "skip" title on help/logo/steps windows so that aewm-drakx
	know they don't need keyboard focus
	  - add some more title to ease debugging (when aewm-drakx is in debug
	mode)

	* install_gtk.pm, tools/aewm-drakx/Makefile, tools/aewm-drakx/misc.c,
	tools/aewm-drakx/README: 
	  - add and use aewm-drakx
	  - add some "skip" title on help/logo/steps windows so that aewm-drakx
	know they don't need keyboard focus
	  - add some more title to ease debugging (when aewm-drakx is in debug
	mode)

	* any.pm: i18n kdmrc
	fix user icons choice
	  - add and use aewm-drakx
	  - add some "skip" title on help/logo/steps windows so that aewm-drakx
	know they don't need keyboard focus
	  - add some more title to ease debugging (when aewm-drakx is in debug
	mode)

	* install2.pm: don't warn if modules are missing when testing

	* bootloader.pm: find error in /tmp/.error only if exception is "xxx
	failed"
	(write_lilo_conf): ensure linear and lba32 are not both set

	* share/po/fake_c.pl: fix a tricky hack

	* my_gtk.pm: do the set_events before the show otherwise gtk go crazy (no
	more keyboard focus)

	* c/stuff.pm: i18n kdmrc

	* lang.pm (load_mo): ensure the locale is set (was broken in non-gtk
	installs)

	* install_steps_interactive.pm: fix typo
	find error in /tmp/.error only if exception is "xxx failed"
	makes cancel on mouse selection works even better
	fix cancel on mouse choice

	* install_steps.pm: i18n kdmrc
	enable supermount again

	* network/adsl.pm: correct dams typo

	* fs.pm (write_fstab): fix supermount moving from options to fstype

	* steps.pm: find error in /tmp/.error only if exception is "xxx failed"

	* tools/aewm-drakx/aewm.h, tools/aewm-drakx/client.c,
	tools/aewm-drakx/events.c, tools/aewm-drakx/aewm-drakx.c: set_focus on
	new map_request event (fix summary step)
	  - add and use aewm-drakx
	  - add some "skip" title on help/logo/steps windows so that aewm-drakx
	know they don't need keyboard focus
	  - add some more title to ease debugging (when aewm-drakx is in debug
	mode)

	* install_steps_auto_install.pm (enteringStep): do not translate in
	ja|ko|zh

2001/09/15  siegel

	* share/po/de.po: fixed another typo
	new string

	* printerdrake.pm: added missing _()

	* standalone/draksec: use " instead of ' to get i18n

	* standalone/draknet: fixed missing _()

2001/09/15  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Added the PDQ panic button.
	Removed a superfluous "set_help" line.
	Save default spooler at program start, fixed typos in comments.
	Command line commands as "lpr", "lpq", ... are mapped to the correct
	spooler now.
	Fixed bug of a waiting message appearing together with a dialog
	Cleaned up variables to correctly switch between CUPS/Foomatic/Raw type
	for a printer

	* printer.pm: Added the PDQ panic button.
	Command line commands as "lpr", "lpq", ... are mapped to the correct
	spooler now.

	* standalone/printerdrake: Fixed bug of spooler choice via command line
	options being ignored.

2001/09/15  warly

	* share/rpmsrate: add drakfirsttime

2001/09/14  dam's  <damien@mandrakesoft.com>

	* printer.pm, printerdrake.pm: make test_pms happy

	* install_any.pm: pptp-adsl instead of pptp-adsl-fr

	* Xconfigurator.pm: no shadow when X test

	* standalone.pm: bugfix

	* my_gtk.pm: no icon if wizard
	no shadow when X test
	shadow color

	* bootlook.pm: bugfix
	iautologin correction

	* mouse.pm: trying to remove draw

	* network/adsl.pm: debug
	pptp-adsl instead of pptp-adsl-fr
	bugfix
	updated speedtouch handling.

2001/09/14  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: removed S3 ViRGE card from card with problem with
	frame buffer as it works fine.

	* Xconfigurator.pm: fixed filtering of depth for newt version.
	depth 24 is used for DRI for Rage 128 and Radeon instead of Depth 32 (as
	depth
	32 simply doesn't work, even if DRI guide says it works :-) 24 bit works
	fine
	for Rage 128.
	apply restriction on depth available when changing resolution, removed
	S3 ViRGE
	from experimental 3D accelerated card list as it really does not work,
	allow on
	second pass to change card configuration to choose server (experimental
	server
	are still only available to expert), added support for UseCCEFor2D for
	Rage 128
	card if a TV card is installed (set to true, else set to false), added
	support
	for Rage Mobility M... card that are Rage 128 Mobile chipset, improved
	error
	message display to catch only appropriate error message of XFree 4.1.0
	only,
	added support for 32 bits for DRI using Matrox card, improved info
	message with
	real version of XFree used (anybody) and identifier from PCI probe
	(expert).

2001/09/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/insmod-busybox/Makefile: clean also cleans the DIET target

	* mdk-stage1/Makefile, mdk-stage1/Makefile.mkinitrd_helper: back to using
	a reduced form of mkinitrd_helper for mkinitrd (only
	to provide a dietlibc-enabled static insmod)

2001/09/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po: updated Walloon file

	* share/po/ko.po: updated Korean file

	* share/po/da.po: updated Danish file
	updated Danish file

	* share/po/bs.po, share/po/sv.po: updated Bosnian and Swedish files

2001/09/14  Pixel  <pixel@mandrakesoft.com>

	* partition_table_raw.pm, install_any.pm: when testing for bad drives, if
	opening for writing fails, remove the drive from the hard drive list
	(useful for Smartmedia readers)

	* pkgs.pm: update correctSize and invCorrectSize (now linear)

	* share/po/fr.po: fix odin bug (please run msgfmt before committing!)

	* share/rpmsrate: do not install Aurora in russian

2001/09/14  siegel

	* share/po/de.po: updates

	* standalone/drakautoinst: Check exisence of "/root/replay_install.img"
	before anything else ...

2001/09/14  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Added "set_help" lines for installer help texts.
	Raw queue entry added, so cursor not always on "Alps MD-1000" when no
	printer
	detected.
	Resolved conflict.
	Now it is checked whether the network is configured and running.
	draknet is called when the network is not configured.
	It is checked whether the spooler is automatically started at boot.
	The oki4daemon is started when needed.
	Lexmarks inkjet drivers are fully integrated.
	The permissions of the device files are set so that normal users can
	print with PDQ.

	* standalone/printerdrake: Fixed spooler selection by command line.

	* printer.pm: Raw queue entry added, so cursor not always on "Alps
	MD-1000" when no printer
	detected.
	Made network checking working on non-english systems.
	Now it is checked whether the network is configured and running.
	draknet is called when the network is not configured.
	It is checked whether the spooler is automatically started at boot.
	The oki4daemon is started when needed.
	Lexmarks inkjet drivers are fully integrated.
	The permissions of the device files are set so that normal users can
	print with PDQ.

2001/09/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bg.po, share/po/tr.po: updated Turkish and Bulgarian files
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/eu.po, share/po/az.po,
	share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/gl.po,
	share/po/ca.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/bs.po, share/po/da.po, share/po/zh_TW.po, share/po/cs.po,
	share/po/af.po: updated pot file

2001/09/13  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: added mt-st to ARCHIVING

2001/09/13  odin

	* share/po/fr.po: updated up to 6648

2001/09/13  Pixel  <pixel@mandrakesoft.com>

	* diskdrake_interactive.pm: new migration feature for creation of
	partitions on existing mount points

	* diskdrake.pm: 
	  - add back shortcuts
	  - red colored buttons in nfs/smb/removable

2001/09/13  dam's  <damien@mandrakesoft.com>

	* pixmaps/wiz_default_up.png, pixmaps/wiz_draknet.png: updated

	* my_gtk.pm: updated
	addde /usr/share/icons in path for pixmaps search
	shadow reduced to 5 pixels

	* standalone/draknet, network/isdn.pm: isdn timeout works now.

2001/09/13  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: added mt-st to ARCHIVING

2001/09/13  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator_consts.pm: removed ugly Modeline 1024x768 which causes
	trouble to XFree86 4.1.0.

	* Xconfigurator.pm: fix for missing Xinerama for Matrox cards.
	fix for Matrox G550 support, now add DRI support.
	disable any question to user about XF3 if he choose a dual head
	configuration.
	disable DRI if Xinerama has been chosen.
	updated Rage Mobility regexp for bad_card, added bad_card for XF4 as
	Tseng ET6\d00.

	* install_any.pm: updates 3D category according Matrox G550 and Radeon
	card.

	* install_steps.pm: synced with Xconfigurator bad_card class of video card
	to avoid using frame
	buffer, added ET6\d00 style card which seems to have problem.

2001/09/13  odin

	* share/po/fr.po: updated up to 6648
	updated fr.po

2001/09/13  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: add krozat

	* any.pm (inspect): use a safer dir when standalone

	* install_steps.pm: extend disable KDE GreetString to
	ja|ko|zh|ru|th|vi|be|bg
	do not translate kdm GreetString in ja|ko|zh (what about ru?)
	in kdmrc GreetString, magic string HOSTNAME replaced by %n

	* diskdrake_interactive.pm: new migration feature for creation of
	partitions on existing mount points

	* diskdrake.pm: 
	  - add back shortcuts
	  - red colored buttons in nfs/smb/removable

	* partition_table.pm: BLKPG_ADD_PARTITION support (aka adding partition on
	the fly without rebooting on a device with some already mounted
	partitions)

	* install_steps_interactive.pm (selectKeyboard): don't prompt in newbie
	mode if >=90, not >90

2001/09/13  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: shadow reduced to 5 pixels

	* standalone/draknet, network/isdn.pm: isdn timeout works now.

2001/09/13  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fix for missing Xinerama for Matrox cards.
	fix for Matrox G550 support, now add DRI support.
	disable any question to user about XF3 if he choose a dual head
	configuration.
	disable DRI if Xinerama has been chosen.
	updated Rage Mobility regexp for bad_card, added bad_card for XF4 as
	Tseng ET6\d00.
	avoid creating /etc/X11/XF86Config* file if --g_auto_install.

	* services.pm: updated repartition of services into category, network
	category are commented so
	that service will to "Other" one.

	* Xconfigurator_consts.pm: removed ugly Modeline 1024x768 which causes
	trouble to XFree86 4.1.0.

	* install_any.pm: updates 3D category according Matrox G550 and Radeon
	card.

	* install_steps.pm: synced with Xconfigurator bad_card class of video card
	to avoid using frame
	buffer, added ET6\d00 style card which seems to have problem.

2001/09/13  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm: filtered the list from lang2keyboard to display only valid
	keyboards

	* c/stuff.xs.pm: add partition adding on the fly trick

	* partition_table.pm: BLKPG_ADD_PARTITION support (aka adding partition on
	the fly without rebooting on a device with some already mounted
	partitions)

	* install_steps.pm: do not translate kdm GreetString in ja|ko|zh (what
	about ru?)
	in kdmrc GreetString, magic string HOSTNAME replaced by %n

2001/09/13  dam's  <damien@mandrakesoft.com>

	* standalone/draknet, network/isdn.pm: isdn timeout works now.

2001/09/13  François Pons  <fpons@mandrakesoft.com>

	* lang.pm: fixed bad $localedir in load_mo().

	* g_auto_install: updated so that this scripts is running again.

	* install2.pm: do not output error message for bad kernel if using
	--g_auto_install.

	* install_steps_interactive.pm: fixed Printer name reporting for a
	specific printer.

	* install_any.pm: updates 3D category according Matrox G550 and Radeon
	card.

	* services.pm: updated repartition of services into category, network
	category are commented so
	that service will to "Other" one.

	* live_install2: updated #! as ../perl is not used.

	* my_gtk.pm: synced with --g_auto_install mode.

	* install_steps.pm: synced with Xconfigurator bad_card class of video card
	to avoid using frame
	buffer, added ET6\d00 style card which seems to have problem.

	* Xconfigurator.pm: fix for Matrox G550 support, now add DRI support.
	disable any question to user about XF3 if he choose a dual head
	configuration.
	disable DRI if Xinerama has been chosen.
	updated Rage Mobility regexp for bad_card, added bad_card for XF4 as
	Tseng ET6\d00.
	avoid creating /etc/X11/XF86Config* file if --g_auto_install.
	synced with --g_auto_install mode.
	disable testing with all SiS card except SiS 630 under XF4.

2001/09/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/pl.po, share/po/pt.po, share/po/no.po,
	share/po/th.po, share/po/sr.po, share/po/sk.po, share/po/lt.po,
	share/po/ru.po, share/po/pt_BR.po, share/po/ko.po, share/po/lv.po,
	share/po/uk.po, share/po/nl.po, share/po/ja.po, share/po/sv.po,
	share/po/id.po: updated pot file

2001/09/13  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm: filtered the list from lang2keyboard to display only valid
	keyboards

	* c/stuff.xs.pm: add partition adding on the fly trick

	* partition_table.pm: BLKPG_ADD_PARTITION support (aka adding partition on
	the fly without rebooting on a device with some already mounted
	partitions)

	* install2.pm (selectKeyboard): remove code causing
	install_steps::selectKeyboard to be skipped

	* install_steps.pm: do not translate kdm GreetString in ja|ko|zh (what
	about ru?)
	in kdmrc GreetString, magic string HOSTNAME replaced by %n

2001/09/12  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: typo
	new color for shadow
	corrected shadow handling
	no shadow if liveupdate

	* share/help.png: new help

	* mouse.pm: removed debug code

	* network/tools.pm, network/netconnect.pm, network/ethernet.pm,
	network/isdn.pm, network/adsl.pm, network/modem.pm: new default
	connection handling

	* standalone.pm: added wait message while installing package

2001/09/12  daouda

	* standalone/drakbug_report: add Mandrake release section

2001/09/12  fcrozat

	* share/rpmsrate: Fix gnome install

2001/09/12  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: removed obsolete --nocpi flag for install2.
	avoid probing usb device (for mouse) if --noauto is given.

	* install_steps.pm: disabled frame buffer for most of the SiS display card
	except SiS 630.

	* Xconfigurator.pm: added MGA G550 as always having two head.

	* live_install2: fix when switching perl version.

	* live_install: use system perl instead.

2001/09/12  gbeauchesne

	* share/list.ia64, share/list, share/list.i386: 
	  - list (/sbin/mkfs.jfs, /sbin/mkfs.xfs): Move to...
	  - list.i386: ... Here.
	  - list.ia64: Updates.

2001/09/12  odin

	* share/po/fr.po: updated fr.po

2001/09/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/zh_CN.po, share/po/fi.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
	share/po/et.po, share/po/el.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/hr.po, share/po/vi.po, share/po/ca.po,
	share/po/gl.po, share/po/eo.po, share/po/help_xml2pm.pl, share/po/wa.po,
	share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/hu.po,
	share/po/it.po, share/po/af.po: updated pot file

	* help.pm: new version with [ and ]

	* lang.pm: commented out utf-8 russian locale, for now

2001/09/12  Pixel  <pixel@mandrakesoft.com>

	* standalone/lsnetdrake: fix typo
	added wonderful lsnetdrake

	* modules.pm, install2.pm: display error when the kernel mismatch the
	modules

	* docs/README: explain how to get the boot kernels

	* install_steps_gtk.pm (choosePackagesTree): translate the categories

	* standalone/drakbug_report: cleanup

	* bootloader.pm (suggest): no "quiet" boot for smp and enterprise kernels
	(suggest): no "quiet" boot for smp and enterprise kernels
	allow grub even for more than 800MB

	* Makefile.drakxtools, Makefile.config: added wonderful lsnetdrake

2001/09/12  siegel

	* share/po/de.po: new & shiny verion

	* share/po/help_xml2pm.pl: fixed silly error
	added keycap patch

2001/09/12  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: corrected shadow handling
	no shadow if liveupdate
	table undef corrected
	removed shadows if standalone

	* standalone/drakgw, standalone/draknet: corrected wizard mode in newt
	mode

	* mouse.pm: removed debug code

	* network/netconnect.pm: corrected splash in non X mode

2001/09/12  daouda

	* standalone/drakbug_report: add Mandrake release section

2001/09/12  François Pons  <fpons@mandrakesoft.com>

	* live_install2: fix when switching perl version.

	* live_install: use system perl instead.

2001/09/12  kjx

	* share/po/zh_CN.po: revison

2001/09/12  Pixel  <pixel@mandrakesoft.com>

	* docs/README: explain how to get the boot kernels

	* install_steps_gtk.pm (choosePackagesTree): translate the categories

	* standalone/drakbug_report: cleanup

	* bootloader.pm: allow grub even for more than 800MB

2001/09/11  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: removed useless print
	don't detect ethx if no autodetection.
	implement smarter checkboxes

	* mouse.pm: test updated
	mouse test worked

	* network/ethernet.pm: don't detect ethx if no autodetection.
	implement smarter checkboxes

	* pixmaps/arrow_down.xpm: pixmap corrected
	new arrows

	* pixmaps/arrow_up.xpm: new arrows

	* share/rpmsrate: added ibod
	added isdn-light

	* interactive_gtk.pm, my_gtk.pm: fear the shaped windows...

2001/09/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* help.pm: small fix

	* share/po/fr.po, share/po/de.po, share/po/DrakX.pot, share/po/hu.po,
	share/po/it.po: updated Hungarian file;
	updated pot file

2001/09/11  Pixel  <pixel@mandrakesoft.com>

	* Makefile (tar-drakxtools): remove the building of "help" for drakxtools

	* bootloader.pm: for lilo, do not have table=/dev/xxx if the device is not
	a primary
	partition (otherwise lilo dies)

2001/09/10  dam's  <damien@mandrakesoft.com>

	* network/modem.pm, network/ethernet.pm: detect_devices

	* standalone/net_monitor, network/network.pm: removed timeout:1 in
	resolv.conf, modified timeout scanning in draknet/net_monitor

	* install_gtk.pm, install_steps_gtk.pm: mouse test moved

	* mouse.pm: test_mouse moved

	* my_gtk.pm: added border
	window decorations
	no set_events if embedded

	* standalone/draknet: removed timeout:1 in resolv.conf, modified timeout
	scanning in draknet/net_monitor
	debug

	* standalone/mousedrake: don't fork the code

	* network/adsl.pm: debug
	debug

2001/09/10  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: updated g_auto_install() for newer printerdrake
	interface.

	* modules.pm, detect_devices.pm: moved modules::get_pcmcia_devices into
	detect_devices::pcmcia_probe.

	* mdk-stage1/init-data/msgboot-blank.img.bz2: initial release for
	blank.img floppy image.

	* install_steps_interactive.pm, mouse.pm: added hid type usb mouse
	support.

	* Xconfigurator_consts.pm: added some more ModeLine (1024x768 @ 97.6 Hz,
	1024x480 but not automatically used).

2001/09/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: plop
	some adjustements in Games section

2001/09/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/de.po: updated German file; added choice of
	various quotes in help_xml2pm.pl
	Updated pot file;
	removed translations that are too low on percentage.

	* share/po/zh_TW.po: updated Chinese file

	* share/po/ko.po: updated Korean file
	Updated pot file;
	removed translations that are too low on percentage.

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/no.po, share/po/fi.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/bs.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Updated pot file;
	removed translations that are too low on percentage.

	* share/po/help_xml2pm.pl: updated German file; added choice of various
	quotes in help_xml2pm.pl

2001/09/10  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm, my_gtk.pm: 
	  - make diskdrake work in embedded mode
	  - $my_gtk::pop_it used where it should

	* detect_devices.pm: fix ide-scsi appearing 2 times when standalone
	because both in /proc/ide
	and /proc/scsi/scsi

	* share/po/help_xml2pm.pl: s/my/our/ for $i18ned_... vars
	  - skip directories missing drakx-help.xml
	  - convert to the right charset (taken from $lang.po)
	  - rename help-*.po by help-*.pot
	  - fix typo in script removing $lang.po translations to favour
	help-*.pot

	* diskdrake.pm: 
	  - make diskdrake work in embedded mode
	  - $my_gtk::pop_it used where it should
	fix Umount and Mount when i18ned for nfs/smb
	don't display Wizard if wizard done before DrakX

	* share/po/Makefile, share/po/.cvsignore: 
	  - rename help-*.po by help-*.pot
	  - fix typo in script removing $lang.po translations to favour
	help-*.pot

2001/09/10  siegel

	* share/po/de.po: updates

2001/09/10  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Copying of PPD file when moving a CUPS (non-Foomatic) queue
	modified to not get
	interactive when overwriting a file.
	Comment put into non-Foomatic CUPS PPD files in /etc/cups/ppd/ to be
	able to
	  identify which PPD from /usr/share/cups/model was used (for
	auto-install).

2001/09/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, share/po/vi.po, share/po/br.po, share/po/ca.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/bs.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: Updated pot file;
	removed translations that are too low on percentage.

2001/09/10  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile, share/po/.cvsignore, share/po/help_xml2pm.pl: 
	  - rename help-*.po by help-*.pot
	  - fix typo in script removing $lang.po translations to favour
	help-*.pot

2001/09/09  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: probeall handling

2001/09/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: getAndSaveInstallFloppy: fix multiple cdrom issue

2001/09/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated Turkish file

	* share/po/sv.po: updated Swedish file

2001/09/09  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (ejectCdrom): fix D state on exit

	* diskdrake_interactive.pm, install_interactive.pm, diskdrake.pm: 
	  - "Wizard" and "More" are back
	  - allow "Use for loopback" when there is already a loopback
	  - set the options on newly created partitions
	  - recompute_loopbacks called after modification of loopbacks, no more
	before reading
	  - restrict the lenght of the lines in partition description
	  - make loopback work

	* interactive_gtk.pm, interactive.pm, any.pm, interactive_newt.pm:
	clicked_may_quit used in place of clicked+exception to work-around
	perl-GTK bug (?)

	* share/po/i18n_compssUsers: ensure we're not adding a string already
	there (otherwise msgmerge yells)

	* share/po/help_xml2pm.pl, share/po/.cvsignore: xml help
	handling/enhancing for multi-langs

	* modules.pm: probeall handling
	(write_conf): switch to "probeall scsi_hostadapter ..."

	* share/po/Makefile: xml help handling/enhancing for multi-langs
	xml help handling/enhancing for multi-langs

	* partition_table.pm (get_normal_parts_and_holes): remove only small
	holes, not small partitions

	* fs.pm (set_default_options): remove iocharset=... for nfs (why was it
	there?)

2001/09/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fix some ortograf

	* share/rpmsrate: lvm not installed for everyone ?!

2001/09/08  Pixel  <pixel@mandrakesoft.com>

	* install_steps_auto_install.pm: force exitInstall to be non automatic

	* install_steps.pm, fs.pm, install_steps_interactive.pm, fsedit.pm,
	diskdrake_interactive.pm, install2.pm, diskdrake.pm: make loopback
	installs work again

2001/09/09  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): switch to "probeall scsi_hostadapter ..."

2001/09/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fix some ortograf

	* share/rpmsrate: lvm not installed for everyone ?!

	* modules.pm: fix write_conf regarding /etc/modules so that (1) it doesn't
	flush it when
	it didn't decide to put any modules in it (to leave user's modules) (2)
	it
	doesn't remove the last line (3) it uses stronger regexp'es for
	substitution to not remove modules that have names made of other modules
	names subsets

2001/09/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/zh_TW.po: updated Chinese file

2001/09/08  Pixel  <pixel@mandrakesoft.com>

	* lang.pm: fix font in iso-15

	* modules.pm (write_conf): put "probeall scsi-hosts scsi_hostadapter ..."

	* interactive.pm: ugly workaround perl bug ([ID 20010908.008] memory leak
	with nested subs)

	* share/diskdrake.rc: change name

	* install_steps_auto_install.pm: force exitInstall to be non automatic

	* install_steps.pm, fs.pm, install_steps_interactive.pm, fsedit.pm,
	diskdrake_interactive.pm, install2.pm, diskdrake.pm: make loopback
	installs work again

	* timezone.pm: Asia/Taipei for Traditional Chinese

	* detect_devices.pm: remove debug code

2001/09/07  daouda

	* share/rpmsrate: add mdkonline (X 4)

2001/09/07  fcrozat

	* share/rpmsrate: Add grio500

2001/09/07  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fix card managed only by XF4 (may have some wrong
	result).
	fix all Matrox card used with XF4 which really does not like X in frame
	buffer
	(unable to restore frame buffer of DrakX).

2001/09/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/tree/etc/oem, rescue/guessmounts, rescue/list.i386,
	rescue/tree/etc/rc.sysinit: ext3, xfs, jfs

	* bootloader.pm: use -v for mkinitrd

	* share/po/fr.po: "reseaux" and plurals
	misc

	* share/rpmsrate: some work on games

2001/09/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ja.po, share/po/vi.po: updated Vietnamese and Japanese files

2001/09/07  Pixel  <pixel@mandrakesoft.com>

	* Makefile: cleanup po

	* install_steps.pm: s|kdmrc|kdm/kdmrc|

	* lang.pm: fix load_mo call

	* share/po/help_xml2pm.pl, share/po/Makefile, help.pm: new help

	* diskdrake_interactive.pm: disable_forced_fsck called for ext3 formatting
	disable_forced_fsck called for ext3 formatting
	(Type): disable fsck when migrated ext2->ext3

	* fs.pm: disable_forced_fsck called for ext3 formatting

2001/09/07  siegel

	* share/po/de.po: updates

2001/09/07  Till Kamppeter <till@mandrakesoft.com>

	* standalone/printerdrake, printer.pm, printerdrake.pm: Data structure
	fitted for auto-install to work
	Optimized program to be much faster
	Many more waiting messages
	Many bugfixes

2001/09/07  daouda

	* share/rpmsrate: add mdkonline (X 4)

2001/09/07  fcrozat

	* share/rpmsrate: Add grio500

2001/09/07  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fix card managed only by XF4 (may have some wrong
	result).
	fix all Matrox card used with XF4 which really does not like X in frame
	buffer
	(unable to restore frame buffer of DrakX).

2001/09/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* any.pm: Changed simple quote to double quote for a translatable string
	(otherwise
	it isn't seen)

	* share/po/es.po: updated Spanish file
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/is.po, share/po/hu.po,
	share/po/it.po, share/po/id.po, share/po/pl.po, share/po/no.po,
	share/po/fi.po, share/po/th.po, share/po/el.po, share/po/sk.po,
	share/po/lt.po, share/po/ar.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/bs.po,
	share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
	updated pot file

	* share/po/sv.po: updated Swedish file
	updated pot file

2001/09/07  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: s|kdmrc|kdm/kdmrc|
	remove the "konsole and gnome-terminal are lamers in exotic languages,
	link them to something better"

	* bootloader.pm (write_lilo_conf): fix typo

	* share/po/help_xml2pm.pl, share/po/Makefile, help.pm: new help

	* diskdrake_interactive.pm: disable_forced_fsck called for ext3 formatting
	disable_forced_fsck called for ext3 formatting
	(Type): disable fsck when migrated ext2->ext3

	* install_any.pm, keyboard.pm: cleanup

	* partition_table.pm, share/list: add xfs

	* fs.pm: disable_forced_fsck called for ext3 formatting

	* share/rpmsrate: add jfsprogs

2001/09/07  siegel

	* share/po/de.po: updates
	updates/fixes

2001/09/06  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/tools.pm: corrected speedtouch

	* install_gtk.pm: removed comments

2001/09/06  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: cleanup for bad card and prefer XF3, so now using
	XFree 4.1.0 is not bad, and
	all NVIDIA card are no more considered bad.

	* pkgs.pm: fixed retry of package 3 times everytime even if first install
	succeeded, now
	after first successfull install, go to next package to install.

	* install_steps.pm: removed some cards for allowing frame buffer.

2001/09/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: works now ;p

2001/09/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: 'zh' in LANGUAGE for Chinese is needed by DrakX
	corrected lang.pm to have coherence in locale usage (it was the source
	of much of the problems); changed keyboard.pm to ignore charset encoding
	in locale name for locale -> keyboard guessing.
	removed unused gconv modules, converted az.po to utf-8 (as it was the
	only
	remaining az.po on Earth still in a non standard encoding)

	* share/list, share/gen_locales.sh, share/locales-skeleton.tar.bz2,
	keyboard.pm, share/po/az.po: corrected lang.pm to have coherence in
	locale usage (it was the source
	of much of the problems); changed keyboard.pm to ignore charset encoding
	in locale name for locale -> keyboard guessing.
	removed unused gconv modules, converted az.po to utf-8 (as it was the
	only
	remaining az.po on Earth still in a non standard encoding)

2001/09/06  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: fix keyboard config + some cleanup
	cleanup (use /proc/self instead of /proc/$$)

	* install_steps.pm, install_steps_interactive.pm, keyboard.pm: fix
	keyboard config + some cleanup

2001/09/06  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/tools.pm: corrected speedtouch

	* install_gtk.pm: removed comments

2001/09/06  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: cleanup for bad card and prefer XF3, so now using
	XFree 4.1.0 is not bad, and
	all NVIDIA card are no more considered bad.
	avoid using @resolutions_laptop, now use only @resolutions, this means
	1400x1050
	is available to other, use XFree86 4.1.0 builtin timings for 1400x1050
	(so
	1400x1050 is no more printed as modeline for XFree 4.1.0 configuration
	file).

	* install_steps.pm: removed some cards for allowing frame buffer.
	fix log when configuring printer queue.

	* Xconfigurator_consts.pm: added 1400, 1920 and 2048 for %min_hsync4wres.
	cleaned up a bit and using XFree86 4.1.0 builtin timings for 1400x1050
	and
	1920x1440, 2048x1536 has no modeline (but its min hsync is really high).

	* pkgs.pm: fixed retry of package 3 times everytime even if first install
	succeeded, now
	after first successfull install, go to next package to install.

	* install_any.pm: update printer data for g_auto_install.

2001/09/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: works now ;p

2001/09/06  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: fix keyboard config + some cleanup
	cleanup (use /proc/self instead of /proc/$$)

	* install_steps.pm, install_steps_interactive.pm, keyboard.pm: fix
	keyboard config + some cleanup

	* fs.pm (merge_fstabs): correction allowing manual_fstab to not give the
	type

2001/09/06  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/tools.pm: corrected speedtouch

	* install_gtk.pm: removed comments
	new mouse test

2001/09/06  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: revert previous patch, this is not usable with current rpm as
	it complains if
	one the file has a modified MD5SUM against the header describing it in
	the
	hdlist, so this is most of the time useless.
	guess filename if the file is not found (for an rpm file during
	installation),
	so try with release incremented in such case (good for Cooker user or
	local
	tester using network installation).

	* install_steps.pm: fix log when configuring printer queue.

	* Xconfigurator.pm: avoid using @resolutions_laptop, now use only
	@resolutions, this means 1400x1050
	is available to other, use XFree86 4.1.0 builtin timings for 1400x1050
	(so
	1400x1050 is no more printed as modeline for XFree 4.1.0 configuration
	file).

	* Xconfigurator_consts.pm: added 1400, 1920 and 2048 for %min_hsync4wres.
	cleaned up a bit and using XFree86 4.1.0 builtin timings for 1400x1050
	and
	1920x1440, 2048x1536 has no modeline (but its min hsync is really high).

	* install_any.pm: update printer data for g_auto_install.

	* printerdrake.pm: revert previous commit.
	added a missing ifup lo, on some case (auto_install) it fails.

	* printer.pm: start ifup lo before starting service cups.

2001/09/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

	* share/po/ga.po, share/po/no.po: updated Irish and Norwegian files

2001/09/06  Pixel  <pixel@mandrakesoft.com>

	* share/diskdrake.rc, fsedit.pm, diskdrake.pm: add journalised in legend,
	fix the use

	* diskdrake_interactive.pm (Add2LVM): do not allow spaces in lvm names

	* fs.pm (merge_fstabs): correction allowing manual_fstab to not give the
	type

	* timezone.pm (ntp_server): fix (step-tickers was empty)

2001/09/05  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor, standalone/draknet: corrected opeions

	* standalone/mousedrake: typo
	updated

	* network/tools.pm: corrected initcript

	* pixmaps/mouse_middle.xpm, pixmaps/mouse_right.xpm,
	pixmaps/mouse_left.xpm: new pixmaps

2001/09/05  Pixel  <pixel@mandrakesoft.com>

	* standalone/diskdrake: fix function called

2001/09/05  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Set default printer (all spoolers), manual
	config (CUPS), bugfixes, clean-ups.

2001/09/05  dam's  <damien@mandrakesoft.com>

	* pixmaps/wiz_default_left.png, pixmaps/wiz_default_up.png,
	pixmaps/wiz_drakgw.png: new icons

	* share/themes-mdk.rc: updated theme

	* standalone/draknet: interface display corrected

	* share/themes/mdk-button4.png, share/themes/mdk-button1.png: new buttons

	* install_gtk.pm: 2 sec without sensitives buttons

	* network/netconnect.pm: only if standalone

	* pixmaps/network.png, pixmaps/bootloader.png, pixmaps/printer.png,
	pixmaps/security.png, pixmaps/rootpasswd.png, pixmaps/harddrive.png,
	pixmaps/keyboard.png, pixmaps/X.png, pixmaps/mouse.png,
	pixmaps/bootdisk.png: new pixmaps

2001/09/05  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixed display of XFdrake test image (fcrozat).

	* install_steps.pm: fixed typo preventing removable devices to be seen in
	/etc/fstab.
	fixed configurePrinter (used for auto_install).

	* install_steps_interactive.pm: avoid asking when using existing partition
	for magic partition with a real
	mntpoint (typically /tmp/hdimage) if we are not using a ramdisk (so
	partition is
	not unmountable).

	* bootloader.pm: removed yvounet sucking, handle Mandrake lilo or unknown
	lilo.

	* fs.pm: fix bad creation of /mnt/hd for an hd installation without
	ramdisk.
	support setting /tmp/hdimage in /etc/fstab even if memory is low (not
	using ramdisk).

	* install_any.pm: filtering $o->{printer} for g_auto_install().
	allow installing urpmi on hd install even if low memory (so not using
	ramdisk).

	* diskdrake_interactive.pm: Do not use for loopback of magic partition
	(/tmp/hdimage).

2001/09/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/i386/busybox: hopefully fix the _ problems with busybox 0.60.1

2001/09/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bs.po: updated Bosnian file

	* share/po/uk.po: updated Ukrainian file

2001/09/05  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: use EISA_ID in more cases to have the name
	non-case dependent EISA comparison
	also try EISA ID to auto-detect the monitor (sometimes the EISA ID is
	there, but not the [hv]syncrange

	* Xconfig.pm: fix typos
	non-case dependent EISA comparison
	also try EISA ID to auto-detect the monitor (sometimes the EISA ID is
	there, but not the [hv]syncrange

	* modules.pm: favor tmscsim over AM53C974

	* tools/ddcprobe/ddcxinfos.c: fix for cards giving bad info
	also try EISA ID to auto-detect the monitor (sometimes the EISA ID is
	there, but not the [hv]syncrange

	* standalone/diskdrake: fix function called

2001/09/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/mount.c: reflect scd -> sr here too, /me sucks :-(

2001/09/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/cy.po, share/po/nl.po, share/po/wa.po, share/po/is.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/eo.po, share/po/bs.po, share/po/ro.po,
	share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
	Updated Danish file; updated pot file

2001/09/04  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: fix typo

2001/09/04  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Fitted to the new Foomatic version.
	Fixed bug of spooler change only working when language is English.

2001/09/04  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: fix bad vga= which go for some install.

2001/09/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* network/netconnect.pm: small english change

	* mdk-stage1/probing.c: Compaq mescouilles has changed proc stuff

	* share/rpmsrate: tetex-doc

	* mdk-stage1/mount.c: reflect scd -> sr here too, /me sucks :-(

2001/09/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/cy.po, share/po/nl.po, share/po/wa.po, share/po/is.po,
	share/po/hu.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/eo.po, share/po/ro.po, share/po/bs.po,
	share/po/da.po, share/po/zh_TW.po, share/po/cs.po, share/po/af.po:
	Updated Danish file; updated pot file

	* share/po/ja.po: updated Japanese file

2001/09/04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (add_alias): use "above" instead of "post-install"

	* partition_table.pm: re-add JFS

	* fsedit.pm, common.pm, bootloader.pm: 
	  - don't expand symlinks in grub's menu.lst
	  - better use of /proc/partitions verification

	* detect_devices.pm (getCompaqSmartArray): add yet another location for
	cpqarray location

	* fs.pm: fix typo
	mount ext3 as ext2 during install for speed up

2001/09/04  fcrozat

	* share/rpmsrate: Add plugins for KDE and Mozilla

2001/09/04  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: fix bad vga= which go for some install.

	* pkgs.pm: cleanup to avoid invalid file error.

2001/09/04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (add_alias): use "above" instead of "post-install"

	* fs.pm: mount ext3 as ext2 during install for speed up

	* partition_table.pm: re-add JFS

	* fsedit.pm, common.pm, bootloader.pm: 
	  - don't expand symlinks in grub's menu.lst
	  - better use of /proc/partitions verification

	* detect_devices.pm (getCompaqSmartArray): add yet another location for
	cpqarray location

2001/09/04  yduret

	* my_gtk.pm: emebedded mode fix

	* interactive_gtk.pm, diskdrake.pm: embedded mode fix

2001/09/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: unfuzzy-ise a few things, translate a few things

2001/09/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po: updated Korean file

2001/09/03  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: fix for lvm (non-)creation of devices

2001/09/03  yduret

	* my_gtk.pm, diskdrake.pm: fix Embedded mode

2001/09/03  dam's  <damien@mandrakesoft.com>

	* network/network.pm: added timeout in resolv.conf

2001/09/03  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: updated to use new urpmi.cfg format for install_urpmi,
	make sure the directory
	is not given for ftp and http install ($dir).

	* Xconfigurator_consts.pm: added 1920x1440 and 2048x1536.

	* Xconfig.pm: make sure a staling Mouse2 is not present unless it really
	physically exists.

2001/09/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: add axnet_cs to pcmcia category

	* mdk-stage1/probing.c: change `scd' with `sr'

2001/09/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/es.po: updated Spanish file

	* share/po/ko.po: updated Korean file

2001/09/03  Pixel  <pixel@mandrakesoft.com>

	* timezone.pm (ntp_server): also set /etc/ntp/step-tickers

	* fsedit.pm, devices.pm: fix mtab reading and pseudo-device use

	* interactive_gtk.pm: better sizing for combo boxes

	* install_steps_interactive.pm (choosePartitionsToFormat): do not propose
	to propose already formatted
	fat partitions

	* share/list: those files disappeared ??

	* fs.pm: fix for lvm (non-)creation of devices
	(set_default_options): created
	fix mtab reading and pseudo-device use

	* diskdrake.pm (smb_create, nfs_create): make the "New" button work
	(raw_hd_mount_point): fix checking the same mount point
	(try_): fix error displaying

	* partition_table.pm: fix switching to 0x85 extended when
	remove_empty_extended is called

2001/09/03  yduret

	* standalone/net_monitor: sync with new logdrake command line options

2001/09/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bs.po: updated bosnian file
	Added Bosnian file

2001/09/01  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: avoid deleting package from %packages in install() when closing
	fd associated,
	if the open is called again (?), it will cause an invalid file (seems to
	happens
	on some invalid file).

2001/08/31  dam's  <damien@mandrakesoft.com>

	* standalone/draksec: corrected yesno interpretation
	libsafe modification

	* network/netconnect.pm: corrected profil recording for modem

	* standalone/net_monitor: correted typo

	* network/ethernet.pm: corrected zero return when cable configuring

	* any.pm: corrected autologin : no uc anymore

	* network/modem.pm: added domainname2 setting

	* share/logo-mandrake.png: new logo

2001/08/31  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added missing AlwaysCore line for second mouse for
	XF3.

	* mouse.pm: added missing AlwaysCore line for second mouse in XF3.

	* standalone.pm: add option --allow-medium-change to force asking question
	even if --auto is
	given on command line of urpmi, for installing package so that a dialog
	appears.

2001/08/31  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: mures is a fine game, have it at weight "4" under GAMES
	section
	have "numlock" in INSTALL because it's the only package which goes to
	CD#2
	when you unselect all groups, so having it here will allow not changing
	CD
	with this kind of small install

2001/08/31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/uk.po, share/po/es.po: updated Ukrainian
	and Spanish files

	* share/po/sv.po: updated Swedish file
	updated Ukrainian and Spanish files

2001/08/31  siegel

	* share/help_sav.png: not used any more

	* share/po/de.po: updates

	* share/logo-mandrake2.png, share/logo-mandrake_trans.png,
	share/logo-mandrake_sav.png, share/logo-mandrake-Desktop.png: old
	versions => not in use any more

2001/08/31  yduret

	* bootlook.pm: updated code

2001/08/30  dam's  <damien@mandrakesoft.com>

	* network/tools.pm: nicer display

	* standalone/draknet: added use common.pm (can be usefull, eh?)

	* network/network.pm: silently /sbin/ip
	track_network_id only if laptop

2001/08/30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: Updated Danishfile
	updated pot file (I had lost the group descriptions, sorry, they are
	back now)
	moved chinese files to charset independent names

	* share/po/be.po, share/po/sp.po, share/po/zh_CN.po, share/po/pt.po,
	share/po/DrakX.pot, share/po/es.po, share/po/fr.po, share/po/bg.po,
	share/po/ga.po, share/po/sr.po, share/po/de.po, share/po/et.po,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/zh_TW.po, share/po/cs.po, share/po/af.po: updated pot file (I
	had lost the group descriptions, sorry, they are back now)
	moved chinese files to charset independent names

2001/08/30  Pixel  <pixel@mandrakesoft.com>

	* lang.pm (read): it works now

	* help.pm: fixed (was utf8)

	* install_steps_gtk.pm (new): call interactive_gtk::new

	* install_steps.pm, Xconfigurator.pm: disable gpm (in case of serial
	mouse) before service choice

	* pkgs.pm (naughtyServers): update for 8.1

2001/08/30  dam's  <damien@mandrakesoft.com>

	* interactive.pm: corrected icon display

	* my_gtk.pm: new wizard

	* interactive_gtk.pm: corrected wizard mode display height/width

	* standalone/draknet: added draknet client installation

	* network/network.pm: track_network_id only if laptop
	dhcp package installation

	* pixmaps/wiz_default_left.png: new logo

2001/08/30  François Pons  <fpons@mandrakesoft.com>

	* mouse.pm: make sure to update all symlink according to any mouse (max 2)
	probed.
	fix previous fixes on mouse::write_conf

	* standalone/mousedrake: fix previous fix (typo).
	keep mouse specific paramater if user does not change its mouse.
	make sure --auto is not interactive on some part.
	use default value for port device if a serial mouse.

	* printer.pm: fixed foomatic failed (no lo up since ifup lo don't run)

	* Makefile: ugly to make sure standalone/pixmaps is not here when building
	tar-drakxtools.

	* Xconfig.pm: when reading existing configuration for mouse, update
	type|name for second mouse too.
	make sure default to set 3 for nbuttons for getinfoFromXF86Config for
	second
	mouse if this mouse has 3 buttons.

	* Xconfigurator.pm: for single heads mode, no screen id should be set in
	file (or XFree is going
	mad, but he is right, no ?)

	* install_any.pm: if a medium is refused, get rid of it definitively until
	it is accepted again.

2001/08/30  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: have a wait_message during installation of
	bootloader

	* mdk-stage1/pcmcia/pcmcia_probe.c: import new PCI ID's for more PCMCIA
	Controllers, from probe.c-1.54 of pcmcia-cs-3.1.28

2001/08/30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ja.po, share/po/vi.po, share/po/es.po: updated Japanese,
	Spanish and Vietnamese files

2001/08/30  Pixel  <pixel@mandrakesoft.com>

	* diskdrake_interactive.pm: allow LVM on RAID

	* help.pm: fixed (was utf8)

	* any.pm: cleanup

	* pkgs.pm (naughtyServers): update for 8.1

	* lang.pm (read): it works now

	* fs.pm (set_default_options): "ro" for cdroms, "user" for vfat only if
	removable
	media

	* share/po/Makefile: fix utf8 translation of xml file

	* interactive_gtk.pm: fix&cleanup window size

	* tools/Makefile: cleanup unneeded stuff

2001/08/30  siegel

	* share/po/de.po: new german version

2001/08/30  warly

	* share/rpmsrate: add koffice-i18n diald vlan-utils

2001/08/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw, standalone/drakautoinst: quit_global

	* share/po/fr.po: minor fix

2001/08/29  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix language selection

	* c.pm: better error message when function c::foo() is missing

	* rescue/dirs, rescue/make_rescue_img: make it work (do not have the dev
	in /)

2001/08/29  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed if undef encountered in depslist when installing package
	(traversing
	depslist as $depOrder).

2001/08/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw, standalone/drakautoinst: quit_global

	* share/po/fr.po: minor fix

2001/08/29  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix language selection

	* c.pm: better error message when function c::foo() is missing

	* install_steps_gtk.pm (installPackages): have Ok button by default for
	asking for changing CD

	* bootloader.pm (mkbootdisk): cleanup

	* rescue/dirs, rescue/make_rescue_img: make it work (do not have the dev
	in /)

	* devices.pm: remove fd0H1440 and fd1H1440

	* modules.pm: remove "msdos"

2001/08/29  François Pons  <fpons@mandrakesoft.com>

	* mouse.pm: improved write_conf to enable multi-mice if only once mice is
	already defined.

	* standalone/mousedrake: try to merge already existing mouse configuration
	with what has been probed,
	change if mouse is really changed as probe is incomplete.

	* Xconfig.pm: improve getinfoFromXF86Config for mouse parameters.

	* pkgs.pm: fixed if undef encountered in depslist when installing package
	(traversing
	depslist as $depOrder).

2001/08/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw, standalone/drakautoinst: quit_global

	* share/po/fr.po: minor fix

2001/08/29  Pixel  <pixel@mandrakesoft.com>

	* c.pm: better error message when function c::foo() is missing

	* keyboard.pm (loadkeys_files): fixed

	* install_steps_interactive.pm, standalone/localedrake, lang.pm, any.pm,
	Makefile.config: add localedrake (not tested)

	* rescue/make_rescue_img: make it work (do not have the dev in /)
	cleanup, speedup, use mknod for devices

	* install_steps_gtk.pm (installPackages): have Ok button by default for
	asking for changing CD

	* rescue/devices.pl, rescue/list: cleanup, speedup, use mknod for devices

	* bootloader.pm (mkbootdisk): cleanup

	* rescue/dirs: make it work (do not have the dev in /)

	* devices.pm: remove fd0H1440 and fd1H1440

	* modules.pm: remove "msdos"

2001/08/29  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/tools.pm, share/rpmsrate: speedtouch
	configuration

2001/08/29  François Pons  <fpons@mandrakesoft.com>

	* mouse.pm: improved write_conf to enable multi-mice if only once mice is
	already defined.

	* install_steps.pm: add support for mandatory frame buffer support (SiS
	630) need them for XF3 to
	work properly, XF4 does work with it nicely.

	* Xconfigurator.pm: make sure Port entry for wacom is placed first.

	* standalone/mousedrake: try to merge already existing mouse configuration
	with what has been probed,
	change if mouse is really changed as probe is incomplete.

	* Xconfig.pm: improve getinfoFromXF86Config for mouse parameters.

2001/08/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: games

2001/08/29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po, share/po/DrakX.pot, share/po/es.po: updated Danish file

2001/08/29  Pixel  <pixel@mandrakesoft.com>

	* fs.pm, install_any.pm, fsedit.pm, diskdrake.pm: try to better handle
	symlinks device and devfs devices

	* install_steps_interactive.pm, standalone/localedrake, lang.pm, any.pm,
	Makefile.config: add localedrake (not tested)

	* install_steps.pm: no need to have devfs=nomount anymore in root raid
	do not modify fstab options in upgrade

	* keyboard.pm (loadkeys_files): fixed
	fix DISABLE_WINDOWS_KEY state handling (for upgrade), cleanup

	* diskdrake_interactive.pm: try to better handle symlinks device and devfs
	devices
	(main): fix
	(Create): fix typo causing primaryOrExtended to be ignored

	* rescue/devices.pl, rescue/make_rescue_img, rescue/list: cleanup,
	speedup, use mknod for devices

	* c/stuff.xs.pm, detect_devices.pm: better floppy detection/info

2001/08/28  dam's  <damien@mandrakesoft.com>

	* interactive.pm, install2.pm: corrected icon handling

	* services.pm: added cupslpd in printing section

2001/08/28  François Pons  <fpons@mandrakesoft.com>

	* Makefile.config: really fix typo...
	fixed typo.

2001/08/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po: updated Czech file

2001/08/28  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: remove the temporary file /tmp/autoinst.img

	* install_steps.pm, install_steps_interactive.pm: propose to format / and
	/usr even if isFormatted. More generally do not trust isFormatted to
	show which partitions to format

2001/08/28  siegel

	* ChangeLog, keyboard.pm: 
	  - keyboard.pm: write DISABLE_WINDOWS_KEY=no in /etc/sysconfig/keyboard
	if no laptop is detected (= give users the chance to know about the
	existence of this variable).

2001/08/28  yduret

	* standalone/diskdrake: embedded mode nicer

2001/08/28  dam's  <damien@mandrakesoft.com>

	* interactive.pm, install2.pm: corrected icon handling

2001/08/28  François Pons  <fpons@mandrakesoft.com>

	* share/list: added /sbin/e2fsck

	* share/aliases: added fsck.ext2 -> e2fsck (now in list file)
	removed e2fsck.shared as e2fsprogs now provide a shared version instead
	of a
	static one.

	* Makefile.config: really fix typo...
	fixed typo.
	removed reference to e2fsck.shared (now use e2fsck from package which is
	shared
	since 1.23-2mdk).

2001/08/28  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: remove the temporary file /tmp/autoinst.img

2001/08/28  siegel

	* ChangeLog, keyboard.pm: 
	  - keyboard.pm: write DISABLE_WINDOWS_KEY=no in /etc/sysconfig/keyboard
	if no laptop is detected (= give users the chance to know about the
	existence of this variable).

2001/08/28  yduret

	* standalone/diskdrake: embedded mode nicer

2001/08/28  Stefan Siegel  <siegel@mandrakesoft.com>

	* keyboard.pm: write DISABLE_WINDOWS_KEY=no in /etc/sysconfig/keyboard 
	if no laptop is detected (= give users the chance to know about
	the existence of this variable).

2001/08/28  dam's  <damien@mandrakesoft.com>

	* mouse.pm: typo

2001/08/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: default the licence agreement to "Refuse"

	* standalone/drakboot: security fix and various
	move to all_hds stuff

	* c/stuff.xs.pm, bootloader.pm: security fix and various

2001/08/28  warly

	* share/rpmsrate: move libsafe to SERVER_OTHER 2
	added prelude, libsafe...

2001/08/28  yduret

	* standalone/drakxconf: readded dsikdrake
	added new items, remove some old ones

2001/08/27  dam's  <damien@mandrakesoft.com>

	* network/network.pm: corrected hwaddr setting and draknet first window
	display
	corrected typo

	* network/netconnect.pm: corrected hwaddr setting and draknet first window
	display

2001/08/27  dam's  <damien@mandrakesoft.com>

	* network/network.pm: corrected hwaddr setting and draknet first window
	display
	corrected typo

	* network/netconnect.pm: corrected hwaddr setting and draknet first window
	display

2001/08/27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sk.po, share/po/eu.po: updated Basque and slovak files

2001/08/27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: nicer help display

	* share/keyboards.tar.bz2: fix the rights

	* c/stuff.xs.pm (setlocale): do not set LC_NUMERIC

2001/08/27  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: corrected bad window size

	* network/network.pm: make it compile
	corrected hwaddr stuff
	added HWADDR

	* network/tools.pm: corrected internet initscript

	* any.pm, mouse.pm: make it compile
	add_devfslink

2001/08/27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, keyboard.pm: Added "zh_HK" to Chinese in LANGUAGE list.
	Added Latvian keyboard

	* share/keyboards.tar.bz2: Checked and updated xmodmap files for DrakX

	* share/po/sk.po, share/po/eu.po: updated Basque and slovak files

2001/08/27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm: nicer help display

	* diskdrake.pm: use empty hash instead of the raid/loopback array

	* c/stuff.xs.pm (setlocale): do not set LC_NUMERIC

2001/08/27  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: corrected bad window size

	* network/network.pm: added HWADDR

	* network/tools.pm: corrected internet initscript

2001/08/27  François Pons  <fpons@mandrakesoft.com>

	* any.pm, standalone/draknet, network/modem.pm: added Borsenkow Andrej
	patch to support CHAP again.

2001/08/27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, keyboard.pm: Added "zh_HK" to Chinese in LANGUAGE list.
	Added Latvian keyboard

2001/08/27  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: use empty hash instead of the raid/loopback array

2001/08/26  warly

	* share/rpmsrate: add some important packages

2001/08/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakautoinst: require -> use

	* install_any.pm: save the .img file so that multi-cd install won't ask to
	re-enter first cd

2001/08/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po,
	share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
	share/po/no.po, share/po/zh_CN.GB2312.po, share/po/th.po,
	share/po/el.po, share/po/sk.po, share/po/lt.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file

2001/08/26  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile, share/po/.cvsignore: fetch directly the latest
	drakx-help.xml

2001/08/25  Pixel  <pixel@mandrakesoft.com>

	* standalone/drakbug_report: add "rpm -qa"

	* bootlook.pm: fix deprecated call standalone::pkgs_install

	* diskdrake.pm: don't the grab flag propagate everywhere

2001/08/25  dam's  <damien@mandrakesoft.com>

	* install2.pm, steps.pm: icon correction

2001/08/25  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (mount): accept mounting iso9660 filesystem as it should be
	(write_fstab): enable mounting more than one swap :)

	* bootlook.pm: fix deprecated call standalone::pkgs_install

	* install_steps.pm: added the missing security parameter to
	set_default_options

	* diskdrake.pm: don't the grab flag propagate everywhere

2001/08/24  dam's  <damien@mandrakesoft.com>

	* pixmaps/mouse_3b_mini.xpm, pixmaps/mouse_3b+.xpm, pixmaps/mouse_3b.xpm,
	pixmaps/mouse_3b+_mini.xpm: mini pixmaps, and lower color res for normal
	pix

	* standalone/mousedrake: updated mouse test

2001/08/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dietlibc/libstdio/fdglue.c: fix this dietlibc... hope the
	uncompressing of ramdisk will rulz now

	* mdk-stage1/network.c: allow unsetting of automatic mode if not enough
	parameter provided in network steps

	* mdk-stage1/probing.c: 
	  - descr of proc files
	  - fix small typo (segfault or not segfault? that's the question)
	enable install from Compaq Smart Array

	* mdk-stage1/dietlibc/Makefile, mdk-stage1/bzlib/Makefile: use CC rather
	than gcc statically

	* mdk-stage1/tools.c, mdk-stage1/mount.c: enable install from Compaq Smart
	Array

2001/08/24  Pixel  <pixel@mandrakesoft.com>

	* tools/pcmcia_config.patch: update the patch

	* Makefile (test_pms): make perl_checker skip help.pm
	ensure no .orig are generated when the pcmcia patch is applied

	* tools/make_mdkinst_stage2: give a little more free space (esp. for
	russian lang)

	* lang.pm, share/gen_locales.sh: no need for UTF-8/LC_CTYPE

	* share/po/help_xml2pm.pl, share/po/Makefile, help.pm: auto-generates
	help.pm from xml doc done by doc team

2001/08/24  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm: bugfix, speedtouch help

	* standalone/mousedrake: updated mouse test

2001/08/24  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: fixed possible bug (not sorted partition when calling
	mount_part).

	* install_any.pm: fixed hdInstallPath for an hd installation without
	usingRamdisk (not installing
	urpmi in such case).
	updated packages to copy for printerdrake, removed almost obsoletes
	XFree86
	3.3.6 servers (8514, AGX, Mach32, Mach8, Mono, P9000, W32, I128, VGA16,
	3DLabs)
	which means user will have to change CD back to CD#1 if he a such a
	card.
	removed obsolete code for cond_remount and cond_umount and update
	hdInstallPath
	for hd installation.

	* diskdrake_interactive.pm: fixed typo common::usingRamdisk() instead of
	common::useRamdisk().
	take care mount point action is available for the hd installation
	partition only
	if a ramdisk is used (as it can be unmounted).
	use more global isMagicPart instead of isInstallHdPart.
	added real_mntpoint documentation and take care of hd install partition
	for
	available actions.

	* fs.pm: take care of using ram disk to remap mntpoint of hd installation
	partition.
	fixed partition never seen as mounted, added special case for
	real_mntpoint to
	remount magic partition on the right place.

2001/08/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dietlibc/libstdio/fdglue.c: fix this dietlibc... hope the
	uncompressing of ramdisk will rulz now

	* mdk-stage1/automatic.c: revert my auto->interactive patch

	* mdk-stage1/network.c: allow unsetting of automatic mode if not enough
	parameter provided in network steps

	* mdk-stage1/dietlibc/Makefile, mdk-stage1/bzlib/Makefile: use CC rather
	than gcc statically

	* mdk-stage1/tools.c, mdk-stage1/mount.c, mdk-stage1/probing.c: enable
	install from Compaq Smart Array

2001/08/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/locales-skeleton.tar.bz2, share/fonts.tar.bz2, keyboard.pm:
	enabling euro and utf-8 for some languages; added unicode font

2001/08/24  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: remove the cond_umount_hdimage and
	cond_remount_hdimage

	* tools/pcmcia_config.patch: update the patch

	* lang.pm: no need for UTF-8/LC_CTYPE
	(load_mo): if not usingRamdisk, don't try getFile

	* diskdrake_interactive.pm: remove the cond_umount_hdimage and
	cond_remount_hdimage
	(Done): do not write fstab nor ask about it in install

	* fs.pm (mount): allow to mount 'proc' and 'usbdevfs'

	* Makefile: ensure no .orig are generated when the pcmcia patch is applied

	* partition_table.pm (write): do not die when real_mntpoint fs fail to
	unmount/remount, just log
	(write): unmount+remount real_mntpoint before doing the kernel_read

	* share/gen_locales.sh: no need for UTF-8/LC_CTYPE

	* pkgs.pm: fix "invalid file"

2001/08/24  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: speedtouch configuration

	* my_gtk.pm: gtk_create_xpm handles no absolute xpm path

	* pixmaps/mouse_3b+.xpm, pixmaps/mouse_middle.xpm, pixmaps/mouse_3b.xpm:
	added new mouse pixmap for mousedrake

	* network/adsl.pm: bugfix, speedtouch help
	added aliases for speedtouch stuff
	speedtouch configuration
	removed adsl detectioin, once again.

	* standalone/mousedrake: no absolute pixmap reference
	new mousedrake. experimental

	* network/tools.pm: speedtouch configuration
	export write_initscript, correct initscript.

2001/08/24  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: fixed possible bug (not sorted partition when calling
	mount_part).

	* diskdrake_interactive.pm: take care mount point action is available for
	the hd installation partition only
	if a ramdisk is used (as it can be unmounted).
	use more global isMagicPart instead of isInstallHdPart.
	added real_mntpoint documentation and take care of hd install partition
	for
	available actions.

	* install_any.pm: fixed hdInstallPath for an hd installation without
	usingRamdisk (not installing
	urpmi in such case).
	updated packages to copy for printerdrake, removed almost obsoletes
	XFree86
	3.3.6 servers (8514, AGX, Mach32, Mach8, Mono, P9000, W32, I128, VGA16,
	3DLabs)
	which means user will have to change CD back to CD#1 if he a such a
	card.
	removed obsolete code for cond_remount and cond_umount and update
	hdInstallPath
	for hd installation.

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2,
	mdk-stage1/init-data/msgboot.img.bz2: updated with latest 8.1 pictures
	and updated documentation.

	* fs.pm: take care of using ram disk to remap mntpoint of hd installation
	partition.
	fixed partition never seen as mounted, added special case for
	real_mntpoint to
	remount magic partition on the right place.

2001/08/24  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm (write): do not die when real_mntpoint fs fail to
	unmount/remount, just log
	(write): unmount+remount real_mntpoint before doing the kernel_read

	* install_steps.pm: remove the cond_umount_hdimage and
	cond_remount_hdimage

	* diskdrake_interactive.pm: remove the cond_umount_hdimage and
	cond_remount_hdimage
	(Done): do not write fstab nor ask about it in install

	* lang.pm (load_mo): if not usingRamdisk, don't try getFile

	* fs.pm (mount): allow to mount 'proc' and 'usbdevfs'

2001/08/24  siegel

	* share/po/de.po: New & shiny german version

2001/08/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

	* share/po/el.po: updated Greek file

2001/08/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

2001/08/23  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: at_boot connection,resolvconf in profiles

	* standalone/draksec: addedlibsafe option

	* network/adsl.pm: restart network after having tested adsl. experimental

2001/08/23  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: removed unusefull greping when building package
	tree.

2001/08/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: work on GAMES section

2001/08/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/lv.po: updated Latvian file

2001/08/23  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (cond_umount_hdimage): do not unmount /tmp/hdimage if not
	using ramdisk
	(disable_user_view): damned kdmrc moved

	* diskdrake_interactive.pm: cancel at startup will now exit
	ask wether to save fstab
	(part_possible_actions): have "Mount point" first to please fpons

	* fs.pm: keep the freq&passno of /etc/fstab

	* tools/i386/netboot/menu.lst.example,
	tools/i386/netboot/make_boot_network,
	tools/i386/netboot/automatic.para.default: as we now have
	menu.lst.example, i remove automatic.para for more flexibility

	* lang.pm: fix locale support when usingRamdisk

2001/08/22  anoncvs

	* share/po/zh_CN.GB2312.po: * Wed Aug 22 2001 DU Xiaoming
	<dxiaoming@mandrakesoft.com>
	Updated chinese (simplied) translation.

2001/08/22  Pixel  <pixel@mandrakesoft.com>

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2: fix ru KOI8-R

	* network/nfs.pm: pleac perl_checker

	* interactive_gtk.pm: more intelligent setting back the selected value in
	the clist and ctree
	(done already for entry)
	  - fix entries editing causing the cursor to go to the end of line
	  - select the text

	* c/stuff.xs.pm, install_steps.pm, pkgs.pm: do init_db inside pkg_inside
	otherwise LOG is closed and rpmlib tries to write in it and ...

2001/08/22  anoncvs

	* share/po/zh_CN.GB2312.po: * Wed Aug 22 2001 DU Xiaoming
	<dxiaoming@mandrakesoft.com>
	Updated chinese (simplied) translation.

2001/08/22  fabman

	* share/po/es.po: updated spanish .po files for DrakX and drakbootdisk

2001/08/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/automatic.c: don't stay automatic for ask_from_entries when
	entries are not given

	* mdk-stage1/tools.c, mdk-stage1/stage1.c, mdk-stage1/cdrom.c,
	mdk-stage1/mount.c, mdk-stage1/lomount.c, mdk-stage1/mount.h,
	mdk-stage1/network.c, mdk-stage1/modules.c, mdk-stage1/disk.c: mount all
	but ramdisk Read Only

2001/08/22  Pixel  <pixel@mandrakesoft.com>

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2: fix ru KOI8-R

	* bootlook.pm: fix typo

	* network/nfs.pm: pleac perl_checker

	* install_steps.pm: do init_db inside pkg_inside otherwise LOG is closed
	and rpmlib tries to write in it and ...
	do not call configurePrinter if no printer is wanted

	* interactive_gtk.pm: more intelligent setting back the selected value in
	the clist and ctree
	(done already for entry)
	  - fix entries editing causing the cursor to go to the end of line
	  - select the text

	* c/stuff.xs.pm, pkgs.pm: do init_db inside pkg_inside otherwise LOG is
	closed and rpmlib tries to write in it and ...

2001/08/22  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: fixed int and float checking which should accept
	negative number (added explicit
	positive too), cleaned code for some perl idioms.

	* install_steps.pm: updated configurePrinter to use foomatic printer
	configuration.

2001/08/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/automatic.c: don't stay automatic for ask_from_entries when
	entries are not given

	* mdk-stage1/tools.c, mdk-stage1/stage1.c, mdk-stage1/cdrom.c,
	mdk-stage1/mount.c, mdk-stage1/lomount.c, mdk-stage1/mount.h,
	mdk-stage1/network.c, mdk-stage1/modules.c, mdk-stage1/disk.c: mount all
	but ramdisk Read Only

2001/08/22  kjx

	* share/po/zh_CN.GB2312.po: review
	review

2001/08/22  Pixel  <pixel@mandrakesoft.com>

	* bootlook.pm: fix typo

	* install_steps_auto_install.pm: don't have formatPartitions interactive
	by default

	* install_steps.pm: do not call configurePrinter if no printer is wanted

2001/08/22  siegel

	* share/po/de.po: new german version

2001/08/21  dam's  <damien@mandrakesoft.com>

	* Makefile: added rpcinfo to the tar
	corrected bad Makefile : rpcinfo-flushed.c comes from tools.

	* standalone/draknet: ergonomy correction

	* network/tools.pm: corrected qq bug
	corrected bug

	* standalone/net_monitor: log updatede
	removed memoty leak
	time connection label

2001/08/21  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: moved installation code of foomatic (only)
	if a printer may be chosen.

	* install_any.pm: fixed hd installation for urpmi.

	* printerdrake.pm: slight rewrite of some perl idioms.

2001/08/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po: updated Walloon file
	updated pot file

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
	share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: updated pot file

2001/08/21  Pixel  <pixel@mandrakesoft.com>

	* share/rpmsrate: add telnet-client-krb5 and ftp-client-krb5

	* install_steps.pm: try to fix umount/remounting /tmp/hdimage in hd
	install

	* Makefile, share/po/Makefile: check presence of '$' in DrakX.pot

	* fs.pm (read_fstab): don't expand symlink if the link goes in a directory

	* install_any.pm: cleanup

	* install_steps_interactive.pm: fix '$' in i18n message

2001/08/21  siegel

	* share/po/de.po: new german version

2001/08/21  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor: removed memoty leak
	time connection label

	* network/tools.pm, network/modem.pm, network/netconnect.pm,
	network/ethernet.pm, network/isdn.pm: generik internet initscript, planq
	the children again

	* network/adsl.pm: speedtouch config
	generik internet initscript, planq the children again

2001/08/21  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed hd installation for urpmi.

2001/08/21  kjx

	* share/po/zh_CN.GB2312.po: review

2001/08/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file

2001/08/21  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: fix spelling error

	* install_any.pm: cleanup
	install hotplug if usb (i kept usbd just in case)

	* diskdrake_interactive.pm (Create): force no sorting on filesystems,
	editable mount points

	* install_steps.pm: try to fix umount/remounting /tmp/hdimage in hd
	install

	* Makefile, share/po/Makefile: check presence of '$' in DrakX.pot

	* install_steps_interactive.pm: fix '$' in i18n message

	* fs.pm (read_fstab): don't expand symlink if the link goes in a directory
	umask=0 only if security level < 3

2001/08/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssUsers: Have NETWORKING_DNS in "Internet station" (was
	nowhere)

2001/08/20  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: basic nfs handling in drakx
	fix bug 4257

	* detect_devices.pm (raidAutoStart): fix for when kmod is there

	* fsedit.pm: try a stronger matching technique for parsing /proc/mdstat
	with devfs

	* diskdrake_interactive.pm, install_any.pm, install_steps.pm: try harder
	to umount /tmp/hdimage only when needed

	* Makefile.drakxtools, Makefile, tools/rpcinfo-flushed.c, network/nfs.pm,
	tools/.cvsignore, tools/Makefile, diskdrake.pm: basic nfs handling in
	drakx

2001/08/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssUsers: Have NETWORKING_DNS in "Internet station" (was
	nowhere)

2001/08/20  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator_consts.pm: add weird options for NeoMagic NM2160 (request
	of Alex Hulse <axh0@aber.ac.uk> on cooker)

	* detect_devices.pm (raidAutoStart): fix for when kmod is there

	* diskdrake.pm: remove test code

	* fs.pm: fix bug 4257

	* fsedit.pm: try a stronger matching technique for parsing /proc/mdstat
	with devfs

	* install_steps.pm, diskdrake_interactive.pm, install_any.pm: try harder
	to umount /tmp/hdimage only when needed

	* interactive_gtk.pm (wait_message_nextW): fix previous text == new text
	causing no
	expose_event causing dead loop

2001/08/19  Pixel  <pixel@mandrakesoft.com>

	* diskdrake_interactive.pm: save fstab on exit

	* fsedit.pm: various typos fix

	* install_steps.pm: rename isCdNotEjectable in usingRamdisk, ensure no
	files are removed unless we're in ramdisk
	make the devfs= mount or nomount choice based on raid-based root work

	* standalone/diskdrake: rename isCdNotEjectable in usingRamdisk, ensure no
	files are removed unless we're in ramdisk
	fix diskdrake requiring gtk
	add some test code

	* fs.pm: rename isCdNotEjectable in usingRamdisk, ensure no files are
	removed unless we're in ramdisk
	various typos fix

	* install_steps_interactive.pm, common.pm, install2.pm, install_any.pm,
	lang.pm, pkgs.pm: rename isCdNotEjectable in usingRamdisk, ensure no
	files are removed unless we're in ramdisk

2001/08/19  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: major fs.pm rework + adaptation to it
	don't show nfs/smb/removable in install
	basic smb handling

	* network/smb.pm: basic smb handling

	* install_steps.pm: rename isCdNotEjectable in usingRamdisk, ensure no
	files are removed unless we're in ramdisk
	make the devfs= mount or nomount choice based on raid-based root work
	disable supermount for the moment
	major fs.pm rework + adaptation to it

	* install_steps_interactive.pm, lang.pm: rename isCdNotEjectable in
	usingRamdisk, ensure no files are removed unless we're in ramdisk
	simplify

	* standalone/diskdrake: rename isCdNotEjectable in usingRamdisk, ensure no
	files are removed unless we're in ramdisk
	fix diskdrake requiring gtk
	add some test code
	major fs.pm rework + adaptation to it

	* install_any.pm: rename isCdNotEjectable in usingRamdisk, ensure no files
	are removed unless we're in ramdisk
	major fs.pm rework + adaptation to it

	* partition_table.pm: remove JFS from @important_types (too broken for the
	moment)
	remove isSupermount (was unused)

	* common.pm, install2.pm, pkgs.pm: rename isCdNotEjectable in
	usingRamdisk, ensure no files are removed unless we're in ramdisk

	* interactive_gtk.pm (create_ctree): fix focusing (the assumption number
	of leaves = number of lines is dumb)

	* fsedit.pm: various typos fix
	major fs.pm rework + adaptation to it

	* bootlook.pm, standalone/drakboot: major fs.pm rework + adaptation to it

	* fs.pm: rename isCdNotEjectable in usingRamdisk, ensure no files are
	removed unless we're in ramdisk
	various typos fix
	major fs.pm rework + adaptation to it
	cleanup
	basic smb handling

	* diskdrake_interactive.pm: save fstab on exit
	major fs.pm rework + adaptation to it

2001/08/18  Pixel  <pixel@mandrakesoft.com>

	* fs.pm: basic nfs/smb handling in diskdrake
	fixes and function prototype removing

	* diskdrake.pm: basic nfs/smb handling in diskdrake
	nicer mount options code (for autofs and supermount)

	* install_steps.pm: oops, i inverted devfs=nomount and devfs=mount

	* interactive_gtk.pm: fix bug in box's height use

	* partition_table.pm, any.pm: fixes and function prototype removing

	* interactive.pm: readd the sorting based on size when no sorting is
	precised

	* my_gtk.pm (n_line_size): bigger spacing for 'various'

	* standalone/diskdrake, diskdrake_interactive.pm, fsedit.pm: basic nfs/smb
	handling in diskdrake

2001/08/18  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm (n_line_size): bigger spacing for 'various'
	enhance look, fix ask_fileW

	* fs.pm: basic nfs/smb handling in diskdrake
	fixes and function prototype removing
	(write_fstab): add notail for reiserfs partitions in any case
	cleanup mounting options parsing

	* diskdrake.pm: basic nfs/smb handling in diskdrake
	nicer mount options code (for autofs and supermount)
	big renaming of ask_from_entries_refH in ask_from and
	ask_from_entries_refH_powered in ask_from_
	cleanup mounting options parsing

	* raid.pm: update the raid size as it should be

	* diskdrake_interactive.pm: basic nfs/smb handling in diskdrake
	less verbose resize_reiserfs
	update the raid size as it should be
	big renaming of ask_from_entries_refH in ask_from and
	ask_from_entries_refH_powered in ask_from_

	* fsedit.pm: basic nfs/smb handling in diskdrake
	update the raid size as it should be

	* network/tools.pm: fix typo
	big renaming of ask_from_entries_refH in ask_from and
	ask_from_entries_refH_powered in ask_from_

	* partition_table.pm: fixes and function prototype removing

	* install_steps_interactive.pm, standalone/drakautoinst, proxy.pm,
	install_interactive.pm, network/ethernet.pm, interactive_http.pm,
	printerdrake.pm, Xconfigurator.pm, network/netconnect.pm,
	network/network.pm, interactive_newt.pm, network/modem.pm: big renaming
	of ask_from_entries_refH in ask_from and ask_from_entries_refH_powered
	in ask_from_

	* standalone/diskdrake: basic nfs/smb handling in diskdrake

	* any.pm: fixes and function prototype removing
	big renaming of ask_from_entries_refH in ask_from and
	ask_from_entries_refH_powered in ask_from_

	* interactive_gtk.pm: fix bug in box's height use
	better radiobox keyboard handling
	big renaming of ask_from_entries_refH in ask_from and
	ask_from_entries_refH_powered in ask_from_
	enhance look, fix ask_fileW

	* interactive.pm: readd the sorting based on size when no sorting is
	precised
	big renaming of ask_from_entries_refH in ask_from and
	ask_from_entries_refH_powered in ask_from_

	* install_steps.pm: oops, i inverted devfs=nomount and devfs=mount
	do not use devfs with root software raid

2001/08/18  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: fix pass $all_hds->{hds} instead of
	$all_hds

2001/08/18  siegel

	* share/po/de.po: new german version

	* standalone/drakgw, bootlook.pm, network/ethernet.pm, install_any.pm,
	network/network.pm, raid.pm: fixed i18n

	* printerdrake.pm: i18n fixes

2001/08/17  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm: use diskdrake_interactive instead of diskdrake

	* standalone/interactive_http/interactive_http.cgi: fix typo
	restrict the progs callable to a few one.

	* standalone/interactive_http/index.html.pl,
	standalone/interactive_http/index.html: autogenerate index.html

	* fs.pm, diskdrake_interactive.pm, diskdrake.pm: add mount options choice
	(with IA-like stripping of unused options)

	* c/stuff.xs.pm: is_ext3 is needed in standalone
	Xtest not needed in standalone

	* c/Makefile.PL: is_ext3 is needed in standalone

	* standalone/interactive_http/miniserv.init,
	standalone/interactive_http/Makefile: restrict the progs callable to a
	few one.

	* Makefile.drakxtools: fix po not build, add interactive_http in DIRS

	* modules.pm: move back sunhme in sparc only

2001/08/17  dam's  <damien@mandrakesoft.com>

	* interactive_gtk.pm: no scrollbar if list <= 10 and the list is alone

	* interactive.pm, install2.pm: removed no_incon

	* standalone/net_monitor: added no internet connection configured label on
	button

	* network/netconnect.pm, network/ethernet.pm: corrected connection script
	creation

2001/08/17  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm: use diskdrake_interactive instead of diskdrake
	a hell lot of cleanup/rewrite:
	* diskdrake_interactive created, diskdrake is now interactive aware
	* added some documentation about the structure used for partitioning
	* all_hds now contain the various hds, lvm, raid
	* cleanup the isLVM, isRAID and alike functions
	* field {type} in detect_devices is now {media_type}
	* detect_devices::floppies is now floppies_dev
	* removed old function prototypes

	* fs.pm, diskdrake.pm: add mount options choice (with IA-like stripping of
	unused options)
	a hell lot of cleanup/rewrite:
	* diskdrake_interactive created, diskdrake is now interactive aware
	* added some documentation about the structure used for partitioning
	* all_hds now contain the various hds, lvm, raid
	* cleanup the isLVM, isRAID and alike functions
	* field {type} in detect_devices is now {media_type}
	* detect_devices::floppies is now floppies_dev
	* removed old function prototypes

	* install_steps_interactive.pm, install_steps_auto_install.pm,
	install2.pm, partition_table.pm, loopback.pm, raid.pm, bootlook.pm,
	standalone/diskdrake, install_any.pm, install_steps.pm, fsedit.pm,
	any.pm, detect_devices.pm, partition_table_raw.pm, bootloader.pm: a hell
	lot of cleanup/rewrite:
	* diskdrake_interactive created, diskdrake is now interactive aware
	* added some documentation about the structure used for partitioning
	* all_hds now contain the various hds, lvm, raid
	* cleanup the isLVM, isRAID and alike functions
	* field {type} in detect_devices is now {media_type}
	* detect_devices::floppies is now floppies_dev
	* removed old function prototypes

	* diskdrake_interactive.pm: add mount options choice (with IA-like
	stripping of unused options)
	(part_possible_actions): have possible actions sorted the way we want
	(Type): fix ext2->ext3 detection
	a hell lot of cleanup/rewrite:
	* diskdrake_interactive created, diskdrake is now interactive aware
	* added some documentation about the structure used for partitioning
	* all_hds now contain the various hds, lvm, raid
	* cleanup the isLVM, isRAID and alike functions
	* field {type} in detect_devices is now {media_type}
	* detect_devices::floppies is now floppies_dev
	* removed old function prototypes

	* modules.pm: move back sunhme in sparc only

2001/08/17  Till Kamppeter <till@mandrakesoft.com>

	* share/rpmsrate: Corrected listing of packages for printing in 'INSTALL'
	section.

2001/08/17  warly

	* share/rpmsrate: add package needed by the install in INSTALL
	remove shapecfg and gpa

2001/08/16  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed bug of CUPS not being installed during
	installation

2001/08/16  Pixel  <pixel@mandrakesoft.com>

	* install2.pm, install_any.pm: add remove_unused to have more place for mo
	files

2001/08/16  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed bug of CUPS not being installed during
	installation

2001/08/16  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: add remove_unused to have more place for mo files
	(getAndSaveAutoInstallFloppy): fix a missing del_loop which caused the
	unmounting at end of install to fail

	* install2.pm: add remove_unused to have more place for mo files

2001/08/16  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed setup dialog for the "postpipe" connection type

2001/08/16  warly

	* share/rpmsrate: add package needed by the install in INSTALL

2001/08/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/fr.po: updated French file

	* share/po/sk.po: updated Slovak file

	* lang.pm: Added explicit setting of XFree86 internal XIM for Thai

2001/08/16  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (getAndSaveAutoInstallFloppy): fix a missing del_loop
	which caused the
	unmounting at end of install to fail

2001/08/16  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Fixed setup dialog for the "postpipe" connection type

2001/08/16  warly

	* share/rpmsrate: add package needed by the install in INSTALL
	add kernel in INSTALL
	s/DrakConf/drakconf/

2001/08/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po, share/po/it.po, share/po/id.po: updated Indonesian,
	Italian and Korean files

	* share/po/sr.po, share/po/sp.po, share/po/tr.po: updated Turkish and
	Serbian files

2001/08/15  Pixel  <pixel@mandrakesoft.com>

	* standalone/diskdrake: oops reverting modifs commited by error
	fix XkbOptions handling

	* standalone/keyboarddrake: fix XkbOptions handling

2001/08/15  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm, printerdrake.pm: Let the "Options" button only appear when
	the queue is Foomatic or with PPD (CUPS)

2001/08/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po, share/po/it.po: updated Indonesian, Italian and Korean
	files

	* share/po/es.po: updated spanish and Indonesian files

	* share/po/id.po: updated Indonesian, Italian and Korean files
	updated spanish and Indonesian files

2001/08/14  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor: added options

2001/08/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: oops, fix type of installing X or not
	  - fix choice of packages when auto install

	* Makefile.config: add drakautoinst in drakxtools standalone binaries

	* install_steps_interactive.pm, install2.pm: 
	  - fix createBootdisk with auto
	  - fix setupBootloader with auto
	  - fix behaviour of draknet when auto-install
	  - remove auto flag when error-in-step

	* install_steps.pm, network/netconnect.pm: 
	  - fix behaviour of draknet when auto-install
	  - remove auto flag when error-in-step

	* Xconfigurator.pm: fix automatic configuration

2001/08/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Swedish file

2001/08/14  Pixel  <pixel@mandrakesoft.com>

	* devices.pm: add number-only device-name handling (eg: "801" is "sda1")

	* interactive_gtk.pm, interactive.pm: 
	  - small fixes (esp. gtk sensitive handling)
	  - add ask_file
	  - add "gtk" preference field

	* my_gtk.pm: remove ask_file (was unused)

	* http.pm: cleanup to please perl_checker

	* Makefile (TAGS): add MDK/Common files

	* services.pm: cleanup (it was working, but wasn't nice)

2001/08/14  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: corrected activation button

2001/08/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: oops, fix type of installing X or not
	  - fix choice of packages when auto install

	* Makefile.config: add drakautoinst in drakxtools standalone binaries

	* install_steps_interactive.pm, install2.pm: 
	  - fix createBootdisk with auto
	  - fix setupBootloader with auto
	  - fix behaviour of draknet when auto-install
	  - remove auto flag when error-in-step

	* install_steps.pm, network/netconnect.pm: 
	  - fix behaviour of draknet when auto-install
	  - remove auto flag when error-in-step

	* Xconfigurator.pm: fix automatic configuration

2001/08/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po: updated Swedish file

2001/08/14  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: fix typo?

2001/08/14  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Transfer queues non-interactively when switching
	between LPD and LPRng.

2001/08/14  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: corrected activation button

2001/08/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps.pm, install_steps_interactive.pm, install2.pm,
	network/netconnect.pm: 
	  - fix behaviour of draknet when auto-install
	  - remove auto flag when error-in-step

	* Xconfigurator.pm: fix automatic configuration

	* install_any.pm: 
	  - fix choice of packages when auto install

2001/08/14  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: fix typo?

2001/08/14  Till Kamppeter <till@mandrakesoft.com>

	* printer.pm: Removed superfluous lines.

	* printerdrake.pm: Transfer queues non-interactively when switching
	between LPD and LPRng.
	Wait message for queue transfer, manufacturer name bugfix

2001/08/13  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* tools/i386/netboot/stage2.eepro100: Add eepro100 grub stage.
	Removing old version of eepro100 (no stage1).

	* tools/i386/netboot/stage1.eepro100: Add eepro100 grub stage.

2001/08/13  dam's  <damien@mandrakesoft.com>

	* interactive.pm: corrected 'no icon'

	* network/adsl.pm, network/netconnect.pm: adsl autodetection activated
	(planq the children)

2001/08/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakautoinst: ouch! use lib from /usr/lib/libDrakX, rather
	than from ..
	initial revision for drakautoinst
	  - put %installSteps in a separate package (steps.pm) (for drakxtools)
	  - use additional fields {auto} and {noauto}, by step, to ease
	interactive auto install and oem stuff
	  - in install2.pm, perform each step either from the interactive class
	or from install_steps, according to the {auto} flag
	  - id, tell each step to not try to be automatic if {noauto}
	  - in the install, have auto install bootdisk created in install_any so
	we can always write a bootdisk (from install_steps) for further use from
	drakautoinst in standalone
	  - interactive version of install_steps_auto_install is now inheriting
	from the interactive class, so we can click on a previous automatic step
	and have it interactively during an interactive auto install

	* install_steps.pm, install_steps_interactive.pm,
	install_steps_auto_install.pm, install2.pm, steps.pm, install_any.pm:
	initial revision for drakautoinst
	  - put %installSteps in a separate package (steps.pm) (for drakxtools)
	  - use additional fields {auto} and {noauto}, by step, to ease
	interactive auto install and oem stuff
	  - in install2.pm, perform each step either from the interactive class
	or from install_steps, according to the {auto} flag
	  - id, tell each step to not try to be automatic if {noauto}
	  - in the install, have auto install bootdisk created in install_any so
	we can always write a bootdisk (from install_steps) for further use from
	drakautoinst in standalone
	  - interactive version of install_steps_auto_install is now inheriting
	from the interactive class, so we can click on a previous automatic step
	and have it interactively during an interactive auto install

2001/08/13  Pixel  <pixel@mandrakesoft.com>

	* install_steps_auto_install.pm, install2.pm, install_any.pm, steps.pm:
	auto_inst enhancements

	* install_steps_interactive.pm, standalone/XFdrake, install_steps.pm,
	Xconfigurator.pm: really use a class_discard for Xconfigurator::main

	* devices.pm: add /dev/hd[mt] handling

2001/08/13  siegel

	* share/po/de.po: new german version

2001/08/13  Till Kamppeter <till@mandrakesoft.com>

	* printerdrake.pm: Automatic transfer of queues when changing the spooler.
	Update printer queue list when exiting during install, so that the
	"Summary" entry is correct.
	When one sayd "No" on the test page, the modify dialog was not pointing
	to the current printer

	* printer.pm: Automatic transfer of queues when changing the spooler.
	The photo test page was not printed during installation.

	* interactive.pm: Tree lists are sorted again now.

2001/08/13  yduret

	* standalone/drakxconf: removed diskdrake from the choice

2001/08/12  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: longer timeout

2001/08/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fix ortograf typo

2001/08/12  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile: po->mo is no longer gonna be nasty with us

	* interactive_gtk.pm: clean the nice till fix

	* tools/cvslog2changelog.pl: add till

	* Makefile: ensure locales.tar.bz2 in perl-install/share is build
	po->mo is no longer gonna be nasty with us

2001/08/12  Till Kamppeter <till@mandrakesoft.com>

	* interactive.pm: Lists get only sorted when the "sort" option is given.

	* printer.pm, printerdrake.pm: Check files before checking RPM database =>
	Acceleration, waiting windows

2001/08/11  dam's  <damien@mandrakesoft.com>

	* share/themes.rc, share/logo-mandrake.png, share/themes-mdk.rc,
	share/themes/mdk-bg.png: new theme for beta

	* share/theme-editor.pl: updated
	now works.

2001/08/11  tkamppeter

	* printer.pm, printerdrake.pm: Restructuring continued and debugged

2001/08/10  dam's  <damien@mandrakesoft.com>

	* share/theme-editor.pl: added theme editor

	* network/tools.pm: corrected password file substitution

	* network/ethernet.pm: remove Data::Dumper

	* network/netconnect.pm: added spped and timeout handling for isdn

	* any.pm: corrected autologin question

	* network/isdn.pm: tomeout option deactivated.

	* standalone/draknet: corrected internet cnfiguration pop up, and some
	other studds
	ifup/down ethx, anew pixmap for list

	* my_gtk.pm: removed Datta::Dump use

	* pixmaps/eth_card_mini2.png: added

2001/08/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: small font fix

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/ga.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/cy.po, share/po/nl.po, share/po/ja.po,
	share/po/wa.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
	share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po, share/po/pl.po,
	share/po/fi.po, share/po/no.po, share/po/zh_CN.GB2312.po,
	share/po/th.po, share/po/el.po, share/po/sk.po, share/po/lt.po,
	share/po/ar.po, share/po/sl.po, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: updated pot file

	* share/po/bg.po: updated Bulgarian file
	updated pot file

2001/08/10  yduret

	* bootlook.pm: corrected vnew usage (thx gc)

2001/08/09  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: added missing use
	added pixmap for eth. Some factorisation

	* network/tools.pm: added useless function type2interface for future use

	* my_gtk.pm: added gtkbuttonset, and corrected scrollbar height for
	standalone mode.

	* network/isdn.pm: labels corrections

2001/08/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/tinyfirewall, standalone/printerdrake, standalone/mousedrake,
	standalone/drakxservices, standalone/net_monitor, standalone/draknet,
	standalone/drakproxy, standalone/XFdrake, standalone/keyboarddrake,
	standalone/drakxconf, standalone/adduserdrake, standalone/livedrake,
	standalone/drakboot, standalone/draksec: use vnew the right way
	everywhere

	* standalone/drakgw: use vnew the right way everywhere
	  - if package installs fail, redo one by one to know which one failed
	  - try to not end up with a failing configuration file, if program is
	brutally stopped
	  - if unrecognized config file, don't fail, rather ignore it and
	proceed
	  - run dhcpd_update feature (if present) after setup of dhcp server

	* share/rpmsrate: put traceroute in network client also, for claudio

2001/08/09  Pixel  <pixel@mandrakesoft.com>

	* standalone.pm, install_any.pm: rename interactive_pkgs in
	pkgs_interactive

2001/08/09  siegel

	* standalone/interactive_http/miniserv.logrotate,
	standalone/interactive_http/Makefile: Added logrotate for
	"/var/log/drakxtools_http.log"

2001/08/09  tkamppeter

	* printer.pm, printerdrake.pm: New structure for queue modification,
	general structure clean-up

2001/08/09  yduret

	* bootlook.pm: readded in->do_pkg->install (i sux)
	rewrite in a more drakx fashion

	* my_gtk.pm: added gtkset_sensitive in wrapper..

2001/08/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file

2001/08/08  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: typo
	makes interactive_pkgs stuff work
	add interactive_pkgs stuff

	* Makefile: skip module CGI in test_pms (perl_checker)

	* fsedit.pm (check_mntpoint): remove /root from directories that "should
	remain within the root filesystem"

	* proxy.pm, network/ethernet.pm, network/isdn.pm, tinyfirewall.pm,
	printerdrake.pm, standalone/drakgw, standalone/draknet,
	network/tools.pm, bootlook.pm, standalone.pm, standalone/drakproxy,
	standalone/XFdrake, network/netconnect.pm, standalone/adduserdrake,
	network/adsl.pm, network/network.pm, printer.pm, network/modem.pm: add
	interactive_pkgs stuff

	* install_steps_interactive.pm: installing foomatic before doing anything
	about printer
	add interactive_pkgs stuff

	* Xconfigurator.pm, any.pm: makes interactive_pkgs stuff work
	add interactive_pkgs stuff

	* install_any.pm (remove, remove_nodeps): fix typo
	makes interactive_pkgs stuff work
	add interactive_pkgs stuff

2001/08/08  tkamppeter

	* install_steps_interactive.pm: Installation fitted to new printerdrake

	* printer.pm: Different choosable test pages available now
	Corrected init script calls in the (start|stop|restart)_service
	functions

	* printerdrake.pm: Different choosable test pages available now
	Removed superfluous line in install_spooler function

2001/08/08  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (naughtyServers): add drakxtools-http

2001/08/07  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor: nex features

	* network/netconnect.pm: removed debugging message

	* network/isdn.pm: corrected pkgs use -> require

	* my_gtk.pm: added gtkset_relief

	* pixmaps/network.png, pixmaps/draknet_step.png: added

2001/08/07  Pixel  <pixel@mandrakesoft.com>

	* pixmaps/network.png, pixmaps/draknet_step.png: re-adding with -kb
	removing for re-adding with -kb

2001/08/07  tkamppeter

	* printer.pm, printerdrake.pm: Automatic installation of all needed
	packages

2001/08/07  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: corrected label

	* network/netconnect.pm: removed debugging message

	* standalone/net_monitor: nex features
	added color choice
	lot of improvments

	* network/isdn.pm: corrected pkgs use -> require

	* my_gtk.pm: added gtkset_relief

	* pixmaps/network.png, pixmaps/draknet_step.png: added

2001/08/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/tools.c: say that it's a data read error, when we can't load
	the ramdisk

	* mdk-stage1/Makefile.common, mdk-stage1/bzlib/bzlib.h: don't use system
	wide bzlib.h but our own provided one

2001/08/07  Pixel  <pixel@mandrakesoft.com>

	* rescue/tree/etc/issue: fix distrib number

	* interactive.pm: adding http feature, mainly for standalone tools

	* standalone/miniserv.pem, standalone/miniserv.pl: Initial revision
	import

	* standalone/interactive_http/miniserv.pl: add interactive_http
	Initial revision

	* resize_fat/main.pm: fix

	* partition_table.pm: nicer names for journalised fs

	* Makefile.drakxtools, standalone/interactive_http/miniserv.init,
	standalone/interactive_http/index.html,
	standalone/interactive_http/interactive_http.cgi,
	standalone/interactive_http/miniserv.conf,
	standalone/interactive_http/miniserv.pam,
	standalone/interactive_http/miniserv.users, Makefile,
	standalone/interactive_http/Makefile: add interactive_http

	* interactive_http.pm, standalone/interactive_http.cgi: add
	interactive_http
	adding http feature, mainly for standalone tools

	* share/diskdrake.rc: have every journalised in darkred

	* c/stuff.xs.pm: add S_IFIFO

	* standalone/interactive_http/miniserv.pem: Initial revision

2001/08/06  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: debugging, profile coding, isdn 128 debugging
	corrected gtkradio : shift instead of pop

	* interactive_gtk.pm, install_steps_gtk.pm: corrected gtkradio : shift
	instead of pop

	* network/netconnect.pm, network/ethernet.pm, network/isdn.pm: debugging,
	profile coding, isdn 128 debugging

2001/08/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/i386/busybox: try a busybox with better globbing under the SHELL

2001/08/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/de.po: Updates to German file by Peer Dunker <peer46@gmx.net>

	* share/po/vi.po: updated Vietnamese file

2001/08/06  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pm: kernel_arch removed

	* fsedit.pm (@suggestions_mntpoints): remove /root (tx2gc)

	* interactive_gtk.pm, interactive_newt.pm: cleanup, functions already
	defined in interactive

2001/08/06  yduret

	* tinyfirewall.pm: use MDK::Common;
	use network::netconnect;

	* standalone/drakgw: use MDK::Common;
	use network::netconnect; and update functions call from netconnect

2001/08/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eo.po: updated Esperanto file

2001/08/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps_auto_install.pm: switch to gtk install when
	interactiveSteps is defined

2001/08/05  tkamppeter

	* printer.pm, printerdrake.pm: Automatic installation and start of the
	desired printer spooler

2001/08/04  Pixel  <pixel@mandrakesoft.com>

	* share/list: add tune2fs enabling switching from ext2 to ext3

	* fs.pm, fsedit.pm, partition_table.pm: add ext3 support

	* diskdrake.pm: add ext3 support
	(Type): handle lossless switch from ext2 to ext3

	* pkgs.pm: make perl_checker happy

	* c/stuff.xs.pm, c/Makefile.PL: add is_ext3

	* common.pm: moved arch() and alike to MDK::Common::System

2001/08/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (choosePackages): simplify, fix
	setSelectedFromCompssList not called in
	expert even the first_time (especially nasty for auto_installs)

	* fs.pm, partition_table.pm, fsedit.pm: add ext3 support

	* diskdrake.pm: add ext3 support
	(Type): handle lossless switch from ext2 to ext3

	* install_steps_gtk.pm: add the feather feature, but do not enable it

	* interactive_gtk.pm (ask_browse_tree_info_refW): s/wait_msg/wait_message/
	(wait_msg doesn't
	exist anywhere, it must be a fpons typo)

	* pkgs.pm: make perl_checker happy

	* c/stuff.xs.pm, c/Makefile.PL: add is_ext3

	* bootloader.pm: as when lilo is selected, we don't try to install grub,
	just create the
	config file in case it may be useful

	* common.pm: moved arch() and alike to MDK::Common::System

	* partition_table_raw.pm: add yaboot detection

	* install_any.pm, share/rpmsrate: create a new flags "X" selected by
	default, contain what X related packages
	which were in "SYSTEM"

2001/08/04  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (choosePackages): simplify, fix
	setSelectedFromCompssList not called in
	expert even the first_time (especially nasty for auto_installs)

	* install_steps_gtk.pm: add the feather feature, but do not enable it

	* bootloader.pm: as when lilo is selected, we don't try to install grub,
	just create the
	config file in case it may be useful

	* interactive_gtk.pm (ask_browse_tree_info_refW): s/wait_msg/wait_message/
	(wait_msg doesn't
	exist anywhere, it must be a fpons typo)

	* share/rpmsrate, install_any.pm: create a new flags "X" selected by
	default, contain what X related packages
	which were in "SYSTEM"

2001/08/03  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor, network/tools.pm, network/netconnect.pm,
	network/isdn.pm: debugging, 128Kb/s ISDN

	* Makefile.drakxtools, Makefile: added network pms

2001/08/03  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: typo fix
	replace isJfs/isXfs/... with isThisFs("jfs"

	* install_any.pm: replace isJfs/isXfs/... with isThisFs("jfs"
	update_userkderc is now called update_gnomekderc

	* Makefile: better po skipping

	* commands.pm (sync): (re-?)add

	* fs.pm, install_steps_interactive.pm, diskdrake.pm, bootloader.pm:
	replace isJfs/isXfs/... with isThisFs("jfs"

	* fsedit.pm (check_mntpoint): /root should remain within the root
	filesystem

	* install_steps.pm (choosePartitionsToFormat): toFormatUnsure=1 for /usr
	update_userkderc is now called update_gnomekderc

2001/08/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/adsl.c: 
	  - fix problem of clashing user/pass between adsl and ftp/http in case
	of automatic installs
	  - update doc on automatic install parameters (doc/TECH-INFOS)

	* mdk-stage1/doc/TECH-INFOS: 
	  - small update
	  - fix problem of clashing user/pass between adsl and ftp/http in case
	of automatic installs
	  - update doc on automatic install parameters (doc/TECH-INFOS)

2001/08/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

2001/08/02  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm, services.pm, install_interactive.pm,
	network/netconnect.pm, install_any.pm, Xconfigurator.pm: instead of
	testing if ref($in) or ref($o) contains /gtk/, test if interactive_gtk
	is in ISA of the object

	* partition_table.pm, fsedit.pm, diskdrake.pm: JFS support

2001/08/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/adsl.c: 
	  - fix problem of clashing user/pass between adsl and ftp/http in case
	of automatic installs
	  - update doc on automatic install parameters (doc/TECH-INFOS)

	* mdk-stage1/doc/TECH-INFOS: 
	  - small update
	  - fix problem of clashing user/pass between adsl and ftp/http in case
	of automatic installs
	  - update doc on automatic install parameters (doc/TECH-INFOS)

2001/08/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/no.po: updated Norwegian file

2001/08/02  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: instead of testing if ref($in) or ref($o) contains
	/gtk/, test if interactive_gtk is in ISA of the object
	add jfs support

	* install_steps_interactive.pm, services.pm, install_interactive.pm,
	network/netconnect.pm, Xconfigurator.pm: instead of testing if ref($in)
	or ref($o) contains /gtk/, test if interactive_gtk is in ISA of the
	object

	* partition_table.pm: JFS support
	add jfs support

	* fsedit.pm, diskdrake.pm: JFS support

	* tools/ntp_servers.pl, timezone.pm: update ntp servers list

	* fs.pm, share/list: add jfs support

2001/08/02  Pixel  <pixel@mandrakesoft.com>

	* tools/ntp_servers.pl, timezone.pm: update ntp servers list

	* fs.pm, share/list, partition_table.pm, install_any.pm: add jfs support

2001/08/01  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: write_on_text writes in blue instead of black

	* network/isdn.pm: typo
	added de-installation before installateion

	* network/netconnect.pm: translation correction

2001/08/01  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, fsedit.pm: handle auto_allocate_raids for
	auto_installs

	* raid.pm (new): now works with a list of partitions

2001/08/01  tkamppeter

	* printer.pm: Fixed bug in recognizing the printer ID in the Foomatic
	overview.

2001/08/01  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: write_on_text writes in blue instead of black

	* network/isdn.pm: typo
	added de-installation before installateion

	* network/netconnect.pm: translation correction

2001/08/01  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, fsedit.pm: handle auto_allocate_raids for
	auto_installs

	* raid.pm (new): now works with a list of partitions

2001/07/31  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: added splash screen between different
	configurations. Added splash wizard mode
	added intro step for each configuration type.

	* network/tools.pm: corrected ask_connect_now

	* my_gtk.pm: added write_on pixmap : a function to write text on pixma,
	using fonts.

	* network/ethernet.pm: added intro step for each configuration type.

2001/07/31  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_steps_interactive.pm: after copying the auto install floppy,
	sync in case you shall remove the
	floppy right after the LED switches off yet the kernel decides to not
	flush
	everything

	* modules.pm, mdk-stage1/modules_descr.h: have "catc" driver for usbnet
	installs

	* bootloader.pm: load msdos and vfat before mkbootdisk (now using syslinux
	so..)

2001/07/31  Pixel  <pixel@mandrakesoft.com>

	* common.pm (translate): empty string translation is an empty string

	* install_gtk.pm (test_mouse): s/my (.*) = 0 if 0/my $1 if 0/

	* share/rpmsrate: add cpio
	lower gurpmi (5->4)

	* share/gen_locales.sh, share/locales-skeleton.tar.bz2: chineese locale
	support
	better handling of locales

	* Makefile.drakxtools (install): s/cp -rf/cp -rfL/   (-L = --dereference,
	aka always follow symbolic links)

	* install_steps_gtk.pm (installPackages): make $show_advertising a global
	state (for Vincent Meyer)

	* share/Makefile, Makefile: better handling of locales

	* install_steps_auto_install.pm: remove bad prototype

2001/07/30  dam's  <damien@mandrakesoft.com>

	* network/ethernet.pm: added cable internet connection selection
	added internet connection selection in case of multiple configurations

	* network/netconnect.pm: corrected ask_connect_now behaviour
	corrected ask_connect_now
	debug
	added internet connection selection in case of multiple configurations

	* network/adsl.pm, network/tools.pm, network/modem.pm, network/isdn.pm:
	corrected ask_connect_now
	added internet connection selection in case of multiple configurations

2001/07/30  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (getDeps): ensure "depslist.ordered has not same package as
	hdlist files"
	occurs when the hdlists are in fact not available

	* share/locales.tar.bz2.ppc, share/locales.tar.bz2,
	share/locales.tar.bz2.sparc, share/.cvsignore, share/gen_locales.sh,
	share/locales-skeleton.tar.bz2: automatic handling of locales.tar.bz2
	based on installed glibc

	* printer.pm, printerdrake.pm: use MDK::Common
	i wonder why it was included and Till used an older version without
	merging?

	* resize_fat/main.pm: switch to MDK::Common (i wonder why it was not done
	yet)

	* share/rpmsrate: raise rxvt (4->5)
	lower rpmdrake & harddrake (5->4)
	remove rootfiles (unneeded)

	* Makefile: use -excludeMDK::Common::Globals for perl_checker
	automatic handling of locales.tar.bz2 based on installed glibc

2001/07/30  tkamppeter

	* printer.pm, printerdrake.pm: In beginners mode one chooses only the
	printer, not the driver (default driver)

2001/07/30  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm: debug
	added internet connection selection in case of multiple configurations

	* network/adsl.pm, network/tools.pm, network/modem.pm, network/isdn.pm:
	added internet connection selection in case of multiple configurations

	* network/ethernet.pm: added cable internet connection selection
	added internet connection selection in case of multiple configurations

2001/07/30  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/tools.c, mdk-stage1/stage1.c, mdk-stage1/config-stage1.h:
	have a memory limit also for Rescue (different one)

2001/07/30  Pixel  <pixel@mandrakesoft.com>

	* printer.pm, printerdrake.pm: use MDK::Common
	i wonder why it was included and Till used an older version without
	merging?

	* resize_fat/main.pm: switch to MDK::Common (i wonder why it was not done
	yet)

	* share/rpmsrate: raise rxvt (4->5)
	lower rpmdrake & harddrake (5->4)
	remove rootfiles (unneeded)

	* pkgs.pm (getDeps): ensure "depslist.ordered has not same package as
	hdlist files"
	occurs when the hdlists are in fact not available

	* Makefile: use -excludeMDK::Common::Globals for perl_checker
	automatic handling of locales.tar.bz2 based on installed glibc

	* share/locales.tar.bz2.ppc, share/locales.tar.bz2,
	share/locales.tar.bz2.sparc, share/.cvsignore, share/gen_locales.sh,
	share/locales-skeleton.tar.bz2: automatic handling of locales.tar.bz2
	based on installed glibc

2001/07/28  tkamppeter

	* printer.pm, printerdrake.pm: Support for PPD files of PostScript
	printers (when CUPS is used)

2001/07/27  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: fixed undeselectable group when 'Other' sub-tree
	is seen as a package.

	* interactive_gtk.pm: allow ask_browse_tree_info_refW to return 0 on
	cancel (previously always 1).
	added a before leaving code to clean added reference (else it seems to
	bahave
	strangely on changing steps).
	fixed wrong reference to added icons to ask_browse_tree_info_refW.

	* services.pm: allow cancel on services which do not change anything.

	* install_steps_interactive.pm: changed warn dialog to okcancel dialog
	when asking user to insert Boot floppy
	used or Update Modules floppy (die may cause to rerun install else).

2001/07/27  gbeauchesne

	* install_steps_gtk.pm: 
	  - install_steps_gtk.pm (launchX) : create /var/log, if not existent,
	for
	XFree86.log

2001/07/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules.c: allow to escape from Update Modules if you don't
	want to insert an ext2 floppy
	Disk -> Floppy for Update Modules disk

2001/07/27  Stew Benedict  <sbenedict@mandrakesoft.com>

	* share/locales.tar.bz2.ppc, keyboard.pm, help.pm, partition_table.pm,
	Xconfigurator.pm: last of sync with PPC beta mods

2001/07/27  tkamppeter

	* standalone/printerdrake, printer.pm, printerdrake.pm: Printerdrake
	changed to use Foomatic, driver options, spooler change

2001/07/26  dam's  <damien@mandrakesoft.com>

	* network/isdn.pm: added firmware loading/configuration
	not loading the module at detection.

	* standalone/draknet: MDK::common correction

	* modules.pm: added default option id="HiSax" to isdn module

2001/07/26  fcrozat

	* share/po/fr.po: Fix spelling of 'molette'

2001/07/26  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: added blank and updatemodules options to DrakX.

	* bootloader.pm: added prioritary kernel entry 'default' as the kernel
	typically copied from a
	modified blank.img file with a kernel (no initrd.img necessary to
	build).
	This kernel takes precedance over any other kernel.

	* install_steps_interactive.pm: really fixes Diskette with Floppy.
	fix typo as Diskette to Floppy.
	add support for new modules load as described by GG.

	* install_steps.pm: fixed some silly typo and tiny bugs.
	fixed typo as Diskette to Floppy.
	add support for modified blank.img floppy and Update Modules floppy.
	In first case copy kernel to /boot/vmlinuz-default to be taken into
	account by
	bootloader suggestion method.
	In second case, check installed kernel and update any modules listed in
	the
	Update Modules floppy.

2001/07/26  gbeauchesne

	* bootloader.pm: 
	  - Don't set "lba32" on ia64

2001/07/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stage1.c, mdk-stage1/modules.h, mdk-stage1/modules.c: pass
	"--blank" to DrakX when module loading is disabled
	  - add "changedisk" feature
	  - add "updatemodules" feature

	* mdk-stage1/tools.c, mdk-stage1/doc/UPDATEMODULES, mdk-stage1/stage1.h: 
	  - add "changedisk" feature
	  - add "updatemodules" feature

	* mdk-stage1/probing.c: silently load usb controllers

2001/07/25  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: fixed new network organization

	* standalone/net_monitor: updated. Profile handling.

	* network/isdn_consts.pm: updated ISDN detection. Added firmware handling
	and drivers other than hisax

2001/07/25  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed no test (or die test) to void package read on depslist
	(allowed to keep
	package indexing good on multi-arch).
	cleaned code to examine depslist.ordered and packages list.

	* rescue/make_rescue_img: fixed to use perl-MDK-Common.

	* tools/syncrpms: fixed still missing rpmtools:: before a version_compare
	...

2001/07/25  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules_descr.h: small typo

	* mdk-stage1/init.c, mdk-stage1/newt-frontend.c: Use Yahve quoting

2001/07/25  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile (install): build mo's

	* commands: move to MDK::Common, bool->to_bool

	* common.pm: do not export sync, keep it in common (esp. so that it
	doesn't conflict with my_gtk::sync
	(removeXiBSuffix): add TB (tera)

	* share/po/i18n_compssUsers, rescue/make_rescue_img: use MDK::Common

	* share/verify_modules.pl: new common syntax

	* Makefile: 
	  - temporary hack to have at least good UTF-8 based locales (otherwise
	rpmlib segfaults)
	  - touch share/po/*.po, so that they are not rebuilded (pablo takes
	care of them)

	* share/list: add MDK::Common::Globals

	* partition_table_sun.pm, install2.pm, partition_table.pm, commands.pm,
	install_steps.pm, partition_table_raw.pm, partition_table_mac.pm: do not
	export sync, keep it in common (esp. so that it doesn't conflict with
	my_gtk::sync

2001/07/25  Stew Benedict  <sbenedict@mandrakesoft.com>

	* mdk-stage1/modules_descr.h: add decriptions for integrated Apple
	Network/SCSI hardware

2001/07/24  dam's  <damien@mandrakesoft.com>

	* network/isdn_consts.pm, network/netconnect.pm, network/ethernet.pm:
	corrected speed fax + PCI, updated configuration

2001/07/24  daouda

	* bootlook.pm: better runlevel handling -> persistent level choice

2001/07/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/da.po, share/po/cs.po, share/po/af.po: updated pot file

2001/07/24  Pixel  <pixel@mandrakesoft.com>

	* commands.pm: move to MDK::Common, bool->to_bool
	fix syntax
	removed/renamed unused/seldom-used functions
	generalize the use of chomp_ as the functional alternative to chomp (and
	works on lists)

	* swap.pm: temporary hack to have at least good UTF-8 based locales
	(otherwise rpmlib segfaults)
	move to MDK::Common, bool->to_bool

	* unused/scsi.pm, standalone/draknet: generalize the use of chomp_ as the
	functional alternative to chomp (and works on lists)

	* globals.pm, perl2fcalls: 
	  - globals is now MDK::Common::Globals
	  - perl2fcalls is now /usr/bin/perl_checker

	* install_steps_gtk.pm: move to MDK::Common, bool->to_bool
	move to MDK::Common, bool->to_bool
	removed/renamed unused/seldom-used functions

	* common.pm: move to MDK::Common, bool->to_bool
	cleanup (remove unused stuff and dangerous prototypes)
	removed/renamed unused/seldom-used functions
	generalize the use of chomp_ as the functional alternative to chomp (and
	works on lists)

	* network/tools.pm, network/adsl.pm, network/netconnect.pm,
	network/ethernet.pm, network/isdn.pm, network/modem.pm: 
	  - globals is now MDK::Common::Globals
	  - perl2fcalls is now /usr/bin/perl_checker
	move to MDK::Common, bool->to_bool

	* partition_table_dos.pm, partition_table_empty.pm, my_gtk.pm, modparm.pm,
	standalone/keyboarddrake, install2.pm, raid.pm, crypto.pm,
	partition_table_mac.pm, standalone/mousedrake, devices.pm,
	install_steps.pm, resize_fat/main.pm, help.pm, install_interactive.pm,
	install_steps_stdio.pm, loopback.pm, resize_fat/any.pm,
	standalone/drakboot, pkgs.pm, keyboard.pm, Xconfigurator.pm, fs.pm,
	interactive_gtk.pm, standalone/drakxservices, fsedit.pm,
	network/network.pm, interactive_stdio.pm, diskdrake.pm, modules.pm,
	resize_fat/directory.pm, standalone/net_monitor,
	install_steps_auto_install.pm, partition_table_sun.pm, proxy.pm,
	lang.pm, partition_table_bsd.pm, tinyfirewall.pm, standalone/draksec,
	standalone/drakxconf, resize_fat/info_sector.pm,
	standalone/adduserdrake, sbus_probing/main.pm, printer.pm,
	partition_table_raw.pm, install_steps_interactive.pm, install_gtk.pm,
	Xconfigurator_consts.pm, resize_fat/boot_sector.pm, partition_table.pm,
	standalone/livedrake, standalone/drakgw, mouse.pm, lvm.pm,
	interactive.pm, share/list, interactive_newt.pm, install_steps_newt.pm,
	bootloader.pm: move to MDK::Common, bool->to_bool

	* services.pm, printerdrake.pm: move to MDK::Common, bool->to_bool
	removed/renamed unused/seldom-used functions

	* standalone/diskdrake, install_any.pm, any.pm, Xconfig.pm, timezone.pm,
	detect_devices.pm, bootlook.pm: move to MDK::Common, bool->to_bool
	generalize the use of chomp_ as the functional alternative to chomp (and
	works on lists)

	* Makefile: temporary hack to have at least good UTF-8 based locales
	(otherwise rpmlib segfaults)
	move to MDK::Common, bool->to_bool
	move to MDK::Common, bool->to_bool

2001/07/23  dam's  <damien@mandrakesoft.com>

	* modules.pm, network/tools.pm, network/isdn_consts.pm,
	network/netconnect.pm, network/isdn.pm: isdn now works with isdn-light.
	Only 64kb/s and still some debuf stuff to be fixed.

2001/07/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/sk.po: updated Slovak and Croatian files

2001/07/23  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: cleanup

	* c/stuff.xs.pm, Makefile.drakxtools, standalone.pm, common.pm, Makefile,
	tools/make_mdkinst_stage2, lang.pm, share/po/Makefile,
	share/po/.cvsignore: do not use the po's directly. Use mo's through
	gettext

2001/07/22  dam's  <damien@mandrakesoft.com>

	* network/netconnect.pm, network/isdn.pm: updated isdn config, moved
	isdn_data from netconnect_const to isdn_const
	big work on isdn. Not finished

	* modules.pm, standalone/net_monitor, network/tools.pm, detect_devices.pm:
	big work on isdn. Not finished

	* network/netconnect_consts.pm, network/isdn_consts.pm: updated isdn
	config, moved isdn_data from netconnect_const to isdn_const

2001/07/20  François Pons  <fpons@mandrakesoft.com>

	* docs/README.pxe: initial release, dhcpd and tftpd only.

2001/07/20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/el.po: updated Greek file

2001/07/20  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile: externalize the pm 2 pm_.c in fake_c.pl

	* lang.pm: fix
	(load_po): enhance readability

	* share/po/fake_c.pl: cleanup
	externalize the pm 2 pm_.c in fake_c.pl

	* common.pm (translate): basic plural forms handling (not finished)

	* help.pm: fix missing ``"''

	* bootloader.pm: fix
	(install_lilo): order fat partitions first

2001/07/19  dam's  <damien@mandrakesoft.com>

	* share/themes.rc, share/logo-mandrake.png, share/themes-mdk.rc,
	share/help.png: new color

	* network/netconnect.pm: correct bug. thanx to the little stagiaire.

2001/07/19  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: updated with new
	graphic logo for 8.1

2001/07/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/fi.po, share/po/DrakX.pot, share/po/es.po,
	share/po/eo.po, share/po/fr.po, share/po/wa.po, share/po/da.po,
	share/po/de.po, share/po/el.po, share/po/et.po, share/po/hu.po,
	share/po/eu.po: updated Croatian file

2001/07/19  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: updated with new
	graphic logo for 8.1

	* Xconfigurator.pm: fixed problable freeze on pci probe.

2001/07/19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/fi.po, share/po/DrakX.pot, share/po/es.po,
	share/po/eo.po, share/po/fr.po, share/po/wa.po, share/po/da.po,
	share/po/de.po, share/po/el.po, share/po/et.po, share/po/hu.po,
	share/po/eu.po: updated Croatian file

2001/07/19  Pixel  <pixel@mandrakesoft.com>

	* globals.pm: no strict 'refs' instead of 'vars'

	* services.pm: rename ask_install_gtk in ask_install, ask_install is now
	ask_install_simple (obsolete)

	* install_steps_auto_install.pm: fix exit install in graphical
	auto_install's

2001/07/19  Pixel  <pixel@mandrakesoft.com>

	* install_steps_auto_install.pm, install_steps_newt.pm, install2.pm: based
	on Michael Brown <mbrown@fensystems.co.uk> patch:
	  - enables graphical steps in auto_installs for more than gtk
	  - various cleanup

	* globals.pm: no strict 'refs' instead of 'vars'

	* services.pm: rename ask_install_gtk in ask_install, ask_install is now
	ask_install_simple (obsolete)

2001/07/18  mbadaire

	* modules.pm, install_any.pm, bootloader.pm: IA64 adaptation

2001/07/18  Stew Benedict  <sbenedict@mandrakesoft.com>

	* modules.pm, install_steps.pm, install_steps_interactive.pm,
	tools/serial_probe/serial.c, detect_devices.pm, partition_table_mac.pm,
	diskdrake.pm: roll back some changes from PPC beta - OldWorld vs
	NewWorld bootloader
	modem detection on ttyS0, new sound module in 2.4.4

2001/07/17  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: disabled Frame buffer for all S3 cards (hangs with XF4
	and S3 ViRGE on reboot
	with Aurora).

	* Xconfigurator.pm: cleaned and added S3 Inc in the list to disable test
	for these card.

2001/07/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/rpmsrate: removed references to XFree86-ISO8859-{2,9} packages (no
	more used)

	* keyboard.pm: small keyboard changes

2001/07/13  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/po/fr.po: update

2001/07/12  François Pons  <fpons@mandrakesoft.com>

	* fs.pm: fixed wrong examination of fsck return code (exit code 1 says
	fsck succeeded in
	fixing partition and now is ok).

	* run_program.pm: changed exit code of failed exec in rooted to 128
	instead of 1 (may clash with
	exit code of fsck else).

	* any.pm: fixed bug for writing in /etc/sysconfig/desktop file.

2001/07/12  François Pons  <fpons@mandrakesoft.com>

	* interactive.pm: added ask_browse_tree_info and ask_browse_tree_info_refW
	(default).

	* services.pm: reworked to use new service layout for install.

	* install_steps_gtk.pm: use common code for tree with info dialog
	(individual package selection).

	* fs.pm: fixed wrong examination of fsck return code (exit code 1 says
	fsck succeeded in
	fixing partition and now is ok).

	* interactive_gtk.pm: merging common code for individual package selection
	and service to create
	ask_browse_tree_info_refW, added featrures for group icon always
	up-to-date
	(take some memory but not too much, not used if flat model).

	* run_program.pm: changed exit code of failed exec in rooted to 128
	instead of 1 (may clash with
	exit code of fsck else).

	* any.pm: fixed bug for writing in /etc/sysconfig/desktop file.

2001/07/10  Stew Benedict  <sbenedict@mandrakesoft.com>

	* mdk-stage1/init.c, mdk-stage1/Makefile.common: minor mods for PPC build,
	define TIOCSCTTY, Makefile mods

2001/07/09  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: added multiple tries if a transaction of only one package
	fails.

	* install_any.pm: added LDAP support for authentication.

	* install_steps_interactive.pm: added LDAP support for password
	authentication, updated root password window look.

	* bootloader.pm: fixed compilation error.
	removed compilation error, the resolution is not quite good and may be
	reworked :-)

	* help.pm: updated root password help.

2001/07/09  mbadaire

	* bootloader.pm: modify lilo.conf to elilo.conf if arch ia64

	* common.pm: Add IA64 support

2001/07/08  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (suggest): replace "is ia64" with "is not ia64" so that
	boot partition is
	set correctly again

2001/07/08  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (suggest): replace "is ia64" with "is not ia64" so that
	boot partition is
	set correctly again

2001/07/06  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed selected_leaves. change algorithm as previous one can
	still causes dead
	lock and may not reproduce correct list. take care of choice that need
	to be
	examined before else another package may be chosen if choice is not
	satisfied
	when selecting packages.

	* install_any.pm: change all 8 space into a tabulation, this is simple and
	may change visual
	aspect but it gives correct output and filesize by 40%.

2001/07/06  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed selected_leaves. change algorithm as previous one can
	still causes dead
	lock and may not reproduce correct list. take care of choice that need
	to be
	examined before else another package may be chosen if choice is not
	satisfied
	when selecting packages.

	* install_any.pm: change all 8 space into a tabulation, this is simple and
	may change visual
	aspect but it gives correct output and filesize by 40%.

2001/07/06  Pixel  <pixel@mandrakesoft.com>

	* tools/ntp_servers.pl: some workarounds

2001/07/06  Pixel  <pixel@mandrakesoft.com>

	* tools/ntp_servers.pl: some workarounds

2001/07/05  François Pons  <fpons@mandrakesoft.com>

	* keyboard.pm: added DISABLE_WINDOWS_KEY in /etc/sysconfig/keyboard if a
	laptop is detected.

2001/07/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules_descr.h: add usb net descriptions

2001/07/05  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm (file2part): created

	* any.pm: ia64 bootloader configuration adaptations

	* bootloader.pm: typo fix
	ia64 bootloader configuration adaptations

2001/07/04  dam's  <damien@mandrakesoft.com>

	* globals.pm: added error handling

	* network/netconnect.pm, network/ethernet.pm: modularized. It compiles,
	runs, and works for some stuff.
	modularization continuated
	updated CVS:
	----------------------------------------------------------------------
	uses the fantastic global module.
	corrected

	* standalone/draknet: corrected

	* network/tools.pm, network/adsl.pm: modularized. It compiles, runs, and
	works for some stuff.
	updated CVS:
	----------------------------------------------------------------------
	uses the fantastic global module.
	corrected

	* network/network.pm: modularized. It compiles, runs, and works for some
	stuff.
	modularization continuated

	* network/isdn.pm, network/modem.pm: modularized. It compiles, runs, and
	works for some stuff.
	updated CVS:
	----------------------------------------------------------------------
	uses the fantastic global module.

	* docs/net_object_class.fig: updated doc

2001/07/04  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added missing last Card read from Cards+ file.
	allow S3 card to have VideoRam uncommented, fix 86c368 video driver that
	seems
	needing VideoRam too.
	fixed need of video ram if 86c368 and S3 ViRGE.

	* install_any.pm: another too wide string truncated to 80 chars.
	make auto_inst.cfg file no longer than 80 chars wide.

	* install_steps_interactive.pm: added back timezone settings (thanks
	FredC).

2001/07/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/adsl.c: nonsense to exit if interface is not "eth.*"

	* mdk-stage1/newt-frontend.c: very nice things happen when you hardcode
	arrays to a too small value

	* docs/HACKING: update -d in order to get all the directories...

2001/07/04  mbadaire

	* tools/ia64/elilo.efi, tools/specific_arch, share/list.ia64,
	tools/ia64/e2fsck.shared: Ia64 Adaptation

	* install_gtk.pm, share/list.i386, common.pm, share/list.ppc, share/list,
	share/list.alpha, install_steps_gtk.pm, share/list.sparc: Ia64
	adaptation

2001/07/04  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (selected_leaves): fix dead-loop
	(selected_leaves): make it work with loops (eg: mandrake_desk loops with
	control-center resulting on none of them being a leaf)

	* perl2fcalls: check exclude_uses before reporting bad use of "use"
	exclude module globals from use's to look at

	* globals.pm (import): yet another fix
	fix a pb when init is called before another import
	typo correction
	enhanced: shared values are grouped together based on a name
	module to share constant values between modules

	* fsedit.pm: add /boot/efi in suggestions for ia64

	* install_interactive.pm, install_steps.pm: fix typo
	verify a /boot/efi partition exists

	* Makefile, install_any.pm, share/list.ppc, share/list.alpha, share/list,
	share/list.sparc: remove busybox as default shell. Only use it as the
	interactive shell on tty2

2001/07/03  dam's  <damien@mandrakesoft.com>

	* network/adsl.pm, network/netconnect_consts.pm, network/tools.pm,
	network/modem.pm, network/netconnect.pm, network/isdn.pm: network
	subsystem now compiles. Enjoy

	* docs/net_object_class.fig: documentation about net modules structure

2001/07/03  François Pons  <fpons@mandrakesoft.com>

	* network/netconnect.pm: fix another dam's sucks
	fix dam's sucks

	* network/netconnect_consts.pm, Makefile.config: fix dam's sucks

	* standalone/XFdrake: expert is allowed to choose frame buffer.

	* install_steps_interactive.pm: added loadSavePackagesOnFloppy to manage
	package selection file used by
	auto_install too from packages tree directly on floppies.

	* share/floppy.png: updated size to 16x22 to be more aligned.
	for loading/saving packages selection.

	* install_any.pm: modified g_default_packages to be used from package tree
	save on floppy.

	* install_steps_gtk.pm: added Load/Save on floppy.
	added improve choice of package, well not very usefull but asked by
	higher
	people :-)

2001/07/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/rp-pppoe/gui/html/props-basic.png,
	mdk-stage1/rp-pppoe/gui/html/props-options.png,
	mdk-stage1/rp-pppoe/gui/html/props-advanced.png,
	mdk-stage1/rp-pppoe/gui/html/mainwin-busy.png,
	mdk-stage1/rp-pppoe/gui/html/mainwin-nonroot.png,
	mdk-stage1/rp-pppoe/gui/html/mainwin.png,
	mdk-stage1/rp-pppoe/gui/html/props-nic.png: plop

	* modules.pm, mdk-stage1/probing.h, mdk-stage1/.cvsignore,
	mdk-stage1/usb-resource/Makefile,
	mdk-stage1/usb-resource/update-usb-ids.pl, mdk-stage1/Makefile,
	mdk-stage1/usb-resource/.cvsignore, mdk-stage1/probing.c: add support
	for install from USB Network Adapters

2001/07/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/fi.po, share/po/DrakX.pot,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/es.po,
	share/po/fr.po, share/po/sr.po, share/po/de.po, share/po/el.po,
	share/po/et.po, share/po/sk.po, share/po/tr.po, share/po/eu.po,
	share/po/ru.po, share/po/sl.po, share/po/vi.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/wa.po, share/po/da.po,
	share/po/sv.po, share/po/zh_TW.Big5.po: updated Danish file

2001/07/03  Pixel  <pixel@mandrakesoft.com>

	* timezone.pm (configureTimezone): propose a list of NTP servers
	(ntp_server): fix
	add ntp handling

	* fs.pm (mount): fix fsck.ext2'ing
	(mount): add fsck.ext2 before ext2-mounting

	* share/themes/DarkMarble-gloom2.png: re-adding with -kb
	re-adding with -kb

	* pixmaps/user.png: re-adding with -kb
	removing for re-adding with -kb
	re-adding with -kb
	removing for re-adding with -kb

	* share/themes/blueHeart-button4.png, share/reload.png,
	share/themes/focus.png, share/themes/DarkMarble-button3_in.png,
	share/logo-mandrake.png, share/themes/marble3d-check1.png,
	share/themes/blueHeart-button_def.png, share/rpm-semiselected.png,
	share/logo-mandrake-Desktop.png, share/themes/marble3d-check2.png,
	share/rpm-installed.png, share/themes/marble3d-button1.png,
	share/logo-mandrake_sav.png, share/themes/mdk-button1.png,
	share/themes/DarkMarble-check_off.png, pixmaps/harddrive.png,
	share/themes/marble3d-button_def.png, share/themes/marble3d-button2.png,
	share/help_sav.png, share/themes/DarkMarble-button3_out_prelight.png,
	pixmaps/services.png, pixmaps/bootdisk.png, share/rpm-selected.png,
	share/themes/marble3d-button4.png, pixmaps/bootloader.png,
	share/themes/DarkMarble-button3_out.png, share/logo-mandrake_trans.png,
	share/themes/mdk-button4.png, pixmaps/printer.png, share/rpm-base.png,
	share/logo-mandrake2.png, share/themes/blueHeart-brown_bg1.png,
	share/themes/marble3d-bg1.png, pixmaps/security.png, share/ftin.png,
	pixmaps/rootpasswd.png, share/help.png,
	share/themes/DarkMarble-check_on.png,
	share/themes/blueHeart-button1.png, pixmaps/keyboard.png,
	pixmaps/default.png, share/themes/blueHeart-button2.png, pixmaps/X.png,
	share/themes/DarkMarble-button3_in_prelight.png, share/ftout.png,
	pixmaps/mouse.png, share/rpm-unselected.png: re-adding with -kb
	removing for re-adding with -kb

	* install_any.pm, install_steps.pm: add ntp handling

	* tools/addchangelog.pl: reverted the last erroneous modif
	re-adding with -kb

	* tools/ntp_servers.pl: get a formatted list of NTP servers from an
	authorised source

	* install_steps_interactive.pm (doPartitionDisks): better error message
	when no root partition is found
	(configureTimezone): propose a list of NTP servers
	add ntp handling

	* docs/comparisons: re-adding with -kb

2001/07/02  dam's  <damien@mandrakesoft.com>

	* install_steps_interactive.pm: new network sources reorganizationCVS:
	----------------------------------------------------------------------

	* share/list: added modinfo

	* modparm.pm: syntax correction

	* network/netconnect_consts.pm, network.pm, standalone/draknet,
	network/tools.pm, netconnect.pm, network/netconnect.pm,
	network/ethernet.pm, network/isdn.pm, network/adsl.pm,
	network/network.pm, network/modem.pm, netconnect_consts.pm: new network
	sources reorganization

2001/07/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/da.po, share/po/cs.po, share/po/af.po: update po files

2001/07/02  Pixel  <pixel@mandrakesoft.com>

	* crypto.pm: remove buggy prototype

	* share/po/Makefile: yet even better i18n strings extraction
	  - fix to add some missing messages
	  - add more verif

	* c/stuff.xs.pm: use size_t instead of int where it should

	* Xconfigurator.pm (write_XF86Config): fix fpons sucks (multi wacoms in
	XF3)

	* share/po/b_dump_strings.pm: high level i18n messages getting. only
	partial stuff. Used only for verification

	* perl2fcalls: add handling of using pkg::func when func is provided by
	pkg2 use'd by pkg

2001/06/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/id.po: updated Indonesian file

2001/06/25  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pm: switch from llseek to lseek64

2001/06/23  siegel

	* share/po/de.po: new german version

2001/06/22  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: take care of enterprise kernel if installed.

	* install_any.pm: automagically install kernel-enterprise if memory is
	greater than 800MB.

2001/06/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: unfuzzyise

2001/06/22  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, tinyfirewall.pm,
	share/po/tr.po, share/po/eu.po, share/po/az.po, share/po/ru.po,
	share/po/pt_BR.po, share/po/hr.po, share/po/ko.po, share/po/cy.po,
	share/po/nl.po, share/po/ja.po, share/po/wa.po, share/po/sv.po,
	share/po/is.po, share/po/hu.po, help.pm, share/po/zh_TW.Big5.po,
	share/po/it.po, share/po/id.po, install_steps_interactive.pm,
	share/po/pl.po, share/po/no.po, share/po/fi.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	install_steps_gtk.pm, share/po/sk.po, share/po/lt.po, share/po/ar.po,
	share/po/sl.po, bootlook.pm, share/po/vi.po, share/po/br.po,
	share/po/ca.po, share/po/gl.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	install_steps_newt.pm, share/po/af.po: s/Linux-Mandrake/Mandrake Linux/

2001/06/21  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: added minimal support for rpmtools >= 3.0

2001/06/21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: generate_automatic_stage1_params: listize
	use busybox for the shell of stage2

	* mdk-stage1/Makefile: defaults to not spawn shell

	* mdk-stage1/hack: kloug

	* Makefile, tools/i386/busybox, share/list.ppc, share/list,
	share/list.alpha, share/aliases: use busybox for the shell of stage2

2001/06/21  Pixel  <pixel@mandrakesoft.com>

	* docs/README, rescue/tree/etc/issue: s/Linux-Mandrake/Mandrake Linux/
	s/linux-mandrake/mandrakesoft/
	(hand made, no i18n messages done)
	s/Linux-Mandrake/Mandrake Linux/
	s/linux-mandrake/mandrakesoft/
	(hand made, no i18n messages done)

	* genmodparm: remove duplicate, look in gi/tools

	* standalone/printerdrake, install2, docs/HACKING, tools/genmodparm,
	mdk-stage1/config-stage1.h, ChangeLog, resize_fat/README,
	standalone/diskdrake, standalone/XFdrake, rescue/tree/etc/rc.sysinit,
	mdk-stage1/init.c, tools/mailchangelog.pl, detect_devices.pm,
	mdk-stage1/doc/README, resize_fat/main.pm, tools/cvslog2changelog.pl,
	bootloader.pm: s/Linux-Mandrake/Mandrake Linux/
	s/linux-mandrake/mandrakesoft/
	(hand made, no i18n messages done)

	* mdk-stage1/make_boot_img: remove GG sux
	s/Linux-Mandrake/Mandrake Linux/
	s/linux-mandrake/mandrakesoft/
	(hand made, no i18n messages done)

2001/06/11  dam's  <damien@mandrakesoft.com>

	* proxy.pm: updated
	typoCVS:
	----------------------------------------------------------------------
	proxy

	* my_gtk.pm: added gtkset_layout

	* standalone/drakproxy: corrected CVS:
	----------------------------------------------------------------------
	updated
	perlised

	* interactive.pm: no icon if wizard

2001/06/11  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator_consts.pm: added some bigger memory range.

	* Xconfigurator.pm: fix missing newline on /etc/X11/glx.conf when
	modifying mga_dma = 0
	really fix the Matrox G200 PCI card acceleration using XF3, by disabling
	DMA on
	/etc/X11/glx.conf
	added magic probe of resolution found, if the probed resolution seems
	strange
	according to memory available, it try to let the user select the right
	resolution and depth.

	* install_steps.pm, printer.pm: applied patches given for printer
	configuration bug reported by David Eastcott.

2001/06/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: have PPP drivers in net_raw rather than in net
	add PPP modules for 'net' drivers

	* rescue/tree/etc/rc.sysinit: minor changes

	* rescue/tree/etc/inittab, rescue/tree/sbin/fakeshutdown: umount as much
	as possible before rebooting the rescue

	* mdk-stage1/ppp/pppd/magic.c, mdk-stage1/ppp/pppd/md5.c,
	mdk-stage1/ppp/pppd/utils.c, mdk-stage1/ppp/pppd/pathnames.h,
	mdk-stage1/ppp/pppd/options.c, mdk-stage1/ppp/pppd/main.c,
	mdk-stage1/ppp/pppd/multilink.c, mdk-stage1/ppp/pppd/auth.c: have adsl
	pppoe installation available
	Initial revision
	import initial ppp sources

	* mdk-stage1/dhcp.c: change location of error message when no reply
	received

	* mdk-stage1/rp-pppoe/man/pppoe-relay.8,
	mdk-stage1/rp-pppoe/configs/firewall-masq,
	mdk-stage1/rp-pppoe/gui/html/props-nic.png,
	mdk-stage1/rp-pppoe/src/pppoe-sniff.c,
	mdk-stage1/rp-pppoe/configs/firewall-standalone,
	mdk-stage1/rp-pppoe/gui/html/tkpppoe.html,
	mdk-stage1/rp-pppoe/doc/KERNEL-MODE-PPPOE, mdk-stage1/rp-pppoe/go-gui,
	mdk-stage1/rp-pppoe/gui/tkpppoe.in, mdk-stage1/rp-pppoe/man/adsl-stop.8,
	mdk-stage1/rp-pppoe/scripts/adsl-start.in,
	mdk-stage1/rp-pppoe/man/pppoe-sniff.8, mdk-stage1/rp-pppoe/go,
	mdk-stage1/rp-pppoe/man/pppoe.8,
	mdk-stage1/rp-pppoe/gui/html/mainwin-nonroot.png,
	mdk-stage1/rp-pppoe/gui/tkpppoe.1, mdk-stage1/rp-pppoe/src/Makefile.in,
	mdk-stage1/rp-pppoe/src/pppoe.c, mdk-stage1/rp-pppoe/src/pppoe-server.c,
	mdk-stage1/rp-pppoe/src/pppoe.h, mdk-stage1/rp-pppoe/gui/wrapper.c,
	mdk-stage1/rp-pppoe/man/pppoe-server.8,
	mdk-stage1/rp-pppoe/configs/pppoe.conf,
	mdk-stage1/rp-pppoe/gui/html/props-advanced.png,
	mdk-stage1/rp-pppoe/src/common.c, mdk-stage1/rp-pppoe/src/install-sh,
	mdk-stage1/rp-pppoe/doc/LICENSE, mdk-stage1/rp-pppoe/src/configure,
	mdk-stage1/rp-pppoe/src/config.h.in, mdk-stage1/rp-pppoe/src/relay.c,
	mdk-stage1/rp-pppoe/src/discovery.c, mdk-stage1/rp-pppoe/src/if.c,
	mdk-stage1/rp-pppoe/doc/CHANGES, mdk-stage1/rp-pppoe/src/relay.h,
	mdk-stage1/rp-pppoe/scripts/adsl-init.in,
	mdk-stage1/rp-pppoe/rp-pppoe.spec,
	mdk-stage1/rp-pppoe/scripts/adsl-connect.in,
	mdk-stage1/rp-pppoe/man/pppoe.conf.5,
	mdk-stage1/rp-pppoe/scripts/adsl-init-turbolinux.in,
	mdk-stage1/rp-pppoe/man/adsl-start.8,
	mdk-stage1/rp-pppoe/gui/html/mainwin.png,
	mdk-stage1/rp-pppoe/rp-pppoe-gui.spec,
	mdk-stage1/rp-pppoe/gui/html/props-basic.png,
	mdk-stage1/rp-pppoe/man/adsl-status.8,
	mdk-stage1/rp-pppoe/configs/pppoe-server-options,
	mdk-stage1/rp-pppoe/man/adsl-connect.8,
	mdk-stage1/rp-pppoe/scripts/adsl-setup.in,
	mdk-stage1/rp-pppoe/scripts/adsl-stop.in,
	mdk-stage1/rp-pppoe/gui/Makefile.in, mdk-stage1/rp-pppoe/src/debug.c,
	mdk-stage1/rp-pppoe/doc/PROBLEMS, mdk-stage1/rp-pppoe/src/ppp.c,
	mdk-stage1/rp-pppoe/README,
	mdk-stage1/rp-pppoe/gui/html/mainwin-busy.png,
	mdk-stage1/rp-pppoe/gui/pppoe-wrapper.1,
	mdk-stage1/rp-pppoe/scripts/adsl-status,
	mdk-stage1/rp-pppoe/man/adsl-setup.8,
	mdk-stage1/rp-pppoe/gui/html/props-options.png,
	mdk-stage1/rp-pppoe/src/configure.in,
	mdk-stage1/rp-pppoe/configs/pap-secrets, mdk-stage1/rp-pppoe/src/md5.c,
	mdk-stage1/rp-pppoe/scripts/adsl-init-suse.in,
	mdk-stage1/rp-pppoe/src/md5.h, mdk-stage1/rp-pppoe/src/plugin.c,
	mdk-stage1/rp-pppoe/doc/HOW-TO-CONNECT: Initial revision
	import initial sources from rp-pppoe v3.0

	* mdk-stage1/Makefile: change handling of .depend in Makefile
	have adsl pppoe installation available

	* mdk-stage1/newt-frontend.c: axalon sucks, we can have NEWT_FLAG_PASSWORD
	that will show us '**' for passwords

	* mdk-stage1/ppp/pppd/.cvsignore, mdk-stage1/ppp/.cvsignore,
	mdk-stage1/ppp/pppd/Makefile, mdk-stage1/rp-pppoe/src/.cvsignore,
	mdk-stage1/rp-pppoe/src/config.h, mdk-stage1/adsl.c,
	mdk-stage1/rp-pppoe/.cvsignore, mdk-stage1/rp-pppoe/src/Makefile,
	mdk-stage1/make_boot_img: have adsl pppoe installation available

	* detect_devices.pm, install_any.pm, raid.pm, fsedit.pm: include patch to
	autodetect raid arrays (still needs a kernel that implements the
	ioctl..)

	* tools/Makefile: perl 5.6.1 now

	* mdk-stage1/stage1.c, mdk-stage1/tools.c: do not set root=/dev/ram3 from
	my code anymore, expect the bootloader to set the parameter correctly

	* mdk-stage1/ppp/scripts/ip-up.local.add, mdk-stage1/ppp/scripts/README,
	mdk-stage1/ppp/solaris/Makefile.sol2,
	mdk-stage1/ppp/svr4/ppp_comp.Master, mdk-stage1/ppp/sample/ip-down,
	mdk-stage1/ppp/solaris/Makefile.sol2-64,
	mdk-stage1/ppp/include/net/ppp_defs.h,
	mdk-stage1/ppp/pppstats/Makefile.sunos4,
	mdk-stage1/ppp/chat/Makefile.sol2, mdk-stage1/ppp/pppd/sys-linux.c,
	mdk-stage1/ppp/pppd/ipxcp.c, mdk-stage1/ppp/pppd/ipxcp.h,
	mdk-stage1/ppp/pppdump/deflate.c, mdk-stage1/ppp/pppd/Makefile.linux,
	mdk-stage1/ppp/pppd/upap.c, mdk-stage1/ppp/modules/deflate.c,
	mdk-stage1/ppp/README.sunos4, mdk-stage1/ppp/pppdump/Makefile.sol2,
	mdk-stage1/ppp/configure, mdk-stage1/ppp/pppd/upap.h,
	mdk-stage1/ppp/svr4/ppp_mod.c, mdk-stage1/ppp/pppstats/Makefile.sol2,
	mdk-stage1/ppp/pppd/ipv6cp.c, mdk-stage1/ppp/scripts/options-ssh-loc,
	mdk-stage1/ppp/pppd/plugins/Makefile.sol2, mdk-stage1/ppp/pppd/ipv6cp.h,
	mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.vt.c,
	mdk-stage1/ppp/solaris/ppp_ahdlc_mod.c,
	mdk-stage1/ppp/sunos4/if_ppp_vdcmd.c,
	mdk-stage1/ppp/solaris/ppp_ahdlc.c, mdk-stage1/ppp/pppd/magic.h,
	mdk-stage1/ppp/svr4/ppp_comp_mod.c,
	mdk-stage1/ppp/include/linux/if_ppp.h, mdk-stage1/ppp/pppd/eui64.c,
	mdk-stage1/ppp/scripts/secure-card, mdk-stage1/ppp/scripts/redialer,
	mdk-stage1/ppp/modules/bsd-comp.c, mdk-stage1/ppp/pppd/eui64.h,
	mdk-stage1/ppp/sunos4/ppp_vdcmd.c, mdk-stage1/ppp/modules/ppp_mod.h,
	mdk-stage1/ppp/pppd/md5.h, mdk-stage1/ppp/pppd/chap_ms.c,
	mdk-stage1/ppp/pppd/chap_ms.h, mdk-stage1/ppp/etc.ppp/pap-secrets,
	mdk-stage1/ppp/solaris/Makefile.top, mdk-stage1/ppp/chat/chat.8,
	mdk-stage1/ppp/svr4/Makefile.sol2-64, mdk-stage1/ppp/svr4/Makefile.sol2,
	mdk-stage1/ppp/include/net/ppp-comp.h, mdk-stage1/ppp/sunos4/Makefile,
	mdk-stage1/ppp/PLUGINS, mdk-stage1/ppp/pppdump/Makefile.sunos4,
	mdk-stage1/ppp/sample/ip-up, mdk-stage1/ppp/sample/options.ttyXX,
	mdk-stage1/ppp/scripts/options-rsh-rem, mdk-stage1/ppp/pppd/fsm.c,
	mdk-stage1/ppp/chat/chat.c, mdk-stage1/ppp/scripts/ppp-on-rsh,
	mdk-stage1/ppp/pppd/fsm.h, mdk-stage1/ppp/pppd/tdb.c,
	mdk-stage1/ppp/pppd/patchlevel.h, mdk-stage1/ppp/pppstats/pppstats.8,
	mdk-stage1/ppp/svr4/ppp.conf, mdk-stage1/ppp/pppd/tdb.h,
	mdk-stage1/ppp/pppd/demand.c, mdk-stage1/ppp/include/net/if_ppp.h,
	mdk-stage1/ppp/solaris/Makedefs, mdk-stage1/ppp/modules/if_ppp.c,
	mdk-stage1/ppp/include/net/slcompress.h, mdk-stage1/ppp/sunos4/Makedefs,
	mdk-stage1/ppp/pppd/sys-linux.c.wtmp,
	mdk-stage1/ppp/include/linux/if_pppvar.h,
	mdk-stage1/ppp/solaris/ppp_comp.c, mdk-stage1/ppp/chat/Makefile.linux,
	mdk-stage1/ppp/README.cbcp, mdk-stage1/ppp/pppd/ppp.pam,
	mdk-stage1/ppp/solaris/ppp_comp_mod.c, mdk-stage1/ppp/Changes-2.3,
	mdk-stage1/ppp/sample/options, mdk-stage1/ppp/pppstats/pppstats.c,
	mdk-stage1/ppp/sunos4/ppp_comp_vdcmd.c,
	mdk-stage1/ppp/pppdump/Makefile.linux.pppdump-Makefile,
	mdk-stage1/ppp/README.MSCHAP80, mdk-stage1/ppp/pppdump/pppdump.8,
	mdk-stage1/ppp/sunos4/Makefile.top, mdk-stage1/ppp/include/net/pppio.h,
	mdk-stage1/ppp/pppd/ipcp.c, mdk-stage1/ppp/FAQ,
	mdk-stage1/ppp/pppd/ipcp.h, mdk-stage1/ppp/pppd/sys-sunos4.c,
	mdk-stage1/ppp/modules/ppp_comp.c, mdk-stage1/ppp/README.sol2,
	mdk-stage1/ppp/modules/vjcompress.c, mdk-stage1/ppp/scripts/ppp-on-ssh,
	mdk-stage1/ppp/svr4/ppp_ahdlc_mod.c, mdk-stage1/ppp/sunos4/ppp.INSTALL,
	mdk-stage1/ppp/modules/ppp.c, mdk-stage1/ppp/pppdump/pppdump.c,
	mdk-stage1/ppp/pppd/plugins/passprompt.c,
	mdk-stage1/ppp/pppdump/Makefile.linux, mdk-stage1/ppp/pppd/lcp.c,
	mdk-stage1/ppp/pppd/lcp.h, mdk-stage1/ppp/scripts/chat-callback,
	mdk-stage1/ppp/chat/Makefile.sunos4, mdk-stage1/ppp/SETUP,
	mdk-stage1/ppp/pppd/Makefile.sol2,
	mdk-stage1/ppp/pppd/plugins/minconn.c,
	mdk-stage1/ppp/etc.ppp/options.options,
	mdk-stage1/ppp/pppdump/Makefile.linux.makeopt,
	mdk-stage1/ppp/svr4/ppp.Node, mdk-stage1/ppp/scripts/options-ssh-rem,
	mdk-stage1/ppp/solaris/ppp.c, mdk-stage1/ppp/svr4/ppp.System,
	mdk-stage1/ppp/etc.ppp/chap-secrets,
	mdk-stage1/ppp/pppstats/Makefile.linux,
	mdk-stage1/ppp/sample/pap-secrets,
	mdk-stage1/ppp/pppd/Makefile.linux.make, mdk-stage1/ppp/pppd/pppd.8,
	mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.8,
	mdk-stage1/ppp/pppd/Makefile.sunos4, mdk-stage1/ppp/scripts/ppp-on,
	mdk-stage1/ppp/include/linux/ppp_defs.h,
	mdk-stage1/ppp/scripts/chatchat/chatchat.c,
	mdk-stage1/ppp/scripts/chatchat/README,
	mdk-stage1/ppp/modules/ppp_ahdlc.c, mdk-stage1/ppp/svr4/ppp.Master,
	mdk-stage1/ppp/svr4/Makedefs,
	mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.gtk.c,
	mdk-stage1/ppp/svr4/ppp_ahdl.System, mdk-stage1/ppp/pppd/pppd.h,
	mdk-stage1/ppp/scripts/ppp-off, mdk-stage1/ppp/solaris/Makedefs.sol2,
	mdk-stage1/ppp/common/zlib.c, mdk-stage1/ppp/scripts/options-rsh-loc,
	mdk-stage1/ppp/common/zlib.h, mdk-stage1/ppp/solaris/ppp_mod.c,
	mdk-stage1/ppp/contrib/pppgetpass/Makefile.linux,
	mdk-stage1/ppp/solaris/ppp_mod.h, mdk-stage1/ppp/scripts/ppp-on-dialer,
	mdk-stage1/ppp/pppd/sys-solaris.c, mdk-stage1/ppp/README.linux,
	mdk-stage1/ppp/sample/auth-down, mdk-stage1/ppp/svr4/ppp_ahdl.Master,
	mdk-stage1/ppp/pppdump/zlib.c, mdk-stage1/ppp/include/pcap-int.h,
	mdk-stage1/ppp/pppdump/zlib.h, mdk-stage1/ppp/pppd/ccp.c,
	mdk-stage1/ppp/chat/Makefile.linux.makeopt, mdk-stage1/ppp/pppd/ccp.h,
	mdk-stage1/ppp/pppd/Makefile.linux.makeopt,
	mdk-stage1/ppp/include/net/vjcompress.h, mdk-stage1/ppp/pppd/cbcp.c,
	mdk-stage1/ppp/contrib/pppgetpass/pppgetpass.sh,
	mdk-stage1/ppp/pppd/cbcp.h, mdk-stage1/ppp/scripts/ip-down.local.add,
	mdk-stage1/ppp/pppd/tty.c, mdk-stage1/ppp/include/linux/ppp-comp.h,
	mdk-stage1/ppp/sample/auth-up, mdk-stage1/ppp/sunos4/ppp_ahdlc_vdcmd.c,
	mdk-stage1/ppp/pppd/pppd.h.wtmp, mdk-stage1/ppp/solaris/ppp.conf,
	mdk-stage1/ppp/pppd/chap.c, mdk-stage1/ppp/pppd/chap.h,
	mdk-stage1/ppp/scripts/callback, mdk-stage1/ppp/linux/Makefile.top,
	mdk-stage1/ppp/svr4/ppp_comp.System, mdk-stage1/ppp/pppd/md4.c,
	mdk-stage1/ppp/svr4/Makedefs.sol2, mdk-stage1/ppp/pppdump/bsd-comp.c,
	mdk-stage1/ppp/README, mdk-stage1/ppp/pppd/md4.h,
	mdk-stage1/ppp/etc.ppp/options, mdk-stage1/ppp/svr4/Makefile.top,
	mdk-stage1/ppp/svr4/Makefile.svr4,
	mdk-stage1/ppp/pppd/plugins/Makefile.linux,
	mdk-stage1/ppp/pppdump/ppp-comp.h: Initial revision
	import initial ppp sources

2001/06/11  odin

	* standalone/drakproxy: first import of drakproxy

2001/06/11  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): don't check /usr/bin/urpmi, better check
	/usr/sbin/urpmi.update

	* commands.pm (grep_): add a missing semi-colon

	* share/compssUsers: remove NIS which is handled by DrakX (titi sucks)

2001/06/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/guessmounts, rescue/make_rescue_img, rescue/tree/etc/rc.sysinit,
	rescue/Makefile: 
	  - add 'guessmounts' that mimics RH's detecting of partitions when
	rescue starts

2001/06/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/az.po: updated Azeri file

	* share/po/ru.po, share/po/DrakX.pot: updated Russian file

2001/06/10  Pixel  <pixel@mandrakesoft.com>

	* rescue/guessmounts: pixelization (tested!)

	* install_any.pm (g_auto_install): more comments in auto_inst.cfg file

2001/06/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/list.i386: rescuept is in /sbin now

	* share/list: rescuept in /sbin now

2001/06/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: don't wait on upping lo interface

	* mdk-stage1/modules.c: fix minor bug detecting when modules are present

	* mdk-stage1/dietlibc/include/stdlib.h, mdk-stage1/dietlibc/lib/random.c:
	i need working random suite for ppp with dietlibc

	* mdk-stage1/stage1.c: exit when exec fails after fork, i don't want two
	stage1 processes!

2001/06/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pl.po: updated Polish file

2001/06/05  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (mount): notail in any case

	* tools/i386/netboot/menu.lst.example, tools/i386/netboot/menu.lst,
	tools/i386/netboot/.cvsignore: menu.lst is now a local file created from
	the example

	* share/list, rescue/list.i386, rescue/list: switch to perl 5.6.1

	* Makefile: fix

2001/06/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/ar.po, share/po/sl.po,
	share/po/vi.po, share/po/br.po, share/po/ca.po, share/po/gl.po,
	share/po/lv.po, share/po/uk.po, share/po/eo.po, share/po/ro.po,
	share/po/da.po, share/po/cs.po, share/po/af.po: updated Russian file

2001/06/01  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: use -FULL postfix for common .c files targetting
	stage1-full

	* mdk-stage1/stage1.c: minor fix

	* mdk-stage1/newt/textbox.c: don't modify newt code to fix dietlibc bugs,
	i want to link against glibc too

	* mdk-stage1/dietlibc/include/stdlib.h, mdk-stage1/dietlibc/lib/strncat.c:
	
	  - have strncat behave the same way as in glibc
	  - declare that we're using the DIETLIBC in include/stdlib.h, so I can
	change my mind in "dns.c" to handle broken glibc which is not capable of
	doing name resolution with a static binary

	* mdk-stage1/dns.c, mdk-stage1/dns.h, mdk-stage1/adsl.c,
	mdk-stage1/adsl.h, mdk-stage1/nfsmount.c, mdk-stage1/network.c,
	mdk-stage1/url.c, mdk-stage1/network.h: 
	  - first draft of adsl support
	  - get back some code for supporting broken glibc unable to resolve
	when linked statically

	* mdk-stage1/dietlibc/dietfeatures.h, mdk-stage1/dietlibc/lib/tcflush.c,
	mdk-stage1/dietlibc/lib/cfgetospeed.c, mdk-stage1/dietlibc/lib/speed.c,
	mdk-stage1/dietlibc/lib/tcsetattr.c,
	mdk-stage1/dietlibc/include/termios.h,
	mdk-stage1/dietlibc/include/netdb.h,
	mdk-stage1/dietlibc/libshell/glob.c: slight modifs to get ppp and pppoe
	stuff compile better

2001/05/31  daouda

	* bootlook.pm: add runlevel chooser feature

2001/05/31  Pixel  <pixel@mandrakesoft.com>

	* rescue/make_rescue_img: check presence of files from list and list.ARCH

	* Makefile (get_needed_files): exit with error message if files from
	share/list (and
	share/list.ARCH) are missing

	* install2.pm: hide step formatPartitions when upgrading

2001/05/30  mbadaire

	* mdk-stage1/stage1.c, mdk-stage1/slang/slmalloc.c,
	mdk-stage1/slang/Makefile, mdk-stage1/Makefile.common,
	mdk-stage1/insmod-modutils/obj/Makefile,
	mdk-stage1/insmod-modutils/Makefile, mdk-stage1/bzlib/Makefile,
	mdk-stage1/init-libc-headers.h, mdk-stage1/newt/Makefile,
	mdk-stage1/Makefile, mdk-stage1/insmod-modutils/util/Makefile,
	mdk-stage1/mar/Makefile, mdk-stage1/newt/windows.c: 
	  - allow build on ia64
	  - have CFLAGS centralized in Makefile.common (should help ports such
	as alpha)
	  - better looking sub makefiles

2001/05/30  Pixel  <pixel@mandrakesoft.com>

	* Makefile.drakxtools (install): ensure pm's in subdirs don't have
	/use(diagnostics|vars|strict)/

2001/05/29  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: added fix from Michael Brown to handle pipe in queue
	name for lpr.

2001/05/29  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* share/compssUsers: add NIS client to network clients

2001/05/29  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: added fix from Michael Brown to handle pipe in queue
	name for lpr.

2001/05/28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/newt-frontend.c: use Axalon patch to hide passwords (highly
	rewritten..)

2001/05/25  Stew Benedict  <sbenedict@mandrakesoft.com>

	* rescue/list.ppc, bootloader.pm: add hfs support to rescue - PPC, fix
	bootstrap creation, formatting sequence

	* install_steps_interactive.pm: fix bootstrap information screen back to
	orig with missing ":" - PPC
	add hfs support to rescue - PPC, fix bootstrap creation, formatting
	sequence

2001/05/25  siegel

	* share/po/de.po: updated time
	moved to UTF-8

2001/05/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated Turkish file

2001/05/24  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (g_auto_install): autoExitInstall set if not replay (was
	the opposite)

2001/05/23  Pixel  <pixel@mandrakesoft.com>

	* rescue/list: add scd0...

2001/05/22  siegel

	* share/po/de.po: updates

2001/05/21  Stew Benedict  <sbenedict@mandrakesoft.com>

	* tools/ppc/mkhybrid-1.12b5.4-x86, tools/ppc/mkINSTALLCD: enable creation
	of PPC boot CD on x86 platform

2001/05/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: 
	  - better detect when IP is not good
	  - error_msg when netmask seems invalid
	  - don't log too much `guessing netmask'

	* mdk-stage1/probing.c: be sure to print pci vendor and id with 4 digits
	each

2001/05/17  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed parted that ask for confirmation if partition
	table is not right (MAXDATA
	for example), this cause parted to ignore warning.
	added blank space between partition windows and linux to help resolving
	above case.
	fixed hole in partitionning (need testing), use fdisk to get disk
	geometry and
	create partition that matches cylinder boundaries (no more
	approximation).
	make sure to create all partitions including /home.

2001/05/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/modules.c: add log for modules aliasing of SCSI drivers
	don't write nonsense code to separate frontend from stage1,
	but rather, try to do some clever things

	* mdk-stage1/probing.c: unify user notification of network and scsi
	devices that make load of drivers
	don't write nonsense code to separate frontend from stage1,
	but rather, try to do some clever things

	* mdk-stage1/stage1.c, mdk-stage1/frontend.h, mdk-stage1/stage1.h,
	mdk-stage1/tools.c, mdk-stage1/stdio-frontend.c, mdk-stage1/cdrom.c,
	mdk-stage1/Makefile, mdk-stage1/dhcp.c, mdk-stage1/newt-frontend.c,
	mdk-stage1/disk.c, mdk-stage1/network.c: don't write nonsense code to
	separate frontend from stage1,
	but rather, try to do some clever things

	* mdk-stage1/frontend-common.c: plop

2001/05/16  dam's  <damien@mandrakesoft.com>

	* pixmaps/bootloader.png, pixmaps/user.png, pixmaps/security.png,
	pixmaps/rootpasswd.png, pixmaps/harddrive.png, pixmaps/keyboard.png,
	pixmaps/default.png, pixmaps/X.png, pixmaps/mouse.png,
	pixmaps/bootdisk.png, pixmaps/services.png: added icons

	* standalone/printerdrake, standalone/keyboarddrake, standalone/drakboot,
	standalone/draksec, standalone/drakxservices, standalone/drakgw,
	standalone/XFdrake, standalone/adduserdrake: added icon management

	* my_gtk.pm, interactive.pm: icons management

	* install2.pm: added icons management

	* standalone/draknet: added icon managment

	* pixmaps/printer.png: added icon

2001/05/16  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: added support for /var creation, and more specific
	package selection for server.
	Include option support by VERSION file.

2001/05/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stage1.c, mdk-stage1/HACKING, mdk-stage1/frontend.h,
	mdk-stage1/TECH-INFOS, mdk-stage1/WHY-DIETLIBC, mdk-stage1/stage1.h,
	mdk-stage1/stdio-frontend.c, mdk-stage1/Makefile, mdk-stage1/README,
	mdk-stage1/newt-frontend.c: have a 100% independence between UI stuff
	and code from stage1

2001/05/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po, share/po/de.po, share/po/DrakX.pot, share/po/tr.po:
	updated Turkish file

2001/05/16  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile: fix yet again DrakX.pot making

	* partition_table.pm: re-add reiserfs as it should
	add xfs

2001/05/15  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: added missing Aurora, added icewm-light that may be
	usefull.

2001/05/15  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: libresolv deprecated in GLIBC
	have stage1-full with pcmcia also compile with dietlibc, cool!

	* mdk-stage1/network.c: fix guess netmask
	configure_net_device is only used internally

	* mdk-stage1/modules.c, mdk-stage1/modules.h: better modules handling
	interface (use of enum rather than guessing single numbers..)

	* mdk-stage1/newt-frontend.c: allow wait_message calls to be multi-lines

	* mdk-stage1/pcmcia/cardmgr.c: have stage1-full with pcmcia also compile
	with dietlibc, cool!
	  - build glibc and dietlibc targets
	  - bzero string buffer before sscanf call (dietlibc implementation)
	  - verify returns of ioperm so that I can use it in test mode

	* mdk-stage1/dietlibc/include/sys/file.h,
	mdk-stage1/dietlibc/include/sys/io.h,
	mdk-stage1/dietlibc/syscalls.s/ioperm.S: have stage1-full with pcmcia
	also compile with dietlibc, cool!

	* mdk-stage1/stage1.c: a bit of size reduction plus some language change
	blurk

	* mdk-stage1/WHY-DIETLIBC: advocate dietlibc

	* mdk-stage1/dietlibc/lib/vsscanf.c: import vsscanf fix from author

	* mdk-stage1/disk.c: bzero string buffer before sscanf call, security for
	dietlibc implementation

	* mdk-stage1/network.h: configure_net_device is only used internally

	* mdk-stage1/pcmcia/Makefile, mdk-stage1/pcmcia/pcmcia_probe.c: 
	  - build glibc and dietlibc targets
	  - bzero string buffer before sscanf call (dietlibc implementation)
	  - verify returns of ioperm so that I can use it in test mode

	* standalone/drakgw: full path for iptables

	* mdk-stage1/probing.c: allow wait_message calls to be multi-lines
	nicer layout for PCI detection messages
	better modules handling interface (use of enum rather than guessing
	single numbers..)

2001/05/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po, share/po/ar.po: Updated Turkish file

	* share/keyboards.tar.bz2: Added north-african keyboard

	* keyboard.pm: added arabic azerty keyboard

2001/05/15  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile: fix messages to i18n extracting

2001/05/14  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* fs.pm: s|mkxfs|mkfs.xfs|;

2001/05/14  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/nfsmount.c: use new gethostby* interface

	* mdk-stage1/stage1-data/stage1-with-busybox.tar.bz2: add stage1-data
	which provides the busybox

	* mdk-stage1/network.c: Have the wait_message() with the sleep()
	  - complies to gethostby functions
	  - add sleep(2) so that net intf is really up before operation
	  - more logs
	  - FTP: don't try to close control connection with data socket, erhm
	:-(
	  - debug netmask guessing, with stdio-frontend

	* mdk-stage1/Makefile: i can compile slang and newt with dietlibc now
	every targets build with dietlibc

	* mdk-stage1/make_boot_img: use busybox for my debugging purpose

	* mdk-stage1/tools.c: no need to poll() for data at beginning of
	load_ramdisk_fd, it was a fix of another problem (bug with file stdio
	operations with sockets in dietlibc)

	* mdk-stage1/dietlibc/Makefile: build this new dietlibc
	import new version of dietlibc

	* mdk-stage1/dns.c, mdk-stage1/dns.h: now use gethostby* functions
	provided by dietlibc

	* mdk-stage1/url.c: use poll() rather than select(), smaller code size

	* mdk-stage1/stage1.c: we don't use this sucking sash no more
	we now use `busybox' compiled with the marvellous dietlibc, which
	provides no less than 73 usefull binaries

	* mdk-stage1/dietlibc/alpha/semop.S, mdk-stage1/dietlibc/lib/sendmsg.c,
	mdk-stage1/dietlibc/alpha/shmget.S, mdk-stage1/dietlibc/lib/clearerr.c,
	mdk-stage1/dietlibc/include/sys/ipc.h,
	mdk-stage1/dietlibc/alpha/sendmsg.S,
	mdk-stage1/dietlibc/lib/tcgetpgrp.c, mdk-stage1/dietlibc/lib/fwrite.c,
	mdk-stage1/dietlibc/sparc/__testandset.S,
	mdk-stage1/dietlibc/syscalls.s/open.S,
	mdk-stage1/dietlibc/alpha/semget.S, mdk-stage1/dietlibc/dietstdarg.h,
	mdk-stage1/dietlibc/syscalls.s/sched_get_priority_max.S,
	mdk-stage1/dietlibc/lib/nop.c, mdk-stage1/dietlibc/start.h,
	mdk-stage1/dietlibc/include/sys/syscall.h,
	mdk-stage1/dietlibc/alpha/accept.S, mdk-stage1/dietlibc/lib/sigjmp.c,
	mdk-stage1/dietlibc/syscalls.s/ptrace.s,
	mdk-stage1/dietlibc/lib/isprint.c,
	mdk-stage1/dietlibc/syscalls.s/dietstat.S,
	mdk-stage1/dietlibc/alpha/shutdown.S, mdk-stage1/dietlibc/lib/sendto.c,
	mdk-stage1/dietlibc/sparc/shmat.c, mdk-stage1/dietlibc/include/time.h,
	mdk-stage1/dietlibc/lib/stat_convert.c, mdk-stage1/dietlibc/lib/send.c,
	mdk-stage1/dietlibc/lib/isxdigit.c, mdk-stage1/dietlibc/alpha/waitpid.S,
	mdk-stage1/dietlibc/lib/atexit.c, mdk-stage1/dietlibc/lib/readdir.c,
	mdk-stage1/dietlibc/include/sys/sem.h,
	mdk-stage1/dietlibc/syscalls.s/query_module.S,
	mdk-stage1/dietlibc/lib/strchr.c,
	mdk-stage1/dietlibc/syscalls.s/dietfstat64.S,
	mdk-stage1/dietlibc/syscalls.s/lstat64.S,
	mdk-stage1/dietlibc/i386/setjmp.S, mdk-stage1/dietlibc/lib/alloc.c,
	mdk-stage1/dietlibc/lib/perror.c,
	mdk-stage1/dietlibc/include/sys/socket.h,
	mdk-stage1/dietlibc/lib/creat64.c, mdk-stage1/dietlibc/lib/closedir.c,
	mdk-stage1/dietlibc/sparc/pipe.S, mdk-stage1/dietlibc/lib/msgrcv.c,
	mdk-stage1/dietlibc/include/utmp.h,
	mdk-stage1/dietlibc/syscalls.s/sendfile.S,
	mdk-stage1/dietlibc/syscalls.s/nice.S,
	mdk-stage1/dietlibc/syscalls.s/sigprocmask.S,
	mdk-stage1/dietlibc/syscalls.s/select.S,
	mdk-stage1/dietlibc/include/sys/mtio.h,
	mdk-stage1/dietlibc/i386/strchr.S, mdk-stage1/dietlibc/alpha/divl.S,
	mdk-stage1/dietlibc/syscalls.s/sched_rr_get_interval.S,
	mdk-stage1/dietlibc/lib/__telldir.c,
	mdk-stage1/dietlibc/i386/__testandset.S,
	mdk-stage1/dietlibc/lib/remove.c,
	mdk-stage1/dietlibc/syscalls.s/sched_get_priority_min.S,
	mdk-stage1/dietlibc/lib/fputc.c, mdk-stage1/dietlibc/lib/msgctl.c,
	mdk-stage1/dietlibc/alpha/clone.S, mdk-stage1/dietlibc/lib/connect.c,
	mdk-stage1/dietlibc/include/sys/un.h,
	mdk-stage1/dietlibc/alpha/connect.S,
	mdk-stage1/dietlibc/include/termios.h,
	mdk-stage1/dietlibc/lib/sigfillset.c,
	mdk-stage1/dietlibc/lib/sigismember.c,
	mdk-stage1/dietlibc/syscalls.s/dietstat64.S,
	mdk-stage1/dietlibc/i386/start.S, mdk-stage1/dietlibc/lib/shmget.c,
	mdk-stage1/dietlibc/lib/strtok.c, mdk-stage1/dietlibc/lib/fclose.c,
	mdk-stage1/dietlibc/lib/tcsetpgrp.c,
	mdk-stage1/dietlibc/sparc/Makefile.add,
	mdk-stage1/dietlibc/include/sys/shm.h, mdk-stage1/dietlibc/alpha/send.S,
	mdk-stage1/dietlibc/i386/__longjmp.S, mdk-stage1/dietlibc/lib/recvmsg.c,
	mdk-stage1/dietlibc/include/inttypes.h,
	mdk-stage1/dietlibc/syscalls.s/sched_getscheduler.S,
	mdk-stage1/dietlibc/lib/semget.c, mdk-stage1/dietlibc/lib/open64.c,
	mdk-stage1/dietlibc/alpha/recvmsg.S,
	mdk-stage1/dietlibc/syscalls.s/fork.S,
	mdk-stage1/dietlibc/lib/strcasecmp.c, mdk-stage1/dietlibc/lib/htonl.c,
	mdk-stage1/dietlibc/lib/accept.c, mdk-stage1/dietlibc/alpha/shmat.S,
	mdk-stage1/dietlibc/include/features.h,
	mdk-stage1/dietlibc/include/syslog.h, mdk-stage1/dietlibc/lib/isascii.c,
	mdk-stage1/dietlibc/syscalls.s/writev.S,
	mdk-stage1/dietlibc/lib/fputs.c,
	mdk-stage1/dietlibc/alpha/sigprocmask.S,
	mdk-stage1/dietlibc/lib/ntohs.c, mdk-stage1/dietlibc/include/sys/uio.h,
	mdk-stage1/dietlibc/syscalls.s/nanosleep.S,
	mdk-stage1/dietlibc/syscalls.s/creat.S,
	mdk-stage1/dietlibc/include/sys/sysinfo.h,
	mdk-stage1/dietlibc/lib/atof.c, mdk-stage1/dietlibc/alpha/msgsnd.S,
	mdk-stage1/dietlibc/lib/vsprintf.c, mdk-stage1/dietlibc/lib/toupper.c,
	mdk-stage1/dietlibc/lib/strlcpy.3, mdk-stage1/dietlibc/lib/sigaddset.c,
	mdk-stage1/dietlibc/i386/select.S, mdk-stage1/dietlibc/i386/unified.S,
	mdk-stage1/dietlibc/include/dirent.h,
	mdk-stage1/dietlibc/include/getopt.h, mdk-stage1/dietlibc/lib/seekdir.c,
	mdk-stage1/dietlibc/include/net/route.h,
	mdk-stage1/dietlibc/syscalls.s/exit.S,
	mdk-stage1/dietlibc/include/pthread.h,
	mdk-stage1/dietlibc/lib/sprintf.c, mdk-stage1/dietlibc/alpha/msgget.S,
	mdk-stage1/dietlibc/include/limits.h, mdk-stage1/dietlibc/lib/qsort.c,
	mdk-stage1/dietlibc/lib/execvp.c,
	mdk-stage1/dietlibc/syscalls.s/__reboot.S,
	mdk-stage1/dietlibc/lib/stdin.c,
	mdk-stage1/dietlibc/syscalls.s/getitimer.S,
	mdk-stage1/dietlibc/include/grp.h, mdk-stage1/dietlibc/lib/usleep.c,
	mdk-stage1/dietlibc/lib/lstat.c, mdk-stage1/dietlibc/sparc/setjmp.S,
	mdk-stage1/dietlibc/sparc/fork.S,
	mdk-stage1/dietlibc/syscalls.s/__pread.S,
	mdk-stage1/dietlibc/include/sys/poll.h,
	mdk-stage1/dietlibc/syscalls.s/personality.S,
	mdk-stage1/dietlibc/lib/lseek64.c, mdk-stage1/dietlibc/include/setjmp.h,
	mdk-stage1/dietlibc/lib/recv.c, mdk-stage1/dietlibc/include/string.h,
	mdk-stage1/dietlibc/include/sys/time.h, mdk-stage1/dietlibc/lib/fstat.c,
	mdk-stage1/dietlibc/lib/memcmp.c, mdk-stage1/dietlibc/lib/isupper.c,
	mdk-stage1/dietlibc/include/sys/param.h,
	mdk-stage1/dietlibc/syscalls.s/__getpagesize.S,
	mdk-stage1/dietlibc/lib/exec_lib.c, mdk-stage1/dietlibc/alpha/shmdt.S,
	mdk-stage1/dietlibc/include/dlfcn.h, mdk-stage1/dietlibc/lib/isdigit.c,
	mdk-stage1/dietlibc/lib/fdopen.c, mdk-stage1/dietlibc/lib/exec_lib.h,
	mdk-stage1/dietlibc/lib/__lxstat.c, mdk-stage1/dietlibc/alpha/remq.S,
	mdk-stage1/dietlibc/include/sys/kd.h,
	mdk-stage1/dietlibc/syscalls.s/read.S, mdk-stage1/dietlibc/lib/fopen.c,
	mdk-stage1/dietlibc/syscalls.s/sched_yield.S,
	mdk-stage1/dietlibc/include/sys/mman.h,
	mdk-stage1/dietlibc/lib/__readdir.c,
	mdk-stage1/dietlibc/lib/cfgetospeed.c,
	mdk-stage1/dietlibc/lib/__dtostr.c, mdk-stage1/dietlibc/lib/execv.c,
	mdk-stage1/dietlibc/alpha/reml.S,
	mdk-stage1/dietlibc/syscalls.s/fcntl.S,
	mdk-stage1/dietlibc/include/errno.h, mdk-stage1/dietlibc/lib/ferror.c,
	mdk-stage1/dietlibc/syscalls.s/ipc.S,
	mdk-stage1/dietlibc/syscalls.s/mlockall.S,
	mdk-stage1/dietlibc/lib/fgetc.c, mdk-stage1/dietlibc/lib/strtoull.c,
	mdk-stage1/dietlibc/include/sys/msg.h,
	mdk-stage1/dietlibc/syscalls.s/sigsuspend.S,
	mdk-stage1/dietlibc/lib/isgraph.c, mdk-stage1/dietlibc/lib/vsscanf.c,
	mdk-stage1/dietlibc/lib/ftell.c, mdk-stage1/dietlibc/include/unistd.h,
	mdk-stage1/dietlibc/lib/msgsnd.c, mdk-stage1/dietlibc/lib/semop.c,
	mdk-stage1/dietlibc/include/net/if_arp.h,
	mdk-stage1/dietlibc/lib/execlp.c,
	mdk-stage1/dietlibc/syscalls.s/stat64.S,
	mdk-stage1/dietlibc/dietfeatures.h, mdk-stage1/dietlibc/dietstdio.h,
	mdk-stage1/dietlibc/lib/feof.c, mdk-stage1/dietlibc/lib/opendir.c,
	mdk-stage1/dietlibc/syscalls.s/fstat64.S,
	mdk-stage1/dietlibc/syscalls.s/sched_setparam.S,
	mdk-stage1/dietlibc/include/sys/reboot.h,
	mdk-stage1/dietlibc/lib/sigdelset.c, mdk-stage1/dietlibc/lib/execl.c,
	mdk-stage1/dietlibc/include/sys/sendfile.h,
	mdk-stage1/dietlibc/include/sys/syslog.h,
	mdk-stage1/dietlibc/syscalls.s/iopl.S, mdk-stage1/dietlibc/lib/msgget.c,
	mdk-stage1/dietlibc/syscalls.s/sched_getparam.S,
	mdk-stage1/dietlibc/lib/vsnprintf.c,
	mdk-stage1/dietlibc/include/signal.h,
	mdk-stage1/dietlibc/syscalls.s/pause.S,
	mdk-stage1/dietlibc/include/arpa/inet.h,
	mdk-stage1/dietlibc/include/sys/wait.h,
	mdk-stage1/dietlibc/alpha/time.S, mdk-stage1/dietlibc/lib/ttyname.c,
	mdk-stage1/dietlibc/lib/__lstat64.c, mdk-stage1/dietlibc/lib/__stat64.c,
	mdk-stage1/dietlibc/alpha/recv.S, mdk-stage1/dietlibc/lib/fgets.c,
	mdk-stage1/dietlibc/lib/strncat.c, mdk-stage1/dietlibc/lib/__lltostr.c,
	mdk-stage1/dietlibc/lib/__ltostr.c,
	mdk-stage1/dietlibc/sparc/__longjmp.S, mdk-stage1/dietlibc/lib/puts.c,
	mdk-stage1/dietlibc/lib/rand.c, mdk-stage1/dietlibc/syscalls.s/fsync.S,
	mdk-stage1/dietlibc/include/fnmatch.h, mdk-stage1/dietlibc/lib/fflush.c,
	mdk-stage1/dietlibc/lib/htons.c,
	mdk-stage1/dietlibc/syscalls.s/sigaltstack.S,
	mdk-stage1/dietlibc/include/sys/resource.h,
	mdk-stage1/dietlibc/lib/__stat64_cvt.c,
	mdk-stage1/dietlibc/lib/localtime.c,
	mdk-stage1/dietlibc/alpha/seteuid.c,
	mdk-stage1/dietlibc/syscalls.s/stime.S,
	mdk-stage1/dietlibc/include/resolv.h, mdk-stage1/dietlibc/lib/__xstat.c,
	mdk-stage1/dietlibc/ppc/Makefile.add,
	mdk-stage1/dietlibc/sparc/unified.S, mdk-stage1/dietlibc/lib/bsearch.c,
	mdk-stage1/dietlibc/include/net/if.h,
	mdk-stage1/dietlibc/include/shadow.h,
	mdk-stage1/dietlibc/lib/__rewinddir.c,
	mdk-stage1/dietlibc/include/daemon.h, mdk-stage1/dietlibc/lib/mkfifo.c,
	mdk-stage1/dietlibc/include/paths.h, mdk-stage1/dietlibc/include/pwd.h,
	mdk-stage1/dietlibc/lib/strrchr.c, mdk-stage1/dietlibc/lib/__seekdir.c,
	mdk-stage1/dietlibc/syscalls.h, mdk-stage1/dietlibc/alpha/shmctl.S,
	mdk-stage1/dietlibc/lib/fdglue.c, mdk-stage1/dietlibc/lib/fseek.c,
	mdk-stage1/dietlibc/include/regex.h,
	mdk-stage1/dietlibc/include/sys/ptrace.h,
	mdk-stage1/dietlibc/lib/tcdrain.c,
	mdk-stage1/dietlibc/syscalls.s/lstat.S,
	mdk-stage1/dietlibc/alpha/semctl.S, mdk-stage1/dietlibc/lib/recvfrom.c,
	mdk-stage1/dietlibc/lib/random.c,
	mdk-stage1/dietlibc/syscalls.s/times.S,
	mdk-stage1/dietlibc/lib/getpgrp.c, mdk-stage1/dietlibc/lib/cfmakeraw.c,
	mdk-stage1/dietlibc/lib/stat.c, mdk-stage1/dietlibc/syscalls.s/write.S,
	mdk-stage1/dietlibc/syscalls.s/dietlstat64.S,
	mdk-stage1/dietlibc/ppc/__testandset.S,
	mdk-stage1/dietlibc/include/mntent.h,
	mdk-stage1/dietlibc/include/sys/file.h,
	mdk-stage1/dietlibc/syscalls.s/fstat.S,
	mdk-stage1/dietlibc/syscalls.s/llseek.S,
	mdk-stage1/dietlibc/lib/strsep.c,
	mdk-stage1/dietlibc/include/sys/stat.h,
	mdk-stage1/dietlibc/syscalls.s/munlockall.S,
	mdk-stage1/dietlibc/syscalls.s/setpriority.S,
	mdk-stage1/dietlibc/include/assert.h,
	mdk-stage1/dietlibc/include/strings.h,
	mdk-stage1/dietlibc/include/alloca.h, mdk-stage1/dietlibc/lib/gmtime.c,
	mdk-stage1/dietlibc/lib/shmat.c, mdk-stage1/dietlibc/lib/__isnan.c,
	mdk-stage1/dietlibc/ppc/__longjmp.S,
	mdk-stage1/dietlibc/lib/__closedir.c,
	mdk-stage1/dietlibc/include/sys/signal.h,
	mdk-stage1/dietlibc/lib/rewinddir.c, mdk-stage1/dietlibc/lib/stdout.c,
	mdk-stage1/dietlibc/lib/vfprintf.c, mdk-stage1/dietlibc/.cvsignore,
	mdk-stage1/dietlibc/lib/telldir.c, mdk-stage1/dietlibc/include/glob.h,
	mdk-stage1/dietlibc/lib/tm_conv.c,
	mdk-stage1/dietlibc/syscalls.s/reboot.S,
	mdk-stage1/dietlibc/syscalls.s/sched_setscheduler.S,
	mdk-stage1/dietlibc/syscalls.s/umount2.S,
	mdk-stage1/dietlibc/syscalls.s/readv.S,
	mdk-stage1/dietlibc/lib/__fxstat.c,
	mdk-stage1/dietlibc/include/sys/select.h,
	mdk-stage1/dietlibc/syscalls.s/syslog.S,
	mdk-stage1/dietlibc/syscalls.s/sysinfo.S,
	mdk-stage1/dietlibc/lib/fprintf.c,
	mdk-stage1/dietlibc/include/sys/cdefs.h, mdk-stage1/dietlibc/README,
	mdk-stage1/dietlibc/lib/fread.c, mdk-stage1/dietlibc/lib/getpwnam.c,
	mdk-stage1/dietlibc/syscalls.s/getcwd.S,
	mdk-stage1/dietlibc/lib/getservent.c, mdk-stage1/dietlibc/lib/tolower.c,
	mdk-stage1/dietlibc/diet.c, mdk-stage1/dietlibc/alpha/recvfrom.S,
	mdk-stage1/dietlibc/include/elf.h, mdk-stage1/dietlibc/alpha/sendto.S,
	mdk-stage1/dietlibc/lib/fileno.c, mdk-stage1/dietlibc/i386/clone.S,
	mdk-stage1/dietlibc/lib/__opendir.c,
	mdk-stage1/dietlibc/include/sched.h, mdk-stage1/dietlibc/alpha/__time.c,
	mdk-stage1/dietlibc/lib/ispunct.c, mdk-stage1/dietlibc/lib/printf.c,
	mdk-stage1/dietlibc/lib/strtod.c, mdk-stage1/dietlibc/lib/strncasecmp.c,
	mdk-stage1/dietlibc/lib/__getcwd.c,
	mdk-stage1/dietlibc/include/netinet/in.h,
	mdk-stage1/dietlibc/lib/shmctl.c,
	mdk-stage1/dietlibc/syscalls.s/dietlstat.S,
	mdk-stage1/dietlibc/include/arpa/nameser.h,
	mdk-stage1/dietlibc/lib/assert_fail.c, mdk-stage1/dietlibc/lib/semctl.c,
	mdk-stage1/dietlibc/lib/shmdt.c, mdk-stage1/dietlibc/lib/shutdown.c,
	mdk-stage1/dietlibc/lib/setpgrp.c, mdk-stage1/dietlibc/alpha/msgrcv.S,
	mdk-stage1/dietlibc/lib/stderr.c,
	mdk-stage1/dietlibc/syscalls.s/close.S,
	mdk-stage1/dietlibc/syscalls.s/dietfstat.S,
	mdk-stage1/dietlibc/include/locale.h,
	mdk-stage1/dietlibc/syscalls.s/getpriority.S,
	mdk-stage1/dietlibc/lib/__fstat64.c, mdk-stage1/dietlibc/lib/isalpha.c,
	mdk-stage1/dietlibc/lib/reboot.c, mdk-stage1/dietlibc/lib/isspace.c,
	mdk-stage1/dietlibc/include/sys/mount.h,
	mdk-stage1/dietlibc/lib/creat.c, mdk-stage1/dietlibc/syscalls.s/lseek.S,
	mdk-stage1/dietlibc/sparc/clone.S, mdk-stage1/dietlibc/dietwarning.h,
	mdk-stage1/dietlibc/lib/islower.c,
	mdk-stage1/dietlibc/alpha/Makefile.add, mdk-stage1/dietlibc/lib/abort.c,
	mdk-stage1/dietlibc/alpha/msgctl.S, mdk-stage1/dietlibc/lib/isalnum.c,
	mdk-stage1/dietlibc/include/ctype.h,
	mdk-stage1/dietlibc/include/netdb.h,
	mdk-stage1/dietlibc/include/memory.h, mdk-stage1/dietlibc/lib/iscntrl.c,
	mdk-stage1/dietlibc/i386/Makefile.add, mdk-stage1/dietlibc/lib/getopt.c,
	mdk-stage1/dietlibc/syscalls.s/waitpid.S,
	mdk-stage1/dietlibc/lib/strtoul.c,
	mdk-stage1/dietlibc/syscalls.s/stat.S,
	mdk-stage1/dietlibc/syscalls.s/sysctl.S: import new version of dietlibc

	* mdk-stage1/insmod-busybox/busybox.h: fix conflicts with dietlibc headers

	* mdk-stage1/dietlibc/include/stdio.h,
	mdk-stage1/dietlibc/include/stdlib.h,
	mdk-stage1/dietlibc/include/math.h,
	mdk-stage1/dietlibc/include/sys/times.h: have slang and newt compile
	with dietlibc
	import new version of dietlibc

	* mdk-stage1/Makefile.common: new dietlibc binaries location

	* mdk-stage1/newt-frontend.c: i can compile slang and newt with dietlibc
	now

	* mdk-stage1/dietlibc/lib/abs.c: have slang and newt compile with dietlibc

	* mdk-stage1/dhcp.c: Have the wait_message() with the sleep()
	  - add a sleep(2) after ioctl ifupping so that further operation can
	work normally
	  - more logs

2001/05/14  kjx

	* share/po/zh_CN.GB2312.po: process untranslated

2001/05/14  Pixel  <pixel@mandrakesoft.com>

	* fs.pm, fsedit.pm, partition_table.pm, install_any.pm: basic xfs handling

2001/05/11  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: fixed missing package which may be selected on
	hardware during real install.

	* rescue/tree/etc/oem: added support to change boot entries when invoking
	oem script.
	fixed missing SCSI support and driver module loading.
	fixed missing speficic packages not installed on HW detected.

2001/05/08  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: VBox -> HBox in Embedded mode

	* standalone/mousedrake: code cleaned and debugged
	added mouse test. Ugly

2001/05/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stdio-frontend.c: fix minor stuff
	re-include correct layout for [] choices, in a smaller way than before

	* mdk-stage1/tools.c: minor fix
	needs to poll() for available data before loading ramdisk because ftp
	transfers would fail in some situations

	* mdk-stage1/init.c: new maxim

	* mdk-stage1/config-stage1.h: adjust COMPRESSION_RATIO so that last star
	is printed when last blocks of file are read

	* mdk-stage1/dhcp.c: use poll() rather than select() to win some bytesCVS:
	----------------------------------------------------------------------

2001/05/08  siegel

	* share/po/de.po: fixed plenty ugly typos

2001/05/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt_BR.po: updated Brazilian file

2001/05/07  yduret

	* docs/README.devel: fix one typo

	* any.pm, bootloader.pm: updated install_lilo() according to new lilo
	package
	(/boot/lilo-{menu,graphic,text})

2001/05/06  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: corrected bad output and bad adsl script

2001/05/06  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install2.pm: workaround for msec hang on PPC

2001/05/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: KDE+SOUND -> 4 xmms-arts

2001/05/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* mdk-stage1/mar/mar-extract-only.c: text size micro-opt

2001/05/04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: KDE+SOUND -> 4 xmms-arts

2001/05/04  Stew Benedict  <sbenedict@mandrakesoft.com>

	* c/smp.c, keyboard.pm, Xconfigurator.pm: force XF4 in expert too for PPC,
	don't run xmodmap, PPC SMP routine placeholder

2001/05/04  Thierry Vignaud  <tvignaud@mandrakesoft.com>

	* mdk-stage1/mar/mar-extract-only.c: text size micro-opt

2001/04/30  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/stdio-frontend.c: nicer layout for progressbar and
	statusreport, when update_progression
	Provide some description of the drivers

	* docs/HACKING: fix
	pserver -> ext

	* mdk-stage1/tools.c, mdk-stage1/Makefile, mdk-stage1/tools.h,
	mdk-stage1/newt-frontend.c, mdk-stage1/modules_descr.h,
	mdk-stage1/modules.c: Provide some description of the drivers

2001/04/30  Pixel  <pixel@mandrakesoft.com>

	* docs/README: s/gi.tar.bz2/DrakX-*.src.rpm/

	* docs/advocacy: fuck'em all

2001/04/26  François Pons  <fpons@mandrakesoft.com>

	* docs/README.devel, docs/README: added some more comments for DrakX code
	source and usage.

2001/04/25  François Pons  <fpons@mandrakesoft.com>

	* tools/oem-prepare: fixed use of VERSION file to find language.
	prepare a oem disk to be used by moving all files that will not be
	installed by oem (oem-master disk preparation).

	* rescue/tree/etc/closurepkgs, rescue/tree/etc/part_and_bootloader: fixed
	usage of free space on disk, added NVIDIA packages to install.

	* rescue/tree/etc/oem-server: added missing VERSION file.
	fixed usage of free space on disk, added NVIDIA packages to install.

	* rescue/tree/etc/oem: added missing autologin package.
	added option to enable oem mode.
	added missing VERSION file.
	fixed usage of free space on disk, added NVIDIA packages to install.

2001/04/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: version is labelled "cooker"

2001/04/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* tools/serial_probe/serial.c, tools/serial_probe/serial_probe.c:
	integrate fg's fixes for includes

2001/04/19  Stew Benedict  <sbenedict@mandrakesoft.com>

	* rescue/list.sparc, rescue/list.i386, rescue/list.ppc, rescue/list.alpha,
	rescue/list: move /sbin/sfdisk to list.arch, update both list.ppc

2001/04/18  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/network.c: fix bug that trashes the network config of stage1
	during stage2, when no DNS is provided

2001/04/18  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor: last corrections

	* standalone/draknet, netconnect.pm: last corrections
	corrected internet connection test, and parameters editing

	* install_steps_gtk.pm: corrected cursor on details

2001/04/18  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: * put am-utils and autofs in NETWORKING_FILE
	* drakprofile in level 1
	* swapped tkinter and python-devel
	* vnc-server in NETWORKING_REMOTE_ACCESS_SERVER
	* vnc-SVGALIB in level 2

2001/04/17  dam's  <damien@mandrakesoft.com>

	* standalone/mousedrake: fixed embedded

	* bootlook.pm: chmoded autologin

2001/04/17  François Pons  <fpons@mandrakesoft.com>

	* any.pm: restored grub as everything seems fine.

	* rescue/tree/etc/oem-server: fixed swap size instead of inst size for
	swap gap.
	make sure kernel will be selected.

	* rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
	make sure kernel is selected.

	* install_steps_interactive.pm: fixed missing mouse update in summary.

2001/04/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/rpmsrate: fix 75dpi-fonts bug with MAKEDEV

2001/04/17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* standalone/draknet: fixed typo

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/br.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: Updated Basque file

2001/04/17  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setRootPassword): better ensure
	'broadcast' insteaf of overriding
	(setRootPassword): set NIS to broadcast when NIS asked. Empty NIS still
	means no NIS

	* any.pm (setupBootloader): remove a warning

2001/04/17  warly

	* share/rpmsrate: put MAKEDEV at end of line

2001/04/17  dam's  <damien@mandrakesoft.com>

	* standalone/mousedrake: fixed embedded

	* bootlook.pm: chmoded autologin

2001/04/17  François Pons  <fpons@mandrakesoft.com>

	* any.pm: restored grub as everything seems fine.

	* rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
	make sure kernel is selected.
	fixed parted problem.

	* rescue/tree/etc/oem-server: fixed swap size instead of inst size for
	swap gap.
	make sure kernel will be selected.

	* install_steps_interactive.pm: fixed missing mouse update in summary.

2001/04/17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/br.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: Updated Basque file

2001/04/17  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setRootPassword): better ensure
	'broadcast' insteaf of overriding
	(setRootPassword): set NIS to broadcast when NIS asked. Empty NIS still
	means no NIS

	* any.pm (setupBootloader): remove a warning

2001/04/17  dam's  <damien@mandrakesoft.com>

	* bootlook.pm: chmoded autologin

2001/04/17  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
	make sure kernel is selected.
	fixed parted problem.

	* rescue/tree/etc/oem-server: fixed swap size instead of inst size for
	swap gap.
	make sure kernel will be selected.

2001/04/17  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setRootPassword): better ensure
	'broadcast' insteaf of overriding
	(setRootPassword): set NIS to broadcast when NIS asked. Empty NIS still
	means no NIS

	* any.pm (setupBootloader): remove a warning

2001/04/17  dam's  <damien@mandrakesoft.com>

	* bootlook.pm: chmoded autologin

2001/04/17  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed swap size instead of inst size for swap gap.
	make sure kernel is selected.
	fixed parted problem.

	* rescue/tree/etc/oem-server: fixed swap size instead of inst size for
	swap gap.
	make sure kernel will be selected.

2001/04/17  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setRootPassword): set NIS to broadcast
	when NIS asked. Empty NIS still means no NIS

	* any.pm (setupBootloader): remove a warning

2001/04/16  dam's  <damien@mandrakesoft.com>

	* any.pm: removed Grub if Embedded

2001/04/16  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: minor bug.

	* any.pm: removed Grub if Embedded

2001/04/16  dam's  <damien@mandrakesoft.com>

	* standalone/net_monitor: updated
	updated

	* network.pm: dhcpd -> dhcpcd

	* Xconfigurator.pm: added nice monitor.png

	* netconnect.pm: minor bug.
	dhcpd -> dhcpcd

	* standalone/draknet: updated

	* pixmaps/hori.png, pixmaps/colors.png, pixmaps/wiz_default_left.png,
	pixmaps/tradi.png, pixmaps/categ.png, pixmaps/wiz_default_up.png,
	pixmaps/verti.png, pixmaps/wiz_firewall.png, pixmaps/monitor.png,
	pixmaps/monitor-1280.png, pixmaps/monitor-1024.png, pixmaps/net_c.png,
	pixmaps/wiz_draknet.png, pixmaps/gmon.png, pixmaps/monitor-800.png,
	pixmaps/net_d.png, pixmaps/eth_card_mini.png, pixmaps/wiz_drakgw.png,
	pixmaps/monitor-640.png, pixmaps/colors8.png, pixmaps/colors16.png: plop
	removed for readd in kb

	* my_gtk.pm: corrected typo
	added grey fix for contreol-center

2001/04/16  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: added missing rio500 in closure.
	finally fixed menu by generating /etc/rpm/macros file.
	added missing LF.
	now fixed menu problems.
	try another fix for RPM_INSTALL_LANG as first fr_FR:fr instead of
	fr:fr_FR.
	really disable server.
	maybe fixed RPM_INSTALL_LANG (from "fr" to "fr:fr_FR" for french).
	fixed to avoid nasty message in wrong places.
	moved warning message around.
	fixed wrong LOCALES"...".
	fixed lang weirdness, fixed minimal size of / partition to be more
	confortable,
	fixed default language for starting DrakX after.

	* Xconfig.pm: fixed standalone error for wacom weirdness.
	fixed HASH() in /etc/X11/XF86Config*.

	* fs.pm: restored not neccessary to load reiserfs for formating.
	loading reiserfs module before formatting.

2001/04/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* pixmaps/monitor-800.png, pixmaps/monitor-1024.png,
	pixmaps/monitor-640.png, pixmaps/monitor-1280.png: add nice shots for
	XFdrake

	* mdk-stage1/TECH-INFOS: update doc

	* share/po/fr.po: fix minor thing

2001/04/16  Pixel  <pixel@mandrakesoft.com>

	* share/compssUsers: remove BURNER from Utilities

2001/04/16  warly

	* share/rpmsrate: lower portsentry

2001/04/16  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: added nice monitor.png

	* standalone/net_monitor: updated

	* pixmaps/hori.png, pixmaps/colors.png, pixmaps/wiz_default_left.png,
	pixmaps/tradi.png, pixmaps/categ.png, pixmaps/wiz_default_up.png,
	pixmaps/verti.png, pixmaps/wiz_firewall.png, pixmaps/monitor.png,
	pixmaps/monitor-1280.png, pixmaps/monitor-1024.png, pixmaps/net_c.png,
	pixmaps/wiz_draknet.png, pixmaps/gmon.png, pixmaps/monitor-800.png,
	pixmaps/net_d.png, pixmaps/eth_card_mini.png, pixmaps/wiz_drakgw.png,
	pixmaps/monitor-640.png, pixmaps/colors8.png, pixmaps/colors16.png: plop
	removed for readd in kb

	* my_gtk.pm: corrected typo
	added grey fix for contreol-center

2001/04/16  François Pons  <fpons@mandrakesoft.com>

	* Xconfig.pm: fixed standalone error for wacom weirdness.
	fixed HASH() in /etc/X11/XF86Config*.

	* rescue/tree/etc/oem: maybe fixed RPM_INSTALL_LANG (from "fr" to
	"fr:fr_FR" for french).
	fixed to avoid nasty message in wrong places.
	moved warning message around.
	fixed wrong LOCALES"...".
	fixed lang weirdness, fixed minimal size of / partition to be more
	confortable,
	fixed default language for starting DrakX after.

2001/04/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* pixmaps/monitor-800.png, pixmaps/monitor-1024.png,
	pixmaps/monitor-640.png, pixmaps/monitor-1280.png: add nice shots for
	XFdrake

2001/04/16  Pixel  <pixel@mandrakesoft.com>

	* share/compssUsers: remove BURNER from Utilities

2001/04/16  warly

	* share/rpmsrate: lower portsentry

2001/04/16  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: bugfix
	added update thread
	corrected bad install package.
	updated expert mode

	* network.pm, install_steps.pm: corrected bad install package.

	* Xconfigurator.pm: added nice monitor.png

	* tinyfirewall.pm: corrected package installation

	* standalone/net_monitor: updated

	* pixmaps/hori.png, pixmaps/colors.png, pixmaps/wiz_default_left.png,
	pixmaps/tradi.png, pixmaps/categ.png, pixmaps/wiz_default_up.png,
	pixmaps/verti.png, pixmaps/wiz_firewall.png, pixmaps/monitor.png,
	pixmaps/monitor-1280.png, pixmaps/monitor-1024.png, pixmaps/net_c.png,
	pixmaps/wiz_draknet.png, pixmaps/gmon.png, pixmaps/monitor-800.png,
	pixmaps/net_d.png, pixmaps/eth_card_mini.png, pixmaps/wiz_drakgw.png,
	pixmaps/monitor-640.png, pixmaps/colors8.png, pixmaps/colors16.png: plop
	removed for readd in kb

	* my_gtk.pm: corrected typo
	added grey fix for contreol-center

	* netconnect.pm: debug
	corrected bad install package.

2001/04/16  François Pons  <fpons@mandrakesoft.com>

	* Xconfig.pm: fixed standalone error for wacom weirdness.
	fixed HASH() in /etc/X11/XF86Config*.

	* rescue/tree/etc/oem: maybe fixed RPM_INSTALL_LANG (from "fr" to
	"fr:fr_FR" for french).
	fixed to avoid nasty message in wrong places.
	moved warning message around.
	fixed wrong LOCALES"...".
	fixed lang weirdness, fixed minimal size of / partition to be more
	confortable,
	fixed default language for starting DrakX after.

2001/04/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* pixmaps/monitor-800.png, pixmaps/monitor-1024.png,
	pixmaps/monitor-640.png, pixmaps/monitor-1280.png: add nice shots for
	XFdrake

2001/04/16  Pixel  <pixel@mandrakesoft.com>

	* share/compssUsers: remove BURNER from Utilities

	* install_any.pm (g_auto_install): do not take 'mkbootdisk'

2001/04/16  warly

	* share/rpmsrate: lower portsentry

2001/04/15  fabman

	* share/po/es.po: updates

2001/04/15  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fix minor typo

2001/04/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/gl.po: updated Galician file

2001/04/15  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (reallyChooseGroups): translate path (eg:
	Workstation, Server) to make gg happy

2001/04/15  fabman

	* share/po/es.po: updates

2001/04/15  fcrozat

	* share/rpmsrate: Add mozilla-mail and mozilla-irc to correct categories

2001/04/15  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fix minor typo

2001/04/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sv.po, share/po/ko.po: Updated Swedish and Korean files

2001/04/15  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (reallyChooseGroups): translate path (eg:
	Workstation, Server) to make gg happy

	* printerdrake.pm (main): restore the "Ok" button for the queues
	manipulation

	* any.pm (write_passwd_user): fix use of local

	* interactive.pm (ask_from_entries_refH_powered_normalize): add an eval
	around "require log" to keep perl from going totally mad (getting things
	like v18.843.482 required--this is only v5.6.0)

2001/04/15  yduret

	* bootlook.pm: bug fix: if cancel pressed in lilo/grub choice => return to
	mcc normally
	fix layout & size

2001/04/14  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: corrected isdn detect display

	* standalone/net_monitor, standalone/draknet: wait 10 sec, instead of 7

2001/04/14  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: changed priority level from 2 to 4 for rate
	selection of packages.

	* pkgs.pm: fixed absurd mismatch of use of <=> and cmp on versionCompare.

2001/04/14  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (naughtyServers): add apache

	* install_gtk.pm (createXconf): ensure the mouse device is created (mainly
	for auto_inst)

	* install_steps_interactive.pm (exitInstall): fix bad i18n of Replay
	button (thx2submarine)

2001/04/14  warly

	* share/rpmsrate: lower viavoicemenu to 1 to avoid error message for
	powerpack boxes without ViaVoice

2001/04/14  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: changed priority level from 2 to 4 for rate
	selection of packages.

	* pkgs.pm: fixed absurd mismatch of use of <=> and cmp on versionCompare.

2001/04/14  Pixel  <pixel@mandrakesoft.com>

	* lang.pm (load_po): s/!isStandalone/isInstall/ (mainly for XFdrake's
	test)

	* Xconfigurator.pm (use vars): fix stew sux
	(testFinalConfig): nicer stderr handling

	* interactive_gtk.pm, interactive_newt.pm (exit): fix the exit code

2001/04/14  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed to gzip synthesis file.
	safe guard generation of synthesis file.
	fixed umask on urpmi list file and generate synthesis file for each
	hdlist.

	* pkgs.pm: fixed absurd mismatch of use of <=> and cmp on versionCompare.

2001/04/14  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (configureX): fix link /etc/gtk (to
	/mnt/etc/gtk) instead of /etc/gtkrc

	* any.pm (autologin): spurious messages of chksession  -> dave nul

	* interactive_newt.pm (exit): fix the exit code
	(wait_message_endW): don't log "none stacked wait-messages" (as a lot of
	them exist...)
	(waitbox): remove spurious '0' in wait_messages

	* lang.pm (load_po): s/!isStandalone/isInstall/ (mainly for XFdrake's
	test)

	* Xconfigurator.pm (use vars): fix stew sux
	(testFinalConfig): nicer stderr handling

	* interactive_gtk.pm (exit): fix the exit code

2001/04/14  warly

	* share/compssUsers, share/list, share/rpmsrate: add icons in compssUser
	and list

2001/04/14  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed to gzip synthesis file.
	safe guard generation of synthesis file.
	fixed umask on urpmi list file and generate synthesis file for each
	hdlist.

2001/04/14  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (configureX): fix link /etc/gtk (to
	/mnt/etc/gtk) instead of /etc/gtkrc

	* any.pm (autologin): spurious messages of chksession  -> dave nul

	* interactive_newt.pm (exit): fix the exit code
	(wait_message_endW): don't log "none stacked wait-messages" (as a lot of
	them exist...)
	(waitbox): remove spurious '0' in wait_messages

	* lang.pm (load_po): s/!isStandalone/isInstall/ (mainly for XFdrake's
	test)

	* Xconfigurator.pm (use vars): fix stew sux
	(testFinalConfig): nicer stderr handling

	* interactive_gtk.pm (exit): fix the exit code

2001/04/14  Stew Benedict  <sbenedict@mandrakesoft.com>

	* Xconfigurator_consts.pm, mouse.pm, Xconfigurator.pm: updates to X, mouse
	setup for PPC

2001/04/14  warly

	* share/compssUsers, share/list, share/rpmsrate: add icons in compssUser
	and list

2001/04/13  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: net_cnx_up/down xritten in neuneu

	* Xconfigurator.pm: corrected
	updated
	updated message

	* standalone/draknet: message corrected

2001/04/13  fabman

	* share/po/es.po: synchro with EN

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: avoid locking cdrom for oem (compssUsers file still
	opened).

2001/04/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/no.po: Updated Norwegian file
	Updated po files

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/sr.po,
	share/po/de.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/ko.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/fi.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/vi.po, share/po/br.po,
	share/po/gl.po, share/po/ca.po, share/po/lv.po, share/po/uk.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: Updated po files

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (main): reverse message

	* install_steps_gtk.pm (installPackages): hide Details button sooner
	(installPackages): do not show button "Details" when no advertising

	* Xconfigurator_consts.pm: do not set XkbVariant "winkeys" for
	ru(winkeys), it is redondant

	* interactive_gtk.pm (ask_from_entries_refW): set_default_size width 250

	* any.pm (ask_users): do not have an empty icon. better not ask for icon
	if no icon

2001/04/13  siegel

	* share/po/de.po: updates

2001/04/13  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: net_cnx_up/down xritten in neuneu

	* Xconfigurator.pm: corrected
	updated
	updated message

	* standalone/draknet: message corrected

2001/04/13  fabman

	* share/po/es.po: synchro with EN

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: avoid locking cdrom for oem (compssUsers file still
	opened).

	* install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
	available.
	fixed very old typo not encountered before;

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (main): reverse message

	* install_steps_gtk.pm (installPackages): hide Details button sooner
	(installPackages): do not show button "Details" when no advertising

	* Xconfigurator_consts.pm: do not set XkbVariant "winkeys" for
	ru(winkeys), it is redondant

	* interactive_gtk.pm (ask_from_entries_refW): set_default_size width 250

	* any.pm (ask_users): do not have an empty icon. better not ask for icon
	if no icon

2001/04/13  warly

	* share/compssUsers: add ssh server in Network Computer Server

2001/04/13  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: net_cnx_up/down xritten in neuneu

	* Xconfigurator.pm: corrected
	updated
	updated message

	* standalone/draknet: message corrected

2001/04/13  fabman

	* share/po/es.po: synchro with EN

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
	available.
	fixed very old typo not encountered before;

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* common.pm (backtrace): created

	* install_steps_interactive.pm (addUser): remove the setting of
	$o->{autologin}, now done in any::autologin

	* install_steps_gtk.pm (installPackages): hide Details button sooner
	(installPackages): do not show button "Details" when no advertising

	* install2.pm (miscellaneous): add setting KEYBOARD=yes in
	/etc/sysconfig/usb as asked by Lord Chmou

	* interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
	list instead of dying (for 8.0 only, should be switched back to die)
	(ask_from_listf): display the backtrace when empty list

	* any.pm (ask_users): add the empty icon
	(autologin): fix

2001/04/13  warly

	* share/compssUsers: add ssh server in Network Computer Server

2001/04/13  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: updated
	updated message

	* netconnect.pm: net_cnx_up/down xritten in neuneu

	* standalone/draknet: message corrected

2001/04/13  fabman

	* share/po/es.po: synchro with EN

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
	available.
	fixed very old typo not encountered before;

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* common.pm (backtrace): created

	* install_steps_interactive.pm (addUser): remove the setting of
	$o->{autologin}, now done in any::autologin

	* install2.pm (miscellaneous): add setting KEYBOARD=yes in
	/etc/sysconfig/usb as asked by Lord Chmou

	* install_steps_gtk.pm (installPackages): do not show button "Details"
	when no advertising

	* interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
	list instead of dying (for 8.0 only, should be switched back to die)
	(ask_from_listf): display the backtrace when empty list

	* any.pm (ask_users): add the empty icon
	(autologin): fix

2001/04/13  warly

	* share/compssUsers: add ssh server in Network Computer Server

2001/04/13  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: updated
	updated message

	* netconnect.pm: net_cnx_up/down xritten in neuneu

	* standalone/draknet: message corrected

2001/04/13  fabman

	* share/po/es.po: synchro with EN

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
	available.
	fixed very old typo not encountered before;

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* common.pm (backtrace): created

	* install_steps_interactive.pm (addUser): remove the setting of
	$o->{autologin}, now done in any::autologin

	* install2.pm (miscellaneous): add setting KEYBOARD=yes in
	/etc/sysconfig/usb as asked by Lord Chmou

	* install_steps_gtk.pm (installPackages): do not show button "Details"
	when no advertising

	* interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
	list instead of dying (for 8.0 only, should be switched back to die)
	(ask_from_listf): display the backtrace when empty list

	* any.pm (ask_users): add the empty icon
	(autologin): fix

2001/04/13  warly

	* share/compssUsers: add ssh server in Network Computer Server

2001/04/13  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: updated
	updated message

	* standalone/draknet: message corrected
	updated

	* netconnect.pm: net_cnx_up/down xritten in neuneu

	* bootlook.pm: embedded = 0 -> local

2001/04/13  fabman

	* share/po/es.po: synchro with EN

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: avoid illegal modulus zero if no advertizing is
	available.
	fixed very old typo not encountered before;

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* common.pm (backtrace): created

	* install_steps_interactive.pm (addUser): remove the setting of
	$o->{autologin}, now done in any::autologin

	* install2.pm (miscellaneous): add setting KEYBOARD=yes in
	/etc/sysconfig/usb as asked by Lord Chmou

	* install_steps_gtk.pm (installPackages): do not show button "Details"
	when no advertising

	* interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
	list instead of dying (for 8.0 only, should be switched back to die)
	(ask_from_listf): display the backtrace when empty list

	* any.pm (ask_users): add the empty icon
	(autologin): fix

2001/04/13  warly

	* share/compssUsers: add ssh server in Network Computer Server
	add DATABASES to Database
	add icons for server

2001/04/13  dam's  <damien@mandrakesoft.com>

	* network.pm: updated wireless configuration

	* netconnect.pm: corrected loop in isdn + other things

	* bootlook.pm: embedded = 0 -> local

	* standalone/draknet: updated
	added delete event

2001/04/13  François Pons  <fpons@mandrakesoft.com>

	* netconnect.pm: fixed syntax error :-)

	* install_steps.pm, install_steps_gtk.pm: added conditional update-menus
	if package are installed.

	* install_steps_interactive.pm: added conditional update-menus if package
	are installed.
	make sure update-menus is called after installing cups related packages.

2001/04/13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/fr.po, share/po/sv.po, share/po/hu.po: Updated
	Croatian and Swedish files

	* share/po/sl.po, share/po/cy.po, share/po/ca.po, share/po/ga.po,
	share/po/is.po, share/po/cs.po: Removed po files with too low leve lof
	translating ( < 60% )
	so they are not included on final CD

2001/04/13  Pixel  <pixel@mandrakesoft.com>

	* common.pm (backtrace): created

	* install_steps_interactive.pm (addUser): remove the setting of
	$o->{autologin}, now done in any::autologin

	* bootlook.pm: don't use Locale::GetText, use DrakX's i18n

	* install2.pm (miscellaneous): add setting KEYBOARD=yes in
	/etc/sysconfig/usb as asked by Lord Chmou

	* interactive.pm (ask_from_entries_refH_powered_normalize): log the empty
	list instead of dying (for 8.0 only, should be switched back to die)
	(ask_from_listf): display the backtrace when empty list

	* my_gtk.pm (new): make dams happy

	* any.pm (ask_users): add the empty icon
	(autologin): fix

2001/04/13  warly

	* share/compssUsers: add DATABASES to Database
	add icons for server

2001/04/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dhcp.c: remove unnecessary redhat history code

2001/04/12  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: fixed wrong kernel version extraction (typically for
	upgrade).

	* install_steps_interactive.pm: removed Cancel of Summary.
	fixed ask printer configuration.

	* detect_devices.pm: fix Hewlett-Packard to HP in case.

	* standalone/printerdrake: never ask to configure a printer in standalone.

	* printerdrake.pm: automatically add a queue if nothing exists.
	fixed ask to configure a printer.

	* interactive.pm: removed strict die on empty list.

	* live_install2: added some gtk and gdk_imlib missing variables.

	* live_install: removed gtk variable for data, moved to second script.

	* modules.pm, commands.pm, lang.pm, pkgs.pm, keyboard.pm: fixed log of
	packdrake.

2001/04/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dhcp.c: remove unneeded #define

	* standalone/drakgw: add some rule so later on tinyfirewall will not
	prevent everything from working

	* share/po/fr.po: minor fix
	write some ppc translations

2001/04/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/it.po: Updated Italian file

2001/04/12  Pixel  <pixel@mandrakesoft.com>

	* printer.pm: use run_program and remove "require run_program"s

	* my_gtk.pm (main): only accept X (gdk) events key_press, key_release and
	exposure (so
	that not to receive motion_notify which would generate focus_out in
	non-interesting cases)

	* interactive.pm (ask_from_entries_refH_powered_normalize): fix the test
	for empty lists
	(ask_from_entries_refH_powered_normalize):
	  - when not_edit and empty list, die.
	  - when not_edit and single element list, don't display that entry.

	* lang.pm (pack_langs): set RPM_INSTALL_LANG for package "menu"

	* modules.pm (configure_pcmcia): better handling for not running cardmgr
	many times
	(configure_pcmcia): always run cardmgr so that it is run even if stage1
	did create a /var/run/stab. This is just a try :-/

2001/04/12  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: if neuneu but explicited clicked, don't skip
	corrected pcmcia driver

2001/04/12  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: removed Cancel of Summary.
	fixed ask printer configuration.

	* common.pm: improved bestMatchSentence2.

	* detect_devices.pm: fix Hewlett-Packard to HP in case.

	* standalone/printerdrake: never ask to configure a printer in standalone.

	* printerdrake.pm: automatically add a queue if nothing exists.
	fixed ask to configure a printer.

	* interactive.pm: removed strict die on empty list.

	* modules.pm, commands.pm, lang.pm, keyboard.pm, pkgs.pm: fixed log of
	packdrake.

2001/04/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: add some rule so later on tinyfirewall will not
	prevent everything from working

	* share/po/fr.po: write some ppc translations
	un-dadouize a problem

2001/04/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/it.po: Updated Italian file

2001/04/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (installPackages): fix no advertising with less
	than 20MB of packages

	* interactive.pm (ask_from_entries_refH_powered_normalize):
	  - when not_edit and empty list, die.
	  - when not_edit and single element list, don't display that entry.

	* install_steps_interactive.pm (configureX): fix for X test at install
	with exotic fonts

	* lang.pm (pack_langs): set RPM_INSTALL_LANG for package "menu"

	* modules.pm (configure_pcmcia): better handling for not running cardmgr
	many times
	(configure_pcmcia): always run cardmgr so that it is run even if stage1
	did create a /var/run/stab. This is just a try :-/

2001/04/12  dam's  <damien@mandrakesoft.com>

	* bootlook.pm: corrected typo
	added use bootloader

	* standalone/net_monitor: typo

	* netconnect.pm: if neuneu but explicited clicked, don't skip
	corrected pcmcia driver
	corrected typo

	* lang.pm: pixel sux

	* network.pm, standalone/draknet: corrected network connection

	* my_gtk.pm: corrected set_modal

2001/04/12  fabman

	* share/po/es.po: updated spanish .po files

2001/04/12  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: removed Cancel of Summary.
	fixed ask printer configuration.

	* common.pm: improved bestMatchSentence2.

	* detect_devices.pm: fix Hewlett-Packard to HP in case.

	* standalone/printerdrake: never ask to configure a printer in standalone.

	* printerdrake.pm: automatically add a queue if nothing exists.
	fixed ask to configure a printer.

	* modules.pm, commands.pm, lang.pm, keyboard.pm, pkgs.pm: fixed log of
	packdrake.

2001/04/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: un-dadouize a problem
	sync

2001/04/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sp.po, share/po/fi.po, share/po/DrakX.pot,
	share/po/zh_CN.GB2312.po, share/po/es.po, share/po/fr.po,
	share/po/sr.po, share/po/de.po, share/po/el.po, share/po/et.po,
	share/po/sk.po, share/po/eu.po, share/po/sl.po, share/po/vi.po,
	share/po/ko.po, share/po/eo.po, share/po/ja.po, share/po/wa.po,
	share/po/sv.po, share/po/da.po, share/po/is.po, share/po/zh_TW.Big5.po,
	share/po/id.po: Updated Chinese file

	* share/po/it.po: Updated Italian file
	Updated Chinese file

2001/04/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (installPackages): fix no advertising with less
	than 20MB of packages

	* interactive.pm (ask_from_entries_refH_powered_normalize):
	  - when not_edit and empty list, die.
	  - when not_edit and single element list, don't display that entry.

	* install_steps_interactive.pm (configureX): fix for X test at install
	with exotic fonts

	* lang.pm (pack_langs): set RPM_INSTALL_LANG for package "menu"

	* modules.pm (configure_pcmcia): better handling for not running cardmgr
	many times
	(configure_pcmcia): always run cardmgr so that it is run even if stage1
	did create a /var/run/stab. This is just a try :-/

2001/04/12  siegel

	* share/po/de.po: new german version

2001/04/12  yduret

	* bootlook.pm: added some stuff

2001/04/11  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: no setmodal 0 if wizard

2001/04/12  dam's  <damien@mandrakesoft.com>

	* bootlook.pm: corrected typo
	added use bootloader

	* netconnect.pm: corrected typo

2001/04/12  fabman

	* share/po/es.po: updated spanish .po files

2001/04/12  siegel

	* share/po/de.po: new german version

2001/04/11  dam's  <damien@mandrakesoft.com>

	* share/themes-mdk.rc: tooltips

	* netconnect.pm: updated

	* my_gtk.pm: no setmodal 0 if wizard

2001/04/11  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (reallyChooseGroups): relook

	* install_steps_interactive.pm (chooseGroups): warn if chosen size is too
	big

	* share/compssUsers: adapt for new profile choosing layout

2001/04/11  yduret

	* bootlook.pm: bug fix in autologin

2001/04/11  dam's  <damien@mandrakesoft.com>

	* share/themes-mdk.rc: tooltips

	* bootlook.pm: updated
	corrected

	* tinyfirewall.pm: installation of package : not at the same place

	* netconnect.pm: updated
	added driver for pcmcia, corrected eth conf for pppoe

2001/04/11  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: added missing LD_LOADER for calling rpm.

	* printerdrake.pm: fixed probe on kernel 2.4.
	make printer devices more accurate.
	removed limitation to only one port probed

	* pkgs.pm: added missing use of LD_LOADER for starting parsehdlist on
	upgrade.

	* detect_devices.pm: avoid need of shell for live upgrade on serial_probe
	(removed 2>/dev/null which
	is not necessary).
	fixed printer probe (usb and parallel).

	* mouse.pm: fix wacom usb tablet

	* standalone/printerdrake: added missing take into account of
	/etc/modules.conf

	* lang.pm: added missing LD_LOADER reference and remove old code
	commented.

2001/04/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: unfuzzyize
	sync with new msg in services.pm and compssUsers
	sync with pablo update
	fixes of translations
	write the shitload of untranslated and fuzzy msg

	* standalone/tinyfirewall: i18n title

	* services.pm: have many more services tooltipped from here so we can get
	translations afterwards

	* share/compssUsers: fix typos of rpmsrate groups

	* standalone/drakgw: kosmetik
	do i18n for title also

2001/04/11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/rpmsrate: Added reference to netscape-chinese_big5 file

	* share/po/DrakX.pot, share/po/wa.po: Updated Walloon file
	Updated po files
	Updated Slovak, Walloon and Polish files

	* share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/de.po,
	share/po/ko.po, share/po/ja.po, share/po/is.po, share/po/zh_TW.Big5.po,
	share/po/it.po, share/po/id.po, share/po/pl.po, share/po/fi.po,
	share/po/zh_CN.GB2312.po, share/po/sk.po, share/po/vi.po,
	share/po/ca.po, share/po/cs.po: Updated po files
	Updated Slovak, Walloon and Polish files

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/ga.po,
	share/po/sr.po, share/po/et.po, share/po/tr.po, share/po/eu.po,
	share/po/az.po, share/po/ru.po, share/po/pt_BR.po, share/po/hr.po,
	share/po/cy.po, share/po/nl.po, share/po/sv.po, share/po/hu.po,
	share/po/no.po, share/po/th.po, share/po/el.po, share/po/lt.po,
	share/po/sl.po, share/po/br.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/af.po: Updated po files

2001/04/11  Pixel  <pixel@mandrakesoft.com>

	* run_program.pm (rooted): don't call install_any::check_prog if rooted

	* standalone/drakboot: make it work (why was bootloader::install
	commented?)

	* share/compssUsers: adapt for new profile choosing layout

	* Makefile: take cardmgr-*

	* install_steps_interactive.pm (chooseGroups): warn if chosen size is too
	big
	translate the ``path'' in profile selection

	* share/po/i18n_compssUsers: relooking

	* any.pm (setupBootloader): translate the bootloaders to use
	(setupBootloader): nicer look&feel

	* install_any.pm (fsck_option): add a closing ``"'' so that strings to
	i18n extraction works
	(fsck_option): add a closing ``"'' so that strings to i18n extraction
	works
	(check_prog): make it work

	* install_steps_gtk.pm (reallyChooseGroups): relook
	(installPackages): pressing "Details" gives you more detailed info
	(reallyChooseGroups): start relooking
	(installPackages): don't display advertising if less 20MB of packages
	translate the ``path'' in profile selection

2001/04/11  warly

	* share/compssUsers: Add descr for servers

2001/04/11  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: make printer devices more accurate.
	removed limitation to only one port probed

	* mouse.pm: fix wacom usb tablet

	* standalone/printerdrake: added missing take into account of
	/etc/modules.conf

	* detect_devices.pm: fixed printer probe (usb and parallel).

2001/04/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* services.pm: have many more services tooltipped from here so we can get
	translations afterwards

	* share/po/fr.po: write the shitload of untranslated and fuzzy msg

	* share/compssUsers: fix typos of rpmsrate groups

2001/04/11  Pixel  <pixel@mandrakesoft.com>

	* run_program.pm (rooted): don't call install_any::check_prog if rooted

	* diskdrake.pm (More): fix exception relaunching

	* install_any.pm (check_prog): make it work

	* any.pm (setupBootloader): nicer look&feel

	* standalone/drakboot: make it work (why was bootloader::install
	commented?)

	* Makefile: take cardmgr-*

2001/04/11  fabman

	* share/po/es.po: updated spanish .po file

2001/04/11  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: make printer devices more accurate.
	removed limitation to only one port probed

	* mouse.pm: fix wacom usb tablet

	* standalone/printerdrake: added missing take into account of
	/etc/modules.conf

	* detect_devices.pm: fixed printer probe (usb and parallel).

2001/04/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: write the shitload of untranslated and fuzzy msg

2001/04/11  Pixel  <pixel@mandrakesoft.com>

	* tools/make_mdkinst_stage2: to lighten mdkinst_stage2:
	  - completly remove po's (will be getFile'd)
	  - remove LVM progs, resize_reiserfs, big fonts (will be getFile'd)

	* standalone/drakboot: make it work (why was bootloader::install
	commented?)

	* share/aliases: add rmmod -> insmod_

	* lang.pm (get_x_fontset): special cases for some big (size) fonts

	* Makefile: take cardmgr-*

	* install_any.pm (check_prog): make it work
	(check_prog): if a prog isn't available, try to fetch it via getFile
	(remove_bigseldom_used): created, purpose: remove unneeded stuff on
	stage2
	to allow a getAndSaveFile.
	(getAndSaveFile): if only one arg is given, assume the name is the same

	* standalone/XFdrake: fix bug for running xfs

	* any.pm (setupBootloader): nicer look&feel

	* diskdrake.pm (More): fix exception relaunching
	check resize_reiserfs is there or get it

	* run_program.pm (rooted): don't call install_any::check_prog if rooted
	in install, call install_any::check_prog to allow shadow progs which are
	fetched when needed via getFile

	* share/list: remove rmmod (is now a symlink)

2001/04/11  siegel

	* share/po/de.po: updated german version

2001/04/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ca.po: Updated Catalan file

2001/04/10  Pixel  <pixel@mandrakesoft.com>

	* Makefile: 
	  - fix wiz_*.png removing
	  - fix copying cardmgr* which included cardmgr.o

2001/04/11  Pixel  <pixel@mandrakesoft.com>

	* tools/make_mdkinst_stage2: to lighten mdkinst_stage2:
	  - completly remove po's (will be getFile'd)
	  - remove LVM progs, resize_reiserfs, big fonts (will be getFile'd)

	* standalone/XFdrake: fix bug for running xfs

	* diskdrake.pm: check resize_reiserfs is there or get it

	* share/aliases: add rmmod -> insmod_

	* install_any.pm (check_prog): if a prog isn't available, try to fetch it
	via getFile
	(remove_bigseldom_used): created, purpose: remove unneeded stuff on
	stage2
	to allow a getAndSaveFile.
	(getAndSaveFile): if only one arg is given, assume the name is the same

	* share/list: remove rmmod (is now a symlink)

	* run_program.pm: in install, call install_any::check_prog to allow shadow
	progs which are
	fetched when needed via getFile

	* lang.pm (get_x_fontset): special cases for some big (size) fonts

2001/04/10  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: corrected bad network restart

	* my_gtk.pm: corrected bad font

	* network.pm: get rid of ifcfg-
	minor correction

2001/04/10  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: fixed selection of CDs.

	* devices.pm: added input/event class of devices (necessary for usb wacom
	at install)

2001/04/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/mkinitrd_helper/mkinitrd_helper.c,
	mdk-stage1/mkinitrd_helper/Makefile: 
	  - honour quiet mode at boot time
	  - fake modprobe to shut up kmod

	* bootlook.pm: do not use french in i18n'ed msg yvounet!!

	* standalone/drakgw: add INTERFACE param in sysconfig parameter for smooth
	interoperation with bastille-firewall

2001/04/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po: Updated Czech file
	Updated po files

	* share/po/ko.po, share/po/ja.po, share/po/id.po, share/po/vi.po: Updated
	Indonesian, Japanese, Korean and Vietnamese files
	Updated po files

	* share/po/DrakX.pot, share/po/wa.po, share/po/fi.po: Added a missing
	translatable string
	Updated po files

	* share/po/ca.po: Updated Catalan file
	Updated po files

	* share/locales.tar.bz2: Added missing file for Vietnamese

	* share/po/bg.po: Updated Bulgarian file
	Updated po files

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/es.po,
	share/po/fr.po, share/po/ga.po, share/po/sr.po, share/po/de.po,
	share/po/et.po, share/po/tr.po, share/po/eu.po, share/po/az.po,
	share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/cy.po,
	share/po/nl.po, share/po/sv.po, share/po/is.po, share/po/hu.po,
	share/po/zh_TW.Big5.po, share/po/it.po, share/po/pl.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/br.po,
	share/po/gl.po, share/po/lv.po, share/po/uk.po, share/po/eo.po,
	share/po/ro.po, share/po/da.po, share/po/af.po: Updated po files

2001/04/10  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm: use gtkset_tip (so that no tip is set when tip eq
	'')
	(create_boxradio): handle double_click
	(ask_from_entries_refW): use radio boxes instead of list/clist if small
	number
	of choices
	(create_ctree): handle single click on node opens the node

	* my_gtk.pm: create and use gtkset_tip
	(_create_window): XSetInputFocus done only on expose_event of the
	topmost window
	(new): ensure only one modal

	* Xconfigurator.pm (main): have an "Ok" button to leave

	* install_steps_gtk.pm: use gtkset_tip
	(choosePackagesTree): fix "Show automatically selected packages"
	create and use gtkset_tip

	* Makefile: 
	  - fix wiz_*.png removing
	  - fix copying cardmgr* which included cardmgr.o

2001/04/10  warly

	* share/rpmsrate: add viavoicemenu_{us,gr,fe}

2001/04/10  yduret

	* bootlook.pm: grub/lilo mode

2001/04/10  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: corrected bad network restart

	* my_gtk.pm: corrected bad font

	* network.pm: get rid of ifcfg-
	minor correction

2001/04/09  dam's  <damien@mandrakesoft.com>

	* tinyfirewall.pm: typo

2001/04/09  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Create): check for 40MB instead of 32MB for min reiserfs
	size as the check is done before rounding.

	* bootloader.pm (install_grub): altconfigfile only if /boot is not
	reiserfs :-/

	* tools/make_mdkinst_stage2: fix the stage2 too big (was keeping too many
	modules.cz)

	* install_any.pm (setPackages): also have SOUND set in compssUsersChoice
	based on pciusbtable

	* share/compssUsers, share/rpmsrate: 
	  - SOUND is now a flag
	  - AUDIO is the group

2001/04/09  siegel

	* tinyfirewall.pm: i18n fixes

2001/04/09  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixes of grub installation using hd.img
	fix the fix for loopback mounting of hd.img.

	* Xconfigurator.pm: fixed always 8bpp for autoDefaultDepth.

	* pkgs.pm: changed transaction error management this way: if a transaction
	fails, DrakX
	tries to make as many transaction as there are package that have failed
	to be
	installed (this means one transaction of only one package). This help
	installing
	most package that are correct (as a transaction that failed cause all
	remaining
	package to be not installed).

2001/04/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile: 8.0rc -> 8.0

	* rescue/tree/etc/oem: fix english thanks to Kevin

	* standalone/drakgw: do not die when an initscript returns non-0
	(initscripts too buggy)

2001/04/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/gl.po, share/po/ca.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Updated Danish file

	* any.pm: changed  ISO_8859-1 TO ISO-8859-1

2001/04/09  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pm, install_steps.pm, any.pm: create to_utf8 from po strings,
	use it for kdm message

	* diskdrake.pm (Create): check for 40MB instead of 32MB for min reiserfs
	size as the check is done before rounding.

	* bootloader.pm (install_grub): altconfigfile only if /boot is not
	reiserfs :-/

	* tools/make_mdkinst_stage2: fix the stage2 too big (was keeping too many
	modules.cz)

	* install2.pm (main): sets umask (seems like default one is no more 022,
	kernel change?)

	* Xconfigurator_consts.pm, Xconfig.pm, Xconfigurator.pm: handle XkbModel
	(especially for abnt2 (br))

	* install_any.pm (setPackages): also have SOUND set in compssUsersChoice
	based on pciusbtable

	* share/compssUsers, share/rpmsrate: 
	  - SOUND is now a flag
	  - AUDIO is the group

	* lang.pm (load_po): sets $lang::charset to the charset used in the po

2001/04/09  siegel

	* share/po/de.po: fixes

	* Xconfigurator.pm: fixed i18n bug

2001/04/09  yduret

	* standalone/tinyfirewall: button policy (thx gc)

	* standalone/drakgw: deyvounification : remove some un-useful comments in
	code

2001/04/09  dam's  <damien@mandrakesoft.com>

	* tinyfirewall.pm: corrected

	* standalone.pm: install function now returns the return value of the
	system.

	* netconnect.pm: corrected buggy cable
	removed buggy modem screen repetition

2001/04/09  François Pons  <fpons@mandrakesoft.com>

	* standalone/mousedrake: fixed mousedrake (with interactive.pm fixes
	applied).
	fixed cancel support.
	added conditional restart of gpm on mouse configuration change.

	* fs.pm: removed notail option for reiserfs.

	* standalone/keyboarddrake: fixed exit on cancel (should cause trouble in
	DrakConf only).

	* install_any.pm: added missing package to copy.

	* rescue/tree/etc/oem: fixes of grub installation using hd.img
	fix the fix for loopback mounting of hd.img.
	fixed hd.img access right.
	make kernel22 installed for every oem install...
	moved some package to closure instead of installed.
	added some missing packages.
	added nolock option for nfsmount.
	added missing package to copy.

2001/04/09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/init.c: fix Traktopel Maxim thanks to Kevin Lawton

	* mdk-stage1/Makefile: 8.0beta -> 8.0rc

	* standalone/drakgw: fix for when there is an already existing rc.firewall
	complies with old format of drakgw so that upgrades will work

	* rescue/tree/etc/oem: fix english thanks to Kevin

2001/04/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* any.pm: changed  ISO_8859-1 TO ISO-8859-1

2001/04/09  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pm, install_steps.pm, any.pm: create to_utf8 from po strings,
	use it for kdm message

	* interactive.pm (ask_from_treelistf): make it behaves correctly when
	"cancel" is clicked

	* Xconfigurator_consts.pm, Xconfig.pm, Xconfigurator.pm: handle XkbModel
	(especially for abnt2 (br))

	* install2.pm (main): sets umask (seems like default one is no more 022,
	kernel change?)
	(main): log the umask

	* devices.pm (entry): add hd[ijkl]*

	* bootloader.pm (install_lilo): better handling of map-drive (there's not
	always only 2 disks!)

	* lang.pm (load_po): sets $lang::charset to the charset used in the po

2001/04/09  siegel

	* share/po/de.po: fixes

2001/04/09  yduret

	* standalone/drakboot: added lilo/grub

	* bootlook.pm: added lilo/grub mode

2001/04/09  dam's  <damien@mandrakesoft.com>

	* modules.pm: removed use install_any

	* tinyfirewall.pm: corrected

	* netconnect.pm: corrected buggy cable
	removed buggy modem screen repetition
	corrected bad bug when creating new profile

	* standalone.pm: install function now returns the return value of the
	system.

	* Makefile: removed install_any

2001/04/09  François Pons  <fpons@mandrakesoft.com>

	* standalone/mousedrake: fixed mousedrake (with interactive.pm fixes
	applied).
	fixed cancel support.
	added conditional restart of gpm on mouse configuration change.

	* rescue/tree/etc/oem: fixed hd.img access right.
	make kernel22 installed for every oem install...
	moved some package to closure instead of installed.
	added some missing packages.
	added nolock option for nfsmount.
	added missing package to copy.

	* fs.pm: removed notail option for reiserfs.

	* standalone/keyboarddrake: fixed exit on cancel (should cause trouble in
	DrakConf only).

	* printer.pm: added Till patch for printer (raw queue and PostScript
	queue).

	* install_any.pm: added missing package to copy.

2001/04/09  kjx

	* share/po/zh_CN.GB2312.po: translate before 8.0 release

2001/04/09  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): log the umask

	* interactive.pm (ask_from_treelistf): make it behaves correctly when
	"cancel" is clicked

	* devices.pm (entry): add hd[ijkl]*

	* bootloader.pm (install_lilo): better handling of map-drive (there's not
	always only 2 disks!)

2001/04/09  yduret

	* bootlook.pm: fix, added lilo/grub frame
	fixed till bug

2001/04/08  dam's  <damien@mandrakesoft.com>

	* rescue/tree/etc/oem, rescue/tree/etc/closurepkgs, install_any.pm: get
	rid of kisdn

	* tinyfirewall.pm: updated
	added package installation

	* netconnect.pm: get rid of kisdn
	updated
	no more askwarn in wizard mode
	updated

	* standalone/tinyfirewall, standalone/drakgw, my_gtk.pm,
	netconnect_consts.pm: updated

	* standalone/net_monitor: removed Data::Dumper
	typo

	* standalone/draknet: updated
	typo
	corrected bad isdn field

2001/04/08  daouda

	* share/rpmsrate: increase quanta weight .

2001/04/08  fabman

	* share/po/es.po: updated spanish .po files

2001/04/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: correct my mistakes on removing some modules from stage1 and
	stage2 (-> remove only from stage1)

2001/04/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/compssUsers.desktop, standalone/draknet: Fixed some english typos

	* standalone/net_monitor, netconnect.pm: Some English changes

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Fixed some english typos
	Updated pot file and various po files

2001/04/08  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (write): remove debugging info :-(

	* bootloader.pm (suggest): add option "quiet" to the kernel in fb
	(requested by chmou)

	* install_steps.pm (afterInstallPackages): remove setting of kde charset
	in kdeglobals (kde is a grown-up now)

2001/04/08  siegel

	* share/po/de.po: new german version
	updates

2001/04/07  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: typo
	typo
	net_monitor incorporation

	* standalone/net_monitor, Makefile.config: net_monitor incorporation

2001/04/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po: updated Croatian files

	* share/po/wa.po, share/po/sr.po, share/po/sp.po, share/po/DrakX.pot,
	share/po/ko.po, share/po/it.po: Updated Korean, Italian, Serbian and
	Walloon files

2001/04/07  warly

	* share/compssUsers: PCL-CVS release v2_9_9
	Repository       : :ext:warly@cvs.mandrakesoft.com:/home/cvs/cooker
	Working directory: /home/warly/local/share/mdk/gi/perl-install/share/
	In directory .:
	              Modified                compssUsers
	In directory po:
	patched       Up-To-Date              po/DrakX.pot
	patched       Up-To-Date              po/ca.po
	patched       Up-To-Date              po/de.po
	patched       Up-To-Date              po/hr.po
	patched       Up-To-Date              po/id.po
	patched       Up-To-Date              po/it.po
	patched       Up-To-Date              po/ja.po
	patched       Up-To-Date              po/ko.po
	patched       Up-To-Date              po/sp.po
	patched       Up-To-Date              po/sr.po
	patched       Up-To-Date              po/vi.po
	patched       Up-To-Date              po/wa.po
	
	  --------------------- End ---------------------
	  -- last cmd: cvs -f update -d -P --

	* share/rpmsrate: PCL-CVS release v2_9_9
	Repository       : :ext:warly@cvs.mandrakesoft.com:/home/cvs/cooker
	Working directory: /home/warly/local/share/mdk/gi/perl-install/share/
	In directory .:
	              Modified                rpmsrate
	
	  --------------------- End ---------------------
	  -- last cmd: cvs -f update -d -P --

2001/04/06  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed absence of /boot in install CD for oem stuff.

2001/04/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: use jeff's suggestions to remove some old stuff
	Sun Happy Meal only for Sparc

	* mdk-stage1/stdio-frontend.c, mdk-stage1/probing.c, mdk-stage1/modules.c:
	
	  - do not print warning when we are in AUTOMATIC and insmod failed
	because of file-not-found in mar file (raid cards, etc)
	  - print "please include msg from Alt-F3" for this warning message to
	ease further support
	  - print pci entry of cards found in te logs

	* mdk-stage1/mkinitrd_helper/mkinitrd_helper.c,
	mdk-stage1/mkinitrd_helper/Makefile: steal raid_autorun from rh

2001/04/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ca.po, share/po/id.po: Updated Catalan and Indonesian files

	* share/po/ja.po, share/po/vi.po: Updated Japanese and Vietnamese files

2001/04/06  siegel

	* share/po/de.po: updates

2001/04/06  yduret

	* standalone/drakgw: swap cancel/configure button

2001/04/06  dam's  <damien@mandrakesoft.com>

	* standalone/draknet2: dead code

	* standalone/net_monitor: updated

	* netconnect.pm: be quiet

2001/04/06  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed absence of /boot in install CD for oem stuff.
	fixed if label does not exists and grub refuse to read.

	* install_steps_interactive.pm: fixed typo for cups checking of
	installation.
	fixed "No printer" after configuring cups for remove server.
	added log for CD medium chosen par user.

	* pkgs.pm: added killing on child process of transaction that have been
	detached (typically
	with pid > transaction_pid and parent is 1).

2001/04/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: 
	  - correct yvounetification in i18n stuff
	  - remove some remaining debugging printings
	  - add a bit more of explanations when starting drakgw in wizard mode

	* modules.pm: re integrate some TR net cards

	* mdk-stage1/stdio-frontend.c, mdk-stage1/probing.c, mdk-stage1/modules.c:
	
	  - do not print warning when we are in AUTOMATIC and insmod failed
	because of file-not-found in mar file (raid cards, etc)
	  - print "please include msg from Alt-F3" for this warning message to
	ease further support
	  - print pci entry of cards found in te logs

2001/04/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Updated Thai file
	Updated pot file

2001/04/06  yduret

	* standalone/drakgw: swap cancel/configure button

2001/04/06  dam's  <damien@mandrakesoft.com>

	* my_gtk.pm: addde tk like routines

	* netconnect.pm: be quiet
	correctedInternetAccessTye and ADSLType

	* Makefile: iCorrected missing file install_any.pm. pixel sux.

	* standalone/draknet2: dead code

	* standalone/net_monitor: updated
	updated
	updated
	updated
	updated
	added

	* pixmaps/net_d.png, pixmaps/net_c.png: added

	* share/logo-mandrake.png: new icon

2001/04/06  François Pons  <fpons@mandrakesoft.com>

	* rescue/tree/etc/oem: fixed if label does not exists and grub refuse to
	read.

	* install_steps_interactive.pm: fixed typo for cups checking of
	installation.
	fixed "No printer" after configuring cups for remove server.
	added log for CD medium chosen par user.

	* pkgs.pm: added killing on child process of transaction that have been
	detached (typically
	with pid > transaction_pid and parent is 1).

2001/04/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Updated Thai file
	Updated pot file

2001/04/06  Pixel  <pixel@mandrakesoft.com>

	* tools/make_mdkinst_stage2: instead of removing modules.cz-2.2*, remove
	every modules.cz except the
	biggest one

	* install_steps.pm, fs.pm, install2.pm: create install_any::write_fstab
	and use it

	* install_any.pm: add write_fstab
	create install_any::write_fstab and use it

2001/04/06  yduret

	* bootlook.pm: minor fix

	* standalone/drakgw: recoded a embedded && gtk mode

2001/04/05  Pixel  <pixel@mandrakesoft.com>

	* lang.pm (fs_options): created (gets codepage and iocharset)

	* common.pm (if_): better logging of the error

2001/04/06  Pixel  <pixel@mandrakesoft.com>

	* tools/make_mdkinst_stage2: instead of removing modules.cz-2.2*, remove
	every modules.cz except the
	biggest one

	* install_steps.pm, fs.pm, install2.pm: create install_any::write_fstab
	and use it

	* install_any.pm: add write_fstab
	create install_any::write_fstab and use it

2001/04/05  Pixel  <pixel@mandrakesoft.com>

	* standalone/drakboot: 
	  - fix getting result of fsedit::hds
	  - cleanup

	* lang.pm (fs_options): created (gets codepage and iocharset)

	* common.pm (if_): better logging of the error
	(getVarsFromSh): fix for AA="" inspired by chmou the Great (but the
	Great
	what?)

	* bootloader.pm (install_grub): small fix
	(install_lilo): fix lilo's dumbness (when lilo warns about not the first
	drive, it usually fails)

	* diskdrake.pm (More): created, asks for supermount, rescue pt, reload.

	* install_steps_interactive.pm (addUser): default autologin to first user
	in beginner

2001/04/05  Pixel  <pixel@mandrakesoft.com>

	* any.pm (autologin): fix
	ask for autologin

	* install_steps_interactive.pm: ask for autologin
	(generateAutoInstFloppy): do not use $o->{pcmcia} to know if pcmcia.img
	was used. Better have a look at /proc/cmdline

	* bootloader.pm (install_lilo): fix lilo's dumbness (when lilo warns about
	not the first drive, it usually fails)

	* pkgs.pm, share/rpmsrate: 
	  - s/PCI/HW/
	  - add rio500

	* install_any.pm (kernelVersion): fix enormous stupid typo

	* common.pm (getVarsFromSh): fix for AA="" inspired by chmou the Great
	(but the Great
	what?)

	* install_steps.pm (exitInstall): oups, report_bug is no more in
	commands::

	* diskdrake.pm (More): created, asks for supermount, rescue pt, reload.

2001/04/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (choosePackagesTree): invert the meaning of 'Show
	automatically selected
	packages' to go along with the new description

	* Xconfigurator.pm (write_XF86Config): try to have $_ interpreted
	(otherwise you get things like ``InputDevice "Stylus$_" "AlwaysCore"'')

	* install_any.pm (kernelVersion): fix enormous stupid typo
	  - move report_bug in install_any
	  - g_auto_install generates the auto_inst.cfg string without output'ing
	it

	* install_steps.pm (exitInstall): oups, report_bug is no more in
	commands::
	(configureXBefore): fix the xkb verification (was broken for things like
	``de(nodeadkeys)'')
	  - move report_bug in install_any
	  - g_auto_install generates the auto_inst.cfg string without output'ing
	it

	* any.pm: ask for autologin

	* fs.pm (format_reiserfs): quietly format reiserfs

	* commands.pm: 
	  - move report_bug in install_any
	  - g_auto_install generates the auto_inst.cfg string without output'ing
	it

	* install_steps_interactive.pm: ask for autologin
	(generateAutoInstFloppy): do not use $o->{pcmcia} to know if pcmcia.img
	was used. Better have a look at /proc/cmdline
	  - move report_bug in install_any
	  - g_auto_install generates the auto_inst.cfg string without output'ing
	it

	* share/rpmsrate: 
	  - add ldetect
	  - the default Aurora chose is the categorizing one

2001/04/05  siegel

	* share/po/de.po: fixed typo

2001/04/05  yduret

	* bootlook.pm: fix pablo mess
	install autolgin just if we want to autolog :)

2001/04/05  dam's  <damien@mandrakesoft.com>

	* ChangeLog, bootloader.pm: readded passwd. Must verify that it's secure
	vs msec.

	* my_gtk.pm: added gtksize

2001/04/05  fcrozat

	* share/rpmsrate: No longer propose nautilus-mozilla (required by
	nautilus)
	propose nautilus-trilobite (for Eazel services)

2001/04/05  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (choosePackagesTree): invert the meaning of 'Show
	automatically selected
	packages' to go along with the new description

	* commands.pm, install_steps_interactive.pm, install_any.pm: 
	  - move report_bug in install_any
	  - g_auto_install generates the auto_inst.cfg string without output'ing
	it

	* fs.pm (format_reiserfs): quietly format reiserfs

	* Xconfigurator.pm (write_XF86Config): try to have $_ interpreted
	(otherwise you get things like ``InputDevice "Stylus$_" "AlwaysCore"'')

	* share/rpmsrate: 
	  - add ldetect
	  - the default Aurora chose is the categorizing one

	* install_steps.pm (configureXBefore): fix the xkb verification (was
	broken for things like ``de(nodeadkeys)'')
	  - move report_bug in install_any
	  - g_auto_install generates the auto_inst.cfg string without output'ing
	it

2001/04/05  siegel

	* share/po/de.po: fixed typo

2001/04/05  yduret

	* bootlook.pm: fix pablo mess
	install autolgin just if we want to autolog :)

2001/04/04  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: added SCANNER and PHOTO groups

2001/04/04  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: make sure to insmod parport_probe alone as it is not
	available in 2.4 kernel and
	this this not a problem (silent error).
	added complete callback to check queue name under cups does contains
	only letters, numerics or underscore.

	* install_steps_interactive.pm: fixed printer description in summary.

	* install2.pm: added selectPackagesToUpgrade the first time choosePackages
	is called.

	* Xconfigurator.pm: removed limitation to 24 bits for SiS card, make sure
	to remove 32 bits depth
	for such card.

	* detect_devices.pm: fixed parport probe for printer under 2.4 kernel.

	* diskdrake.pm: fixed adding 1 to size for resize2fs, causing a corruption
	some times.

	* printer.pm: added die on error of lpadmin.

	* install_any.pm: fixed multiple wait message (looking+finding packages)

2001/04/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sk.po, share/po/az.po: Updated Azeri and Slovak files

2001/04/04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (tv): add ultracam & usbvideo
	(@skip_modules_on_stage1): kaweth and pegasus doesn't work on stage1, so
	skip them
	(@skip_modules_on_stage1): kaweth and pegasus doesn't work on stage1, so
	skip them

	* install_any.pm (kernelVersion): cleanup

2001/04/04  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_any.pm: kernelVersion mods for PPC

2001/04/04  daouda

	* share/rpmsrate: add gatos for ati tv card .

2001/04/04  Frederic Lepied  <flepied@mandrakesoft.com>

	* share/rpmsrate: added SCANNER and PHOTO groups

2001/04/04  François Pons  <fpons@mandrakesoft.com>

	* live_install: unset locale environment for safety

	* detect_devices.pm: added missing LD_LOADER reference for /bin/dmesg
	(needed for live upgrade so
	that error message are not printed)

	* diskdrake.pm: fixed adding 1 to size for resize2fs, causing a corruption
	some times.

	* install_steps_gtk.pm: fixed to use SHARE_PATH instead of /usr/share

	* any.pm, netconnect.pm: use SHARE_PATH instead of /usr/share

	* install2.pm: added selectPackagesToUpgrade the first time choosePackages
	is called.

	* install_any.pm: fixed multiple wait message (looking+finding packages)

2001/04/04  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (setPackages): better handling for tv, photo and scanner

	* modules.pm (@skip_modules_on_stage1): kaweth and pegasus doesn't work on
	stage1, so skip them
	  - add photo, tv and scanner
	  - add pegasus and kaweth modules

2001/04/04  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: typo

2001/04/04  daouda

	* share/rpmsrate: add gatos for ati tv card .
	reput klyx but in lower weight (2)
	removed klyx from rpmsrate (bad idea according to pixel )
	add klyx in install "Office KDE"

2001/04/04  François Pons  <fpons@mandrakesoft.com>

	* live_install: unset locale environment for safety

	* detect_devices.pm: added missing LD_LOADER reference for /bin/dmesg
	(needed for live upgrade so
	that error message are not printed)

	* install_steps_gtk.pm: fixed to use SHARE_PATH instead of /usr/share

	* any.pm, netconnect.pm: use SHARE_PATH instead of /usr/share

	* install2.pm: added selectPackagesToUpgrade the first time choosePackages
	is called.

	* install_steps.pm: disable frame buffer for Matrox cards.

	* install_any.pm: fixed multiple wait message (looking+finding packages)

2001/04/04  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (setPackages): better handling for tv, photo and scanner

	* modules.pm (@skip_modules_on_stage1): kaweth and pegasus doesn't work on
	stage1, so skip them
	  - add photo, tv and scanner
	  - add pegasus and kaweth modules

	* share/compssUsers: remove TV (it is a hardware flag)

2001/04/03  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: keep mount point configuration trhough multi-passes of
	diskdrake and others.

	* Xconfigurator.pm: prefer XF3 for SiS card.

2001/04/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sr.po, share/po/sp.po, share/po/ko.po: Updated Korean file

2001/04/03  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: do not use isSpecial which should only be used on
	partitions
	(main): do not have loopback pseudo hd in hds out of diskdrake

	* modules.pm (load_raw): add the require install_any

	* share/rpmsrate: restore Aurora (i really don't understand what i've done
	with flag AURORA a month ago) to a simple behaviour

	* install_steps_interactive.pm (choosePackages): do not make a special
	case for upgrades (was: select the
	min size, which was on contradiction with profile selection)

	* fs.pm (real_format_part): give "-v 1" to mkreiserfs if kernel is 2.2

	* standalone/mousedrake: fix horrible error (using an undefined $o)

	* share/list: add back mkreiserfs

	* standalone/XFdrake: don't start xfs if skiptest

	* fsedit.pm (get_fstab): restore loopback::loopbacks because hds contains
	only true
	hard drives (not pseudo one like raid, loopback and lvm)

	* bootloader.pm (suggest): trap strange error. Should not really fix the
	pb

	* install_steps.pm (setupBootloaderBefore): nicer Aurora presence
	detetection

	* lang.pm (charset): fix for chineese which have charset in the name

	* Makefile: no more special case for mkreiserfs (can be done via -v 1)

	* install_steps_gtk.pm (choosePackagesTree): better name than "Automatic
	dependencies"

	* install_any.pm (setPackages): don't preselect profiles in upgrade
	(setPackages): handle Flag:<theflag>
	(setPackages): install kernel22 if install kernel is a 2.2

	* lvm.pm (get_lvs): remove the setting of flag isFormatted which was wrong
	(didn't
	propose to format it)
	protect the loading of module lvm-mod

2001/04/03  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_steps_interactive.pm, mouse.pm: PPC keyboard/mouse button
	emulation

2001/04/03  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: a lot of bugfixs
	corrected bad flag test
	corrected bad priority

	* standalone/draknet: typo
	bug fixes
	removed debugging messages and Data::Dumper
	corrected bad flag test

2001/04/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/vi.po, share/po/DrakX.pot: Updated Vietnamese file

2001/04/03  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_raw): add the require install_any

	* share/rpmsrate: restore Aurora (i really don't understand what i've done
	with flag AURORA a month ago) to a simple behaviour

	* lang.pm (charset): fix for chineese which have charset in the name

	* install_steps.pm (setupBootloaderBefore): nicer Aurora presence
	detetection

	* Makefile: no more special case for mkreiserfs (can be done via -v 1)

	* install_steps_interactive.pm (choosePackages): do not make a special
	case for upgrades (was: select the
	min size, which was on contradiction with profile selection)

	* fs.pm (real_format_part): give "-v 1" to mkreiserfs if kernel is 2.2

	* install_steps_gtk.pm (choosePackagesTree): better name than "Automatic
	dependencies"

	* install_any.pm (setPackages): don't preselect profiles in upgrade
	(setPackages): handle Flag:<theflag>
	(setPackages): install kernel22 if install kernel is a 2.2

	* share/list: add back mkreiserfs

	* standalone/XFdrake: don't start xfs if skiptest

	* lvm.pm (get_lvs): remove the setting of flag isFormatted which was wrong
	(didn't
	propose to format it)
	protect the loading of module lvm-mod

2001/04/02  dam's  <damien@mandrakesoft.com>

	* modules.pm: corrected petite's mistake

	* netconnect.pm: protecting against non existent files

2001/04/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/make_boot_img, mdk-stage1/.cvsignore: fix
	comply to all.kernels policy

	* tools/make_mdkinst_stage2: fix remove of alternate cz modules

2001/04/02  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/cs.po: Updated Czech file

	* lang.pm: codepage option to mount requires only numeric values, eg "437"
	and not "cp437"
	Changed accordingly in the lists

	* share/rpmsrate: Install latin2 Postscript fonts for latin2 locales,
	install fonts-ttf-thai for Thai locale

2001/04/02  Pixel  <pixel@mandrakesoft.com>

	* c/Makefile: small cleanup for pcmcia_probe.c

	* tools/Makefile (install): s/-r/-rf/

	* install_any.pm (setPackages): s/reiserfs-utils/reiserfsprogs/
	(setPackages): install imwheel if nbuttons > 3

	* c/Makefile.PL: small cleanup for pcmcia_probe.c
	don't use pcmcia_probe.o from stage1, better compile it here, otherwise
	perl-install require mdk-stage1 to do compiled => circular dependency

	* Makefile: ignore dams or at least dams errors

	* c/.cvsignore: add pcmcia_probe.c

2001/04/02  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/make_rescue_img: fix pixelization (aka take advantage of
	all.kernels/.main)

2001/04/02  Pixel  <pixel@mandrakesoft.com>

	* tools/Makefile (install): s/-r/-rf/

2001/03/30  Pixel  <pixel@mandrakesoft.com>

	* tools/Makefile (install): fix the globbing for packdrake.pm and
	rpmtools.pm

2001/03/29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* rescue/drvinst: test for "Card:" and not install, some videoboards are
	not reported as DISPLAY_VGA :-(

	* tools/make_mdkinst_stage2, docs/HACKING, rescue/make_rescue_img,
	mdk-stage1/pci-resource/update-pci-ids.pl, docs/README: support more
	than one boot kernel :-)

	* rescue/list.i386: add reiserfsck

2001/03/29  dam's  <damien@mandrakesoft.com>

	* tinyfirewall.pm: bad message at the end if kernel2.4

	* netconnect.pm: added missing Device in Ethx when saving/loading

	* standalone/draknet: translation

2001/03/28  dam's  <damien@mandrakesoft.com>

	* standalone/tinyfirewall: typo

	* interactive_gtk.pm: corrected pixel shit if embedded

	* standalone/draksec: embedded mode

	* standalone/draknet: corrected gtkpng in gtkwpm
	added translation

	* bootlook.pm: cute button box

	* tinyfirewall.pm: workaround to make it work if kernel 2.4

2001/03/28  fcrozat

	* share/rpmsrate: gmc is back in standard GNOME install, for people with
	existing home

2001/03/28  François Pons  <fpons@mandrakesoft.com>

	* standalone/mousedrake, mouse.pm, standalone/XFdrake: fixed for
	standalone XFdrake and mousedrake (multi-mouse and
	correct probe (USB)).

	* Xconfig.pm: re-fix mouse fix.
	fixed wrong mouse probe.
	fixed for standalone XFdrake and mousedrake (multi-mouse and
	correct probe (USB)).

	* Xconfigurator.pm: restore multi mouse support for XF3.

2001/03/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/ca.po, share/po/tr.po: Updated Catalan, Danish,
	Finnish, Croatian and Turkish files

	* share/po/sk.po, share/po/ko.po: Updated Finnish, Korean and Slovak files

	* share/po/az.po: Updated Azeri and Danish files

	* share/po/fi.po: Updated Catalan, Danish, Finnish, Croatian and Turkish
	files
	Updated Finnish, Korean and Slovak files

	* share/po/da.po: Updated Catalan, Danish, Finnish, Croatian and Turkish
	files
	Updated Azeri and Danish files

2001/03/28  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: add fstab in the log

	* interactive_gtk.pm: better default_size setting

	* commands.pm: fix typo
	add fstab in the log

	* install_gtk.pm (test_mouse): ensure the test mouse is not too big

2001/03/28  warly

	* share/rpmsrate: add some commercial apps

2001/03/27  dam's  <damien@mandrakesoft.com>

	* bootlook.pm: added kill USR2 before main

	* share/help.png: changed help button

	* share/help.xpm: changed help

	* tinyfirewall.pm: workaround to make it xork.

2001/03/27  François Pons  <fpons@mandrakesoft.com>

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: update boot image.

	* Xconfigurator.pm: fixed mouse support for XF3, only one mouse supported
	currently.

2001/03/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/nfsmount.c: force 8192 bytes for nfs transfers

2001/03/27  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/i18n_compssUsers, share/po/vi.po, share/po/fi.po,
	share/po/br.po, share/po/DrakX.pot, share/po/ko.po, share/po/ja.po,
	share/po/wa.po, share/po/de.po, share/po/id.po: Updated Vietnamese,
	Indonesian, Japanese, Korean and Walloon files
	changed i18n_compssUsers to make "path" i18n'able

2001/03/27  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: warnAboutNaughtyServers
	(setPackages): default profiles selection to GNOME, KDE, CONFIG

	* install_steps_interactive.pm: warnAboutNaughtyServers
	(summary): fix displaying of printer configured

	* pkgs.pm: warnAboutNaughtyServers

	* install_steps_gtk.pm (installPackages): catch the no png file exception
	(in case warly is dumb again)

	* my_gtk.pm: try to fix displaying in draksec
	(create_box_with_title): save the box_size in field "box_size"

	* install2.pm, any.pm: remove use of Bastille. get back to the good state
	we had :)

	* interactive_gtk.pm: try to fix displaying in draksec

	* share/rpmsrate: move back Bastille-Curses-module to CONFIG
	  - cleanup LOCALES"zh_*": when there is LOCALES"zh_*", there is
	LOCALES"zh"
	  - raise WindowMaker
	  - add xfce
	  - am-utils is a server
	  - raise some stuff in CONFIG to have stuff there
	  - remove drakxtools from CONFIG (DrakConf requires drakxtools)
	  - DrakConf from 5 to 4

	* lang.pm (langsLANGUAGE): give the list of languages

2001/03/27  Stew Benedict  <sbenedict@mandrakesoft.com>

	* install_steps_interactive.pm: change verbage on bootloader warning

2001/03/27  siegel

	* share/po/de.po: minor typo-fixes

2001/03/27  dam's  <damien@mandrakesoft.com>

	* share/help.png: changed help button

	* share/help.xpm: changed help

2001/03/27  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm, pkgs.pm: fixed too early erasing of old rpmlib db. now
	postponed at end of install
	and only if rpm-4.0 or above has been installed.

	* mdk-stage1/init-data/msgboot-graphicallogo.img.bz2: update boot image.

	* Xconfigurator_consts.pm, mouse.pm, Xconfigurator.pm, Xconfig.pm: added
	support for two mice (laptop). The second mice is generally PS/2 as
	probe can says it is present.

2001/03/27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/nfsmount.c: force 8192 bytes for nfs transfers

2001/03/27  Pixel  <pixel@mandrakesoft.com>

	* any.pm, install2.pm: remove use of Bastille. get back to the good state
	we had :)

	* install_any.pm: warnAboutNaughtyServers
	(setPackages): default profiles selection to GNOME, KDE, CONFIG

	* share/rpmsrate: move back Bastille-Curses-module to CONFIG
	  - cleanup LOCALES"zh_*": when there is LOCALES"zh_*", there is
	LOCALES"zh"
	  - raise WindowMaker
	  - add xfce
	  - am-utils is a server
	  - raise some stuff in CONFIG to have stuff there
	  - remove drakxtools from CONFIG (DrakConf requires drakxtools)
	  - DrakConf from 5 to 4

	* install_steps_interactive.pm: warnAboutNaughtyServers
	(summary): fix displaying of printer configured

	* lang.pm (langsLANGUAGE): give the list of languages

	* pkgs.pm: warnAboutNaughtyServers

	* install_steps_gtk.pm (installPackages): catch the no png file exception
	(in case warly is dumb again)

2001/03/27  siegel

	* share/po/i18n_compssUsers: i18n group names

	* share/po/de.po: minor typo-fixes
	new german version

2001/03/26  daouda

	* share/rpmsrate: add mandrake_desk and rootfiles to SYSTEM (rpmsrate)

2001/03/26  fcrozat

	* share/rpmsrate: Install xscreensaver when installing GNOME

2001/03/26  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: first attempt at pixelization of code (till's cups
	patches)

2001/03/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/hr.po, share/po/wa.po: Updated Croatian, vietnamese and Walloon
	files

	* share/po/vi.po: Updated Croatian, vietnamese and Walloon files
	Updated Portuguese, Swedish and Thai files

	* share/po/pt.po, share/po/th.po, share/po/es.po, share/po/de.po,
	share/po/sv.po: Updated Portuguese, Swedish and Thai files

2001/03/25  Pixel  <pixel@mandrakesoft.com>

	* http.pm (getFile): verify the return value of the server. If not 200
	(aka Ok),
	return undef

	* install_steps_interactive.pm (configurePrinter): add Mesa-common for xpp
	and libqtcups2 for kups in
	pkg_install_if_requires_satisfied

2001/03/25  siegel

	* share/po/de.po: new german version

2001/03/25  fabman

	* share/po/es.po: updated spanish .po file

2001/03/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ko.po: Updated Korean file

	* share/po/sv.po: Updated Swedish file

2001/03/25  Pixel  <pixel@mandrakesoft.com>

	* http.pm (getFile): verify the return value of the server. If not 200
	(aka Ok),
	return undef

	* install_steps_interactive.pm (configurePrinter): add Mesa-common for xpp
	and libqtcups2 for kups in
	pkg_install_if_requires_satisfied

	* any.pm (ask_users): fix dead-loop

	* bootloader.pm (suggest): add entry for nt

2001/03/25  siegel

	* share/po/de.po: new german version

2001/03/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/vi.po: Updated Vietnamese file

2001/03/24  Pixel  <pixel@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: remove the "use common" which
	is unneeded (and "member" of merge2pcitable
	was clashing)

	* any.pm (ask_users): when "Done" is pressed, do "Accept User" if a user
	is given.

	* install_steps.pm (addUser): disable_user_view (in kdm/gdm) if no users

	* install_any.pm (disable_user_view): created, takes care of gdm too
	(taken from msec)

	* mouse.pm (detect): fix francois... uh, no too hard. easier to fix
	francois's bugs ;pp

	* timezone.pm (%l2t): fix for fuzzyChoice

	* share/keyboards.tar.bz2: 
	  - readding with -kb
	  - fixing permissions on xmodmap.kr
	remove before adding again with -kb

	* modules.pm: have natsemi in network.img

2001/03/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Updated Azeri file

2001/03/24  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (detect): fix francois... uh, no too hard. easier to fix
	francois's bugs ;pp

	* timezone.pm (%l2t): fix for fuzzyChoice

	* modules.pm: 
	  - add missing modules (now in sync with pcitable)
	  - add 'media' class
	  - cleanup

2001/03/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/es.po, share/po/fr.po, share/po/bg.po, share/po/ga.po,
	share/po/sr.po, share/po/de.po, share/po/et.po, share/po/tr.po,
	share/po/eu.po, share/po/az.po, share/po/ru.po, share/po/pt_BR.po,
	share/po/hr.po, share/po/ko.po, share/po/cy.po, share/po/nl.po,
	share/po/ja.po, share/po/wa.po, share/po/sv.po, share/po/is.po,
	share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po, share/po/id.po,
	share/po/pl.po, share/po/fi.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Updated Azeri file

2001/03/24  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (copy_advertising): fix escaping $f causing perl to
	segfault :-(
	(copy_advertising): handle i18n'ed advertising

	* pkgs.pm: cleanup

	* modules.pm: 
	  - add missing modules (now in sync with pcitable)
	  - add 'media' class
	  - cleanup

2001/03/24  dam's  <damien@mandrakesoft.com>

	* tinyfirewall.pm: corrected bad exited. reincorporated some ugly code,
	need fixing

2001/03/24  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (copy_advertising): handle i18n'ed advertising

	* modules.pm (read_stage1_conf): cleanup parport stuff obsolote in kernel
	2.4

2001/03/23  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixed screen id for Device to be present whenever the
	same BusID is used.
	added multiple tablet support (wacom), moved usb probe for mouse and
	tablet
	at the beginning.

	* printerdrake.pm: Do not ask to configure a printer if standalone,
	previously only for embended.

	* Xconfig.pm: fixed typo for wacom.
	added multiple tablet support (wacom), moved usb probe for mouse and
	tablet
	at the beginning.

	* mouse.pm, detect_devices.pm, install_steps_gtk.pm, install2.pm: added
	multiple tablet support (wacom), moved usb probe for mouse and tablet
	at the beginning.

2001/03/23  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (ask_from_listf_no_check): fix the fix fix fix
	(ask_from_listf_no_check): fix the fix fix

	* common.pm (formatError): created

	* network.pm (configureNetworkIntf): gray "IP address" and "Netmask" in
	DHCP/BOOTP

	* diskdrake.pm (try): format the error (no more "at line ...")
	(Add2LVM): "new" was not i18n'ed

	* install_steps_interactive.pm (exitInstall): no "cancel" button

	* partition_table.pm: add Empty to bad_types

	* fsedit.pm (change_type): When changing a partition type from ext2fs to
	Linux RAID
	(or LVM), the mount point should be removed.

2001/03/23  siegel

	* share/po/de.po: new german version

2001/03/23  dam's  <damien@mandrakesoft.com>

	* tinyfirewall.pm: corrected bad translation
	correctedd typo
	updated
	code cleaning
	tinyfirewall now works.

	* Makefile.config: added tinyfirewall

	* any.pm, mouse.pm: added /dev/modem in modem list selection

	* standalone/drakxconf: added tinyfirewall entry

	* standalone/tinyfirewall: added update code
	updated wrapper to launch tinyfirewall in embedded mode

	* netconnect.pm: added /dev/modem in modem list selection
	netconnect doesn't write the file 1

2001/03/23  fcrozat

	* share/rpmsrate: nautilus-mozilla and xalf are installed by default in
	GNOME
	gmc is not installed by default in GNOME
	gabber gaim are moved to instant messaging
	gcombust in moved to GNOME CD burner
	gtm is installed by GNOME/File transfer
	mozilla is installed by default as www browser
	galeon is installed by default as www browser for GNOME

2001/03/23  François Pons  <fpons@mandrakesoft.com>

	* tools/syncrpms: added size-stamp test to copy identical file in version,
	release.

	* Xconfig.pm: fixed typo for wacom.
	added multiple tablet support (wacom), moved usb probe for mouse and
	tablet
	at the beginning.

	* Xconfigurator.pm: added multiple tablet support (wacom), moved usb probe
	for mouse and tablet
	at the beginning.
	fixed wrong usage of Screen keyword in Device section, should be present
	and
	reseted for any multi head card with only one BusID.

	* mouse.pm, detect_devices.pm, install_steps_gtk.pm, install2.pm: added
	multiple tablet support (wacom), moved usb probe for mouse and tablet
	at the beginning.

2001/03/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/es.po, share/po/de.po, share/po/fi.po: Added Vietnamese file
	Updated Finnish file

	* share/po/be.po, share/po/sp.po, share/po/pt.po, share/po/DrakX.pot,
	share/po/fr.po, share/po/bg.po, share/po/ga.po, share/po/sr.po,
	share/po/et.po, share/po/tr.po, share/po/eu.po, share/po/az.po,
	share/po/ru.po, share/po/pt_BR.po, share/po/hr.po, share/po/ko.po,
	share/po/cy.po, share/po/nl.po, share/po/ja.po, share/po/wa.po,
	share/po/is.po, share/po/hu.po, share/po/zh_TW.Big5.po, share/po/it.po,
	share/po/id.po, share/po/pl.po, share/po/no.po,
	share/po/zh_CN.GB2312.po, share/po/th.po, share/po/el.po,
	share/po/sk.po, share/po/lt.po, share/po/sl.po, share/po/vi.po,
	share/po/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/uk.po, share/po/eo.po, share/po/ro.po, share/po/da.po,
	share/po/cs.po, share/po/af.po: Added Vietnamese file

2001/03/23  Pixel  <pixel@mandrakesoft.com>

	* any.pm: ifix the dams stuff

	* install_steps_interactive.pm (exitInstall): no "cancel" button

	* share/po/i18n_compssUsers: fix for better compliance with po format

	* netconnect.pm: ifix the dams stuff
	cleanup and enable gzip'ed isdn.db

	* Makefile: gzip ldetect-lst files

	* modules.pm: add i810_audio (still need a script to add missing one and
	keep in sync)

	* bootloader.pm (suggest_floppy): don't add an entry for non-fd0 drives

	* interactive.pm (ask_from_listf_no_check): fix the fix fix fix
	(ask_from_listf_no_check): fix the fix fix
	(ask_from_listf_no_check): fix the bad fix

	* common.pm (formatError): created
	(openFileMaybeCompressed, catMaybeCompressed): added
	(getVarsFromSh): take care of comments