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
|
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/
s/can now act has a time server/can now act as a time server/g
s/the level that suit to your needs/the level that suits your needs/g"
s/internet new server/internet news server/
s/a FTP Server/an FTP Server/g
s/may doesn't work/may not work/g
s/The firewall need to know/The firewall needs to know/
s/correspondance/correspondence/g
s/before launch this wizard/before launching this wizard/g
s/acces/access/
s/identifing/identifying/
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
|