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
|
2002-11-18 09:52 adesmons
* ftp_wizard/Makefile: removed sh
2002-11-18 09:51 adesmons
* drakwizard.spec: cf cl
2002-11-16 21:17 pablo
* po/mk.po: Added Macedonian file
2002-11-16 17:47 pablo
* po/uk.po: Added Ukranian file
2002-11-14 12:58 pablo
* po/ro.po: updated po file
2002-11-13 13:59 adesmons
* drakwizard.spec: cf cl
2002-11-13 13:46 adesmons
* drakwizard.pl: replaced _() N()
2002-11-13 12:06 pablo
* po/et.po: updated po file
2002-11-11 16:51 pablo
* po/et.po: Added Estonian file
2002-11-11 16:49 pablo
* po/Makefile: Added "N" as a tag for translatable strings
2002-11-07 14:01 pablo
* po/fi.po: updated po file
2002-11-07 13:16 adesmons
* drakwizard.spec: cf cl
2002-11-05 22:43 pablo
* po/fi.po: updated po file
2002-11-05 12:38 adesmons
* drakwizard.spec: cf cl
2002-11-05 12:37 adesmons
* dhcp_wizard/Makefile, dns_wizard/Makefile, nfs_wizard/Makefile,
samba_wizard/Makefile: cleaned Makefile
2002-11-04 11:19 pablo
* po/: drakwizard.pot, sk.po: updated po file
2002-11-04 09:56 adesmons
* client_wizard/: client.wiz, client.wiz: fixed __WIZ_HOME__
2002-11-01 11:52 pablo
* po/: pt_BR.po, ru.po: updated po files
2002-10-30 12:50 pablo
* po/: pt.po, vi.po: updated po files
2002-10-30 00:08 alus
* po/pl.po: updated translation
2002-10-29 21:08 pablo
* po/zh_CN.po: updated po file
2002-10-29 16:26 tvignaud
* drakwizard.spec: BuildRequires: gettext perl-XML-Parser (Stefan
van der Eijk)
2002-10-28 22:29 pablo
* po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po,
drakwizard.pot, es.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po,
ko.po, lv.po, mt.po, nl.po, no.po, pl.po, pt.po, pt_BR.po, ro.po,
ru.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po,
zh_TW.po: updated pot file
2002-10-23 12:04 adesmons
* samba_wizard/: samba.wiz, scripts/Smbconf.pm,
scripts/smb.conf.default: acces restriction
2002-10-22 17:37 pablo
* po/: eu.po, pt.po, ru.po, sk.po: updated po files
2002-10-18 22:55 pablo
* po/: pt_BR.po, ro.po, ru.po, vi.po, zh_CN.po: Added Brazilian
file
2002-10-18 15:36 adesmons
* samba_wizard/: samba.wiz, scripts/Smbconf.pm: new improved samba
wizard, network access selection under construction
2002-10-17 17:42 alus
* po/pl.po: updated translation
2002-10-17 16:59 adesmons
* drakwizard.pl: greyed partial bugfix
2002-10-16 22:37 pablo
* po/: ar.po, bg.po, bs.po, ca.po, cs.po, cy.po, da.po, de.po,
drakwizard.pot, es.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po,
ko.po, lv.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, ru.po,
sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
updated pot file
2002-10-15 18:10 adesmons
* Makefile, drakwizard.pl, dhcp_wizard/scripts/Dhcpconf.pm,
ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm,
news_wizard/news.wiz, nfs_wizard/nfs.wiz,
nfs_wizard/scripts/NFSConf.pm, postfix_wizard/postfix.wiz,
proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm,
samba_wizard/samba.wiz, samba_wizard/scripts/Smbconf.pm,
samba_wizard/scripts/smb.conf.default, time_wizard/time.wiz,
time_wizard/scripts/NTPConf.pm, web_wizard/web.wiz,
web_wizard/scripts/Webconf.pm: wiz update, nfs fixed
2002-10-15 16:09 alus
* po/pl.po: updated translation
2002-10-15 10:52 adesmons
* drakwizard.pl: scrollbar workaround
2002-10-14 10:40 pablo
* po/: ca.po, eu.po, vi.po, zh_CN.po: Added Catalan file
2002-10-11 16:12 pablo
* po/: ar.po, bg.po, bs.po, cs.po, cy.po, da.po, de.po,
drakwizard.pot, es.po, eu.po, fi.po, fr.po, hu.po, id.po, it.po,
ko.po, lv.po, mt.po, nl.po, no.po, pl.po, pt.po, ro.po, ru.po,
sk.po, sv.po, ta.po, tr.po, vi.po, wa.po, zh_CN.po, zh_TW.po:
updated pot file
2002-10-11 10:10 adesmons
* drakwizard.pl: bool fillfunc enable/disable
2002-10-10 18:46 adesmons
* samba_wizard/samba.wiz: printer improvement
2002-10-10 18:46 adesmons
* drakwizard.pl: chooser fillfunc, widget "is" tag
2002-10-08 13:27 adesmons
* drakwizard.pl: really hide \'field\'
2002-10-07 17:52 adesmons
* drakwizard.pl: disable works
2002-10-04 12:13 adesmons
* drakwizard.pl: exec summaryFunc
2002-10-04 12:05 adesmons
* drakwizard.pl: shortcuts
2002-10-03 10:35 adesmons
* ftp_wizard/scripts/do_it_ftp.sh: obsolet
2002-10-03 10:05 adesmons
* samba_wizard/samba.wiz: fixed typo
2002-10-02 17:06 adesmons
* samba_wizard/scripts/Smbconf.pm: commit wiz_dir also if file
sharing is disabled, better explanations
2002-10-02 17:03 adesmons
* samba_wizard/scripts/: check_banner.sh, check_services.sh,
check_workgroup.sh, do_it_samba.sh: translated into perl
2002-10-02 17:01 adesmons
* samba_wizard/scripts/smbconfig.pl: obsolet
2002-10-02 16:55 adesmons
* samba_wizard/scripts/smb.conf.default: nothing by default
2002-10-02 15:28 adesmons
* po/fr.po: updated po
2002-10-02 13:30 adesmons
* samba_wizard/scripts/Smbconf.pm: test file sharing before
changing path to avoid void values
2002-10-02 11:55 adesmons
* samba_wizard/scripts/Smbconf.pm: s|patch|path| to change the path
of the shared dir
2002-10-01 18:00 adesmons
* drakwizard.pl: summary mode started
2002-09-30 17:46 adesmons
* web_wizard/: web.wiz, scripts/Webconf.pm: added user mod
2002-09-30 15:46 adesmons
* web_wizard/: web.wiz, scripts/Webconf.pm: added doc root field
2002-09-28 07:40 pablo
* po/da.po: corrected encoding
2002-09-25 18:37 pablo
* po/ro.po: updated po file
2002-09-25 14:24 adesmons
* samba_wizard/scripts/Smbconf.pm: added shared dir page
2002-09-24 13:08 pablo
* po/ro.po: updated po file
2002-09-23 20:27 pablo
* po/fi.po: Added Finnish file
2002-09-23 17:41 adesmons
* dhcp_wizard/scripts/dhcpd.conf.default: del server-identifier
2002-09-23 14:45 pablo
* po/hu.po: Added Catalan file
2002-09-23 10:53 pablo
* po/zh_TW.po: Added Chinese file
2002-09-22 20:34 pablo
* po/: cy.po, hu.po, id.po, lv.po: Added Indonesian file
2002-09-20 16:21 adesmons
* dhcp_wizard/dhcp.wiz: finish if dhcp client
2002-09-20 16:04 adesmons
* news_wizard/news.wiz: require leafnode
2002-09-20 15:46 adesmons
* drakwizard.spec: cf cl
2002-09-20 15:44 adesmons
* nfs_wizard/: nfs.wiz, scripts/NFSConf.pm: added chooser for
access restriction
2002-09-20 13:06 adesmons
* client_wizard/scripts/Clientconf.pm: __WIZ_HOME__ fix
2002-09-20 11:44 adesmons
* dns_wizard/scripts/Dnsconf.pm: test /etc/named.conf
2002-09-20 11:09 pablo
* po/da.po: updated po file
2002-09-19 12:09 adesmons
* client_wizard/: client.wiz, scripts/Clientconf.pm: added dhcp
check
2002-09-19 11:57 adesmons
* time_wizard/: time.wiz, scripts/NTPConf.pm: fix test while
2002-09-19 10:35 adesmons
* web_wizard/web.wiz: s|Internet and Intranet|Internet|
2002-09-18 14:21 adesmons
* proxy_wizard/scripts/Squidconf.pm: missed \n between commented
string and new string
2002-09-17 22:07 pablo
* po/no.po: updated po file
2002-09-17 14:42 pablo
* po/tr.po: updated po file
2002-09-17 11:40 pablo
* po/: lv.po, sk.po: Added Latvian file
2002-09-16 17:39 pablo
* po/ru.po: updated po file
2002-09-16 16:46 pablo
* po/pt.po: updated po file
2002-09-16 12:16 pablo
* po/: cs.po, ru.po, sv.po: Added Russian file
2002-09-14 09:47 pablo
* po/zh_CN.po: updated po file
2002-09-13 22:52 pablo
* po/da.po: updated po file
2002-09-13 21:46 pablo
* po/vi.po: updated po file
2002-09-13 16:04 pablo
* po/zh_CN.po: updated po file
2002-09-13 15:55 adesmons
* client_wizard/client.wiz, dns_wizard/dns.wiz: rpm bind
2002-09-13 15:54 adesmons
* samba_wizard/samba.wiz: s|samba|samba-server|
2002-09-13 15:53 adesmons
* drakwizard.pl: bind install fix, installation failed warn
2002-09-13 13:57 pablo
* po/sk.po: updated po file
2002-09-13 12:19 pablo
* po/hu.po: updated po file
2002-09-13 10:18 alus
* po/pl.po: updated fuzzy
2002-09-12 23:27 pablo
* po/: ar.po, bg.po, bs.po, cs.po, cy.po, da.po, de.po,
drakwizard.pot, es.po, eu.po, fr.po, hu.po, it.po, ko.po, mt.po,
nl.po, no.po, pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, tr.po,
vi.po, wa.po, zh_CN.po: updated po files
2002-09-12 20:42 adesmons
* drakwizard.pl: utf8 fix
2002-09-12 18:59 adesmons
* drakwizard.pl: use of translate
2002-09-12 16:09 adesmons
* time_wizard/time.wiz: suppressed "... or specify one" text
because of none combo list
2002-09-12 13:41 pablo
* po/sk.po: updated po file
2002-09-12 12:23 adesmons
* drakwizard.pl: traduction now ok (I hope)
2002-09-12 11:07 adesmons
* samba_wizard/: samba.wiz, scripts/Smbconf.pm: added some check
func and globalize old conf
2002-09-12 11:03 adesmons
* drakwizard.pl: install package before loading modules to avoid
file error
2002-09-12 00:40 pablo
* po/mt.po: updated po file
2002-09-11 18:41 prigaux
* drakwizard.pl: fix i18n handling (needs new drakxtools)
2002-09-11 16:45 pablo
* drakwizard.pl, po/Makefile, po/ar.po, po/bg.po, po/bs.po,
po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakwizard.pot,
po/es.po, po/eu.po, po/fr.po, po/hu.po, po/it.po, po/ko.po,
po/mt.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/ro.po,
po/sk.po, po/sv.po, po/ta.po, po/tr.po, po/vi.po, po/wa.po,
po/zh_CN.po: Make buttons (Cancel, Next etc) translatable
2002-09-11 15:34 fcrozat
* data/: Client.desktop.in, DNS.desktop.in, Time.desktop.in,
ftp.desktop.in, news.desktop.in, postfix.desktop.in,
samba.desktop.in: Fix icons
2002-09-11 15:22 adesmons
* samba_wizard/scripts/Smbconf.pm: titi's error msg
2002-09-11 15:21 tvignaud
* ChangeLog: [no log message]
2002-09-11 15:19 adesmons
* samba_wizard/scripts/Smbconf.pm: doesn't load conf outside of a
function to prevent no samba file
2002-09-11 15:18 tvignaud
* nfs_wizard/nfs.wiz, po/ar.po, po/bg.po, po/bs.po, po/cs.po,
po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/es.po,
po/eu.po, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po,
po/nl.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/ta.po, po/tr.po, po/vi.po, po/wa.po, po/zh_CN.po:
s/succesfully/successfully/g
2002-09-11 13:18 tvignaud
* nfs_wizard/nfs.wiz, po/ar.po, po/bg.po, po/bs.po, po/cs.po,
po/cy.po, po/da.po, po/de.po, po/drakwizard.pot, po/es.po,
po/eu.po, po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po,
po/nl.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/ta.po, po/tr.po, po/vi.po, po/wa.po, po/zh_CN.po:
s/succesfully/successfully/g
2002-09-10 14:28 adesmons
* po/fr.po: updated
2002-09-10 11:29 alus
* po/pl.po: some fixes
2002-09-09 16:40 adesmons
* drakwizard.pl: test draknet_conf
2002-09-09 16:39 adesmons
* common/scripts/DrakconnectConf.pm: added a return value
2002-09-09 16:24 pablo
* po/: ko.po, vi.po: updated po files
2002-09-09 14:38 pablo
* po/bs.po: Added Bosnian file
2002-09-09 14:08 pablo
* po/vi.po: updated po file
2002-09-09 08:55 adesmons
* ChangeLog: [no log message]
2002-09-06 17:23 adesmons
* dhcp_wizard/scripts/dhcpd.conf.default: not authoritative
2002-09-06 16:58 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: added check
2002-09-06 15:41 adesmons
* drakwizard.spec: cf cl
2002-09-06 15:05 adesmons
* web_wizard/web.wiz: require apache instead of apache-conf
2002-09-06 14:28 adesmons
* dhcp_wizard/: dhcp.wiz, scripts/Dhcpconf.pm: test if is already a
dhcp client
2002-09-06 14:06 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: test dhcpd.conf before cp
2002-09-06 13:45 adesmons
* time_wizard/scripts/NTPConf.pm: test before copying step-tickers
2002-09-06 13:24 adesmons
* dhcp_wizard/: dhcp.wiz, scripts/Dhcpconf.pm: temporary no check
2002-09-06 13:11 adesmons
* time_wizard/scripts/NTPConf.pm: bug in cp of zoneinfo
2002-09-06 13:03 pablo
* po/pl.po: updated po file
2002-09-06 10:31 pablo
* po/da.po: updated po file
2002-09-06 09:09 pablo
* po/: no.po, pt.po: updated po files
2002-09-06 01:38 pablo
* po/tr.po: updated po file
2002-09-06 00:49 pablo
* po/da.po: updated po file
2002-09-05 21:30 pablo
* po/sk.po: updated po file
2002-09-05 19:50 pablo
* po/hu.po: updated po file
2002-09-05 19:00 pablo
* po/: cs.po, ta.po: updated po files
2002-09-05 18:27 adesmons
* drakwizard.pl: s|translate|_|
2002-09-05 18:11 pablo
* po/: Makefile, ar.po, bg.po, cs.po, cy.po, da.po, de.po,
drakwizard.pot, es.po, eu.po, fr.po, hu.po, it.po, ko.po, mt.po,
nl.po, no.po, pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, tr.po,
vi.po, wa.po, zh_CN.po: updated po files
2002-09-05 17:40 adesmons
* Makefile: removed global_wizard (hard)
2002-09-05 17:38 adesmons
* Makefile: removed global_wizard
2002-09-05 17:36 adesmons
* po/fr.po: new update
2002-09-05 17:05 adesmons
* drakwizard.spec: changed requires
2002-09-05 15:56 pablo
* po/hu.po: updated po files
2002-09-05 14:29 adesmons
* time_wizard/time.wiz: removed title in info
2002-09-05 14:27 adesmons
* drakwizard.pl: added rpm missing translation
2002-09-05 14:22 adesmons
* po/Makefile: added rpm missing translation
2002-09-05 14:11 pablo
* po/: ar.po, bg.po, cs.po, cy.po, da.po, de.po, drakwizard.pot,
es.po, eu.po, fr.po, hu.po, it.po, ko.po, mt.po, nl.po, no.po,
pl.po, pt.po, ro.po, sk.po, sv.po, ta.po, tr.po, vi.po, wa.po,
zh_CN.po: updated po files
2002-09-05 13:57 adesmons
* drakwizard.spec: cf cl
2002-09-05 13:39 adesmons
* po/Makefile: added enabled disabled
2002-09-05 13:15 adesmons
* client_wizard/client.wiz, dhcp_wizard/dhcp.wiz,
dns_wizard/dns.wiz, firewall_wizard/firewall.wiz,
ftp_wizard/ftp.wiz, news_wizard/news.wiz,
postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, server_wizard/server.wiz,
web_wizard/web.wiz: s|Configure|Next|
2002-09-05 12:15 adesmons
* time_wizard/Makefile: added NTPConf.pm
2002-09-05 10:04 adesmons
* drakwizard.spec: cf cl
2002-09-05 09:52 adesmons
* postfix_wizard/scripts/Postfixconf.pm: added a true return value
2002-09-05 09:47 adesmons
* common/Makefile: removed gif install
2002-09-05 09:38 adesmons
* ftp_wizard/scripts/Ftpconf.pm: removed - we now use ProFtpd
2002-09-05 09:37 adesmons
* client_wizard/scripts/do_it_client.sh,
client_wizard/scripts/test_client.sh, common/scripts/check.sh,
common/scripts/check_root.sh, common/scripts/functions.sh,
dhcp_wizard/scripts/check_range.sh,
dhcp_wizard/scripts/compute_range1.sh,
dhcp_wizard/scripts/compute_range2.sh,
dhcp_wizard/scripts/dhcpd.conf.default,
dhcp_wizard/scripts/dhcpd.patch, dhcp_wizard/scripts/do_it_dhcp.sh,
dns_wizard/scripts/127.0.0.rev.default,
dns_wizard/scripts/check_ext_dns.sh,
dns_wizard/scripts/do_it_dns.sh,
dns_wizard/scripts/domain.db.default,
dns_wizard/scripts/host.conf.default,
dns_wizard/scripts/ipnet.rev.default,
dns_wizard/scripts/named.conf.default,
dns_wizard/scripts/root.hints.default,
firewall_wizard/scripts/bastille-firewall.cfg.default,
firewall_wizard/scripts/check_ext_device.sh,
firewall_wizard/scripts/compute_ext_device.sh,
firewall_wizard/scripts/compute_level_name.sh,
firewall_wizard/scripts/do_it_firew.sh,
firewall_wizard/scripts/firew.sh,
firewall_wizard/scripts/liste_ext_device.sh,
firewall_wizard/scripts/store_fwall.sh,
ftp_wizard/scripts/do_it_ftp.sh,
ftp_wizard/scripts/proftpd.conf.default,
news_wizard/scripts/check_news_server.sh,
news_wizard/scripts/check_valid_hours.sh,
news_wizard/scripts/config.default,
news_wizard/scripts/do_it_news.sh, news_wizard/scripts/news.cron,
nfs_wizard/scripts/do_it_nfs.sh,
postfix_wizard/scripts/check_masquerade.sh,
postfix_wizard/scripts/check_relay.sh,
postfix_wizard/scripts/compute_mail_relay.sh,
postfix_wizard/scripts/compute_masquerade.sh,
postfix_wizard/scripts/postfix_do_it.sh,
postfix_wizard/scripts/testlabel.pl, proxy_wizard/scripts/dfh.sh,
proxy_wizard/scripts/do_it_squid.sh,
proxy_wizard/scripts/echolevel.sh,
proxy_wizard/scripts/printservices.sh,
proxy_wizard/scripts/showlevel.sh,
proxy_wizard/scripts/squid.conf.default,
proxy_wizard/scripts/testport.sh,
samba_wizard/scripts/check_banner.sh,
samba_wizard/scripts/check_services.sh,
samba_wizard/scripts/check_workgroup.sh,
samba_wizard/scripts/do_it_samba.sh,
samba_wizard/scripts/smbconfig.pl,
server_wizard/scripts/check_config.sh,
server_wizard/scripts/check_domain.sh,
server_wizard/scripts/check_network.sh,
server_wizard/scripts/check_server_ip.sh,
server_wizard/scripts/compute_domain.sh,
server_wizard/scripts/compute_ipnet.sh,
server_wizard/scripts/compute_server_ip.sh,
server_wizard/scripts/do_it_last.sh,
server_wizard/scripts/do_it_net.sh,
server_wizard/scripts/liste_device.sh,
server_wizard/scripts/set_ip.sh, server_wizard/scripts/test.pl,
server_wizard/scripts/test.sh, web_wizard/scripts/commonhttpd.conf,
web_wizard/scripts/do_it_web.sh, web_wizard/scripts/mytest.pl,
web_wizard/scripts/sedscript, web_wizard/scripts/test.sed:
untouched
2002-09-05 00:41 pablo
* po/bg.po: updated po file
2002-09-04 20:52 pablo
* po/mt.po: updated po file
2002-09-04 18:42 baudens
* client_wizard/images/DNS.png, db_wizard/images/SQL.png,
dhcp_wizard/images/DHCP.png, dns_wizard/images/DNS.png,
firewall_wizard/images/firewall.png, ftp_wizard/images/FTP.png,
news_wizard/images/news.png, nfs_wizard/images/NFS.png,
postfix_wizard/images/courrier.png, proxy_wizard/images/proxy.png,
samba_wizard/images/samba.png, server_wizard/images/intranet.png,
time_wizard/images/Time.png, web_wizard/images/apache.png: Update
banners
2002-09-04 17:30 pablo
* client_wizard/client.wiz, po/pt.po: updated po file; changed a
strign to avoid losing translations
2002-09-03 17:12 adesmons
* client_wizard/client.wiz, client_wizard/scripts/Clientconf.pm,
news_wizard/news.wiz, news_wizard/scripts/Newsconf.pm: fill func
2002-09-03 17:11 adesmons
* common/scripts/Vareqval.pm: now work with a white space before
equal
2002-09-03 15:28 adesmons
* Makefile, drakwizard.pl, dhcp_wizard/dhcp.wiz,
dhcp_wizard/scripts/Dhcpconf.pm, firewall_wizard/firewall.wiz,
proxy_wizard/proxy.wiz, proxy_wizard/scripts/Squidconf.pm,
server_wizard/Makefile: some fillfunc
2002-09-03 15:27 adesmons
* dns_wizard/: dns.wiz, scripts/Dnsconf.pm: added some fillfunc's
2002-09-03 07:21 pablo
* nfs_wizard/nfs.wiz, po/fr.po, po/zh_CN.po: updated Chinese file;
fixed errors
2002-09-03 02:16 pablo
* po/bg.po: Added Bulgarian file
2002-09-03 00:31 pablo
* po/nl.po: Added Dutch file
2002-09-02 21:31 pablo
* po/: da.po, es.po: Added Spanish file
2002-09-02 21:11 pablo
* po/: cs.po, pl.po: updated po files
2002-09-02 17:36 adesmons
* news_wizard/scripts/Newsconf.pm: some shortcuts and remove of
mdk_serv update
2002-09-02 16:11 adesmons
* time_wizard/scripts/: handle_local_internet.sh,
handle_no_network.sh, install_rpm.sh, save_config.sh,
test_timeservers.sh, test_tools.sh: deprecated
2002-09-02 16:07 adesmons
* time_wizard/: time.wiz, scripts/NTPConf.pm: perl traduction
2002-09-02 16:04 adesmons
* client_wizard/: scripts/Clientconf.pm, client.wiz: use of
drakconnect db
2002-09-02 12:34 pablo
* po/: drakwizard.pot, tr.po: updated po files
2002-09-01 01:42 pablo
* po/: drakwizard.pot, hu.po: updated po file
2002-08-31 23:12 pablo
* po/: tr.po, wa.po: Added Turkish file
2002-08-31 17:31 pablo
* po/: sv.po, ta.po, vi.po: updated po files
2002-08-31 13:05 pablo
* po/vi.po: updated po file
2002-08-30 23:59 pablo
* po/: ar.po, cs.po, cy.po, da.po, de.po, drakwizard.pot, eu.po,
fr.po, hu.po, it.po, ko.po, mt.po, no.po, pl.po, pt.po, ro.po,
sk.po, sv.po, ta.po, vi.po, wa.po, zh_CN.po: Updated pot file,
added Walloon file
2002-08-30 17:01 adesmons
* nfs_wizard/Makefile: added NFSConf.pm install
2002-08-30 16:54 adesmons
* nfs_wizard/Makefile: changed prefix
2002-08-30 16:51 adesmons
* ChangeLog: [no log message]
2002-08-30 16:49 adesmons
* drakwizard.spec: cf cl
2002-08-30 16:40 adesmons
* drakwizard.pl: added nfs wizard
2002-08-30 16:36 adesmons
* nfs_wizard/: Makefile, nfs.wiz, images/NFS.png,
scripts/NFSConf.pm: first release
2002-08-30 11:34 adesmons
* postfix_wizard/scripts/Postfixconf.pm: canonical bug bis
2002-08-30 10:13 adesmons
* postfix_wizard/scripts/Postfixconf.pm: canonical bug
2002-08-30 09:54 pablo
* dns_wizard/dns.wiz, po/ar.po, po/cs.po, po/cy.po, po/da.po,
po/de.po, po/drakwizard.pot, po/eu.po, po/fr.po, po/hu.po,
po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po,
po/ro.po, po/sk.po, po/sv.po, po/ta.po, po/vi.po, po/zh_CN.po:
Added Welsh file
2002-08-29 18:26 adesmons
* drakwizard.spec: cf cl
2002-08-29 18:24 adesmons
* drakwizard.pl, ftp_wizard/scripts/Ftpconf.pm,
ftp_wizard/scripts/ProFtpconf.pm,
proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz,
samba_wizard/scripts/smb.conf.default: dhcp fix and script
improvements and little fixes
2002-08-29 18:12 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: append INTERFACE in
/etc/sysconfig/dhcpd only if not already in
2002-08-29 17:41 pablo
* po/ta.po: updated po file
2002-08-29 16:20 pablo
* po/ta.po: Added Tamil file
2002-08-29 14:35 adesmons
* time_wizard/scripts/: handle_no_network.sh, test_timeservers.sh:
changed some __WIZ_HOME__ prefix
2002-08-29 14:29 adesmons
* time_wizard/scripts/: handle_local_internet.sh,
handle_no_network.sh, install_rpm.sh, save_config.sh,
test_tools.sh: first revision
2002-08-29 14:10 adesmons
* time_wizard/scripts/: compute_liste.sh, test_timeservers.sh:
changed some __WIZ_HOME__ prefix
2002-08-29 14:06 adesmons
* time_wizard/time.wiz: fixed variableName and shellVariable
conflicts and removed the clock step
2002-08-29 14:05 adesmons
* drakwizard.pl: fixed chooser : keep description value and
environnement value in separate places
2002-08-29 02:14 pablo
* po/eu.po: Added Basque file
2002-08-28 11:51 pablo
* po/: ar.po, cs.po, da.po, de.po, fr.po, it.po, ko.po, mt.po,
no.po, pl.po, pt.po, ro.po, sk.po, vi.po, zh_CN.po: updated po
files
2002-08-28 11:44 pablo
* po/: hu.po, sv.po: updated po files
2002-08-27 18:37 tvignaud
* ChangeLog: [no log message]
2002-08-27 18:32 tvignaud
* ChangeLog: [no log message]
2002-08-27 18:30 tvignaud
* po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot,
po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po,
po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po,
po/zh_CN.po, time_wizard/time.wiz: s/ask to that server/ask from
that server/
2002-08-27 18:28 tvignaud
* po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot,
po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po,
po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po,
po/zh_CN.po, time_wizard/time.wiz: s/can now act has a time
server/can now act as a time server/g
2002-08-27 18:27 tvignaud
* po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot,
po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po,
po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po,
po/zh_CN.po, proxy_wizard/proxy.wiz: s/the level that suit to your
needs/the level that suits your needs/g"
2002-08-27 18:26 tvignaud
* news_wizard/news.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po,
po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po,
po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/vi.po, po/zh_CN.po: s/internet new server/internet
news server/
2002-08-27 18:25 tvignaud
* ftp_wizard/ftp.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po,
po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po,
po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/vi.po, po/zh_CN.po: s/a FTP Server/an FTP Server/g
2002-08-27 18:23 tvignaud
* ftp_wizard/ftp.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po,
po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po,
po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/vi.po, po/zh_CN.po, web_wizard/web.wiz: s/may doesn't
work/may not work/g
2002-08-27 18:21 tvignaud
* firewall_wizard/firewall.wiz, po/ar.po, po/cs.po, po/da.po,
po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po,
po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po,
po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po: s/The firewall need to
know/The firewall needs to know/
2002-08-27 18:20 tvignaud
* dns_wizard/dns.wiz: s!!correspondence!g'
2002-08-27 18:19 tvignaud
* client_wizard/client.wiz, db_wizard/db.wiz, po/ar.po, po/cs.po,
po/da.po, po/de.po, po/drakwizard.pot, po/fr.po, po/hu.po,
po/it.po, po/ko.po, po/mt.po, po/no.po, po/pl.po, po/pt.po,
po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po,
postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, time_wizard/time.wiz: s!before launch this
wizard!before launching this wizard!g
2002-08-27 18:18 tvignaud
* po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot,
po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po,
po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po,
po/zh_CN.po, proxy_wizard/proxy.wiz: s/acces/access/
2002-08-27 18:17 tvignaud
* po/ar.po, po/cs.po, po/da.po, po/de.po, po/drakwizard.pot,
po/fr.po, po/hu.po, po/it.po, po/ko.po, po/mt.po, po/no.po,
po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po, po/vi.po,
po/zh_CN.po, server_wizard/server.wiz: s/identifing/identifying/
2002-08-27 18:13 tvignaud
* news_wizard/news.wiz, po/ar.po, po/cs.po, po/da.po, po/de.po,
po/drakwizard.pot, po/fr.po, po/hu.po, po/it.po, po/ko.po,
po/mt.po, po/no.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/vi.po, po/zh_CN.po, samba_wizard/samba.wiz,
time_wizard/time.wiz: s/intervall/interval s/theirs/their/
s/existant/existent
2002-08-27 17:08 adesmons
* drakwizard.pl: __ for enabled and disbable
2002-08-27 16:08 adesmons
* dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz,
firewall_wizard/firewall.wiz, news_wizard/news.wiz,
postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, web_wizard/web.wiz: removed check.sh
need_net, need_root, DEBUG
2002-08-27 14:45 adesmons
* client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz,
dns_wizard/dns.wiz, firewall_wizard/firewall.wiz,
ftp_wizard/ftp.wiz, news_wizard/news.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, time_wizard/time.wiz: removed old net test
2002-08-27 14:42 adesmons
* postfix_wizard/postfix.wiz: __WIZ_HOME__
2002-08-27 14:25 adesmons
* postfix_wizard/scripts/Postfixconf.pm: oscar du meilleur bug
2002-08-27 12:43 pablo
* po/: hu.po, ro.po: updated po files
2002-08-26 15:36 adesmons
* Makefile: s/perl -pe -i/perl -i -pe/
2002-08-26 15:16 adesmons
* samba_wizard/scripts/Smbconf.pm: OO and get_workgroup, get_banner
fillfunc
2002-08-26 14:06 adesmons
* client_wizard/images/DNS.png, db_wizard/images/SQL.png,
dhcp_wizard/images/DHCP.png, dns_wizard/images/DNS.png,
firewall_wizard/images/firewall.png, ftp_wizard/images/FTP.png,
news_wizard/images/news.png, postfix_wizard/images/courrier.png,
proxy_wizard/images/proxy.png, samba_wizard/images/samba.png,
server_wizard/images/intranet.png, time_wizard/images/Time.png,
web_wizard/images/apache.png: from 8.2 jpg
2002-08-26 14:00 adesmons
* drakwizard.pl: added debug mode and fixed default printing
2002-08-26 13:00 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: s/system
touch/MDK::Common::touch/
2002-08-26 12:57 adesmons
* drakwizard.pl: missed sourcing libScript
2002-08-26 11:44 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: explanations and pixel shortcuts
2002-08-26 10:49 adesmons
* common/scripts/DrakconnectConf.pm: added narcissist header
2002-08-26 10:47 adesmons
* dns_wizard/scripts/Dnsconf.pm: added explanations
2002-08-26 10:45 pablo
* po/: hu.po, zh_CN.po: updated po files
2002-08-25 11:34 pablo
* po/: da.po, hu.po, ko.po: Added Korean file
2002-08-24 20:57 alus
* po/pl.po: updated translation
2002-08-24 18:04 pablo
* po/: sv.po, vi.po: updated po files
2002-08-23 21:19 pablo
* client_wizard/client.wiz, news_wizard/news.wiz, po/ar.po,
po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po,
po/hu.po, po/it.po, po/mt.po, po/no.po, po/pl.po, po/pt.po,
po/ro.po, po/sk.po, po/sv.po, po/vi.po, po/zh_CN.po,
samba_wizard/samba.wiz, server_wizard/server.wiz,
time_wizard/time.wiz: updated pot file
2002-08-23 17:37 adesmons
* drakwizard.spec: cf cl
2002-08-23 17:33 adesmons
* dns_wizard/dns.wiz: fixed no Grid tag
2002-08-23 17:27 adesmons
* firewall_wizard/firewall.wiz: fixed variableName missing
2002-08-23 17:22 adesmons
* firewall_wizard/firewall.wiz: added .../scripts/... to scripts
paths
2002-08-23 16:59 adesmons
* time_wizard/Makefile: missed .wiz install :-\
2002-08-23 16:47 adesmons
* samba_wizard/Makefile: cleaned blank lines
2002-08-23 16:46 adesmons
* time_wizard/Makefile: missed .wiz install :-\
2002-08-23 16:29 adesmons
* time_wizard/Makefile:
install png instead of jpg and removed wpo
2002-08-23 15:24 adesmons
* samba_wizard/: samba.wiz, scripts/Smbconf.pm: added homes
2002-08-23 12:10 alus
* po/pl.po: updated translation
2002-08-23 11:06 adesmons
* drakwizard.pl: wiz chooser sort fix
2002-08-23 10:46 adesmons
* samba_wizard/scripts/smb.conf.default: public was in double
2002-08-23 09:58 adesmons
* postfix_wizard/postfix.wiz: added usage of fillfunc
2002-08-23 09:52 pablo
* po/: no.po, vi.po: Added Norwegian file
2002-08-23 02:50 pablo
* wiz2fake_c.pl, po/Makefile, po/ar.po, po/cs.po, po/da.po,
po/de.po, po/drakwizard.pot, po/fake_c.pl, po/fr.po, po/hu.po,
po/it.po, po/mt.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po,
po/sv.po, po/vi.po, po/zh_CN.po, time_wizard/time.wiz: copied
fake_c.pl from other modules, and converted wiz2pot into
wiz2fake_c; so now the pot file can be easily rebuild to match the
source files.
2002-08-22 18:36 fcrozat
* Makefile, client_wizard/client.wiz,
client_wizard/scripts/Clientconf.pm,
common/scripts/DrakconnectConf.pm, db_wizard/db.wiz,
dhcp_wizard/dhcp.wiz, dhcp_wizard/scripts/Dhcpconf.pm,
dns_wizard/dns.wiz, dns_wizard/scripts/Dnsconf.pm,
firewall_wizard/firewall.wiz, firewall_wizard/scripts/FWconf.pm,
ftp_wizard/ftp.wiz, ftp_wizard/scripts/Ftpconf.pm,
ftp_wizard/scripts/ProFtpconf.pm, news_wizard/news.wiz,
news_wizard/scripts/Newsconf.pm, postfix_wizard/postfix.wiz,
postfix_wizard/scripts/Postfixconf.pm, proxy_wizard/proxy.wiz,
proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz,
samba_wizard/scripts/Smbconf.pm, server_wizard/server.wiz,
server_wizard/scripts/Serverconf.pm, time_wizard/time.wiz,
web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: Fix search and
replace for __WIZ_HOME__ and fix wrongly committed files
2002-08-22 18:19 fcrozat
* po/.cvsignore: Clean cvs output
2002-08-22 18:18 fcrozat
* Makefile, drakwizard.spec, client_wizard/client.wiz,
client_wizard/scripts/Clientconf.pm,
common/scripts/DrakconnectConf.pm, data/.cvsignore,
data/Client.desktop.in, data/DHCP.desktop.in, data/DNS.desktop.in,
data/Makefile, data/ServerConfig.directory.in,
data/Time.desktop.in, data/Web.desktop.in, data/ftp.desktop.in,
data/intltool-merge, data/news.desktop.in, data/postfix.desktop.in,
data/proxy.desktop.in, data/samba.desktop.in,
data/server-settings.vfolder-info, data/server.desktop.in,
db_wizard/db.wiz, dhcp_wizard/dhcp.wiz,
dhcp_wizard/scripts/Dhcpconf.pm, dns_wizard/dns.wiz,
dns_wizard/scripts/Dnsconf.pm, firewall_wizard/firewall.wiz,
firewall_wizard/scripts/FWconf.pm, ftp_wizard/ftp.wiz,
ftp_wizard/scripts/Ftpconf.pm, ftp_wizard/scripts/ProFtpconf.pm,
news_wizard/news.wiz, news_wizard/scripts/Newsconf.pm,
po/.cvsignore, po/Makefile, postfix_wizard/postfix.wiz,
postfix_wizard/scripts/Postfixconf.pm, proxy_wizard/proxy.wiz,
proxy_wizard/scripts/Squidconf.pm, samba_wizard/samba.wiz,
samba_wizard/scripts/Smbconf.pm, server_wizard/server.wiz,
server_wizard/scripts/Serverconf.pm, time_wizard/time.wiz,
web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: Add support for
server-settings: for GNOME 2
2002-08-22 17:50 adesmons
* drakwizard.spec: cf cl
2002-08-22 16:30 adesmons
* drakwizard.pl: chooser alpha sorted
2002-08-22 16:25 adesmons
* client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz,
dns_wizard/dns.wiz, firewall_wizard/firewall.wiz,
ftp_wizard/ftp.wiz, news_wizard/news.wiz,
postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, server_wizard/server.wiz,
time_wizard/time.wiz, web_wizard/web.wiz: changed image path
2002-08-22 15:13 adesmons
* drakwizard.pl: $::Wizard_pix_up
2002-08-22 15:09 adesmons
* client_wizard/Makefile, dhcp_wizard/Makefile,
dns_wizard/Makefile, firewall_wizard/Makefile, ftp_wizard/Makefile,
news_wizard/Makefile, postfix_wizard/Makefile,
proxy_wizard/Makefile, samba_wizard/Makefile,
server_wizard/Makefile, web_wizard/Makefile: s/jpg/png/
2002-08-22 15:03 pablo
* po/ar.po: updated po file
2002-08-22 15:01 adesmons
* Zwiffer.pl: wiz cleaner
2002-08-22 14:56 adesmons
* time_wizard/time.wiz: default version
2002-08-22 11:18 pablo
* po/fr.po: updated po file
2002-08-22 01:00 pablo
* po/hu.po: updated po file
2002-08-21 21:31 alus
* po/pl.po: Removed unused translations
2002-08-21 17:44 adesmons
* postfix_wizard/scripts/Postfixconf.pm, drakwizard.pl: fillfunc
added
2002-08-21 17:42 pablo
* po/cs.po: updated po file
2002-08-21 15:35 pablo
* po/: pt.po, vi.po: updated po files
2002-08-21 12:23 adesmons
* postfix_wizard/scripts/Postfixconf.pm: use of drakconnect db and
bug fixes
2002-08-21 11:42 pablo
* firewall_wizard/firewall.wiz: update
2002-08-21 10:58 adesmons
* drakwizard.pl: no previous on first page also when launched via
the wizard chooser
2002-08-21 10:56 adesmons
* postfix_wizard/postfix.wiz: error in previous commit (no relative
paths)
2002-08-21 10:06 adesmons
* postfix_wizard/postfix.wiz: added "scripts/" in some paths
2002-08-21 09:56 pablo
* po/sk.po: updated po file
2002-08-21 09:55 pablo
* po/: cs.po, da.po, de.po, drakwizard.pot, fr.po, hu.po, it.po,
mt.po, pl.po, pt.po, ro.po, sk.po, sv.po, vi.po, zh_CN.po: Fixed a
small typo
2002-08-21 09:42 pablo
* po/: mt.po, pt.po, ro.po: Added Maltese file
2002-08-21 00:59 pablo
* po/hu.po: Added Hungarian file
2002-08-20 18:07 adesmons
* web_wizard/scripts/Webconf.pm: replaced localhost by 127.0.0.1
2002-08-20 18:04 adesmons
* ftp_wizard/scripts/ProFtpconf.pm: changed localhost to 127.0.0.1
2002-08-20 17:57 adesmons
* drakwizard.pl: removed no sense no_cancel
2002-08-20 17:52 adesmons
* postfix_wizard/Makefile: added install of Postfixconf.pm
2002-08-20 17:48 adesmons
* ftp_wizard/ftp.wiz: canBack at false for first page
2002-08-20 17:37 adesmons
* ftp_wizard/scripts/ProFtpconf.pm: added localhost for internal
use
2002-08-20 17:23 adesmons
* proxy_wizard/proxy.wiz: added perlModule
2002-08-20 17:20 adesmons
* proxy_wizard/scripts/Squidconf.pm: now fonctionnal
2002-08-20 16:37 pablo
* po/cs.po, po/da.po, po/de.po, po/drakwizard.pot, po/fr.po,
po/it.po, po/pl.po, po/pt.po, po/ro.po, po/sk.po, po/sv.po,
po/vi.po, po/zh_CN.po, proxy_wizard/proxy.wiz,
server_wizard/server.wiz: Added Czech file
2002-08-20 11:51 pablo
* po/sk.po: Added Slovak file
2002-08-20 10:10 adesmons
* client_wizard/Makefile, dhcp_wizard/Makefile,
dns_wizard/Makefile, firewall_wizard/Makefile, ftp_wizard/Makefile,
news_wizard/Makefile, postfix_wizard/Makefile,
proxy_wizard/Makefile, samba_wizard/Makefile,
server_wizard/Makefile, web_wizard/Makefile: removed wpo without \b
2002-08-20 10:07 alus
* po/pl.po: updated translation
2002-08-20 10:04 adesmons
* client_wizard/Makefile, dhcp_wizard/Makefile,
dns_wizard/Makefile, firewall_wizard/Makefile, ftp_wizard/Makefile,
news_wizard/Makefile, postfix_wizard/Makefile,
proxy_wizard/Makefile, samba_wizard/Makefile,
server_wizard/Makefile, web_wizard/Makefile: removed wpo
2002-08-20 01:37 pablo
* dhcp_wizard/dhcp.wiz, po/da.po, po/de.po, po/drakwizard.pot,
po/fr.po, po/it.po, po/pl.po, po/pt.po, po/ro.po, po/sv.po,
po/vi.po, po/zh_CN.po: some i18n fixes
2002-08-19 18:55 alus
* po/pl.po: updated translation
2002-08-19 17:40 adesmons
* drakwizard.pl: fixed Wizard_title
2002-08-19 17:19 adesmons
* dns_wizard/scripts/Dnsconf.pm: use of drakconnect db
2002-08-19 17:19 adesmons
* samba_wizard/scripts/Smbconf.pm: cleaned some comments
2002-08-19 16:10 pablo
* po/fr.po: updated po file
2002-08-19 15:34 pablo
* po/: da.po, de.po, drakwizard.pot, fr.po, it.po, pl.po, pt.po,
ro.po, sv.po, vi.po, zh_CN.po: updated po files
2002-08-19 15:19 adesmons
* news_wizard/news.wiz: replaced Integer by Freetext for newsFreq
2002-08-19 15:08 pablo
* client_wizard/client.wiz, db_wizard/db.wiz, dhcp_wizard/dhcp.wiz,
dns_wizard/dns.wiz, firewall_wizard/firewall.wiz,
ftp_wizard/ftp.wiz, news_wizard/news.wiz, po/drakwizard.pot,
postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, server_wizard/server.wiz,
web_wizard/web.wiz: merged strings of wiz files, to make them
translator-friendly and generated a *.po file
2002-08-19 14:31 adesmons
* Makefile: conflict
2002-08-19 14:28 adesmons
* Makefile: added .sh for __WIZ_HOME__ replacement
2002-08-19 14:17 adesmons
* drakwizard.pl: added entry menu
2002-08-19 14:15 adesmons
* proxy_wizard/proxy.wiz: removed perlmodule not ready
2002-08-18 22:43 siegel
* po/de.po: new german version
2002-08-17 11:31 pablo
* po/: vi.po, zh_CN.po: Added Vietnamese and Chinese files
2002-08-16 15:50 pablo
* po/pt.po: Added Portuguese file
2002-08-16 12:38 pablo
* po/da.po: Added Danish file
2002-08-15 13:17 pablo
* po/: en.po, fr.po: Removed empty file
2002-08-15 13:14 pablo
* po/: fr.po, ro.po, sv.po: Added Romanian and Swedish files,
updated French file
2002-08-14 21:13 siegel
* po/de.po: initial german version
2002-08-14 17:22 pablo
* wiz2pot.pl, wpo2po.pl, po/de.po, po/es.po, po/fr.po, po/it.po,
po/pl.po: Merged po files with pot fixed the date format string
(there is no space before the %z (num. time zone)) remove empty
files (so it is clear in stats page that they are not translated)
2002-08-14 15:20 alus
* po/pl.po: next strings
2002-08-14 14:32 adesmons
* po/drakwizard.pot: changed title
2002-08-14 14:31 adesmons
* po/drakwizard.pot: added an header
2002-08-14 13:50 alus
* po/pl.po: updated translation
2002-08-14 12:06 adesmons
* po/drakwizard.pot, wiz2pot.pl: added nextButtonText wizardTitle
description
2002-08-14 11:17 adesmons
* po/drakwizard.pot, wiz2pot.pl: missed \n case
2002-08-14 11:14 adesmons
* po/drakwizard.pot: pot for all wizards generated by wiz2pot.pl
and msgcat
2002-08-14 11:12 adesmons
* wiz2pot.pl: wiz2pot :-)
2002-08-14 09:41 alus
* po/pl.po: update
2002-08-13 17:58 adesmons
* common/scripts/DrakconnectConf.pm: added is_dhcp
2002-08-13 17:46 adesmons
* ftp_wizard/Makefile: changed for proftpd
2002-08-13 17:46 adesmons
* Makefile: cd .. need to be redone each time
2002-08-13 15:46 adesmons
* ftp_wizard/ftp.wiz, ftp_wizard/scripts/ProFtpconf.pm,
web_wizard/web.wiz, web_wizard/scripts/Webconf.pm: use drakconnect
db
2002-08-13 15:43 adesmons
* drakwizard.pl: \n replacement and some minor changes
2002-08-13 15:33 alus
* po/pl.po: updated translation (not fully)
2002-08-12 18:03 adesmons
* drakwizard.spec: see cl
2002-08-12 17:55 adesmons
* ftp_wizard/ftp.wiz: use proftpd now
2002-08-12 17:54 adesmons
* ftp_wizard/scripts/ProFtpconf.pm: First proftpd parser
2002-08-12 17:49 alus
* po/pl.po: started translation
2002-08-09 16:22 adesmons
* po/: de.po, en.po, es.po, fr.po, it.po: added "disabled" and
"enabled" msgid
2002-08-09 15:23 adesmons
* drakwizard.spec: added find-lang and made some clean up
2002-08-09 15:21 adesmons
* Makefile: remove no sense header
2002-08-09 15:20 adesmons
* Makefile: very shorter
2002-08-09 11:36 adesmons
* po/Makefile: changed prefix
2002-08-09 10:42 adesmons
* Makefile, drakwizard.pl: po support
2002-08-09 10:39 adesmons
* po/Makefile: plagiarized from urpmi
2002-08-09 09:41 adesmons
* po/: de.po, en.po, es.po, fr.po, it.po: generated by ../wpo2pl.pl
2002-08-08 18:40 adesmons
* wpo2po.pl: add an antislash to special char like \q, \a, etc...
2002-08-08 17:49 adesmons
* wpo2po.pl: old .wpo translation file to .po perl converter
2002-08-07 16:17 adesmons
* drakwizard.pl: no prev when it is impossible
2002-08-07 13:25 adesmons
* samba_wizard/scripts/Smbconf.pm: use of Drakconnect conf
2002-08-07 13:23 adesmons
* common/scripts/Vareqval.pm: fixed when an empty line is read and
interpreted as data
2002-08-07 11:51 adesmons
* common/scripts/DrakconnectConf.pm: drakconnect conf file parser
2002-08-06 11:08 adesmons
* db_wizard/db.wiz: added rpm section
2002-08-06 11:04 adesmons
* db_wizard/db.wiz: fixed missing page
2002-08-06 10:59 adesmons
* firewall_wizard/scripts/FWconf.pm: remove use strict
2002-08-06 09:56 adesmons
* news_wizard/news.wiz: bad dir for scripts
2002-08-06 09:46 adesmons
* proxy_wizard/proxy.wiz: added rpm section
2002-08-06 09:42 adesmons
* proxy_wizard/proxy.wiz: missed tag "variableName="
2002-08-05 17:26 adesmons
* drakwizard.pl: added Chooser support
2002-08-05 15:16 adesmons
* drakwizard.pl: print enabled or disabled instead of 1 or 0
2002-08-05 10:53 adesmons
* postfix_wizard/scripts/Postfixconf.pm: added a return value to
do_it
2002-08-05 10:46 adesmons
* dhcp_wizard/dhcp.wiz, ftp_wizard/ftp.wiz,
postfix_wizard/postfix.wiz: Added rpm section
2002-08-05 10:10 adesmons
* samba_wizard/samba.wiz:
variableName="doFileSharing" missing in freetext
2002-08-02 18:32 adesmons
* drakwizard.pl: add asking for package concerned by the wizard
(see rpm section in the xml) and install if desired
2002-08-02 17:16 adesmons
* drakwizard.spec: see changelog
2002-08-02 17:13 adesmons
* drakwizard.pl: improved subWizard by catching cancel and fixed
cancel warnings
2002-08-02 15:51 adesmons
* drakwizard.pl: added subWizard support
2002-08-02 14:49 adesmons
* samba_wizard/samba.wiz: changed name function and return value
for do_it
2002-08-02 14:47 adesmons
* samba_wizard/scripts/Smbconf.pm: changed absolute path name
2002-08-02 13:23 adesmons
* client_wizard/client.wiz, dhcp_wizard/dhcp.wiz,
dns_wizard/dns.wiz, firewall_wizard/firewall.wiz,
ftp_wizard/ftp.wiz, news_wizard/news.wiz,
postfix_wizard/postfix.wiz, proxy_wizard/proxy.wiz,
samba_wizard/samba.wiz, server_wizard/server.wiz,
web_wizard/web.wiz: removed "wizdrake" in the title
2002-08-02 10:05 adesmons
* drakwizard.spec: see changelog
2002-08-02 09:57 adesmons
* server_wizard/scripts/Serverconf.pm: mismatched chars and chomps
2002-08-02 09:55 adesmons
* drakwizard.pl, server_wizard/server.wiz: navigation bug fix
2002-08-01 18:01 adesmons
* drakwizard.spec: see changelog
2002-08-01 17:03 adesmons
* dns_wizard/Makefile: install perl Module
2002-08-01 17:01 adesmons
* dns_wizard/dns.wiz: added perl module
2002-08-01 17:00 adesmons
* dns_wizard/scripts/Dnsconf.pm: Pixel line's optimisations and bug
fixes
2002-08-01 15:44 adesmons
* .cvsignore: ignore test
2002-08-01 15:33 adesmons
* Makefile: added test section
2002-08-01 15:00 adesmons
* Makefile: added $RPM and $VERSION default values
2002-08-01 14:02 adesmons
* samba_wizard/scripts/Smbconf.pm: added explanations and some
Pixel shortcuts
2002-08-01 11:49 adesmons
* dns_wizard/scripts/Dnsconf.pm: changed the return value
2002-08-01 11:48 adesmons
* dns_wizard/scripts/Dnsconf.pm: supressed debug print, added a
return value to do_it
2002-08-01 11:39 adesmons
* samba_wizard/scripts/Smbconf.pm: Pixel power
2002-08-01 11:32 adesmons
* drakwizard.spec: change summary
2002-08-01 10:26 adesmons
* common/Makefile: added install of perl modules
2002-08-01 10:11 adesmons
* drakwizard.pl: mismateched parenthesis
2002-08-01 09:58 adesmons
* drakwizard.spec: Added require perl-XML-Parser and a Provides
section
2002-08-01 09:44 adesmons
* Wizard.dtd: xml desc
2002-08-01 09:39 adesmons
* .cvsignore: ignore *~
2002-07-31 17:40 adesmons
* drakwizard.pl: $::isWizard missed
2002-07-30 11:23 adesmons
* client_wizard/Makefile: added install of the perl module
2002-07-30 11:22 adesmons
* client_wizard/client.wiz: use perl module
2002-07-30 11:21 adesmons
* client_wizard/scripts/Clientconf.pm: first perl traduction
2002-07-29 17:57 adesmons
* firewall_wizard/scripts/FWconf.pm: cleaned some debug info and
erased a mismatched parenthesis
2002-07-26 18:53 adesmons
* web_wizard/web.wiz: fixed: perl func return value was not tested
2002-07-26 18:43 adesmons
* postfix_wizard/postfix.wiz, server_wizard/server.wiz: fixed: func
return value was not tested
2002-07-26 18:37 adesmons
* firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz,
news_wizard/news.wiz, dhcp_wizard/dhcp.wiz, web_wizard/web.wiz:
fixed : func return value was not tested
2002-07-26 17:32 adesmons
* drakwizard.pl: added jump test for func element and jumpScript
element back compatibility
2002-07-26 17:15 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: added a return value and fixed a
bug
2002-07-26 14:18 adesmons
* dhcp_wizard/dhcp.wiz, dns_wizard/dns.wiz,
firewall_wizard/firewall.wiz, ftp_wizard/ftp.wiz,
news_wizard/news.wiz, postfix_wizard/postfix.wiz,
proxy_wizard/proxy.wiz, samba_wizard/samba.wiz,
server_wizard/server.wiz, web_wizard/web.wiz: xml wizard
2002-07-26 14:14 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: need to chomp result of mktemp
2002-07-26 13:51 adesmons
* dns_wizard/scripts/Dnsconf.pm: clean tmp
2002-07-26 13:44 adesmons
* dhcp_wizard/scripts/Dhcpconf.pm: clean tmp
2002-07-26 11:55 adesmons
* drakwizard.spec: build one big rpm and obsolete all wizards rpms
2002-07-26 11:41 adesmons
* server_wizard.pl:
replaced by drakwizard.pl
2002-07-26 11:36 adesmons
* dhcp_wizard/Makefile, dns_wizard/Makefile,
firewall_wizard/Makefile, news_wizard/Makefile,
postfix_wizard/Makefile, proxy_wizard/Makefile,
samba_wizard/Makefile, server_wizard/Makefile, web_wizard/Makefile:
adding install for *.pm
2002-07-26 11:35 adesmons
* news_wizard/scripts/Newsconf.pm: first perl traduction
2002-07-26 11:27 adesmons
* samba_wizard/scripts/Smbconf.pm, web_wizard/scripts/Webconf.pm:
first perl traduction
2002-07-26 11:19 adesmons
* dns_wizard/scripts/Dnsconf.pm, common/scripts/Vareqval.pm,
common/scripts/Varspaceval.pm, firewall_wizard/scripts/FWconf.pm,
postfix_wizard/scripts/Postfixconf.pm,
proxy_wizard/scripts/Squidconf.pm,
server_wizard/scripts/Serverconf.pm,
dhcp_wizard/scripts/Dhcpconf.pm: first perl traduction
2002-07-26 11:09 adesmons
* ftp_wizard/scripts/Ftpconf.pm:
ftp conf perl module, just do_it
2002-07-26 11:07 adesmons
* ftp_wizard/Makefile: added install of Ftpconf.pm
2002-07-26 10:55 adesmons
* Makefile: build only one big rpm
2002-07-26 10:48 adesmons
* drakwizard.pl: new launcher allow perlModule loading
2002-06-12 18:12 mdodin
* server_wizard.pl: fix a bug when wizard are loaded
2002-06-12 14:51 mdodin
* server_wizard.pl: fix some bug with interaction between wizard
and script shell
2002-05-28 11:11 mdodin
* server_wizard.pl: -second commit after pixelisation and debug
2002-05-28 10:12 mdodin
* server_wizard.pl: -first commit
|