summaryrefslogtreecommitdiffstats
path: root/perl-install/ChangeLog
blob: 82d1893852f466f6ef879063f484d68c731ac774 (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
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
2001/01/17  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm, install_any.pm: fixes with /tmp/rhimage and
	/tmp/image.

	* pkgs.pm: update to use new header file format in hdlist (added arch) but
	depslist has not it...

	* install2.pm: fixes with /tmp/rhimage and /tmp/image

2001/01/16  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/bg.po: updated bulgarian file

2001/01/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/url.c: use strrchr instead of doing it by hand

	* mdk-stage1/insmod-busybox/busybox.h,
	mdk-stage1/insmod-busybox/utility.c, mdk-stage1/insmod-busybox/insmod.c:
	
	  - replace remaining perror's with log_perror's
	  - little code cleanup

	* mdk-stage1/stage1-data/stage1.tar.bz2,
	mdk-stage1/stage1-data/stage1-with-sash.tar.bz2: add /dev/fd0

	* mdk-stage1/stage1.c, mdk-stage1/modules.h, mdk-stage1/tools.c,
	mdk-stage1/tools.h, mdk-stage1/disk.c, mdk-stage1/modules.c: 
	  - add load of third party modules in Expert mode (PS rulz)

2001/01/12  siegel

	* share/po/de.po: updates

2001/01/12  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: fixed addUser for invocation of
	any::ask_users.
	fixed bad invocation of installation of X server.

2001/01/12  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/cdrom.c: add more memory carefulness with CDROM install
	  - add wait_message for initializing of CDROM's (it can be long when
	it's SCSI)
	  - print CDROM drive names (model) in dialogs

	* mdk-stage1/mount.c, mdk-stage1/lomount.c, mdk-stage1/disk.c: 
	  - fix behaviour with bad ISO images (DISK installs)
	  - better dialogs for DISK installs

2001/01/12  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: make lang list in format for tree-selector

2001/01/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/disk.c: fix failing umount for DISK installs in some failing
	loopback situations
	act nicely when no partitions are found on some disk

	* mdk-stage1/modules.h: polish generic blank.img situation (no modules
	and/or modules.dep available)

	* mdk-stage1/lomount.c: fix failing umount for DISK installs in some
	failing loopback situations
	better log messages
	continue anyway when insmod'ing of modules fail (for blank.img)

	* mdk-stage1/probing.c: close some fd's

	* mdk-stage1/stage1.c, mdk-stage1/modules.c: polish generic blank.img
	situation (no modules and/or modules.dep available)
	continue anyway when insmod'ing of modules fail (for blank.img)

2001/01/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/Makefile, mdk-stage1/disk.c: 
	  - add DISK install from ISO image file
	  - add FTP
	  - add HTTP
	  - use single place for mountpoints and static directories

	* mdk-stage1/hack, mdk-stage1/lomount.c, mdk-stage1/lomount.h: 
	  - add DISK install from ISO image file

	* mdk-stage1/stage1.c, mdk-stage1/config-stage1.h, mdk-stage1/stage1.h,
	mdk-stage1/tools.c, mdk-stage1/stdio-frontend.c, mdk-stage1/cdrom.c,
	mdk-stage1/tools.h, mdk-stage1/newt-frontend.c, mdk-stage1/network.c: 
	  - add FTP
	  - add HTTP
	  - use single place for mountpoints and static directories

	* mdk-stage1/insmod-busybox/Config.h: tweak config

2001/01/11  Pixel  <pixel@mandrakesoft.com>

	* standalone/adduserdrake: adduserdrake may handles autologin

	* install_steps.pm (addUser): set autologin

	* install2.pm (addUser): moved setAuthentication to install_steps::addUser

	* install_steps_interactive.pm (addUser): fix

2001/01/11  dam's  <damien@mandrakesoft.com>

	* install_steps.pm, install_steps_interactive.pm, ChangeLog,
	netconnect.pm: updated

2001/01/11  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/pci-resource/update-pci-ids.pl: remove nasty messages when
	mar or marfiles not available to perform consistency check

2001/01/11  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (configureX): call directly $o->pkg_install, no need to
	add 'XFree86-' at the beginning
	(addUser): use any::write_passwd_user
	(setRootPassword): use any::write_passwd_user
	(configureX): fix bad $install given to Xconfigurator::main

	* any.pm (write_passwd_user): add or update an entry in /etc/passwd
	(ask_users): created, interactively ask users to add (used in
	adduserdrake and install)
	(allocUsers, addUsers): changed the prototype
	(setupBootloader): grep out fat partitions for the "Boot device"
	propositions (people are too stupid)

	* my_gtk.pm (main): third argument is a function to call before leaving in
	case of
	"cancel" clicked.

	* interactive_gtk.pm (create_ctree): fix default value selecting failing
	(in case of "format")
	(ask_from_entries_refW): apply "format" on label when icon is missing
	for iconlist
	(ask_from_entries_refW): handle "canceled" callback. Permits to overrule
	the cancel.

	* install_any.pm (g_auto_install): deep copy of $o->{users} because we're
	modifying it

	* install_steps_interactive.pm (addUser): use any::ask_users

	* standalone/adduserdrake: use any::ask_users

	* Xconfig.pm (getinfoFromDDC): removed devices::make("/dev/zero") (now in
	install2::main)

	* install2.pm (main): move devices::make("/dev/zero") needed by ddcxinfos
	here

	* interactive.pm (ask_from_entries_refH_powered_normalize): "canceled"
	callback defaults
	to "sub { 0 }"

2001/01/11  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_entries_refW): apply "format" on label when
	icon is missing for iconlist
	(ask_from_entries_refW): handle "canceled" callback. Permits to overrule
	the cancel.

	* install_steps.pm (configureX): call directly $o->pkg_install, no need to
	add 'XFree86-' at
	the beginning
	(addUser): use any::write_passwd_user
	(setRootPassword): use any::write_passwd_user
	(configureX): fix bad $install given to Xconfigurator::main

	* any.pm (write_passwd_user): add or update an entry in /etc/passwd
	(ask_users): created, interactively ask users to add (used in
	adduserdrake
	and install)
	(allocUsers, addUsers): changed the prototype
	(setupBootloader): grep out fat partitions for the "Boot device"
	propositions (people are too stupid)

	* my_gtk.pm (main): third argument is a function to call before leaving in
	case of
	"cancel" clicked.

	* install_any.pm (g_auto_install): deep copy of $o->{users} because we're
	modifying it

	* install_steps_interactive.pm (addUser): use any::ask_users

	* standalone/adduserdrake: use any::ask_users

	* Xconfig.pm (getinfoFromDDC): removed devices::make("/dev/zero") (now in
	install2::main)

	* install2.pm (main): move devices::make("/dev/zero") needed by ddcxinfos
	here

	* interactive.pm (ask_from_entries_refH_powered_normalize): "canceled"
	callback defaults
	to "sub { 0 }"

2001/01/11  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (autologin): moved to package any

	* interactive_gtk.pm (ask_from_entries_refW): apply "format" on label when
	icon is missing for iconlist
	(ask_from_entries_refW): handle "canceled" callback. Permits to overrule
	the cancel.

	* install_steps.pm (configureX): call directly $o->pkg_install, no need to
	add 'XFree86-' at
	the beginning
	(addUser): use any::write_passwd_user
	(setRootPassword): use any::write_passwd_user
	(configureX): fix bad $install given to Xconfigurator::main

	* any.pm (write_passwd_user): add or update an entry in /etc/passwd
	(ask_users): created, interactively ask users to add (used in
	adduserdrake
	and install)
	(allocUsers, addUsers): changed the prototype
	(setupBootloader): grep out fat partitions for the "Boot device"
	propositions (people are too stupid)

	* my_gtk.pm (main): third argument is a function to call before leaving in
	case of
	"cancel" clicked.

	* install_any.pm (g_auto_install): deep copy of $o->{users} because we're
	modifying it

	* Makefile.config (STANDALONEPMS): remove netdrake (which is deprecated)

	* install_steps_interactive.pm (addUser): use any::ask_users

	* standalone/adduserdrake: use any::ask_users

	* Xconfig.pm (getinfoFromDDC): removed devices::make("/dev/zero") (now in
	install2::main)

	* install2.pm (main): move devices::make("/dev/zero") needed by ddcxinfos
	here

	* interactive.pm (ask_from_entries_refH_powered_normalize): "canceled"
	callback defaults
	to "sub { 0 }"

2001/01/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* mdk-stage1/dietlibc/dietfeatures.h: tweak dietlibc config to get minimal
	size

	* mdk-stage1/dietlibc/lib/vsscanf.c, mdk-stage1/dietlibc/lib/ttyname.c:
	remove warnings from compile

2001/01/10  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_entries_refW): add handling of 'changed'
	callback on clist/list/ctree

	* install_steps.pm (addUser): use any::pack_passwd
	(setRootPassword): use any::unpack_passwd and any::pack_passwd

	* Xconfigurator.pm (cardConfiguration): adapt for $install which is
	generic
	(autologin): use $install which is now generic

	* install_steps_interactive.pm (selectLanguage): many_languages choice
	moved there as advanced

	* my_gtk.pm (create_packtable): yet another try to have something nice :)
	!! uses Gtk::Table::attach_raw which is available in
	perl-GTK-0.7004-6mdk !!
	(create_box_with_title): with the size given to set_usize for the scroll
	containing the text widget in case of long text. and don't let the
	scroll
	grow.
	(gtktext_insert): remove adding an ending "\n" (no more needed?)

	* any.pm (setAutologin): cleanup
	(pack_passwd, unpack_passwd): created

2001/01/10  dam's  <damien@mandrakesoft.com>

	* install_steps_interactive.pm: corrected last message . firewall

2001/01/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: fix modules.pm for modules to be skept in stage1 (ppa, imm,
	parport*, plip)

2001/01/10  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_entries_refW): add handling of 'changed'
	callback on clist/list/ctree

	* install_steps.pm (addUser): use any::pack_passwd
	(setRootPassword): use any::unpack_passwd and any::pack_passwd

	* my_gtk.pm (create_packtable): yet another try to have something nice :)
	!! uses Gtk::Table::attach_raw which is available in
	perl-GTK-0.7004-6mdk !!
	(create_box_with_title): with the size given to set_usize for the scroll
	containing the text widget in case of long text. and don't let the
	scroll
	grow.
	(gtktext_insert): remove adding an ending "\n" (no more needed?)

	* any.pm (setAutologin): cleanup
	(pack_passwd, unpack_passwd): created

	* Xconfigurator.pm (cardConfiguration): adapt for $install which is
	generic
	(autologin): use $install which is now generic

	* install_steps_interactive.pm (selectLanguage): many_languages choice
	moved there as advanced

	* standalone/printerdrake, standalone/keyboarddrake, standalone/draknet2,
	standalone/livedrake, standalone/drakboot, standalone/draksec,
	standalone/netdrake, standalone/mousedrake, standalone/drakgw,
	standalone/drakxservices, standalone.pm, standalone/draknet,
	standalone/XFdrake, standalone/diskdrake, standalone/adduserdrake,
	standalone/drakxconf: use standalone and standalone::pkgs_install

2001/01/09  Pixel  <pixel@mandrakesoft.com>

	* any.pm (drakx_version): nicer (4gc)

	* install2.pm (main): log::l the drakx_version

	* my_gtk.pm (create_packtable): no_expand option added

	* interactive.pm (ask_from_entries_refH_powered_normalize): field
	"disabled" added,
	"advanced_messages" added

	* lang.pm (langs): created (transform the $o->{langs} hash ref in a list)
	(pack_langs): use lang::langs

	* install_steps.pm (selectLanguage): $o->{langs} is now a ref so
	initialize as such

	* Makefile (get_needed_files): generate /usr/share/VERSION which contains
	the version
	of ChangeLog (which is updated at each upload)

	* install_steps_interactive.pm (choosePartitionsToFormat): handle "check
	for bad blocks" as advanced
	(setRootPassword): remove choosing non-md5 or non-shadow passwords.

	* install_any.pm (setPackages): use lang::langs instead of using
	$o->{langs} as a array ref (it is not so anymore)
	(spawnShell): print the drakx_version

2001/01/08  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm: fixes
	(ask_from_treelistf, ask_from_treelist): now use ask_from_entries_refH
	(ask_from_entries_refH_powered): remove "1;" (was there for debugging)

	* interactive_gtk.pm: fixes
	(ask_from_treelistW): removed
	(create_ctree): created, used for ``type => treelist'' entries

	* my_gtk.pm: fixes

	* ChangeLog: New snapshot uploaded

2001/01/07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sr.po, share/po/sp.po, share/po/no.po, share/po/cs.po: updated
	Czech, Norwegian and Serbian files

2001/01/07  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm: update code for new ask_from_entries_refH
	which doesn't handle optional ok/cancel names in arg 1.
	must be handled via ask_from_entries_refH_powered
	(selectLanguage, selectKeyboard): use ask_from_entries_refH instead of
	ask_from_listf_, it enables the use of advanced

	* any.pm, printerdrake.pm: update code for new ask_from_entries_refH which
	doesn't handle optional ok/cancel names in arg 1.
	must be handled via ask_from_entries_refH_powered

	* interactive.pm: update code for new ask_from_entries_refH which doesn't
	handle optional ok/cancel names in arg 1.
	must be handled via ask_from_entries_refH_powered
	(ask_from_listf_no_check): replaces ask_from_list_no_check
	(ask_from_entries_refH_powered): sorts the list if needed or wanted

	* partition_table_raw.pm (test_for_bad_drives): created
	- ugly stuff needed mainly for Western Digital IDE drives
	- try writing what we've just read, yells if it fails
	- testing on last sector of head #0 (unused in 99% cases)

	* ftp.pm (getFile): make it work (it used to dead-loop when getFile'ing an
	non-existent
	file, stressing the ftp server :-/ )
	for the moment, just release cdrom.img, hd.img and hdreiser.img
	others should should come...

	* install_steps.pm: for the moment, just release cdrom.img, hd.img and
	hdreiser.img
	others should should come...

	* interactive_gtk.pm (ask_from_listW): removed
	(create_list): calls "format" on list elems before prompting them
	(create_clist): created
	(ask_from_entries_refW): calls create_clist in case of list with no help

	* install_steps_gtk.pm (installPackages): autoflush stdout before beeping
	(installPackages): don't take into account the time when prompting the
	user

	* common.pm (may_apply): added

	* install_any.pm (getHds): test_for_bad_drives called on hard drives
	(getHds): ensure $o->{hds} is not set until the hard drives are checked

2001/01/06  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm (setup): don't xmodmap if DISPLAY is unset

	* ChangeLog: New snapshot uploaded
	New snapshot uploaded

2001/01/06  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm (setup): don't xmodmap if DISPLAY is unset

	* ChangeLog: New snapshot uploaded

2001/01/06  Pixel  <pixel@mandrakesoft.com>

	* keyboard.pm (setup): don't xmodmap if DISPLAY is unset

	* standalone/rpmdrake: deprecated (and has been for a long time now)

	* network.pm, install_steps_interactive.pm, netconnect.pm,
	install_interactive.pm, standalone/adduserdrake, any.pm,
	Makefile.config, printerdrake.pm, Xconfigurator.pm, diskdrake.pm:
	ask_from_entries_refH parameter format has changed so change all
	accesses to it.

2001/01/05  François Pons  <fpons@mandrakesoft.com>

	* lang.pm, keyboard.pm: forget _exit in child process after a fork of
	DrakX
	removed need of packdrake binary

	* Xconfigurator.pm: use of SHARE_PATH for MonitorsDB, Cards+, CardsNames

	* live_install2: cleanup to keep libperl.so but the right one

	* live_install: no more copy of files on live system, now use environment
	variable by DrakX cleanup

	* perl2fcalls: added packdrake call (via new but incomplete) and package

	* install_any.pm, commands.pm, pkgs.pm: removed need of packdrake binary

	* netconnect.pm: fixed syntax error

	* modules.pm: eval insmoding ide-cd (just in case)
	removed need of packdrake binary

2001/01/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ja.po, share/po/ca.po, share/po/az.po: updated Azeri, Catalan
	and Japanese files

2001/01/05  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm: help cperl-mode

	* interactive_gtk.pm, network.pm, install_steps_interactive.pm, my_gtk.pm,
	interactive.pm, printerdrake.pm, Xconfigurator.pm, diskdrake.pm: move to
	new ask_from's:
	- ask_from_entries_ref is deprecated, use ask_from_entries_refH
	- ask_from_list now calls ask_from_entries_refH_powered
	still not done:
	- ask_from_treelist should use ask_from_entries_refH_powered,
	and lists with no help should use CList (List is bad)
	- keyboard and mouse binding is still rough
	- enhance the look

	* keyboard.pm: add the percentage of each keyboard types (as a comment for
	now)

2001/01/04  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: cleaned... everything should be buggy.

2001/01/04  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed some old $p->{file} by new $p->[$FILE]
	code cleanup and fixes for lilo not upgrade

2001/01/04  Pablo Saratxaga <pablo@mandrakesoft.com>

	* install_any.pm: fixed the functions doing the lists of languages

	* lang.pm: fixed the functions doing the lists of languages
	The list of languages now has complete locale names insted of just
	language
	code (that is needed to differentiate zh_CN and zh_TW among others)

	* 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/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/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 Brazilian file

	* share/po/eu.po: updated Basque file
	updated Brazilian file

2001/01/04  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: some pixelization using the new if_

	* install_steps_interactive.pm (setRootPassword): fix pixelization
	keep $o->{langs} unpacked to simplify things
	if_ pixelization

	* common.pm (%EXPORT_TAGS): add if_ in "common" exported tags
	(if_): created. Use it to replace things like
	($::expert ? $val : ()) by if_($::expert, $val)

	* keyboard.pm: nl keyboard is not used, so defaults to us_intl

	* lang.pm, install_steps.pm, pkgs.pm, install_any.pm: keep $o->{langs}
	unpacked to simplify things

	* netconnect.pm: quite a few clean-up (and buggying)

2001/01/03  dam's  <damien@mandrakesoft.com>

	* install_steps_interactive.pm: admin user removed before beeing added

	* netconnect.pm: corrected typo
	LAN is configured with default value if firewall

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

	* diskdrake.pm: fixed invocation of change_type by clicking on legend
	unless expert

	* install2.pm: fixed usage with testing

	* install_steps.pm: fixed some other services to start in case something
	gets wrong,
	this fixes some deadlock on upgrade from 7.0.
	fixed usage with testing

	* partition_table.pm: fixed overlapping partitions between one extended
	and one regular primary.
	should be accepted (log printed instead of error) as diskdrake allow
	their
	creation in expert.

2001/01/03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: add checks of dependencies on marfiles
	fix a couple of broken dependencies in modules.pm

2001/01/03  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, share/locales.tar.bz2: locales in glibc 2.2 format

2001/01/03  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): move the setting of PATH and spawnShell *after*
	setting $prefix

2000/12/31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/rpmsrate: added a few locales dependences

2000/12/29  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (addUser): typo fix

	* ChangeLog: New snapshot uploaded

	* ftp.pm (getFile): recall getFile after rewindGetFile

2000/12/29  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (addUser): typo fix

	* ftp.pm (getFile): recall getFile after rewindGetFile

2000/12/28  Pixel  <pixel@mandrakesoft.com>

	* Makefile: now /usr/lib/X11 is a relative symlink to please mirrors and
	jako

2000/12/26  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* keyboard.pm: Add the very ghost option REMOVE_MOD_META_L.

2000/12/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/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/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 Lithuanian file

2000/12/22  dam's  <damien@mandrakesoft.com>

	* install_steps.pm, install_steps_interactive.pm: corrected admin user
	setting for firewall install.

2000/12/22  François Pons  <fpons@mandrakesoft.com>

	* modules.pm: fixed load_multi on live.
	added back all removed module with the new great mdk-stage1 of gégé.

2000/12/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* modules.pm: make them work with kernel-2.4 by disabling non existent
	modules

2000/12/22  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm, install2.pm: commit symlink /tmp/image /tmp/rhimage

2000/12/21  Pixel  <pixel@mandrakesoft.com>

	* ChangeLog: New snapshot uploaded

2000/12/21  dam's  <damien@mandrakesoft.com>

	* install2.pm: firewall : automatic class set when firewall (beginner=0)

	* install_steps_interactive.pm: if firewall, admin password obliged

	* install_steps.pm: added setAdminpassword (a little bit redundant, sorry)

	* any.pm: corrected module stuff.. Thanx to pixel

2000/12/20  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (selectMouse): unsure the device exists

	* unused/christmas-karaoke.patch: handle isa cards

2000/12/19  Pixel  <pixel@mandrakesoft.com>

	* ChangeLog: New snapshot uploaded
	New snapshot uploaded

2000/12/19  dam's  <damien@mandrakesoft.com>

	* standalone/pixmaps/logo1.xpm, standalone/pixmaps/px3.xpm,
	standalone/pixmaps/draknet4.xpm, standalone/pixmaps/draknet1.xpm,
	standalone/pixmaps/modem.xpm, standalone/pixmaps/logo2.xpm,
	standalone/pixmaps/util6.gif, standalone/pixmaps/unknown.xpm,
	standalone/pixmaps/drakgw.xpm, standalone/pixmaps/px4.xpm,
	standalone/pixmaps/draknet5.xpm, standalone/pixmaps/px1.xpm,
	standalone/pixmaps/draknet2.xpm, standalone/pixmaps/logo3.xpm,
	standalone/pixmaps/util7.gif, standalone/pixmaps/port.xpm,
	standalone/pixmaps/draknet.xpm, standalone/pixmaps/ethernet.xpm,
	standalone/pixmaps/isdn.xpm, standalone/pixmaps/px2.xpm,
	standalone/pixmaps/draknet3.xpm: added control-center.

2000/12/19  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: when loading /snd-card-/ module, load snd-pcm-oss

	* unused/christmas-karaoke.patch: Happy Christmas :)

	* install_any.pm: spawnShell: set DISPLAY, just in case :)

	* install2.pm: set PATH before doing spawnShell

	* Makefile: /usr/lib/X11 now exists on non-sparc (was only for sparc)

	* ChangeLog: New snapshot uploaded

2000/12/18  dam's  <damien@mandrakesoft.com>

	* interactive_gtk.pm: added embedded support for control-center
	corrected embedded support.
	new control center and related

	* netconnect.pm: corrected typo
	corrected typo

	* standalone/drakxservices, standalone/control-center, ChangeLog,
	standalone/XFdrake, standalone/draknet2, standalone/adduserdrake,
	standalone/drakboot: new control center and related

	* install_gtk.pm: added firewall support

	* install2.pm: included firewall handling
	changed firewall comportement

	* install_steps_interactive.pm: changed firewall comportement

	* modules.pm: corrected bad mergeinconf

2000/12/18  Pixel  <pixel@mandrakesoft.com>

	* Makefile, share/keymaps_generate: tar and bzip2 is cfj/xfj and no more
	cfI/xfI
	remove isdndb.net

2000/12/19  dam's  <damien@mandrakesoft.com>

	* standalone/pixmaps/logo1.xpm, standalone/pixmaps/px3.xpm,
	standalone/pixmaps/draknet4.xpm, standalone/pixmaps/draknet1.xpm,
	standalone/pixmaps/modem.xpm, standalone/pixmaps/logo2.xpm,
	standalone/pixmaps/util6.gif, standalone/pixmaps/unknown.xpm,
	standalone/pixmaps/drakgw.xpm, standalone/pixmaps/px4.xpm,
	standalone/pixmaps/draknet5.xpm, standalone/pixmaps/px1.xpm,
	standalone/pixmaps/draknet2.xpm, standalone/pixmaps/logo3.xpm,
	standalone/pixmaps/util7.gif, standalone/pixmaps/port.xpm,
	standalone/pixmaps/draknet.xpm, standalone/pixmaps/ethernet.xpm,
	standalone/pixmaps/isdn.xpm, standalone/pixmaps/px2.xpm,
	standalone/pixmaps/draknet3.xpm: added control-center.

2000/12/19  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: when loading /snd-card-/ module, load snd-pcm-oss

	* unused/christmas-karaoke.patch: Happy Christmas :)

	* install_any.pm: spawnShell: set DISPLAY, just in case :)

	* install2.pm: set PATH before doing spawnShell

	* Makefile: /usr/lib/X11 now exists on non-sparc (was only for sparc)

2000/12/18  dam's  <damien@mandrakesoft.com>

	* interactive_gtk.pm: added embedded support for control-center
	corrected embedded support.
	new control center and related

	* netconnect.pm: corrected typo
	corrected typo

	* standalone/drakxservices, standalone/control-center, ChangeLog,
	standalone/XFdrake, standalone/draknet2, standalone/adduserdrake,
	standalone/drakboot: new control center and related

	* install_gtk.pm: added firewall support

	* install2.pm: included firewall handling
	changed firewall comportement

	* install_steps_interactive.pm: changed firewall comportement

	* modules.pm: corrected bad mergeinconf

2000/12/18  Pixel  <pixel@mandrakesoft.com>

	* Makefile, share/keymaps_generate: tar and bzip2 is cfj/xfj and no more
	cfI/xfI
	remove isdndb.net

2000/12/16  Pixel  <pixel@mandrakesoft.com>

	* standalone/mousedrake, standalone/drakgw: use ldetect-lst

	* Makefile.drakxtools: fix daminetsex
	use ldetect-lst
	pci_probing now done by libldetect
	config files moved in package ldetect-lst

	* share/list: use ldetect-lst
	pci_probing now done by libldetect
	config files moved in package ldetect-lst

	* any.pm: fix daminetsex

	* modules.pm, live_install, install2.pm, standalone/lspcidrake, pkgs.pm,
	mouse.pm: use ldetect-lst for usb => now auto detects mice types :)

	* c/stuff.xs.pm, detect_devices.pm: use ldetect-lst for usb => now auto
	detects mice types :)
	use ldetect-lst
	pci_probing now done by libldetect
	config files moved in package ldetect-lst

	* Makefile.config: fix daminetsex
	use ldetect-lst

	* Makefile: use ldetect-lst for usb => now auto detects mice types :)
	use ldetect-lst

	* netconnect.pm, share/CardsNames, c/Makefile.PL, Xconfigurator_new.pm,
	Xconfigurator.pm, share/Cards+, share/MonitorsDB, share/isdndb.net,
	share/Cards2CardsNames: pci_probing now done by libldetect
	config files moved in package ldetect-lst

2000/12/15  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: Cards+ and CardsNames are moved to ldetect-lst

	* install_steps.pm: clean all unneeded stuff

2000/12/14  dam's  <damien@mandrakesoft.com>

	* any_new.pm, netconnect_new.pm: preparing for big jump.

	* netconnect.pm: Big jump. The *_new.pm are replaced by *.pm
	Everything should work, but you better test :)

	* standalone/control-center: big improvement and cosmetic changes
	a lot of improvement. Is able to launch multiples soft passing in
	arguments.
	new file. Its location should change soon.

	* any.pm: Big jump. The *_new.pm are replaced by *.pm
	Everything should work, but you better test :)
	corrected typo.

2000/12/14  Pixel  <pixel@mandrakesoft.com>

	* share/compssList: obsoleted by rpmsrate

	* share/rpmsrate: obsoletes compssList

	* share/compssUsers, install_steps.pm, install_steps_interactive.pm,
	Makefile, install_steps_gtk.pm, install2.pm, pkgs.pm, install_any.pm:
	move from compssList to rpmsrate

	* Newt/Newt.xs: cleanup (use of alloca to pass parameters)

2000/12/13  Pablo Saratxaga <pablo@mandrakesoft.com>

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

2000/12/12  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: typo + if firewall, don't display 'disable network'

	* standalone/draknet2: new version... still working on it

	* ChangeLog: commit

	* share/themes-mdk-Firewall.rc: added firewall theme

	* modules.pm: my fault, corrected renaud's patch incorporation

	* share/logo-mandrake-Firewall.xpm: new logo

2000/12/12  François Pons  <fpons@mandrakesoft.com>

	* share/list: added packdrake.pm as packdrake has been splited.

	* pkgs.pm: fixed versionCompare to always return number. added checking of
	version to
	select obsoletes on upgrade.

2000/12/11  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: Radeon uses 3D now.

	* lang.pm: fixed write_langs for upgrade.
	i18n sucking fixes.

	* Xconfigurator.pm: Radeon uses 3D hw accel theoritically now.

2000/12/09  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: Added configuration of Vietnamese input server

2000/12/09  Pixel  <pixel@mandrakesoft.com>

	* standalone/adduserdrake: remove debugging code

	* install2.pm (selectInstallClass): give $clicked to selectInstallClass

	* interactive_newt.pm (ask_from_entries_refW): reset all hidden entries to
	null in case of error
	on hidden entry cuz newt doesn't display null entries, disturbing

	* install_steps_interactive.pm (formatMountPartitions): the format
	partition dialog created at first use,
	so that it doesn't appear if no partitions are formatted.
	(selectInstallClass): ensure expert choice is kept if it was prechosen
	(selectInstallClass): if expert pre-chosen, ensure expert is kept

	* interactive_gtk.pm, install_steps.pm: small renicing

2000/12/08  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed bug in list of packages provided by another one.

2000/12/08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt_BR.po, share/po/no.po, share/po/DrakX.pot, share/po/es.po,
	share/po/fr.po, share/po/wa.po, share/po/da.po, share/po/de.po,
	share/po/az.po, share/po/tr.po: updated Brazilian file

2000/12/08  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): warn if VERSION file doesn't exist
	(formatPartitions): call rotate_logs after mounting the partitions

	* mouse.pm (write_conf): fix to make make test_pms happy

	* install_steps.pm (exitInstall): save the report.bug in /root/report.bug

	* any.pm (rotate_logs): created, rotates ddebug.log and install.log in
	/root

	* ftp.pm (new): retry in case of ftp connection/login

	* commands.pm: report_bug: created, returns a string

2000/12/07  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: corrected ADSL connection choice.
	corrected typo

2000/12/06  dam's  <damien@mandrakesoft.com>

	* install2.pm: erare humanum es
	firewall begins to infect the install :).
	new meta_class.

	* share/logo-mandrake-Firewall.xpm: aded logo for firewall

	* install_gtk.pm: corrected errors
	left pixmap centered if firewall
	improved the firewall theme.
	errare humanum es
	firewall infects the install.
	The logo is changed if firewall.

2000/12/06  Pixel  <pixel@mandrakesoft.com>

	* standalone/keyboarddrake: add possibility to use keyboarddrake
	non-interactive (aka give the keyboard as
	first parameter)

	* lang.pm, install_steps.pm, install_steps_interactive.pm, install2.pm,
	install_any.pm: adapt to the fact that RPM_INSTALL_LANG is obsoloted.
	Now rpm uses %_install_langs in /etc/rpm/macros

2000/12/05  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: final fixes to versionCompare to make sure no deadlock can
	occurs.

	* Xconfigurator.pm: restored Matrox G200/G400 hw 3d accel configuration.

2000/12/05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pt_BR.po, share/po/pl.po, share/po/da.po, share/po/fi.po,
	share/po/es.po: updated several pofiles

2000/12/04  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: use isCdNotEjectable.

	* common.pm: added function isCdNotEjectable.

	* share/Cards+: SiS620 card are said to be unsupported by XF4.

	* pkgs.pm: load only one hdlist in memory if CD is not ejectable (low
	memory).
	fixed compareVersion for deadlock. removed silly CODE print on deporder
	problems.

	* Xconfigurator.pm: add Options sw_cursor for SiS 6326 in XF3 mode.

2000/12/03  dam's  <damien@mandrakesoft.com>

	* mouse.pm: incorporated cmodifications in the firewall branch

	* netconnect.pm: netconnect_new > netconnect.pm

	* netconnect_consts.pm: incorporated in the firewall branch.

	* standalone/draknet2: incoporated in the firewall branch

	* any_new.pm: any_new > any, so we remove it now.

	* netconnect_new.pm: netconnect_new > netconnect, so we remove it now.
	incorporated in the firewall branch

	* modules.pm: incorporated modifications to the firewall branch. Hope they
	won't break anything...

2000/12/02  dam's  <damien@mandrakesoft.com>

	* share/po/az.po: correction in firewall incorporated

	* ChangeLog: first attempt ro build the firewall install

	* standalone/mousedrake: incorporated in the firewall branch

	* share/po/ru.po, share/po/no.po, share/po/sk.po: correction incorporated
	in the firewall branch

2000/11/28  dam's  <damien@mandrakesoft.com>

	* modules.pm: included reno's patches. Now should work without kudzu.
	branch to build the firewall install.

	* standalone/pixmaps/port.xpm, standalone/pixmaps/.xvpics/px4.xpm,
	standalone/pixmaps/ethernet.xpm, standalone/pixmaps/.xvpics/px1.xpm,
	standalone/pixmaps/px2.xpm, standalone/pixmaps/unknown.xpm,
	standalone/pixmaps/.xvpics/px3.xpm, standalone/pixmaps/px4.xpm,
	standalone/pixmaps/px1.xpm, standalone/pixmaps/.xvpics/px2.xpm,
	standalone/pixmaps/px3.xpm, standalone/pixmaps/modem.xpm,
	standalone/pixmaps/isdn.xpm: Initial revision
	branch to build the firewall install.

	* partition_table_dos.pm, share/po/bg.po, share/po/sr.po,
	share/template.in/cdrom.kdelnk.in,
	share/template.in/cdrom.fsdev.kdelnk.in, share/po/hr.po, c/silo.c,
	Makefile, share/consolefonts/lat0-sun16,
	share/themes/DarkMarble-check_off.png,
	share/themes/marble3d-button_def.png, share/locales.tar.bz2.sparc,
	do_resize_fat, share/po/wa.po, share/po/is.po,
	share/themes/DarkMarble-button3_out_prelight.png, resize_fat/main.pm,
	class_discard.pm, .cvsignore, share/step-orange.xpm, share/reload.xpm,
	install_interactive.pm, c/README, Xconfig.pm, share/themes.rc,
	share/themes/marble3d-bg1.png, perl2fcalls, share/themes-blackwhite.rc,
	share/themes-blueHeart.rc, pkgs.pm, keyboard.pm,
	share/rpm-installed.xpm, share/po/gl.po, share/po/lv.po,
	standalone/icons/ftout.xpm, Makefile.drakxtools, http.pm,
	share/step-green-click.xpm, partition_table_sun.pm,
	share/themes/focus.png, share/keymaps_generate, lang.pm, verify_c,
	share/po/.cvsignore, share/ftin.xpm, standalone/draksec,
	resize_fat/info_sector.pm, share/compssUsers, share/step-orange-on.xpm,
	Makefile.config, share/list.sparc, share/po/hu.po, run_program.pm,
	share/themes/marble3d-button4.png, share/rpm-unselected.xpm,
	share/list.i386, netconnect.pm, share/themes/DarkMarble-button3_out.png,
	c/md5_crypt.c, share/themes/mdk-toggle_on.png, partition_table.pm,
	standalone/livedrake, share/diskdrake.rc,
	share/themes/DarkMarble-check_on.png, standalone/draknet,
	share/po/br.po, Newt/typemap, share/themes/blueHeart-button2.png,
	share/po/ro.po, share/list, share/po/cs.po, share/po/be.po,
	share/po/sp.po, share/step-orange-click.xpm, modparm.pm,
	share/step-green.xpm, share/rpm-base.xpm,
	share/themes/marble3d-check1.png, crypto.pm, share/po/eu.po,
	share/themes/marble3d-button1.png, c/stuff.pm, install_steps.pm,
	share/Cards2CardsNames, Newt/Makefile.PL,
	share/themes/mdk-Desktop-bg.png, netconnect_consts.pm, share/po/id.po,
	share/themes/mdk-check_on.png, share/po/fi.po, share/po/sk.po,
	standalone/icons/findf.xpm, share/po/lt.po,
	share/themes/mdk-check_off.png, fs.pm, c/.cvsignore,
	share/themes/mdk-toggle_off.png, share/po/ca.po, timezone.pm,
	detect_devices.pm, share/consolefonts/ruscii_8x16, diskdrake.pm,
	standalone/icons/reload.xpm, share/rpm-selected.xpm, resize_fat/io.pm,
	Newt/Newt.xs, Newt/.cvsignore, install2, share/po/pt_BR.po,
	share/themes-marble3d.rc, resize_fat/fat.pm, sbus_probing/main.pm,
	share/template.in/floppy.fsdev.kdelnk.in, printer.pm, share/po/it.po,
	resize_fat/.cvsignore, install_steps_interactive.pm,
	share/themes/mdk-button4.png, live_install, standalone/draknet2,
	any_new.pm, share/list.alpha, share/rpm-semiselected.xpm, c.pm,
	share/logo-mandrake-Desktop.xpm, printerdrake.pm, network.pm,
	share/step-red-on.xpm, share/themes-mdk.rc, share/po/validate.pl,
	swap.pm, share/themes/blueHeart-button4.png, standalone/keyboarddrake,
	g_auto_install, share/po/es.po, standalone/lspcidrake, share/po/de.po,
	partition_table_mac.pm, standalone/mousedrake, devices.pm,
	share/po/ru.po, resize_fat/c_rewritten.xs, share/po/cy.po,
	share/themes/mdk-button1.png, netconnect_new.pm, install_any.pm,
	share/po/nl.po, share/aliases, share/keyboards.tar.bz2, share/po/sv.po,
	Newt/Av_CharPtrPtr.c, c/stuff.xs.pm, share/themes-DarkMarble.rc,
	share/step-red.xpm, Newt/Av_CharPtrPtr.h, c/smp.c,
	share/po/zh_CN.GB2312.po, commands.pm, standalone/icons/find.xpm,
	perl2etags, share/po/Changelog, standalone/drakboot,
	resize_fat/dir_entry.pm, share/fonts.tar.bz2, share/install.rc,
	share/themes/blueHeart-button1.png, share/Cards+, share/po/uk.po,
	share/MonitorsDB, share/template.in/Dos_.kdelnk.in,
	standalone/printerdrake, services.pm, share/kmap2bkmap,
	share/themes/blueHeart-button_def.png, share/po/az.po, share/po/tr.po,
	common.pm, getpkgs_deps, standalone/drakxconf, share/ftout.xpm,
	install_gtk.pm, Xconfigurator_consts.pm, share/consolefonts/lat2-sun16,
	share/po/no.po, resize_fat/boot_sector.pm, share/CardsNames,
	c/Makefile.PL, share/themes-mdk-Desktop.rc,
	share/themes/blueHeart-brown_bg1.png, share/logo-mandrake.xpm,
	share/consolefonts/Cyr_a8x16, standalone/netdrake, standalone/drakgw,
	share/po/sl.po, standalone/rpmdrake, share/makedev.sh,
	share/themes/DarkMarble-button3_in_prelight.png, share/themes-blue.rc,
	install_steps_newt.pm, resize_fat/Makefile.PL, partition_table_empty.pm,
	my_gtk.pm, share/po/i18n_compssUsers, install2.pm, share/compssList,
	share/po/fr.po, share/themes/DarkMarble-button3_in.png,
	standalone/icons/ftin.xpm, share/modparm.lst, raid.pm,
	standalone/diskdrake, share/po/ko.po,
	share/template.in/zip.fsdev.kdelnk.in, share/compssUsers.desktop,
	share/po/ja.po, any.pm, share/isdndb.net,
	share/template.in/floppy.kdelnk.in, share/step-green-on.xpm,
	share/step-red-click.xpm, share/po/Makefile, help.pm,
	share/po/zh_TW.Big5.po, c/sbus.c, genmodparm, share/po/pl.po,
	share/themes-savane.rc, install_steps_stdio.pm, share/po/th.po,
	loopback.pm, resize_fat/any.pm, share/po/el.po, install_steps_gtk.pm,
	Newt/Newt.pm, Xconfigurator.pm, interactive_gtk.pm,
	standalone/drakxservices, resize_fat/Makefile, fsedit.pm,
	interactive_stdio.pm, live_install2, resize_fat/directory.pm,
	share/po/pt.po, install_steps_auto_install.pm, share/po/DrakX.pot,
	share/themes/mdk-bg.png, share/list.ppc, share/po/ga.po, share/po/et.po,
	share/keymaps.tar.bz2, partition_table_bsd.pm, c/md5.c, share/help.xpm,
	share/themes/marble3d-check2.png, ftp.pm, c/md5.h,
	standalone/adduserdrake, share/themes/marble3d-button2.png,
	partition_table_raw.pm, share/template.in/zip.kdelnk.in,
	share/locales.tar.bz2, standalone/icons/fileopen.xpm,
	share/template.in/kppprc.in, ChangeLog, resize_fat/README, mouse.pm,
	commands, standalone/XFdrake, share/gconv.tar.bz2, share/po/eo.po,
	interactive.pm, log.pm, share/themes/DarkMarble-gloom2.png,
	interactive_newt.pm, share/po/da.po, resize_fat/c_rewritten.pm,
	bootloader.pm, share/po/af.po: branch to build the firewall install.

2000/11/28  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: change upgrade section for keyboard.

	* install_steps_gtk.pm: extended chooseSizeToInstall.

	* install_steps.pm: updated comment.

	* pkgs.pm: fixed misuse of map with values returing list which are indexed
	afterward.

	* install_any.pm: removed some more logs.

	* keyboard.pm: keep track of unknown keyboard (for upgrade)

	* install_steps_interactive.pm: modified def_mark to 59 (gl hw
	acceleration level) and upgrade use this level
	for newbies so.
	make sure a recommended upgrade get the minimum and a little more (80).
	choose default size according to a default mark (currently 49).

2000/11/27  dam's  <damien@mandrakesoft.com>

	* netconnect_consts.pm: added isdn Gazel card 10b5 1151

2000/11/27  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm (@bad_types): list of the different type of extended
	partitions
	(important_types): remove @bad_types from important_types

2000/11/25  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ru.po: updated Russian file

2000/11/24  dam's  <damien@mandrakesoft.com>

	* mouse.pm: doc + split

	* netconnect_new.pm: added depmod after having writed modules.conf

	* standalone/mousedrake: splited

2000/11/24  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: avoid .la files for selection.

	* install_steps.pm: added missing portmap.

2000/11/23  dam's  <damien@mandrakesoft.com>

	* standalone/draknet2: progressbar.

2000/11/23  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm, install_steps_gtk.pm: updated with
	structural change of pkgs.

	* install_any.pm: removed some ugly logs.
	updated with structural change of pkgs.

	* install_steps.pm: added tempory fix for initscripts %post.
	updated with structural change of pkgs.

	* pkgs.pm: synced versionCompare() with rpmtools-2.1-4mdk.
	removed ugly log on transaction.
	added special case to avoid counting kernels space when upgrading
	as these package are not upgraded (just installed).
	Memory usage optimization, change structure of storing
	package informations. lot of fork to make sure of
	freeing memory by perl (no free on used hashes or arrays
	usable by other than perl), now upgrade takes as much as
	install which takes at least 0.5Mb less than before.

2000/11/23  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: put all tina stuff to weight 0

2000/11/21  François Pons  <fpons@mandrakesoft.com>

	* Xconfig.pm: added more subtil upgrade from /etc/X11/XF86Config* files,
	keep
	wacom entries.

	* Xconfigurator.pm: upgrade for XF86Config, take care of resolution and
	depth wanted.

	* install_steps.pm: always try to get default from /etc/X11/XF86Config
	removing logs.

	* pkgs.pm: cosmetic changes for upgrade, removing some logs.

	* install_steps_interactive.pm: removed code to ask if take care of
	/etc/X11/XF86Config* files.
	added wait message during rebuild of rpm database as it takes some time.

	* Xconfigurator_new.pm: WARNING

2000/11/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/az.po: updated Azeri file

2000/11/20  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: clean up as today filelist is no more.
	use parsehdlist from rpmtools-2.1-3mdk or above instead of
	perl code from DrakX forking to simulate a filelist server.
	this increase performance by 100 to 150% on selection of
	packages to upgrade.

	* share/list: added parsehdlist.

	* c/stuff.xs.pm: removed logs.

2000/11/20  Pixel  <pixel@mandrakesoft.com>

	* share/Cards+: add radeon

	* install_steps_auto_install.pm (exitInstall): fix message

	* install_steps.pm (afterInstallPackages): moved the
	writeandclean_ldsoconf here

	* fsedit.pm: add /var/ftp and /var/www in the list of propose mount-points

2000/11/17  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* install_any.pm: add openuniverse to the list of gl apps

2000/11/16  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: corrected isdn_get_{list, info}

2000/11/16  François Pons  <fpons@mandrakesoft.com>

	* share/list: include /usr/lib/rpm/macros else rpmlib gets crazy :-)

	* modules.pm: tempory version for current glibc, a lot of module have been
	removed due to
	problem of stage1 increase in size when compiled with glibc-2.2 and
	current
	modutils.

	* c/Makefile.PL: updated with rpmlib 4.

	* c/stuff.xs.pm: completed something that seems to work almost correctly
	at the first look
	with rpmlib 4.

2000/11/16  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: add netscape-german, thx to florin
	isdn4k-utils gets same weight as isdn4net, thx to Florin

2000/11/16  Pablo Saratxaga <pablo@mandrakesoft.com>

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

	* share/po/sk.po: updated Slovak file

2000/11/15  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: added isdn_get_list and isdn_get_info
	calls modules::write_conf to fill the modules.conf.

	* Xconfigurator_new.pm: added to fork frontends backends. Not operationnal
	at all for now.

	* modules.pm: when loading a new module, add an alias for it, even in
	standalone mode.

2000/11/15  François Pons  <fpons@mandrakesoft.com>

	* c/stuff.xs.pm: updated for rpm 4.

	* pkgs.pm: rpmdepOrder again (for new TAGp)

2000/11/15  Pixel  <pixel@mandrakesoft.com>

	* c/Makefile.PL: add librpmio

	* c/stuff.xs.pm: workaround for kernel-headers not in sync with glibc
	(dev_t)

2000/11/14  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: better structure for the ethx-driver.
	added call to add_alias and write_conf

	* standalone/draknet2: updated

2000/11/14  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: removed foreach (<... which are eating memory
	fork install on upgrade for searching trhough filelist, this saves
	about 20Mb of memory before rpmlib transaction are started so its is
	more than 2 times faster for upgrading a system, sorry it was
	effectively
	a machine two overloaded that makes the upgrade slower.
	make rpmlib not to check size as DrakX should do it.
	added special cases for selection of packages according to files, avoid
	all kde-i18n packages if their locales-$lang is not selected, avoid
	a -devel package if only one files is updated (typical for fixes on
	package by moving files around).
	
	deactivated rpmdepOrder as it should be done directly in
	depslist.ordered
	file.
	
	fixed obsoletes which never run correctly, even if almost no package are
	selected explicitely this way.
	
	added log during selection of packages to upgrade to keep a track of
	what DrakX is doing.

	* modules.pm, network.pm, netconnect.pm, common.pm, modparm.pm,
	Xconfig.pm, commands.pm, lang.pm, fsedit.pm, detect_devices.pm,
	printer.pm, Xconfigurator.pm: removed foreach (<... which are eating
	memory

2000/11/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/da.po: updated Danish file

2000/11/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: Integrate Till's patches for better work with Cups.

2000/11/12  Pixel  <pixel@mandrakesoft.com>

	* standalone/mousedrake: fix for bug #1350
	(mousedrake dies with: Undefined subroutine &mouse::serial_ports_names)

	* pkgs.pm (psUpdateHdlistsDeps): fixed an ugly typo (uses .cz2 for .cz and
	.cz22 for
	.cz2) that makes for than one CD install breaks :-(

2000/11/11  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/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

2000/11/10  dam's  <damien@mandrakesoft.com>

	* standalone/draknet2: draknet2 : new version of draknet, post-install
	only, uses only libDrakX backend, beautyfull

	* netconnect_new.pm: completed adsl_conf_backend
	corrected conf_network_card_backend : return interface and module
	separately
	splitted pppconfig.

2000/11/10  François Pons  <fpons@mandrakesoft.com>

	* share/po/fr.po: typo fixing

	* printerdrake.pm: fixed wrong case for managing IP for remove CUPS server
	updated typo for remote CUPS server configuration dialog

2000/11/10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/sk.po, share/po/lv.po: updated Latvian and Slovak files

	* share/po/wa.po, share/po/da.po: updated Danish and Walloon files

2000/11/10  Pixel  <pixel@mandrakesoft.com>

	* c/stuff.xs.pm: initIMPS2 move where it should be (in non-C_RPM dependent
	section)

2000/11/09  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: added handling for 2 ethernet cards with the same module

2000/11/09  François Pons  <fpons@mandrakesoft.com>

	* share/po/fr.po: add some missing translation (mainly printer for CUPS
	remote config)

	* printer.pm: make sure to restart cups when cupsd.conf is modified.

	* printerdrake.pm: fixed modification of BrowsePoll on a existing file.

2000/11/08  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: updated

2000/11/08  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: make sure class discarding do not destroy result

	* pkgs.pm: added new function for selected or installed accessor on pkg
	make sure package already installed for oem are marked as selected, as
	some
	code refer to this state to perform some actions (install_urpmi)

	* install_steps.pm: fixed for urpmi again;

	* printerdrake.pm: add management of BrowsePoll <ip>:<port> in
	/etc/cups/cupsd.conf

	* printer.pm: add minimal management of /etc/cups/cupsd.conf

2000/11/08  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/MonitorsDB: Fixed Samsung SyncMaster 3Ne (bug #1136)

2000/11/08  Pablo Saratxaga <pablo@mandrakesoft.com>

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

2000/11/07  dam's  <damien@mandrakesoft.com>

	* mouse.pm: now there are 8 ttyS* available for configuration. Used for
	internal modem configuration that uses ttyS* > 3

	* netconnect_new.pm: ttyS0 -> ttyS7 available for configuration
	some doc

2000/11/07  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixed text for card prefered in XFree 3.3 (RIVA128).

	* install_steps_interactive.pm: use of install_any::boot_medium to avoid
	listing medium used for boot

	* install_any.pm: use of $boot_medium where the boot medium is used
	(default 1)

2000/11/07  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/Cards+: fix tseng server for ET4000 W32i, W32p thanks to
	<sileryti@mail.com>

2000/11/07  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): in oem, configureX automatic
	(main): $::oem is now global :-(  (needed in install_steps.pm)

	* install_steps.pm (afterInstallPackages): give medium 'cdrom' to
	install_urpmi in case of $::oem

2000/11/06  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: backend/frontend fork complete

	* any_new.pm: load_thiskind changed to load_thiskind_backend, the wait
	function is passed by argument

	* network.pm: configureNetwork2 commented.

2000/11/06  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: created function for examining already installed package on
	install (oem).

	* install2.pm: add a flag to allow by default formating /

	* install_steps.pm: conditionnal format of / and use already installed
	packages if any on install.

2000/11/06  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/MonitorsDB: added Hitachi CM753 contributed by Adam Julius
	<ajulius@yahoo.com>

2000/11/06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/ru.po, share/po/uk.po: updated pot file
	GRUB/LILO/SILO messages *must* be in ascii only. Changed cyrillic to
	ascii transliteration for them

	* share/po/be.po, share/po/sp.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/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/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/br.po, share/po/ca.po, share/po/gl.po, share/po/lv.po,
	share/po/eo.po, share/po/ro.po, share/po/da.po, share/po/cs.po,
	share/po/af.po: updated pot file

	* keyboard.pm, ChangeLog: added the 3 kbd layouts for CZ and SK kbds

2000/11/06  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (formatPartitions): formatMountPartitions done even in
	upgrade
	(main): set $o->{partitioning}{use_existing_root} in oem

	* install_steps.pm (doPartitionDisksAfter): remove the mount_all which is
	plain dumb
	(doPartitionDisksAfter): fs::mount_all moved here
	(doPartitionDisks): use $o->{partitioning}{use_existing_root}

	* install_any.pm (use_root_part): fs::mount_all really removed
	(use_root_part): fs::mount_all removed

	* install_steps_interactive.pm (choosePartitionsToFormat): don't propose
	already mounted partitions
	(installCrypto): nicer layout

2000/11/05  dam's  <damien@mandrakesoft.com>

	* mouse.pm: changed 'IntelliMouse label' to 'Generic PS2 Wheel Mouse'

2000/11/05  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/MonitorsDB: added LG StudioWorks520Si contributed by Yves Maniette
	<yves@maniette.com>

2000/11/01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/eo.po: updated Esperanto file

2000/10/31  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: continuing forking frontend - backend. adsl ist
	nearly finished

	* any_new.pm: added this file to fork frontends and backends in any.pm

2000/10/30  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: heartbeat pixel wonderful un chien vaut mieux que deux
	tu damsera

2000/10/30  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/wa.po: updated Walloon file

	* share/keyboards.tar.bz2: updated keyboards

2000/10/30  Pixel  <pixel@mandrakesoft.com>

	* lang.pm (load_po): backslash @ in po strings, otherwise the eval fails

2000/10/28  dam's  <damien@mandrakesoft.com>

	* netconnect_new.pm: new version of draknet. Splited frontends - backends

2000/10/28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/tr.po: updated Turkish file

2000/10/27  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: remove the noising rpm output command line when loging
	installed rpm
	size (only usefull for live_update and just for conveniance).

	* pkgs.pm: Make sure $meta_class is defined in readCompsUsers (for HTTP
	hack)
	before reading a compssUsers file.

	* live_install: add VERSION in list of file that have to be symlinked.

	* common.pm: list_skels returns list of existing directory and writeable.

	* live_install2: Make sure to remove font path in /tmp/drakx before
	exiting.

2000/10/26  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/DrakX.pot, share/po/tr.po, share/po/it.po: updated Italian and
	Turkish files

2000/10/24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: fortune-mod gets 10/0/10 on request from egil

2000/10/24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/pl.po: updated Polish file

2000/10/23  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/ca.po: updated Catalan file

2000/10/23  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm, ChangeLog, diskdrake.pm: added some carriage returns
	to please jl :)

	* detect_devices.pm (floppies, probeall): add require "modules" as it
	should be

	* install_interactive.pm (partitionWizardSolutions): add "require
	resize_fat::main" as it should be

2000/10/22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: linuxconf-gui got -1/-1/-1 while gnome-linuxconf has
	74/0/74

2000/10/21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/uk.po, share/po/tr.po, share/po/az.po: updated Azeri, Turkish
	and Ukrainian files

2000/10/20  fabman

	* share/po/es.po: updated

2000/10/20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: ntp to -1/-1/-1

2000/10/19  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: put all packages requiring kde1-compat to 0 except
	kisdn-free
	aumix now gets a high weight (79) because it's required to save the
	mixer
	settings at shutdown

2000/10/19  Pixel  <pixel@mandrakesoft.com>

	* share/locales.tar.bz2: fix symlink zh_CN.GB2312 (was zh_CN.G23212)

2000/10/19  tlb

	* share/po/da.po: 100%, Troels Liebe Bentsen.

2000/10/18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/az.po: Added AZeri file

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

2000/10/17  dam's  <damien@mandrakesoft.com>

	* interactive_gtk.pm, netconnect.pm, netconnect_consts.pm: removed unused
	code in ineractive_gtk
	added some isdn card in pcitable
	corrected typos, and made ISA isdn work

2000/10/17  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/lv.po: updated Latvian file

2000/10/16  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/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/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

	* standalone/keyboarddrake, keyboard.pm, ChangeLog: corrected BackSpace
	setting

2000/10/16  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (cdroms): fix the setting of scdX for ide burners

	* share/compssList: sympa is -1 except for server

	* keyboard.pm (write): small pixelization (neater now)

	* install_steps.pm (installPackages): don't run ldconfig in g_auto_install

2000/10/15  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/po/nl.po: updated Dutch file

2000/10/14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm, keyboard.pm: small fix for Swedish locale

	* share/po/DrakX.pot, share/po/es.po, share/po/bg.po, share/po/fr.po,
	share/po/wa.po, share/po/de.po: updated Bulgarian file

2000/10/13  François Pons  <fpons@mandrakesoft.com>

	* partition_table_empty.pm: empty partition table as assumed only if the
	MBR is really composed of only null chars.

2000/10/13  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: added viavoicemenu

2000/10/12  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (ask_mntpoint_s): dqs

2000/10/11  Pixel  <pixel@mandrakesoft.com>

	* .cvsignore: ignore flog files

	* install2.pm (main): test

	* ChangeLog: qsdqsd

	* install_steps_interactive.pm: * (selectKeyboard): set default
	$o->{langs} to $o->{lang}

2000/10/10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw, ChangeLog: make only one call to urpmi in order to
	install all the needed rpm's

2000/10/10  Pablo Saratxaga <pablo@mandrakesoft.com>

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

	* share/po/pl.po: updated Polish file

	* share/po/zh_CN.GB2312.po, share/po/zh_TW.Big5.po: updated Chinese file

2000/10/10  tlb

	* share/po/da.po: 99%.

2000-10-10  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: make only one call to urpmi in order
	to install all the needed rpm's

2000-10-10  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-10  Pixel  <pixel@mandrakesoft.com>

	* install2.pm: increase $::VERSION

2000-10-09  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: update after Dam's new messages in netconnect

2000-10-09  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-09  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (kdeicons_postinstall): remove the handling of
	doc desktop icons. see dadou

2000-10-09  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssUsers: new list (with icons)

	* share/list: add icons for compssUsers

2000-10-09  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: added wait message

2000-10-09  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-09  Pixel  <pixel@mandrakesoft.com>

	* share/themes-*.rc: change the fg[INSENSITIVE] entry

2000-10-09  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: added tuxracer in OpenGL games to install if an
	accelerated card has been found.

2000-10-09  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (main): asking connection after writing start/stop scripts.
	(adsl_conf): if during install, don't use chkconfig, make the
	links directly for the adsl init script.

2000-10-09  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-09  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (afterInstallPackages): UserView in kdmrc is
	now true by default. So put false if security >= 3 instead of
	removing it.

2000-10-09  François Pons  <fpons@mandrakesoft.com>

	* any.pm: default speed of modem set to 115200.

	* fs.pm: fixed format of RAID partition.

	* install_interactive.pm: take into account RAID partitions for
	searching / partition.

2000-10-09  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-09  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (selectKeyboard): don't assume $o->{langs} is set
	(selectLanguage): don't set $o->{langs} (so that you can go back
	and it works)

	* common.pm (round_up, round_down): ensure number is an integer

	* install_steps_interactive.pm (chooseGroups): take into account
	the min_level to compute the size

2000-10-08  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): move the
	computing of max_size before calling chooseGroups (not the one for
	desktop meta_class)
	(chooseGroups): compute the size of Miscellaneous

2000-10-07  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-07  Pixel  <pixel@mandrakesoft.com>

	* share/compssList: don't install locales-* even in 'all' install
	(those files are usefull if RPM_INSTALL_LANG doesn't include that
	lang)	

2000-10-07  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-07  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (install): log the gonna be installed packages (-> be
	able to track not installed packages that should have been
	installed)	

2000-10-06  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-06  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (pppConfig): the domain used for kppp is copied in resolv.conf
	(intro): connection detection improved : now use "ifconfig | grep interface"
	(pppConfig): corrected cnx_up/down

2000-10-06  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-06  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (afterInstallPackages): don't fail if
	kdeglobals file is not there	

	* share/compssUsers.desktop: fix icons

	* detect_devices.pm (cdroms): fix for scsi cdrom drives

	* pci_probing/pcitable: put cs46xx instead of snd-card-cs461x
	(dixit jeff)

	* diskdrake.pm (Resize): comment ext2&reiserfs resizing for the
	moment	

2000-10-06  Frederic Lepied  <flepied@mandrakesoft.com>

	* Xconfigurator.pm (write_XF86Config): added mode of wacom devices

2000-10-06  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (ask_connect_now): connection is now tested.

2000-10-06  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm, install_steps_gtk.pm: updated
	license.

	* Xconfigurator.pm: removed Matrox G200/G400 3D acceleration by
	DRI, use only Mesa with Utah GLX, fixed autologin for avoiding
	drakres and no wm available, moved Riva128 card from experimental
	to stable, fixed presentations of text.

	* pci_probing/pcitable: fixed Cirrus Logic sound card.

2000-10-06  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-06  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: fixed bad call to hasUsb...

	* share/Cards+: fixed wrong use of SiS card with 4.0.1, only keep
	530, 620 and 6326 with XFree 4.0.1.

2000-10-06  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-06  Pixel  <pixel@mandrakesoft.com>

	* share/list: remove /usr/X11R6/lib/X11/Cards, not needed anymore	

	* install_steps.pm (afterInstallPackages): put the Charset in
	kdeglobals, otherwise kde uses charset iso8859-1 :(

	* lang.pm (charset): created

	* common.pm (update_userkderc): fix it, change the argument
	passing	

2000-10-05  Pixel  <pixel@mandrakesoft.com>

	* share/compssList: raise kde-i18n-*, should be installed whenever
	kdebase is installed

	* pci_probing/pcitable: integrate patch from viet (concerns
	sym53c8xx cards)

	* share/compssUsers: use "documentation" as the database icon

	* install_steps_interactive.pm (chooseGroups): fix to accept icons
	not in the format "*_section.xpm"

	* install2.pm (miscellaneous): put yes/no in sysconfig/usb entries	

2000-10-05  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (adsl_conf): updated pppoe conf.
	(main): added $netc->{minus_one} to avoid to count dhcp configured
	eth when asking to share the connection.
	(adsl-pppoe): improvement. Should work now.
	(miscellaneous): corrected chmod 755 to 744 for connections scripts

	* netconnect.pm (main): network is stopped then started, instead
	of restarted.

2000-10-05  François Pons  <fpons@mandrakesoft.com>

	* live_install: added icons (this fixes the yellow on white
	tooltips problem).

	* install_any.pm: added ghostscript-utils in the list of packages
	to copy when changing CD.

	* printerdrake.pm: install ghostscript-utils if a lexmark printer
	is selected on cups.

2000-10-05  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-05  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (loadO): look for auto_inst.cfg in /, not in
	/Mandrake/base	

2000-10-05  François Pons  <fpons@mandrakesoft.com>

	* netconnect.pm: fixed syntax error.

	* share/po/i18n_compssUsers: simplified version and fixed
	dependancies to pkgs.pm (for building drakxtools).

2000-10-04  François Pons  <fpons@mandrakesoft.com>

	* install_gtk.pm: removed 80 pixel on height for live upgrade.

	* install_steps.pm: do not set keyboard when live upgrade after
	setting the language.

	* install_steps_gtk.pm: fixed the trying to start a X server on
	live.

2000-10-04  Pixel  <pixel@mandrakesoft.com>

	* share/po/i18n_compssUsers: fake module ``c'' so that no need to
	build DrakX to use i18n_compssUsers

	* install_steps_interactive.pm (selectLanguage): update license

	* install_steps_gtk.pm (installPackages): add second license for
	shitty soft (commercial one)

2000-10-04  dam's  <damien@mandrakesoft.com>

	* draknet (netconnect.pm and network.pm): various translations
	corrected, network is restarted, buttons connect/disconnect
	debugged. 

2000-10-04  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-04  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (main): kill prefdm instead of autologin

	* install_any.pm (find_root_parts): don't use
	suggest_mount_points, it couldn't do what we wanted	
	(guess_mount_point): created, contains the common stuff between
	suggest_mount_points and find_root_parts

2000-10-04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: fix some failing/untranslated i18n messages

	* share/po/fr.po: write translations according to drakgw
	
2000-10-04  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: removed bad card for 3D Rage Pro.

	* install_any.pm: removed Aurora for SiS card, add more case for
	detecting right cdrom for live upgrade, fixed wrong list of
	packages for laptops.

	* c/stuff.xs.pm: added time interval of 200ms between update of
	progression bar of install, make sure the last step is seen.

2000-10-04  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (when_load): stricter regexp for $type is scsi or not
	(so that scsi_mod with is scsi_raw doesn't get an alias
	scsi_hostadapter)	

	* detect_devices.pm (isLS120Drive): extend the regexp to include
	"Caleb Technology - 144MB FDD UHD Floppy"

	* detect_devices.pm (burners, IDEburners): reworked, renamed, now
	works!	
	* c/stuff.xs.pm (isBurner): created

	* modules.pm (load_ide): make sure ide-cd is loaded!

	* install_steps_interactive.pm (chooseGroups): the label and help
	are now translated (at least will be), so use the translations

2000-10-03  Pixel  <pixel@mandrakesoft.com>

	* share/po/Makefile (DrakX.pot): added the to-be-translated from
	compssUsers
	* share/po/i18n_compssUsers: read the compssUsers's and output the
	to-be-translated in po format

	* log.pm (l): log to STDERR instead of STDOUT

	* install_any.pm (loadO): use first floppy drive available (won't
	help much though, as stage1 doesn't follow this...)

2000-10-03  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-03  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (autologin): don't propose autologin in
	security > 3

	* common.pm (availableRamMB): HACK HACK if i810 and memsize,
	returns 127

	* bootloader.pm (suggest): don't use grub if more than 800MB

2000-10-04  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/validate.pl: create this tool
	
	* share/po/fr.po: fix many typos

	* share/po/fr.po: make compssUsers translation

2000-10-03  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator_consts.pm: changed resolution allocation.

	* fs.pm: removed no more used log.

	* install2.pm: add exit button if live upgrade.

	* install_any.pm: increased minimal available size to 65Mb.

	* install_steps.pm, standalone/printerdrake: fixed cups to CUPS
	for mode.

	* printerdrake.pm: fixed not_edit for lpr mode of printerdrake.

	* share/Cards+: fixed Savage2000 entry.

2000-10-03  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-03  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: updated bad card with Rage Mobility card.

	* live_install: added test of root user, abort if not root.

2000-10-03  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/po/fr.po: fixed bug #518 and fixed other misc errors

2000-10-03  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-10-02  François Pons  <fpons@mandrakesoft.com>

	* diskdrake.pm (Resize): fix to make ext2resizing work a little
	better	

	* install_steps.pm: fixed installation of urpmi configuration.

	* detect_devices.pm: updated comment about UltraDMA66/100
	management.

	* modules.pm: updated comment about UltraDMA66/100 management.

	* diskdrake.pm: adding a cylinder for the minimum of the resize
	and if there is nothing to do for resize, simply return.

	* install_any.pm: added missing require pkgs.

2000-10-02  Pixel  <pixel@mandrakesoft.com>

	* many files: remove many lnx4win special cases which are not
	needed anymore        
	
	* any.pm (addUsers): grpuser output goes to Mr Dave

	* bootloader.pm (install_lilo): change the default color of menu

	* install_steps_interactive.pm (choosePackages): add 300MB choice
	in desktop

	* mouse.pm (fullnames): fix i18n fix

	* install_steps.pm (miscellaneous): don't add ide2=0x... for
	ultra66 (otherwise chmouel is not happy, so is hdc being hde)
	
	* Xconfigurator.pm (main): add handling of icewm logout

	* c/stuff.xs.pm: changed the stepping of "Progressing installing package"

2000-10-02  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (main): infos are written only when needed.
	* netconnect.pm (intro): connection checking now works.
	
2000-10-02  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* pci_probing/pcitable: s|snd-card-via686a|via82cxxx_audio|; like
	jeff request.

2000-09-30  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-30  dam's  <damien@mandrakesoft.com>

	* netconnect.pm: a LOT of bugs fixed. draknet is now completely
	brok^H^H^H^Hfrozen.

2000-09-29  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-29  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (adsl_conf): dhcp should better work.

	* network.pm (configureNetwork): remove connection script if a
	gateway is given.

	* common.pm (setVarsInShMode): created. chmod the file with
	permissions passed in argument.

2000-09-29  François Pons  <fpons@mandrakesoft.com>

	* modules.pm (load): fixed when standalone, use modprobe.

	* pkgs.pm: added preference for wu-ftpd.

	* detect_devices.pm: added code to proble USB printer.

	* printer.pm: fixed missing PRINTER=yes on CUPS configuration for
	USB printer.

	* install_steps.pm: removed possibilty to add an user in urpmi
	group (jloup).

	* install_steps_interactive.pm: log if CD not ejectable.

2000-09-29  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: sync with latest packages

	* install_steps_interactive.pm (selectLanguage($)): s/42/43/ in
	  MandrakeSoft physical address 

2000-09-29  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-29  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (intro): detection of internet
	configuration/connexion state.
	
	* network.pm (write_resolv_conf): better "ppp temp nameserver" in resolv.conf

2000-09-28  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_thiskind): add read_already_loaded cuz of
	pcmcia	

2000-09-28  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: add nasty DrakSync and DrakProfile with 50 0 50

2000-09-28  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): the minimum is 25
	in beginner, not 10

	* pkgs.pm (readCompssUsers): fix reading description

	* install_steps.pm (afterInstallPackages): remove the code to
	handle RPM-GPG-KEYS

2000-09-28  dam's  <damien@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_list_with_helpW): no more theme
	parsing, no more draknet.rc

	* netconnect.pm (read_net_conf): no adsl tree anymore.

	* netconnect.pm: drakgw called if enough card are installed.

	* netconnect.pm: minor bugs correction.

2000-09-28  François Pons  <fpons@mandrakesoft.com>

	* Makefile.config: added livedrake for drakxtools.
	* diskdrake.pm: use corrected partition size when resizing a dos
	partition (like the others).
	* install_any.pm: no more pnm2ppa packages and others in package
	to copy when changing CD.
	* live_install: exec live_install2 instead.
	* live_install2: contains post live upgrade stuff now.
	* printerdrake.pm: protect set_help() usage by if $::isInstall,
	removed reference to package pnm2ppa and others.
	* standalone/livedrake: initial release for drakxtools.

2000-09-28  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-28  Pixel  <pixel@mandrakesoft.com>

	* install_interactive.pm (partitionWizardSolutions): fix the limit
	cases for lnx4win	

	* share/po/Makefile ($(PMSCFILES)): fix the DrakX.pot generation	

2000-09-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): set $size2install
	to $availableC in desktop install, as it should be

	* install2.pm (choosePackages): remove the code for removing kdesu
	in high security...

	* install_steps_interactive.pm (createBootdisk): format more
	nicely the text

	* install_steps_gtk.pm (installPackages): add 10 seconds to have a
	better estimation

	* install_steps_interactive.pm (chooseGroups): now returns a boolean
	(choosePackages): use chooseGroups return value to redo
	choosePackages	

	* install_steps_gtk.pm (selectMouse): if mouse type is none, then
	don't test!

	* Xconfigurator.pm (monitorConfiguration): rename Unlisted to Custom

	* various: replace all Rescue by Update

	* pkgs.pm (readCompssUsers): read description for groups
	
	* install_steps_interactive.pm (chooseGroups): add description for
	groups	

2000-09-27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssUsers.desktop: added description

	* share/compssUsers: added description

	* share/compssUsers.desktop: added icon support, reordered,
	  renamed

	* share/compssUsers: reordered, renamed

2000-09-27  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectLanguage): intregrate
	license again

	* pkgs.pm (readCompssUsers): reads compssUsers.meta_class

	* diskdrake.pm (Create): replace ``ne "i386"'' by ``!~ /i.86/''
	(as should be)

	* install_steps_gtk.pm (selectInstallClass1): if @$l (list of
	install classes) contains only one element, call
	install_steps_interactive::selectInstallClass1	

	* install_steps_interactive.pm (choosePartitionsToFormat): fix for
	"no partitions selected to format"

	* my_gtk.pm (_create_window): alt-e now *toggles* expert/newbie	

2000-09-27  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* share/compssList: more for gnupg, -11 for sucking things,
          changed compss-groups to be less than 70.

	* share/compssUsers: modified compssUsers with Warly, added
          compssUsers.desktop, simplified for KD (now uses Graphical
	  Desktop/KDE instead of listing all relevant packages)

2000-09-27  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (get_info_adsl_providers, read_adsl_providers):
	Created. adsl provider tree. 
	(set_net_conf): better informations storing.

	* my_gtk.pm (new): windows are always centered if standalone.

2000-09-27  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added option "sw_cursor" for S3 Trio3D. fixed
	3D hw acceleration for i815 (VideoRam). prefer XF3 for all
	NeoMagic cards.
	* install_gtk.pm: re-enabled themes on live upgrade but without
	modifying background image.
	* install_steps_gtk.pm: fixed missing help.
	* live_install: lot of fixes to enable DrakX font, keep upgraded
	system clean (libperl.so which allows graphical login).
	* pkgs.pm: added function allowedToUpgrade to filter kernel
	package.

2000-09-27  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (configureX): if `clicked' don't go
	to auto mode

	* Xconfigurator.pm (monitorConfiguration): fix the translated
	'Generic' which is not so (and must not be so) anymore

2000-09-26  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm: remove all Unskip code

	* my_gtk.pm (_create_window): add shortcut alt-e to switch to
	expert

	* Xconfigurator.pm (resolutionsConfiguration): fix for setting
	legal resolution

	* install_steps_interactive.pm (selectLanguage): use formatAlaTeX
	on the license

2000-09-26  François Pons  <fpons@mandrakesoft.com>

	* fs.pm: added mounting of swap partition when mounting them
	all (this can help :-) 
	* pkgs.pm: fixed correction size code to make (really) a true
	bijection between corrected and rpm size.

2000-09-26  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-26  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectLanguage): integrate the
	license (temporary one)

	* modules.pm (write_conf): fix the /etc/modules generation

	* interactive_gtk.pm (ask_many_from_listW): if more than 5 entries
	in icon format, use scrollbar. In non-icon format, use scrollbar
	for more than 11 entries.

	* commands.pm (bug): add ddcxinfos

	* pci_probing/pcitable: replace tulip by de4x5 for 2104x cards	

2000-09-26  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added more 3D Rage Pro card for 3D
	acceleration with Utah-GLX (Rage Mobility, Rage XC/XL),
	modified identification for checking acceleration.
	* install_any.pm: added automatic installation (up 60) for
	OpenGL games if a graphic card MAY BE accelerated.
	* live_install: fixed perl idioms in pure shell script and added
	packdrake symlink if not already installed.
	* share/compssList: changed level to -1 for all needing 3D hw
	acceleration packages.

2000-09-26  dam's  <damien@mandrakesoft.com>

	* network.pm (write_resolv_conf): write temp dns line to be used
	with new initscripts package. Use to set dns live.

2000-09-26  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-26  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (read): catch exception if fullname2mouse fails (eg:
	old FULLNAME format)

2000-09-25  Pixel  <pixel@mandrakesoft.com>

	* share/MonitorsDB: merge with latest redhat MonitorsDB

	* pci_probing/pcitable: major merge with latest redhat pcitable

	* share/Cards+: added "Intel 815", renamed "Rage 128 (generic)" to
	"Rage 128", added "Rage 128 Mobility"

	* install_any.pm (getAvailableSpace): keep 10% of free space on
	big partitions

	* Xconfigurator.pm (readMonitorsDB): don't translate Generic
	(otherwise, only a part is translated, see MonitorsDB for the
	non-translated part)

	* interactive.pm (ask_many_from_list): fix sorting

	* install_gtk.pm (test_mouse): smaller box to fit in 640x480

	* install_steps.pm (afterInstallPackages, beforeInstallPackages):
	RPM-GPG-KEYS is copied before installing packages

	* pkgs.pm (readCompssUsers): handle icons in compssUsers

	* common.pm (truncate_list): ensure the list is not too big

	* install_steps_gtk.pm (choosePackagesTree): restrict the list to
	20 elements if it is too big (use truncate_list)

2000-09-25  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: add Video mode for entry.
	* fs.pm: updated for live upgrade.
	* install2.pm: dropped unuseful steps filtering.
	* install_any.pm: fixed wrong Device3Dfx package name and clean
	postinstall rpms directory on upgrade before filling it.
	* install_gtk.pm: removed window restrictions of live upgrade.
	* install_steps.pm: fixed initrd symlink following in case of
	upgrade.
	* install_steps_gtk.pm, install_steps_interactive.pm: keep always
	upgrade on live upgrade.
	* modules.pm: may fixed pcmcia lost driver (typically on network).
	* pkgs.pm: fixed (uggly?) usage of floating perl data on perl
	script :-)
	* printer.pm: back to "Generic PostScript" for default printer (jloup).
	* printerdrake.pm: make sure an expert can choose among available
	devices.

2000-09-25  dam's  <damien@mandrakesoft.com>

	* network.pm (write_resolv_conf): write '# ppp temp entry adsl' in
	/etc/resolv.conf if needed.

	* netconnect.pm : adsl connection does'nt need any dns anymore.

	* netconnect.pm (read_net_conf): created. draknet now stores and
	reload the config.
	
	* netconnect.pm (main): if the user is french and uses french
	keyboard, don't ask his country.

2000-09-25  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: added 8139too

	* share/Cards+: GeForce2 DDR is handled by driver "nv"

	* Xconfigurator.pm (main): in killall X for Xdrakres, also killall
	kdm/xdm/gdm/autologin :)

2000-09-25  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-25  dam's  <damien@mandrakesoft.com>

	* network.pm (configureNetwork): Warn user if he already
	configured the interface.

2000-09-24  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (mergein_conf): created. call read_conf, fills
	%modules::conf and set $modules::scsi

2000-09-24  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw (fatal_quit($)): add log of reason of fatal_quit

2000-09-24  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-24  Pixel  <pixel@mandrakesoft.com>

	* commands.pm (bug): use first floppy drive instead of fd0 hard
	coded (nice for LS120's)

	* install_steps_gtk.pm (selectMouse): if device changed, do the
	test	
	* standalone/mousedrake: fix for serial mice
	* install_steps_interactive.pm (selectMouse): fix for serial mice

2000-09-23  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (conf_network_card): now displays the modules of
	detected ethernet cards.

2000-09-22  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (main): calls drakegw.
	* netconnect.pm (get_net_device): fixed

2000-09-22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw:
	  - added logs
	  - added verbose mode
          - fixed wrong stopping of named in other languages than english

	* netconnect.pm (get_net_device): try to fix it..

2000-09-22  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectKeyboard,
	choosePartitionsToFormat, chooseCD, installCrypto): use new ask_many_from_list
	(): 

	* interactive.pm (ask_many_from_list): now only ask_many_from_list
	exists, obsoleting ask_many_from_list_ref and
	ask_many_from_list_with_help. More flexible and nicer
	* interactive_newt.pm (ask_many_from_listW): adapted to new
	calling type
	* interactive_gtk.pm (ask_many_from_listW): adapted to new calling
	type, handle 'shadow' and 'icon2f'

2000-09-22  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): if /lnx4win/i in VERSION, set $o->{lnx4win}

	* Xconfigurator.pm (cardConfiguration): fix setting 4MB of meg for
	i810	
	(testFinalConfig): i810 is a verybad_card, aka can't test anything
	on it :-(
	(main): fork to background and stay there while waiting for the WM
	to exit
	(testFinalConfig): update the backgroung image path

	* interactive_gtk.pm (exit): flush X before leaving (otherwise the
	mousecursor is not restored)

	* run_program.pm (rooted): don't redirect the stdout and stderr to
	ddebug.log if not $::isInstall

	* log.pm (l): log on stdout/stderr if !isInstall and !isStandalone

	* modules.pm (load_raw): redirect stderr to tty5

	* install2.pm (main): set variable $::isInstall

2000-09-22  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-22  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/drakgw: now includes information from netconnect to
	ignore the interface used for Internet connection

2000-09-22  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm (selectInstallClass1): pixel's typo.

	* netconnect.pm (get_net_device): added get_net_device to know
	which interface has been used to configure the internet connection.
	(conf_network_card): ask to restart network if dhcp too.
	(main): enable dialing when modem.

	* network.pm (configureNetworkIntf): changed label to warn people
	about already configured eth cards.

2000-09-22  François Pons  <fpons@mandrakesoft.com>

	* install_gtk.pm: added Desktop themes.
	* share/themes-mdk-Desktop.rc, share/themes/mdk-Desktop-bg.png:
	initial release.
	* install2.pm: moved back to all steps for live upgrade.
	* install_gtk.pm: select right logo if desktop.
	* install_steps_interactive, install_steps_gtk.pm: avoid asking if
	upgrade for a live upgrade.

2000-09-22  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm: add some call to log_sizes to log the
	installed size

	* install_steps_gtk.pm (installPackages): beep before changeMedium		

2000-09-21  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (ask_from_listf): try to call the f translation
	function on the default value with the index

	* install_steps.pm (afterInstallPackages): make the gpg code work,
	changed the call to 
	"gpg --fast-import --homedir /etc/rpm /root/tmp/RPM-GPG-KEYS"

	* detect_devices.pm: cleanup and removed unused code

2000-09-21  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* detect_devices.pm (getNet()): really remove plip in standalone

2000-09-21  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm, netconnect.pm: changed NETWORKING reference
	from false to no.
	* printer.pm: changed timeout from 30 to 60.
	* printerdrake.pm: added wait message when waiting for cups to
	start.
	* pci_probing/pcitable: added erwan VIA Rhine board.
	* network.pm: added DHCP_HOSTNAME reference.

2000-09-21  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-21  Pixel  <pixel@mandrakesoft.com>

	* standalone/keyboarddrake: fix for XF4

	* Xconfigurator.pm (write_XF86Config): comment the omit
	xfree86-dga	

	* install_steps.pm (afterInstallPackages): configure GPG public
	keyring with mandrake key	

	* standalone/mousedrake: updated/fixed for new mouse handling	

	* install2.pm (main): update for handling oem installs

	* many files: relGetFile cleanup, updated calls to getFile and
	getAndSaveFile accordingly

	* Xconfigurator.pm (testFinalConfig): new XFdrake-image-test.jpg

	* detect_devices.pm (@netdevices): plip removed in standalone,
	otherwise plip is always there (because of kmod)

	* install_steps_interactive.pm (choosePartitionsToFormat): replace
	the die "cancel" by die "already displayed", so that no error is
	displayed.

	* pci_probing/pcitable: replace some rtl8139 by 8139too, added
	cards DELTA8139 and ADDTRON8139 (for jeff)

	* Xconfigurator.pm (show_info): also show the colordepth and
	resolution. don't show server if none, show XF4 driver if there's
	one.	
	(main): change the "Forget the changes" to "Keep the changes?"
	with displaying the current configuration.

2000-09-21  François Pons  <fpons@mandrakesoft.com>

	* printer.pm: changed "PostScript" ppd default description to "Raw
	queue (no filtering)", asked by Till.
	* Xconfigurator.pm: add log of what user select for 3D hw
	acceleration.
	* share/compssList: changed XFree86-glide-module to -2 because the
	level is the same for XFree86-Glide* which may have multiple
	different version installed due to dependancies of the first one.

2000-09-21  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (conf_network_card): added check when dhcp. Cable connection
	should now work.

2000-09-21  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (exitInstall): call $o->exit if
	"Some steps are not completed"

2000-09-20  Pixel  <pixel@mandrakesoft.com>

	* bootloader.pm (install_loadlin_config_sys,
	install_loadlin_desktop): extracted from install_loadlin, do not
	call them anymore (remove it?)
	(suggest): put grub in lnx4win install

	* common.pm (availableRamMB): fixed (round to a multiple of 4)	

2000-09-20  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (get_info_isdn_providers & read_isdn_providers):
	read file in /usr/share and $prefix/usr/share 
	(isdn_write_config): corrected file to be sh compliant.
	(isdn_write_config): added default route settings for isdn.

2000-09-20  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-20  Pixel  <pixel@mandrakesoft.com>

	* pci_probing/pcitable: replace es1371 by snd-card-ens1371

2000-09-20  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm (autologin): for urpmi, added `--best-output' and suspend/resume 

2000-09-20  Guillaume Cottenceau  <gc@mandrakesoft.com>

	* standalone/printerdrake: for urpmi, added `--best-output' and suspend/resume 

	* standalone/XFdrake: for urpmi, added `--best-output' and suspend/resume 

2000-09-20  dam's  <damien@mandrakesoft.com>

	* standalone/draknet: used new package install function.

2000-09-20  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (isFloppyOrHD): detects wether a device is a
	floppy or not based on its size (for scsi floppy)

	* Xconfigurator.pm (testFinalConfig): check if "server" OR
	"driver" field is set (otherwise XF4 only card won't pass)

	* bootloader.pm (suggest): fix for ``installing the last cooker
	from kenobi:/I on an smp machine i don't get anymore an entry for
	linux-up'' (c chmouel)

2000-09-20  dam's  <damien@mandrakesoft.com>

	* netconnect.pm (read_isdn_providers): corrected typo ($_ -> $_[0])

2000-09-20  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (get_pcmcia_devices): fix (especially, now ethernet
	should be detected)

	* lang.pm (get_langs): created, gives rpm install langs
	* install_any.pm (setPackages): give langs::get_langs() to
	readCompssList	
	* pkgs.pm (readCompssList): don't use RPM_INSTALL_LANG, use given
	$langs instead. This fixes the RPM_INSTALL_LANG=all install.

2000-09-19  Pablo Saratxaga <pablo@mandrakesoft.com>

	* netconnect.pm: make dhcp-client, pump and such not translatable.
	Those are program names and should therefore not be translated,
	that only confuses translators

2000-09-19  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm (autologin): corrected @users definition and
	passwd cat.

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* many files: changed some access to get_root to get_root_	
	
	* install_steps_interactive.pm (choosePackages): added code for
	desktop meta_class install type

	* install_steps_gtk.pm (selectMouse): cleanup, give parameter
	emulate3buttons to setMouseLive
	* c/stuff.xs.pm (setMouseLive): add argument emulate3buttons

2000-09-19  Guillaume Cottenceau <gc@mandrakesoft.com>

	* interactive*.pm: changed `suspend' and `resume' to behave as expected,
	added `enter_console' and `leave_console'

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (miscellaneous): replaced LITTLE_FRIED_OIGNONS by
	META_CLASS

	* Xconfigurator.pm (cardConfiguration): when ddcxinfos gives false
	result (not enough VideoRam), also remove the found resolutions
	* Xconfigurator.pm (main): remove the automatic searching of
	resolutions	
	* Xconfigurator.pm (resolutionsConfiguration): cleanup, remove the
	automatic searching of resolutions.

	* mouse.pm (fullnames): changed the `_' in `[' before Other
	(nicer, uh?)

	* install2.pm (selectMouse): changed clicked to !first_time

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-19  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (testFinalConfig): remove the bloody prototype

2000-09-19  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-18  Dam's  <damien@mandrakesoft.com>

	* Xconfigurator (autologin): do it eve, if newbie. Autologin is
	now in separated function.
	
2000-09-18  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (testFinalConfig): don't skip the test in auto
	if called via "Test again"
	* Xconfigurator.pm (resolutionsConfiguration): ensure all depth
	are bounded

	* bootloader.pm (suggest): don't put "linux-nonfb" if "linux" is
	classic and no-fb

	* fsedit.pm (check_mntpoint): add a check for /etc /lib... which
	must not be mount points. Also check that /home, /tmp and /usr are
	on trueFS

	* interactive.pm (ask_from_entries_ref): add bounding of "val" in
	case of type "range". die if min > max.

2000-09-18  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-18  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePartitionsToFormat): nicer
	partition/device display

	* partition_table_raw.pm (zero_MBR): add on the fly require of the
	good partition_table_$type

	* detect_devices.pm (cdroms): fix (yet again) the scd$nb device
	assignment to ide burners

	* install_steps.pm (afterInstallPackages): comment out a part of
	the icons mess messing

	* Xconfigurator.pm (cardConfiguration): move Unlisted to
	Other/Unlisted
	* share/CardsNames: updated (for Voodoo5)

	* install_steps_gtk.pm (selectMouse): fix the test to know wether
	the guy has changed the mouse type (to know wether to test the
	mouse or not)

	* install_steps_interactive.pm (selectLanguage): add the license
	
	* install_steps_interactive.pm (choosePackages): have the
	"Recommended" size be the default 
	(in the choice Minimum/Recommanded/Complete)
	
	* diskdrake.pm (Type): fix a typo

	* install_steps.pm (doPartitionDisksAfter): mark partition as
	mounted	

2000-09-17  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-17  Pixel  <pixel@mandrakesoft.com>

	* install/pcmcia_config.patch: cleaned
	
	* diskdrake.pm (Create, Type): have type field not_editable

	* tools/make_mdkinst_stage2: use TMPDIR if available

2000-09-16  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePartitionsToFormat): move
	the setting of toFormat before asking for bad blocks, seems to fix
	things?? weird :-/

	* network.pm (miscellaneousNetwork): fix the setting of focus on
	error (tx2Thomas Poindessous :)	

	* install_steps_interactive.pm (configurePrinter): changed
	"Cancel" to "None" (for Thomas Poindessous :)

	* printer.pm (poll_ppd_base): max polling time raised from 10s to
	30s (for Till)	

	* install_steps.pm (ask_mntpoint_s): don't force partition type to
	be ext2 (at least if it's a known fs) (for Warly)

2000-09-15  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-15  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (set_help): save the help message displayed
	in $o->{current_help}
	* install_gtk.pm (create_big_help): display $o->{current_help}

	* mouse.pm: reworked quite a lot. Now sorts/categorize nicely the mice.	
	* install_steps_interactive.pm (selectMouse): adapted for reworked mouse.pm
	* install2.pm (selectMouse): adapted for mouse::read now returning
	an hash ref

	* detect_devices.pm (hasMousePS2): remove hasMouseMacUSB, do it in
	one function (now takes the device in the parameter)

	* interactive.pm (ask_from_treelistf): added (just like
	ask_from_listf, but with a tree)

	* Xconfigurator.pm: the reference is now nbuttons to
	know wether to put Emulate3Buttons or ZAxisMapping.
	* Xconfigurator.pm (cardConfiguration): install Glide_V3-DRI on
	Banshee too.

	* Xconfig.pm: guess nbuttons based on Emulate3Buttons and
	ZAxisMapping.

	* common.pm (availableRamMB): replace availableRam, now use the
	size of /proc/kcore (what else to find the real ramsize?)

	* common.pm (cat__): created

	* install2.pm (main): add field meta_class in $o. Can be
	'desktop', in case option desktop is given, or if /desktop/i is
	found in /VERSION

	* install_steps.pm (miscellaneous): for lnx4win, always have
	'mem=' (so that the initrd is visible by both windows

	* install2.pm (main): add option "desktop"

	* install_any.pm (generate_ks_cfg): fix for new(?) $o->{intf} format

	* install_interactive.pm (partitionWizardSolutions): 
	use only TrueFS for existing_part
	(partitionWizard): have only "loopback" for lnx4win

	* pci_probing/pcitable: associate Voodoo5 with Voodoo5

	* share/Cards+: add Voodoo5

	* bootloader.pm (suggest): add entry linux-nonfb (called linux-up
	for smp)

2000-09-14  DrakX <install@linux-mandrake.com>

	* snapshot uploaded

2000-09-12  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm, mouse.pm: moved probing serial port before to
	detect a wacom tablet (even if a PS/2 or USB mouse is found).
	* help.pm: corrected reference to previous version of LM (jloup).
	* install2.pm: removed duplicate code for getting network
	configuration, using network module.
	* netconnect.pm: intf is now a hash and no more an array.
	* network.pm: changed nature of intf to hash from array, reworked
	write_resolv_conf function to keep old code in comment but only
	when not used anymore (to make it easier by hand modification).
	* printer.pm: SOCKET accessible to expert only (jloup).
	* printerdrake.pm: local port only available for expert if a
	printer has been detected (jloup).

2000-09-11  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: reorganized choices of 3D optimizations, added
	experimental support for expert users.
	* install_steps_interactive.pm: removed question to keep XF3.

2000-09-05  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: removed all previous URI specific mode and
	added socket and expert URI general mode.
	* printer.pm: fixed bugs, start lo interface before cups.

2000-09-04  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: added pnm2ppa and lm110 support in cups
	configuration. probe for printer device (parallel) and try to
	install usb for printer.
	* printer.pm: removed local printer configuration for cups (keep
	only local configuration using URI).

2000-09-01  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: fixes to configure XF86Config-4 when XFree-3.3
	is installed, make 16bits by default on 3D hardware acceleration,
	fixed selection of hardware for hardware acceleration.
	* install_steps.pm: add cups for printer configuration, used for
	auto_install. added new function to add packages only if requires
	are already satisfied.
	* standalone/printerdrake: updated.

2000-08-31  dam's  <damien@mandrakesoft.com>

	* moved many things to network.pm and any.pm
	* everything should be broken now.

2000-08-31  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: removed printer default config (now obsoleted).
	* install_steps_interactive.pm: add cups support.
	* printerdrake.pm: add cups support.
	* printer.pm: add cups support.

2000-08-31  Frederic Lepied  <flepied@mandrakesoft.com>

	* install_any.pm (setPackages): install the right glide module
	according to the Voodoo card detected.

	* Xconfigurator.pm (write_XF86Config): ZAxisMapping for XF 4.
	(autoDefaultDepth): default depth to 16 for Voodoo cards except
	for Voodo5 ones.

2000-08-29  dam's  <damien@mandrakesoft.com>

	* moved pppConfig in netconnect.pm and any.pm
	* moved miscellaneousNetwork in any
	* modem configuration is now useable in standalone mode.

2000-08-29 David BAUDENS <baudens@mandrakesoft.com>

	* install_steps_interactive.pm: change Small/Normal/Full ->
	  Minimum/Recommanded/Complete (aka make FredB happy)

2000-08-28  dam's  <damien@mandrakesoft.com>

	* draknet (netconnect): renamed drakfuck -> draknet. standard ADSL
	and french alcatel ADSL implemented.
	* Xconfigurator.pm (autologin) : use of the new autologin system.

2000-08-24  François Pons  <fpons@mandrakesoft.com>

	* ../update_kernel*: changed reference from extract_archive to
	packadrake.
	* Makefile*: added live_install and live_install2.
	* Xconfigurator.pm: updated Mach64 acceleration to only 3D Rage
	Pro AGP card type, commented SiS and S3ViRGE support by GLX.
	* commands.pm, keyboard.pm, lang.pm, pkgs.pm, list, tools/*:
	updated to use packdrake now.
	* install2.pm, install_steps.pm, install_steps_gtk, Makefile*:
	manage live upgrade.
	* modules.pm: use standard modprobe command for load in live
	upgrade.
	* netconnect.pm: added minimal modification for being compilable.
	* rescue/list: added packdrake and sfdisk.
	* live_install, live_install2: live upgrade of package.

2000-08-22  dam's  <damien@mandrakesoft.com>

	* drakfuck (netconnect):finished isdn PCI/ISA card implemetation
	* added isdndb.net: providers database

2000-08-20  dam's  <damien@mandrakesoft.com>

	* moved Netconnect.pm to netconnect.pm
	* moved DrakFuck to drakfuck

2000-08-18  Pixel  <pixel@mandrakesoft.com>

	* share/Cards+: for i810, force VideoRam

2000-08-18  dam's  <damien@mandrakesoft.com>

	* modules.pm: added isdn type in @drivers_by_category. corrected
	load_thiskind (thx pixel) : it's not unsafe anymore
	* Netconnect.pm: just display PCI isdn card recognized.
	
2000-08-17  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm: many cleanup. moved some functions to common,
	any or install_interactive (newly created)

2000-08-16  dam's  <damien@mandrakesoft.com>

	* install_steps_interactive.pm(configureNetwork): added call to
	isdn configuration
	* added standalone/DrakFuck: standalone entry point to configure
	internet connexion.
	* added Netconnect.pm: internet connexion functions.

2000-08-11  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectInstallClass): yet a bigger
	warning so that people don't choose expert installs. Also set the
	focus on "Custom" by default.
	
	* install_steps_interactive.pm (doPartitionDisks): created, calls
	the wizard.
	* install_steps.pm (doPartitionDisksBefore,
	doPartitionDisksAfter): created (was mainly in
	install2::doPartitionDisks)
	* install2.pm (doPartitionDisks): much cleanup
	* install_any.pm (partitionWizard): working state (still rough)

2000-08-08  Pixel  <pixel@mandrakesoft.com>

	* standalone/rpmdrake (AddMedia): fix the ftp addmedia, fix the
	cdrom addmedia

2000-08-07  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Resize): 
	* install_steps_gtk.pm (doPartitionDisks): remove the
	before_leaving ensuring the filehandle is closed
	* resize_fat/main.pm (DESTROY): use a better solution for ensuring
	the filehandle is closed

2000-08-07  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added SiS6326 in the list of chipset that
	needVideoRam, reported on ml.
	* install_steps.pm: fixed auto install of printer.

2000-08-06  Pixel  <pixel@mandrakesoft.com>

	* interactive.pm (ask_from_listf): created this GREAT function
	that should have been created a long time ago.
	* any.pm, install_any.pm, install_steps_gtk.pm,
	install_steps_interactive.pm: a lot of rewrite to use the new
	ask_from_listf, a lot of nice cleanup!

	* fs.pm (df): created, returns the free space of the part. Save it
	in $part->{free}

	* install_steps_gtk.pm (doPartitionDisks): ensure the closing of
	the device in case of error
	* resize_fat/main.pm (new): ensure the closing of the device in
	case of error

	* install_any.pm (partitionWizard): the great partitioning wizard
	is created. Not finished yet (nor called from anywhere)

	* install_steps.pm (doPartitionDisksLnx4win): created function out
	of doPartitionDisks

	* install_steps_gtk.pm (installPackages): removed the displaying
	of size to install (people are bothered cuz not the same size)

2000-08-06  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm (create_steps_window): use drawing area
	instead of button. Implemented all steps events. 

2000-08-05  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (detect): test a hack for usb mouse via hub
	(sparhawk@enteract.com)	

	* fsedit.pm (undo): force isDirty and needKernelReread only if hd
	hasBeenDirty, otherwise believe the flag saved
	* partition_table.pm (write): flag hd as hasBeenDirty

	* install2.pm: a few renaming of methods so that the step names
	correspond to install2 function and install_steps* methods (eg:
	configureX & setupXfree unified to configureX)

2000-08-04  dam's  <damien@mandrakesoft.com>

	* any.pm (setAutoLogin): added this method to write xdm-config
	* Xconfigurator.pm: clenead autologin code and use of above method

2000-08-04  Pixel  <pixel@mandrakesoft.com>

	* pkgs.pm (setSelectedFromCompssList): save $nb to able to restore
	it in case of max_size reached. only purpose is the log!

	* install_steps_interactive.pm (choosePackages): in newbie, ask
	between Small/Medium/Full install
	* install_steps_interactive.pm (choosePackages): in expert, have
	the min_mark be 0 instead of 1

	* common.pm (find_index): added this nice function

	* install_any.pm (getAvailableSpace_mounted): use common::df
	* loopback.pm (getFree): use common::df
	* commands.pm (df): use common::df
	* common.pm (df): added

	* diskdrake.pm (Resize)): add resizing of reiserfs
	* share/list.i386: add resize_reiserfs


2000-08-02  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm : autologin is functionall. When wmsession.d is
	more up to date, I'll add the list of wm to launch at boot. It
	writes in /etc/X11/xdm/xdm-config.
	
2000-08-01  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (miscellaneous): modify as chmouel want (aka, ""
	instead of "no" for MOUSE and KEYBOARD in sysconfig/usb)

	* services.pm: separation between interaction and action.
	* install_steps.pm (servicesConfig): the job is now done here	
	* install_steps_interactive.pm (servicesConfig): only the asking
	part	

2000-08-01  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed the below fixe, now ok.
	* Xconfigurator.pm: fixed a bug for using default card flags
	setting, add support for GeForce DDR for both 3.3 and 4.0.
	* pci_probing/pcitable: fixed NV15 (GeForce2) card entry, now use
	XFree 3.3 as unsupported in XFree 4.0.
	* share/Cards+: added "NVIDIA GeForce2 DDR (generic)".

2000-07-31  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: fixed provided package with choice in deps used with a
	base package, complicated but kernel-fb or similar can be
	unselected now.

2000-07-27  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: changed expert message to ask
	using XFree 3.3 instead of XFree 4.0 used by default (server).
	* Xconfigurator.pm: make sure only one server is installed,
	default to XFree 4.0 if supported unless XFree 3.3 accept
	3D acceleration and not XFree 4.0, ask user in such case.
	* pci_probing/pcitable: added Intel 815 pci ids.

2000-07-26  dam's  <damien@mandrakesoft.com>

	* install_steps_gtk.pm: applied new LN stars, logo title and help
	logo. improved steps appearences.
	* modified share/step-*.xpm
	* added share/help.xpm
	* updated ../HACKING to ling help logo.

2000-07-21  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: enable 3D acceleration configuration with
	XFree86, use /usr/X11R6/lib/modules/glx-3.so for X version 3
	Utah-GLX accelerated module.

2000-07-20  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: use {miscellaneous}{autologuser} instead of
	{miscellaneous}{autologuser} + {miscellaneous}{autologing}.
	* move some README content to ../HACKING

2000-07-19  dam's  <damien@mandrakesoft.com>

	* Xconfigurator.pm: added autologin boxes.
	result is in {miscellaneous}{autologin} and in
	{miscellaneous}{autologuser}
	
2000-07-19  François Pons  <fpons@mandrakesoft.com>

	* any.pm: added default root to existing root device when adding
	an entry in bootloader.
	* bootloader.pm: avoid duplicating entry (floppy and old-floppy)
	when they are identical.
	manage hackkernel by suggest an entry by default if installed.
	* install_steps.pm: reworked symlink closure for bootloader
	to keep previous configuration.

2000-07-11  François Pons  <fpons@mandrakesoft.com>

	* bootloader.pm: merged lilo.pm and silo.pm inside bootloader.pm,
	this include a configure_entry from silo.pm to build a initrd if
	used.
	* share/compssList: added kde2 packages.
	* share/compssUsers: added kde2 group, renamed kde to kde1 group
	specific.

2000-07-07  François Pons  <fpons@mandrakesoft.com>

	* install2.pm (choosePackages): always execute setPackage to copy
	hdlist* and depslist files (support mixed partitionDisks and
	choosePackages).
	* install_any.pm (setPackages): avoid clearing upgrade flag.
	* install_steps.pm (choosePackages): use $first_time to avoid
	reselection of packages according to compssList.
	* install_steps_interactive (choosePackages): use $first_time and
	$individual to avoid reselection of packages according if user go
	back to step choosePackages.
	* pkgs.pm: added psUpdateHdlistsDeps to restore hdlist* and
	depslist files in /var/lib/urpmi.
	* diskdrake.pm: fixed uneditable combo for Mount point action.

2000-06-23  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: better approach for Sun* server in newbie.
	* fs.pm: added romfs support for mount.
	* fsedit.pm: changed auto allocation for partitions for sparc*.
	* install2.pm: restored bootdisk creation and auto install boot
	disk creation for sparc*.
	* install_any.pm: changed vfat to romfs when mounting kickstart
	floppy on sparc*.
	* install_steps.pm: avoid proposing formating sunos partition.
	* install_steps_interactive.pm: boot disk for sparc* and support for
	installation of SILO on /boot partition (sparc*).
	* install_steps_newt.pm: removed cylinder 0 bug warning.
	* interactive.pm: fixed typo for not_edit set to 1 by default.
	* partition_table.pm: fixed get_holes on sparc* where a whole disk
	partition caused problems.
	* partition_table_sun.pm: removed cylinder 0 bug as found in mke2fs.
	* silo.pm: handle /boot partition, install silo.conf in /boot and
	make a symlink from /etc.
	* share/list.sparc: added losetup and genromfs for boot disk creation.

2000-06-21  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lang.pm: changed the way console font data is written; not all
	of the [0], [1], [2] values must defined, so three cases must be used.
	Also added a variable $CHARSET for /etc/sysconfig/i18n; it can then
	be used by console-tools to load the proper compose table

2000-06-20  François Pons  <fpons@mandrakesoft.com>

	* c/sbus.c: added some functions for silo.c integration.
	* c/silo.c: initial release including write in prom, and translation
	of disk name from openprom to linux, rh version modified.
	* silo.pm: added write in prom, support of sunos boot from silo.
	* partition_table.pm: added support for ufs partition like windows one.
	* install_steps_interactive.pm: added other entries in silo.
	* install_steps.pm: support sunos partition.
	* install_any.pm: automatically mount sunos partition with diskdrake.
	* fsedit.pm: added /mnt/sunos suggested mount point.
	* fs.pm: added ufs support for mount.

2000-06-19  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm: modified for getting sparc crypto file for sparc*.
	* modules.pm: make sure to load sd_mod when needed.
	* pci_probing/main.pm: always use loaw_endian in pci structs.
	* pci_probing/translate-pcitable.pl: added arch specific module name
	translation.

2000-06-16  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): rename conf.modules to modules.conf if
	needed. Outputs to modules.conf

	* detect_devices.pm (cdroms): fix using scd0 for ide-burners when
	already a scsi cdrom drive

2000-06-13  Pablo Saratxaga <pablo@mandrakesoft.com>

	* pkgs.pm: added 'acon' requirement for all right-to-left languages

2000-06-07  François Pons  <fpons@mandrakesoft.com>

	* diskdrake.pm: added SunOS partition as blue for diskdrake.
	* install_steps_interactive.pm: make sure of no division by zero may
	happen.
	* install_steps_newt.pm: added WARNING for fdisk on sparc*.
	* modules.pm: make sure of loading sd_mod module after any scsi module.
	* sbus_probing/main.pm: insmod openprom before trying sbus probing.
	* pkgs.pm: corrected by use of parabolic solution for size approximation.
	* silo.pm: try with "silo -p 2 -t" if "silo -t" has failed due to bad probe.

2000-06-05  Pablo Saratxaga <pablo@mandrakesoft.com>

	* install_steps.pm,lang.pm: added load_console_font, to load the 
	proper console fonts (text mode install is not very useful otherwise)

2000-06-03  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Create): don't accept less than 32MB part for reiserfs
	* diskdrake.pm (Type): don't accept less than 32MB part for reiserfs

2000-06-01  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/fonts.tar.bz2: replaced the Korean 16pt fonts by a 12pt font;
	it fits better with the other fonts. Added a 'README' file with
	some comments and the required copyright notice

2000-05-29  François Pons  <fpons@mandrakesoft.com>

	* Xconfigurator.pm: added support for SBUS card autodetection.
	* commands.pm: added lssbus to list SBUS devices detected.
	* detect_devices.pm: removed alpha restriction on USB.
	* install_steps_interactive.pm: added SBUS support.
	* c/sbus.c: initial revision, core SBUS support (inspired from kudzu).
	* c/stuff.xs.pm: added wrapper for sbus.c interface.
	* sbus_probing/main.pm: initial revision (inspired from kudzu).

2000-05-27 Adam Lebsack <adam@mandrakesoft.com>

	* share/list.ppc: various PPC modifications, for HFS
	* partition_table_mac.pm: bug fixes
	* partition_table.pm: various HFS fixes, isHiddenMacPart()
	* diskdrake.pm: added HFS to top buttons when run on PPC
	* keyboard.pm: fixed name of mac-fr2-ext keymap
	* install_steps_gtk.pm: added Xpmac server support for PPC.
	* install_steps_interactive.pm: disallow hardware configuration on PPC for
	now.  All drivers should be in the kernel. setup_this_kind().
	* fsedit.pm: fixed verify_hds for PPC, /proc/partitions will never match
	our partition table read.  Added PPC grep condition for PPC in get_visible_fstab.
	* fs.pm: fix argument for HFS formatting.	
	* Makefile: special installation of PPC files.

2000-05-25  Chmouel Boudjnah  <chmouel@mandrakesoft.com>

	* standalone/drakboot: Don't display Configure-/LILO/GRUB/ on
	alpha|sparc.

2000-05-25  François Pons  <fpons@mandrakesoft.com>

	* silo.pm: added configure_entry to try creating an initrd for an image
	entry in bootloader. fixed wrong usage of run_programm::rooted with 2>.
	* commands.pm: fixed insmod command to take modules64.cz* on sparc*
	* install2.pm: removed create boot disk and create auto install disk on
	sparc*. force writing of /etc/conf.modules for step setupBootloader.
	* install_steps.pm: fixed upgrade for sparc* and disable supermount for sparc*.
	* install_steps_interactive.pm: added missing $prefix for glob_. call
	configure_entry in setupSILO. fixed cancel or None entry on setupBootloader.
	* modules.pm: updated alias for sparc*.
	* any.pm: fixed proprable wrong test for setupBootloader in beginner at
	the very beginning.
	* printer.pm: fixed typo.
	* Xconfigurator.pm: avoid testing if using a Sun* server, added depth and
	resolution for these server too.

2000-05-24  François Pons  <fpons@mandrakesoft.com>

	* partition_tabel.pm: fixed wrong detection of DOS partition on sparc*.
	* partition_table_sun.pm: fixed a bug when reading partition table
	with unused partition in the middle of the table.

2000-05-23  François Pons  <fpons@mandrakesoft.com>

	* common.pm: update arch to take into account sparc and sparc64. added
	better_arch and compat_arch function.
	* silo.pm: fixed adding new kernel automatically.
	* install2.pm: removed create boot disk stuff for sparc*.
	* install_steps.pm: added initrd generation for alpha. added ldconfig
	at end of installation. removed /usr/bin/dumpkeys existence test on
	sparc*, should be added in the future.
	* install_steps_interactive.pm: removed supermount for sparc*.
	* install_steps_gtk.pm: added /dev/kbd device creation and permedia2
	support for sparc*. removed screen limit of 1024x768.
	* detect_devices.pm: fixed problem on machine with really no IDE interface.
	* modules.pm: added support for 32 and 64 bit architectures on sparc*.
	* install_any.pm: fixed getAvailableSpace_mounted if /usr is not a separate
	partition.
	* pkgs.pm: added support for multi-arch rpm file (need for sparc*),
	fixed correctSize and invCorrectSize to take back a linear approximation
	above 9Gb approximatively. removed ftp rewind as broken currently.
	* keyboard.pm: fixed bad list of available keyboard (broke sparc*), fixed
	globing (removed) against existing '*'.
	* partition_table.pm: removed support for non SUN partition table, as it
	may freeze the kernel or may be blanked?
	* Xconfigurator.pm: take Sun24 server by default on sparc*, add support
	for permedia2 card (3DLabs server).
	* share/list.sparc: added perl-5.6.0 for sparc*, fixed for sparc*.
	* Makefile: added support for modules and modules64 for sparc*.
	* c/stuff.xs.pm: added kernel_arch function for getting the current true
	architecture provided by the kernel (uname -m).

2000-05-09  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (kdeicons_postinstall): the URL link to doc must
	be $lang/index.html, not only $lang.

	* standalone/mousedrake: add handling of XF86Config-4

	* any.pm (setupBootloader): fix bug (was adding 2 glob_'s)

2000-05-08  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): move the touch of some files here to please linuxconf
	
	* install2.pm (miscellaneous): s/KBD/KEYBOARD/

	* lilo.pm (install_grub): don't keep symlinks for reiserfs
	* lilo.pm (suggest): allow grub everytime now (not only if !reiserfs)

	* install_any.pm (getHds): default mount point for windobe in
	lowercased for StartOffice(!)

2000-05-08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/keyboards.tar.bz2: Fixed Brazilian keyboard (.br); added
	  Iranian (.ir), Arabic (.ar) and new Lithuanian (.lt_new) keyboards
	* keyboard.pm: Added new Lithuanian keyboard and changed the
	  string for brazilian ABNT-2 to state more clearly its ABNT nature
	  (it is not a standard PC keyboard; it uses some different keycodes)

2000-05-07  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (choosePackages): return availableCorrected
	instead of available

	* pkgs.pm (correctSize): add 18MB for full multi-cd (many hdlist's)

	* modules.pm (text2driver): same as text2lang below
	* keyboard.pm (text2keyboard): same as text2lang below
	* lang.pm (text2lang): replace the while (... each) by a foreach
	(keys) (because each is dangerous if loop is exited)

	* install_steps_interactive.pm (selectKeyboard): better handling
	of multiple langs question.

	* ftp.pm (new): Timeout set to 60 (seconds), was default (120)

	* install_steps_interactive.pm (setup_thiskind): remove ide-*
	from modules displayed as loaded.

2000-05-06  Pixel  <pixel@mandrakesoft.com>

	* fsedit.pm (check_mntpoint): verify that standard mntpoints (/
	/usr) are not on not trueFS

	* any.pm (setupBootloader): add $prefix for the 2 glob_'s

2000-05-07  Pablo Saratxaga <pablo@mandrakesoft.com>

	* share/keyboards.tar.bz2: added Ukrainian keyboard xmodmap.ua

2000-05-06  Pablo Saratxaga <pablo@mandrakesoft.com>

	* printerdrake.pm: fixed English error

2000-05-05  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm (monitorConfiguration): remove the special case
	for fbdev.

	* install_steps_interactive.pm (setup_thiskind): replace return by
	next in case load_module fails.

	* install_steps_gtk.pm (selectInstallClass1): translate Install/Upgrade

	* Xconfigurator.pm (cardConfiguration): force xf4 for rage 128's
	* Xconfigurator.pm (testFinalConfig): force $bad_card for xf4

	* pkgs.pm (correctSize): updated for 7.1

	* install_any.pm (getAvailableSpace): move the removing of
	$minAvailableSize here.

2000-05-04  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (configurePrinter): give clicked to printerConfig

	* interactive.pm (ask_from_entries_ref): set default val if not_edit

	* interactive_newt.pm (ask_from_entries_refW): remove setting of
	default val. Now done in interactive::ask_from_entries_ref

	* interactive_gtk.pm (ask_from_entries_refW): handle empty value

	* modules.pm (read_already_loaded): ensure that already loaded
	modules are put in %loaded.
	* modules.pm (load_ide): add loading if ide-probe-mod (for new kernel)

	* lilo.pm (install_lilo): truncate label's to 15 chars

	* install_any.pm (generate_ks_cfg): fix missing space
	* install_any.pm (generate_ks_cfg): fix bug for nfs comand

	* install2.pm: get rid of autoformat
	* install_steps.pm (choosePartitionsToFormat): get rid of autoformat

2000-05-03  Pixel  <pixel@mandrakesoft.com>

	* any.pm (setupBootloader): replace ask_many_from_list by
	ask_from_list for bootloader choice

	* services.pm (drakxservices): stop immediately service if removed

	* install_steps.pm (configureNetwork): replaced dhcpxd by dhcpcd
	* install_steps.pm (afterInstallPackages): touch some files to
	please linuxconf

2000-05-03  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: updated min size, fixed kppprc generation.
	* install_any.pm: make sure postinstall-rpm is here before
	erasing (avoid error on reboot only).

2000-05-02  Pixel  <pixel@mandrakesoft.com>

	* raid.pm (format_part): don't call raid::make if part is already
	formatted (as raidstop fails)

	* Xconfigurator_consts.pm: Rage128 and 3dfx are not available any
	more	

	* install_steps_interactive.pm (setup_thiskind): make insmod'ing
	fail a simple warning.

	* Xconfigurator.pm (readMonitorsDB): adapt to new MonitorsDB
	* share/MonitorsDB: take new one from RedHat

	* standalone/drakboot: added kfloppy

	* g_auto_install: add $dir/lib to LD_LIBRARY_PATH (it was silly
	not to have it)

2000-05-01  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setRootPassword): remove
	NIS_server, use NIS instead
	* install_any.pm (setAuthentication): remove NIS_server, use NIS instead

	* standalone/rpmdrake (AddMedia): hdlist.cz2 instead of hdlist

2000-04-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps.pm (afterInstallPackages): fix yet another bug for
	ttf from windobe handling

	* install_steps_interactive.pm (selectInstallClass): hide beginner
	mode in corporate. Display special help.

2000-04-29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* my_gtk.pm: added call to Gtk->init; that makes 16 bit locales
	text to be properly aligned (reported by Craig Chang
	<craig_chang@taipei.siscomm.com.tw>)
	* common.pm: now that po handling is correct, I changed the order
	of reading variables so that it follows the standards ($LANGUAGE first)
	* share/fonts.tar.bz2, lang.pm: added an 8pt font for cp1251

2000-04-28  François Pons  <fpons@mandrakesoft.com>

	* install_steps*.pm: added support for selection of package during
	upgrade the same way it is done for installation. added check of
	minimal size, abort else (at least let the user know about :-)
	fixed crypto if no network interface available.
	* install2.pm: fixed problem during upgrade that lost network
	configuration.

2000-04-28  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_raw): don't call commands::insmod, do it in
	place. Merge with load_multi

	* install_steps.pm (afterInstallPackages): fix windobe ttfonts
	symlinking	

	* Xconfigurator.pm (cardConfiguration): load module agpgart for
	i810
	
	* install_any.pm (getHds): changed the mount point setting for
	windows partitions as device_windobe is not unique

2000-04-27  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (create_steps_window): changed to adapt to
	new hidden format

	* install2.pm (@installSteps): changed the way hidden is handled.
	Now it is a true perl expression (great power now)

	* install_steps_gtk.pm (selectInstallClass1): update steps window
	before asking normal/devel/server. Nicer!

	* install_steps_interactive.pm (configureNetwork): when "Cancel"
	pressed at network interface configuration do not skip all
	configuration.	

2000-04-26  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm (pppConfig): modified a lot, removed template
	file for ifcfg and chat file.

2000-04-26  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (choosePackagesTree): use a fix width for
	the tree column (so that the checkbox are always visible without
	scrolling)	

	* standalone/drakboot: drakfloppy and gfloppy are X only, no need
	to propose them in console
	
	* install_any.pm (relGetFile): added auto_inst to files to get
	from Mandrake/base

	* install2.pm (main): changed auto_inst behaviour

	* standalone/adduserdrake: fix a bug (s/$o/$in/g)

	* interactive_newt.pm (ask_from_entries_refW): now handling
	complete/changed/focus_out callbacks (at least more than before)	

	* Newt/Newt.xs: added rough callback handling

2000-04-25  François Pons  <fpons@mandrakesoft.com>

	* printerdrake.pm: added support for PPA more easily, allow
	printers entry using ppa driver event if pnm2ppa not installed,
	install it if neccessary after.
	* network.pm, install_steps.pm, install_steps_interactive.pm:
	added support for stoping a network interface, usefull for ppp0 to
	avoid using it too long.
	* install_steps.pm: fixed missing local on pap_secrets file.

2000-04-25  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm (install): moved the generation of the keytable here. It
	is used by both lilo & grub (lilo is not always installed as was
	assumed)	

	* common.pm (formatAlaTeX): remove bounding spaces

	* pkgs.pm (setSelectedFromCompssList): remove the hack for min
	mark 25 in beginner
	* install_steps_interactive.pm (choosePackages): set $min_mark to
	25 in beginner

2000-04-24  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (setupXfree): add a yesorno
	question for choosing between XF4 and XF3 in expert

	* install_steps_gtk.pm (choosePackagesTree): enlarge the tree window

	* install_any.pm (update_userkderc): make sure uid and gid are kept

	* diskdrake.pm (Create): add Extended_0x85 as a choice for expert

	* partition_table.pm (add_extended): handle a 3rd arg,
	$extended_type to tell which kind of extended partition is wanted
	* partition_table.pm (adjust_main_extended): in non-expert,
	automatically set extended to linux-extended if there's only
	linux-type partitions.	

2000-04-22 Pablo Saratxaga <pablo@madrakesoft.com>

	* install_steps_interactive.pm: s/Mb/MB/ as 'b' is symbol for bit
	  and not for byte. RAM is expressed in megabytes -> MB

2000-04-19  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: fixed crazy mutli CD manipulation.
	* printer.pm: fixed wrong prototype of print_pages.
	* install2.pm: set version to 7.1 for crypto stuff.
	* crypto.pm: commented ackbar crypto site.

2000-04-17  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm (suggest): in failsafe, runlevel ASKRUNLEVEL (handled by
	linuxconf)	

2000-04-14  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePartitionsToFormat): don't
	ask about checking bad blocks for reiserfs, cuz not handled

	* fs.pm (mount): reiserfs handling
	* fs.pm (format_reiserfs): added
	* fs.pm (write_fstab): add option "notail" for reiserfs if
	the partition holds the kernel (/boot or /)

	* partition_table.pm (isTrueFS): added, replaces most occurences
	of isExt2

2000-04-12  François Pons  <fpons@mandrakesoft.com>

	* install2.pm: force installation step if package have been
	selected on step choose packages.
	* install_any.pm: protected against die in perl (setstep or
	theme_changed).

2000-04-11  François Pons  <fpons@mandrakesoft.com>

	* resize_fat: added some limits verification.
	* interactive_gtk.pm: corrected swap of arg with help adding.

2000-04-10  François Pons  <fpons@mandrakesoft.com>

	* interactive_gtk.pm, my_gtk.pm: added tooltips for ask_from_list,
	which is used by printerdrake only. drops key bindings.

2000-04-07  François Pons  <fpons@mandrakesoft.com>

	* tools/serial_probe: obsoleting pnp_serial which is now replaced
	by this one, taken from kudzu, really faster and probe all serial
	devices at one time. modified to probe correctly modem :-)
	* mouse.pm: updated to use serial_probe interface of
	detect_devices.pm.
	* detect_devices.pm: modified to use serial_probe, cache probed
	devices to avoid reprobing.

2000-04-06  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm, install_steps.pm: added support
	for peerdns options of ppp, so removed dns address unless expert.

2000-04-05  François Pons  <fpons@mandrakesoft.com>

	* crypto.pm, install_steps_interactive.pm, install2.pm,
	install_steps.pm: added crypto stuff to support hdlist-crypto.cz2
	and depslist-crypto. dependancies are not supported but with a
	simpler format of depslist file where closure are not done and
	only package name are used for dependancies.
	* pkgs.pm: added better support for multi CD manipulation,
	including selection and refus.

2000-04-04  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm: modified selection packages from compssList by
	incremental selection, much more quickly.
	added selected medium for selecting a package.
	* install_any.pm: refused media hash transfered to selected value
	of media table.
	@needToCopy list should only have package of default medium.

2000-04-03  Pixel  <pixel@mandrakesoft.com>

	* fs.pm (format_ext2): add options "-b 1024 -O none" for alpha

2000-03-31  François Pons  <fpons@mandrakesoft.com>

	* install_steps_gtk.pm: made changeMedium sub modification
	permanent.
	* pkgs.pm: modified upgrade to avoid use of header.

2000-03-31  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: some more choices for PPC keyboards

2000-03-30  François Pons  <fpons@mandrakesoft.com>

	* install2pm: added eval around loading af_packet and postinstall
	copy of RPMS.
	* devices.pm: added /dev/kdb for SPARC.
	* install_any.pm: modified multi CD management, postinstall copy
	of RPMS.
	* install_steps_gtk.pm: added support for Xsun server for SPARC.
	* install_steps_interactive.pm: added multi CD dialog box for
	selecting CD available. Serialized ethernet configuration and ppp
	configuration.
	* pkgs.pm: added check for infinite recursion for bad depslist.
	* printer.pm: better test for reparse of printerdb.
	* Xconfigurator.pm: added support for Xsun server for SPARC.

2000-03-30  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (choosePackagesTree): enhance tree selection

2000-03-29  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (wait_messageW): add some padding (nicer)

	* install_steps_interactive.pm (generateAutoInstFloppy): created,
	creates a floppy for auto installs.

	* install_any.pm (generate_ks_cfg): created, generates stage1
	ks.cfg file

	* share/po/DrakX.pot: added special comment for grub entry

2000-03-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (selectKeyboard): sort langs for
	many-lang install

	* mouse.pm (write): add WHEEL telling if a wheel mouse is there

2000-03-28  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: added entries for all three Armenian keyboards

2000-03-26  Pixel  <pixel@mandrakesoft.com>

	* install_any.pm (install_urpmi): full support for multi-hdlist's	

	* pkgs.pm (extractHeaders): look for hdlist in /tmp instead of
	$prefix/var/lib/urpmi
	* pkgs.pm (psUsingHdlists): put hdlist's in /var/lib/urpmi with a
	fake name. Access via /tmp/$hdlist is given for non-fake name

	* detect_devices.pm (hasHPT): return undef if no htp (silly me :-/)

2000-03-25  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm: updated to the new format of entries. It was an hash.
	Now the key is field kernel_or_dev, and entries is an array.
	
	(get): added, it returns the entry using a kernel
	   (needed because entries is no more a hash)

	* install_steps_interactive.pm (setupLILO): adapted to the new format

	* Xconfigurator.pm (write_XF86Config): basic XF86Config-4 handling	

	* fsedit.pm (suggest_part): if suggested part contains a field
	"hd", ensure the partition is created on this hard drive

	* install2.pm (main): before leaving installation, remove
	/var/lib/urpmi if urpmi not installed	

	* diskdrake.pm (Resize): ext2resize to size $part->{size} instead
	of $size

2000-03-24  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (hasHPT): added. Now nice handling of hpt366
	(ultra66) without rebooting and making special floppy :)

	* lilo.pm (install_grub): much better grub configuration (better
	than lilo's :pp)

	* install_steps.pm (setupBootloaderBefore): remove entry floppy
	for security > 3

2000-03-23  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (selectMouse): added, takes care of telling
	the X server if the user changed the mouse type. Only done if
	a serial mouse is chosen.

	* install_steps_newt.pm (doPartitionDisks): add a call to

	* mouse.pm (write): added "device=" in etc/sysconfig/mouse for
	devfs (it looses the symlink /dev/mouse)

2000-03-22  Pixel  <pixel@mandrakesoft.com>

	* pci_probing/pcitable: replace Server:Rage128 by proper XFree entry

2000-03-20  François Pons  <fpons@mandrakesoft.com>

	* detect_devices.pm, fs.pm, install_any.pm: added supports for
	LS-120 floppy drive and icons on desktop of KDE (untested).
	* printer.pm, printerdrake.pm: added supports for PPA interface in
	new rhs-printfilters, always enable "Print text as postscript"
	option for such printers.

2000-03-20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* keyboard.pm: changed XKB name for Swedish keyboard
	  changed XKB names for Russian and German keyboards
	  added a choice for "Croatian" keyboard
	* share/compss{,List}: added various new locales-*, ispell-* 
	  and netscape-* files. changed ppa to pnm2ppa.

2000-03-17  François Pons  <fpons@mandrakesoft.com>

	* install_steps.pm: added setup for all configured queue.
	* install_steps_interactive.pm: modified for retrieving packages
	or current configuration.
	* printer.pm: correction, tested retrieve of printer
	configuration without printtool comments in printcap file: added
	update of entry according to gsdriver used (untested again).
	* printerdrake.pm: better handling of cancel, manage of multiple
	queue definition together (as lp|My printer).

2000-03-16  François Pons  <fpons@mandrakesoft.com>

	* install_steps_interactive.pm: moved in printerdrake.pm the test
	of printer usage.
	* printerdrake.pm: heavy modification to handle multiple queue,
	corrected some bugs too, added much more features as printtool.
	* printer.pm: added more features for filter, allow printer to be
	retrieved without help of printtool id in printcap file (untested).

2000-03-14  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Loopback): handling of the file loopback: test
	existence of the file and take its size.

2000-03-14  François Pons  <fpons@mandrakesoft.com>

	* install_any.pm: corrected for duplicate file on other CD.

2000-03-13  Pixel  <pixel@mandrakesoft.com>

	* detect_devices.pm (floppies): don't return hash but the device name

2000-03-13  François Pons  <fpons@mandrakesoft.com>

	* pkgs.pm, install_any.pm: small correction for multiple media
	installation.
	* tools/syncrpms: added for handling synchronisation of multiple source
	rpm directories (and multiple target), include cleaning.
	* tools/closurepkgs: tools to get rpm that may be installed by DrakX
	after normal packages installation (printer, network, X11...), may
	be used to duplicate on other CD some important stuff of the first
	one.

2000-03-12  Pixel  <pixel@mandrakesoft.com>

	* install_steps_interactive.pm (choosePackages): compute the
	max_size very simply (sum of all package sizes), otherwise too costly

	* pkgs.pm (install): call cleanHeaders at the end
	* pkgs.pm (cleanHeaders): created

	* install2.pm (miscellaneous): /etc/msec/init.sh is now
	/usr/sbin/msec (yoann thanks for not telling :pp)

	* pkgs.pm (install): remove the $prefix of mountpoints for not
	enough room to install error message

2000-03-11  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm (_create_window): add callback on focus to
	ensure_focus. The result is no more 3 focus states with 2 buttons.

	* interactive_gtk.pm (ask_from_treelistW): better keyboard handling

	* raid.pm (make): check the result of mkraid. Suggest raidtools
	are missing in standalone diskdrake

	* devices.pm (set_loop): created, searches for an available
	loopback and sets the file to it

	* lilo.pm (dev2grub): fixed a missing slash

	* interactive_gtk.pm (wait_message_nextW): do not update if same
	message, otherwise silly gtk won't do anything and we'll wait
	forever :(

2000-03-10  François Pons  <fpons@mandrakesoft.com>

	* *.pm: heavy modification to take into account multiple media
	installation.

2000-03-10  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (@install_classes): cleanup, no more i18n (is now in
	install_steps_interactive), remove old entries

2000-03-09  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): don't add alias block-major-11 in every case
	* modules.pm (add_alias): special case oss (post-installs modprobe snd-pcm-oss)

	* fs.pm (format_*): move the @options before the device

	* loopback.pm: created, added a lot of stuff for loopback in
	diskdrake.pm, fs.pm...

2000-03-08  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm: %type2fs replaced ox402 by 0x402

	* detect_devices.pm (cdroms): fix "scd" (should be "scd0")

	* install_any.pm (install_urpmi): update for new hdlist.cz2

2000-03-07  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (ask_from_treelistW): s/focus_row/set_focus_row/

	* install_steps_interactive.pm (addUser): force add a normal user
	for security 4

2000-03-05  Pixel  <pixel@mandrakesoft.com>

	* my_gtk.pm (_ask_from_list): replace focus_row with set_focus_row
	(tis the Gtk-Perl 0.7002 was of doing)

2000-03-04  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (write_conf): add ide-floppy to the modprobes of
	post-install supermount

2000-03-03  Pixel  <pixel@mandrakesoft.com>

	* commands.pm (ps): add RSS to ps command

2000-03-02 Adam Lebsack <adam@mandrakesoft.com>

	* mouse.pm: added mac mouse detection to mouse::detect.
	* detect_devices.pm: added a routine to probe /dev/usbmouse on macs.

2000-03-01  François Pons  <fpons@mandrakesoft.com>

	* *.pm: heavy modification to take into account smaller
	transaction during installation.
	still a lot of test to perform, no provides updated currently and
	building of hdlist.cz2 and depslist.ordered need old files...
	nothing done for hdlist.gz during post installation, but
	hdlist.cz2 is already copied in /var/lib/urpmi [and is used during
	installation of packages as extract_archive need a true file].

2000-03-01  Pixel  <pixel@mandrakesoft.com>

	* lilo.pm (install_grub): creation

	* network.pm (write_interface_conf): ONBOOT = !pcmcia

	* install_steps_gtk.pm (new): more intelligent SIGCHLD handler

2000-02-29  Pixel  <pixel@mandrakesoft.com>

	* modules.pm: moved common network stuff from "net" to "network"
	(modules like nfs lockd...)

	* fs.pm (write_fstab): moved the sort to the right place

	* services.pm (drakxservices): chkconfig --list is i18n'ed :(
	set LANGUAGE=C before

	* partition_table_raw.pm (get_geometry): geom{cylinders} must not
	be a decimal value :)

	* install_steps_gtk.pm (create_logo_window): set_name logo for
	logo window
	* share/install.rc: force disabling of background image theme

	* install_steps_gtk.pm (enteringStep): add step information for
	console 1

	* any.pm (addKdmIcon): new function
	* install_steps.pm (addUser): handle field icon
	* install_steps_interactive.pm (addUser): add choice of kdm icon
	* standalone/adduserdrake: add choice of kdm icon

	* diskdrake.pm (ask_all_data...): change for easier i18n

	* install_steps.pm (miscellaneous): add CLEAN_TMP handling
	(need cleaning?)
	* install_steps_interactive.pm (miscellaneous): add CLEAN_TMP
	option in expert
	* install2.pm (miscellaneous): add CLEAN_TMP option for
	/etc/sysconfig/system	

	* install_steps_interactive.pm (miscellaneous): forbidden
	useSupermount if high security.	

	* mouse.pm (detect): fix bug (ttyS instead of ttyS0)

2000-02-28  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (createXconf): do not use "Generic VGA" for
	svga and accel. SVGA also wants 16 bpp. added ugly modeline for
	800x600.	

	* partition_table_raw.pm (get_geometry): when the
	HDIO_GET_IDENTITY fails, defaults to what GETGEO gave

	* install2.pm (main): use modules::load_multi to increase boot
	start time

	* modules.pm (load_multi): added this function for loading many
	modules at once.

	* install_steps_gtk.pm (new): increase time before timeout

	* detect_devices.pm (cdroms): change the device associated with
	ide-burners (hdX -> scdX). Problem is how to know the X in scdX :(	

	* modules.pm (write_conf): sort scsi_hostadapter's

2000-02-27  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): load ide-probe and the like in 'prereq' type
	so no aliases are added to conf.modules

2000-02-25  Pixel  <pixel@mandrakesoft.com>

	* devices.pm (make): small code cleanup

	* partition_table_raw.pm (adjustEnd): more explicit error message

	* fsedit.pm (allocatePartitions): fix a bug (size was getting too
	big after each allocation) making adjustEnd cry

2000-02-24  Pixel  <pixel@mandrakesoft.com>

	* interactive_gtk.pm (new): added the "new" method to initialize
	windowheight for isStandalone

	* install_steps_gtk.pm (new): returns undef in case no X server
	works	

	* install2.pm (main): moved the ejectCdrom from install_steps::END
	to here
	* install2.pm (main): fix the $SIG{SEGV} handler
	* install2.pm (main): added a "try again" in text install if the
	"new" fails

	* install_steps_interactive.pm (createBootdisk): fix an error for
	non fdX choice of floppy drive
	
	* install_steps_interactive.pm (setup_thiskind): remove the
	"defined @l"

2000-02-23  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (%suggestedPartitions): remove any /boot entries
	* install2.pm (selectInstallClass): removed the special code to
	/boot entries from suggestedPartitions for on non-intel (and it
	was buggy :)
	* fsedit.pm (@suggestions): remove the /boot entry
	* fsedit.pm (check_mntpoint): remove the 1024 cylinder check	
	* fsedit.pm (suggest_part): remove the 1024 cylinder special case

	* install_steps_interactive.pm (setupLILO): replace linear option
	by lba32

	* lilo.pm (suggest): add lba32 by default

	* install_steps_interactive.pm (load_thiskind): moved the HPT
	stuff to install_any::ultra66 and call it.
	Add sound card configuration (3 lines :)

	* my_gtk.pm and interactive_gtk: resize the list and tree based on
	root window size

	* install_steps_gtk: $width and $height goes $::rootwidth and
	$::rootheight, also other dimensions goes global (main::)

	* commands.pm (strings): replace the typo \{$n,} by {$n,}

2000-02-23  François Pons  <fpons@mandrakesoft.com>

	* build_archive, extract_archive: changed format of TOC to speed
	up extraction of archive, now 5 to 6 times faster to read TOC :-)
	
2000-02-22  Pixel  <pixel@mandrakesoft.com>

	* Xconfigurator.pm: load "Cards" database only to translate NAME
	to fields. Added file CardsNames created from Cards using
	share/Cards2CardsNames. Kind of list of normalized NAMEs	

	* MonitorsDB: replace the ` ' separator for vendor by `|'

	* install_steps_interactive.pm (timeConfig): use ask_from_treelist	

	* interactive_gtk.pm (ask_from_treelist): creation of
	ask_from_treelist. Usage is just the same as ask_from_list with
	one more argument (the separator eg: |, /)

2000-02-21  François Pons  <fpons@mandrakesoft.com>

	* diskdrake.pm: fixed deadlock while trying to create partition
	when available space is equal or less than 2 cylinders. fixed
	Create action on corrupted partition by removing stalling window.
	Blocked partition table writing if there are error by forcing user
	to correct partition table.
	* partition_table.pm: fixed typo in verifyParts with cdie, added
	verifyParts on Resize action.
	
2000-02-21  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (create_big_help): display the help in full
	screen	

	* my_gtk.pm (_create_window): add big help on F1

	* common.pm (add2hash): now returns the first parameter

	* mouse.pm (detect): really defaults to serial mouse

	* interactive.pm: add ask_many_from_list_with_help and
	ask_many_from_list_with_help_ref

	* services.pm: creation, it handles what was in
	standalone/drakxservices

2000-02-18  Pixel  <pixel@mandrakesoft.com>

	* install_steps_gtk.pm (createXconf): added /dev/ (X wants
	"/dev/psaux" and not "psaux")

	* diskdrake.pm (Create): show start sector even for non-expert on
	non-i386

2000-02-16  Pixel  <pixel@mandrakesoft.com>

	* mouse.pm (detect): add defaults to serial mouse

	* install_steps_gtk.pm (createXconf): remove the defaults to
	serial mouse

2000-02-15  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm: "After %s partition %s," inlined otherwise does
	not please pablo and translators...

2000-02-14  Pixel  <pixel@mandrakesoft.com>

	* diskdrake.pm (Create): hide start sector choice for non-expert

2000-02-11  Pixel  <pixel@mandrakesoft.com>

	* partition_table_raw.pm (get_geometry): do not use the cylinder
	number given by HDIO_GETGEO cuz limited to 16bits. Compute using
	the total_sectors using HDIO_GET_IDENTITY

	* c/stuff.xs.pm: added total_sectors (gives the number of sector
	of a drive)

	* modules.pm (load): ignore error in loading prereq's
	
	* modules.pm (@drivers_by_category): rcpci instead of rcpci45,
	z85230 added

	* commands.pm (mount): add modules::load_deps otherwise the
	fs::mount won't succeed insmoding vfat if needed

2000-02-11  François Pons  <fpons@mandrakesoft.com>

	* fixed diskdrake to handle limit case when creating and resizing
	partition table, address size limit and start sector limit.

2000-02-11  Pixel  <pixel@mandrakesoft.com>

	* install2.pm (main): add a callback on SEGV
	-> message printed
	-> that way, ENDs are called (otherwise skipped)

	* install_steps_interactive.pm (setup_thiskind): handles the undef
	value returned by load_thiskind
	
	* install_steps_interactive.pm (exitInstall): do not call
	install_steps::exitInstall

	* install_steps (exitInstall): removed
	* install_steps (END): added (it does ejectCdrom)

	* install_steps_interactive.pm (load_thiskind): returns undef if
	error loading a module

	* fs.pm (format_part): changed the prototype from $;$@ to $;@
	otherwise, @options always have a value (mostly undef) and mkdosfs
	fails (with "mkdosfs", "/dev/hdXX", undef, "-F", 32)

	* install_steps_interactive.pm (setup_thiskind):
	add a $auto_probe_pci that overrules $o->{auto_probe_pci}
	(that way no pci probe the second time)

2000-02-10  François Pons  <fpons@mandrakesoft.com>

	* heavy modification of build_archive and extract_archive to manage
	a TOC directly in archive file, handle bzip2 or gzip compression,
	extract_archive can extract multiple files a time, with minimal
	invocation of uncompress program and follow symlink and expand
	directory contents.
	* use build_archive/extract_archive for locales.
	* fixed a min/max in install_steps_gtk for Resize/Create partition.
	* fixed adjustEnd with dos partition table, take care of magic 63
	sectors at beginning of partitions, a more solid method should be
	used for that.

2000-02-10  Pixel  <pixel@mandrakesoft.com>

	* modules.pm (load_thiskind): skip modules "unknown" and "ignore"

2000-02-09  Pixel  <pixel@mandrakesoft.com>

	* partition_table.pm (add): cdie if maximum number of partitions
	handled by linux is reached

	* Xconfigurator.pm (chooseResolutionsGtk): display the graphic
	card or server found

	* install_any.pm (relGetFile): for mdkinst files, take care not to
	have a double '/' (see debbugs #591)

	* install_steps_interactive.pm (configureNetwork):
	purpose: add ability to configure both modem and lan
	         clean up the behaviour

	* fs.pm (write_fstab): 
	purpose: sort the fstab per mount point (cuz /usr must be before /usr/local)
	also: rewrite of the part writing the fstab.