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
|
2007-10-03 15:46 Thierry Vignaud <tvignaud at mandriva.com>
* po/es.po: update (Fabián Mandelbaum)
2007-10-02 15:58 Thierry Vignaud <tvignaud at mandriva.com>
* Makefile, NEWS: 0.22
2007-10-02 15:57 Thierry Vignaud <tvignaud at mandriva.com>
* NEWS, lib/network/connection/providers/xdsl.pm: update israeli
xDSL provider list (#32685)
2007-10-02 15:58 Thierry Vignaud <tvignaud at mandriva.com>
* Makefile, NEWS: 0.22
2007-10-02 15:57 Thierry Vignaud <tvignaud at mandriva.com>
* NEWS, lib/network/connection/providers/xdsl.pm: update israeli
xDSL provider list (#32685)
2007-10-01 17:38 Thierry Vignaud <tvignaud at mandriva.com>
* Makefile, NEWS: 0.21
2007-10-01 17:37 Thierry Vignaud <tvignaud at mandriva.com>
* ChangeLog: update
2007-10-01 17:37 Thierry Vignaud <tvignaud at mandriva.com>
* Makefile: standard changelog rules
2007-09-29 16:49 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-09-29 16:49 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-09-28 17:52 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.20
2007-09-28 17:51 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: fix typo /o\
2007-09-28 17:51 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: check for draknetcenter/drakroam instances of
root, not user
2007-09-28 17:39 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: do not allow to run multiple draknetcenter
(#34276)
2007-09-27 23:58 ybando
* po/ja.po: Japanese translation reviewed
2007-09-27 22:56 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.19
2007-09-27 22:55 Olivier Blin <oblin at mandriva.com>
* NEWS: cosmetics
2007-09-27 22:46 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/wireless.pm: add back ipw3945 settings
2007-09-27 20:55 acelli
* po/it.po: update translation for Italian
2007-09-27 09:07 mmodem
* po/pt.po: up
2007-09-27 09:04 mmodem
* po/pt.po: up
2007-09-26 17:56 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/cellular_card.pm: detect CDMA cellular
cards
2007-09-26 17:46 acelli
* po/it.po: update translation for Italian
2007-09-26 17:12 mmodem
* po/pt.po: up
2007-09-26 17:12 Olivier Blin <oblin at mandriva.com>
* data/net_applet.desktop: add X-MandrivaLinux-CrossDesktop
(#33416)
2007-09-26 17:12 Olivier Blin <oblin at mandriva.com>
* data/net_applet.desktop: remove X-Mandriva-Linux tag
2007-09-26 15:12 guclu
* po/tr.po: update translation for Turkish
2007-09-26 14:53 ybando
* po/ja.po: Japanese translation updated.
2007-09-26 13:39 mmodem
* po/pt.po: up
2007-09-26 13:21 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
* po/pl.po: update
2007-09-26 12:37 mmodem
* po/pt.po: up
2007-09-26 11:59 mmodem
* po/pt.po: up
2007-09-26 11:51 Thierry Vignaud <tvignaud at mandriva.com>
* po/cy.po: update (Rhoslyn Prys)
2007-09-26 09:30 Olivier Blin <oblin at mandriva.com>
* Makefile: remove useless .cvsignore hack
2007-09-26 02:03 Funda Wang <fundawang at linux.net.cn>
* po/et.po: Updated et translation
2007-09-26 02:01 Funda Wang <fundawang at linux.net.cn>
* po/zh_CN.po: Updated zh_CN translation
2007-09-25 23:23 kamberd
* po/he.po: update translation for Hebrew
2007-09-25 21:26 berthy
* po/fr.po: Update fr translation
2007-09-25 21:24 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
* po/pt_BR.po: pt_BR fix
2007-09-25 20:50 Arpad Biro <biro_arpad at yahoo.com>
* po/hu.po: update
2007-09-25 20:41 jure
* po/sl.po: Updated Slovenian translation
2007-09-25 20:41 Reinout van Schouwen <reinout at cs.vu.nl>
* po/nl.po: * 2007-09-25 Reinout van Schouwen
- nl.po: Updated Dutch translation
2007-09-25 20:32 Thierry Vignaud <tvignaud at mandriva.com>
* Makefile: add a "dis" target
2007-09-25 20:30 Thierry Vignaud <tvignaud at mandriva.com>
* Makefile, NEWS: 0.18
2007-09-25 20:28 Michal Bukovjan <bukovjan at mbox.dkm.cz>
* po/cs.po: Updated Czech translation.
2007-09-25 19:58 Thierry Vignaud <tvignaud at mandriva.com>
* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
po/da.po, po/de.po, po/drakx-net.pot, po/el.po, po/eo.po,
po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po,
po/fur.po, po/ga.po, po/gl.po, po/he.po, po/hi.po, po/hr.po,
po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po,
po/ky.po, po/lt.po, po/ltg.po, po/lv.po, po/mk.po, po/mn.po,
po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po,
po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po,
po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po,
po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po, po/uk.po,
po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po,
po/zh_TW.po: sync with code
2007-09-25 19:57 Thierry Vignaud <tvignaud at mandriva.com>
* lib/network/netcenter.pm, po/af.po, po/am.po, po/ar.po, po/az.po,
po/be.po, po/bg.po, po/bn.po, po/br.po, po/bs.po, po/ca.po,
po/cs.po, po/cy.po, po/da.po, po/de.po, po/drakx-net.pot,
po/el.po, po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po,
po/fi.po, po/fr.po, po/fur.po, po/ga.po, po/gl.po, po/he.po,
po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po,
po/ja.po, po/ko.po, po/ky.po, po/lt.po, po/ltg.po, po/lv.po,
po/mk.po, po/mn.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po,
po/nn.po, po/pa_IN.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po,
po/ru.po, po/sc.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po,
po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tl.po,
po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po,
po/zh_CN.po, po/zh_TW.po: add context for "Monitor" (#33773)
2007-09-25 16:29 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.17
2007-09-25 16:01 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: remove unused variable
2007-09-25 16:01 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: fix prototype
2007-09-25 15:55 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: run net center instead of simple menu on left
click
2007-09-25 15:16 Thierry Vignaud <tvignaud at mandriva.com>
* po/cy.po: update (Rhoslyn Prys)
2007-09-24 17:55 Thierry Vignaud <tvignaud at mandriva.com>
* NEWS: better changelog
2007-09-24 10:46 Thierry Vignaud <tvignaud at mandriva.com>
* NEWS, bin/net_monitor: (draw_monitor) fix crash (#33023)
However, there's a race window on "gtkflush() while $isconnected
== -2
|| $isconnected == -1" where net_monitor can continue executing
(with an empty window):
Gtk-CRITICAL **: gtk_main_quit: assertion `main_loops != NULL'
failed at
/usr/lib/libDrakX/mygtk2.pm line 915.
kid exited -1 at /usr/lib/libDrakX/run_program.pm line 167.
Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL
(label)' failed at
./bin/net_monitor line 468.
Gtk-CRITICAL **: gtk_label_set_text: assertion `GTK_IS_LABEL
(label)' failed at
./bin/net_monitor line 469.
2007-09-24 01:24 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
* po/pt_BR.po: important pt_BR fix
2007-09-22 19:02 Shiva Huang <blueshiva at giga.net.tw>
* po/zh_TW.po: updated po file
2007-09-22 18:24 Shiva Huang <blueshiva at giga.net.tw>
* po/zh_TW.po: updated po file
2007-09-20 04:39 Funda Wang <fundawang at linux.net.cn>
* po/cy.po: Updated cy translation
2007-09-20 00:46 jure
* po/sl.po: Updated Slovenian translation
2007-09-19 23:26 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.16
2007-09-19 23:20 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: add banner in configure dialog
(#33622)
2007-09-19 23:19 Olivier Blin <oblin at mandriva.com>
* lib/network/connection.pm, lib/network/connection/cable.pm,
lib/network/connection/cellular_bluetooth.pm,
lib/network/connection/cellular_card.pm,
lib/network/connection/dvb.pm,
lib/network/connection/ethernet.pm,
lib/network/connection/isdn.pm, lib/network/connection/pots.pm,
lib/network/connection/wireless.pm,
lib/network/connection/xdsl.pm: do not hardcode icon size in
get_type_icon implementation, make it optional
2007-09-19 22:39 Olivier Blin <oblin at mandriva.com>
* bin/drakconnect, bin/draknetcenter, bin/drakroam: remove my mess
2007-09-19 22:38 Olivier Blin <oblin at mandriva.com>
* bin/drakconnect, bin/draknetcenter, bin/drakroam,
lib/network/connection_manager.pm, lib/network/netcenter.pm:
update status icon on connection change
2007-09-19 22:33 Olivier Blin <oblin at mandriva.com>
* bin/draknetcenter, lib/network/netcenter.pm: update connection
status on dbus event
2007-09-19 22:31 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: group cmanagers in a list
2007-09-19 22:09 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: always allow to connect if no
network has to be selected
2007-09-19 22:09 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: fix connection stop
2007-09-19 22:02 acelli
* po/it.po: update translation for Italian
2007-09-19 21:35 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: remove toggle button
2007-09-19 19:58 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/xdsl.pm: show notification about cxacru
firmware
2007-09-19 19:58 Olivier Blin <oblin at mandriva.com>
* lib/network/thirdparty.pm: add extra space between explanations
strings
2007-09-19 19:46 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/xdsl.pm: simplify
2007-09-19 15:54 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: do not die when no wireless
interface is configured (#33123)
2007-09-19 15:39 Olivier Blin <oblin at mandriva.com>
* bin/net_applet, data/pixmaps/connected.png,
data/pixmaps/disconnected.png, data/pixmaps/unconfigured.png: use
new connected/disconnected/unconfigured icons
2007-09-19 14:47 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/xdsl.pm: fix matching of ueagle_atm module
(#33029)
2007-09-19 14:47 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/xdsl.pm: do not match eagle-usb anymore
2007-09-17 22:16 Arpad Biro <biro_arpad at yahoo.com>
* po/hu.po: update
2007-09-17 15:52 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/wireless.pm: wait a bit for
iwl3945/iwl4965 interfaces to appear
2007-09-17 15:40 Olivier Blin <oblin at mandriva.com>
* lib/network/thirdparty.pm: always load module in thirdparty's
apply_settings (so that thirdparty "sleep" setting is taken in
account)
2007-09-17 15:39 Olivier Blin <oblin at mandriva.com>
* lib/network/thirdparty.pm: indent
2007-09-17 13:49 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
* po/pt_BR.po: update pt_BR
2007-09-17 04:43 Funda Wang <fundawang at linux.net.cn>
* po/et.po: Updated et translation
2007-09-16 11:19 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-09-15 22:33 ybando
* po/ja.po: Japanese translation updated.
2007-09-15 21:47 kmashrab
* po/uz.po, po/uz@Latn.po: New translation.
2007-09-15 19:44 Reinout van Schouwen <reinout at cs.vu.nl>
* po/nl.po: * 2007-09-15 Reinout van Schouwen <reinouts@gnome.org>
- nl.po: Updated Dutch translation
2007-09-15 14:25 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
* po/pl.po: update
2007-09-15 09:20 Michal Bukovjan <bukovjan at mbox.dkm.cz>
* po/cs.po: Updated Czech translation.
2007-09-15 07:26 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
* po/pl.po: update
2007-09-15 01:18 mmodem
* po/pt.po: up
2007-09-15 01:00 Funda Wang <fundawang at linux.net.cn>
* lib/network/connection_manager.pm, po/af.po, po/am.po, po/ar.po,
po/az.po, po/be.po, po/bg.po, po/bn.po, po/br.po, po/bs.po,
po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
po/drakx-net.pot, po/el.po, po/eo.po, po/es.po, po/et.po,
po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po,
po/gl.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po,
po/is.po, po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po,
po/ltg.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po,
po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po, po/pt.po,
po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po, po/sk.po, po/sl.po,
po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po,
po/th.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po,
po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: Mark title of
Network settings dialog as translatable
2007-09-14 18:14 jure
* po/sl.po: Updated Slovenian translation
2007-09-14 11:43 Per Øyvind Karlsen <peroyvind at mandriva.org>
* po/nb.po: update with translation from Helge Ingvoldstad
- cleanups
- sync with nn translation (thx huftis!)
2007-09-13 20:59 acelli
* po/it.po: update translation for Italian
2007-09-13 13:18 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: rename notconfigured as unconfigured
2007-09-12 15:10 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
* po/pt.po, po/pt_BR.po: Updated pt_BR translations, based on
pt.po.
Small fixes for pt.po.
2007-09-11 22:38 Reinout van Schouwen <reinout at cs.vu.nl>
* po/nl.po: 2007-09-12 Reinout van Schouwen <reinouts@gnome.org>
- nl.po: updated Dutch translation
2007-09-11 21:14 Arpad Biro <biro_arpad at yahoo.com>
* po/hu.po: update
2007-09-11 21:02 Wanderlei Antonio Cavassin <cavassin at mandriva.com>
* po/pt_BR.po: Updated pt_BR translation
2007-09-10 18:51 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.15
2007-09-10 16:15 Olivier Blin <oblin at mandriva.com>
* NEWS, bin/draknfs, bin/draksambashare: use translations in
draknfs/draksambashare (#33221)
2007-09-10 12:39 Olivier Blin <oblin at mandriva.com>
* NEWS, lib/network/netcenter.pm: do not show markup instead of
interface name if interface does not exist (#33241)
2007-09-10 12:35 Olivier Blin <oblin at mandriva.com>
* lib/network/connection.pm, lib/network/netcenter.pm: fallback on
type icon if no status icon is available
2007-09-10 12:23 Olivier Blin <oblin at mandriva.com>
* data/pixmaps/bluethooth-24-off.png,
data/pixmaps/bluethooth-24-on.png,
data/pixmaps/bluethooth-24-w.png,
data/pixmaps/bluetooth-24-off.png,
data/pixmaps/bluetooth-24-on.png,
data/pixmaps/bluetooth-24-w.png, data/pixmaps/modem-24-off.png,
data/pixmaps/modem-24-on.png, data/pixmaps/modem-24-w.png,
data/pixmaps/potsmodem-24-off.png,
data/pixmaps/potsmodem-24-on.png,
data/pixmaps/potsmodem-24-w.png: fix some icon names
2007-09-10 12:02 Olivier Blin <oblin at mandriva.com>
* NEWS: supplement NEWS
2007-09-10 12:01 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: add quit button
2007-09-10 11:55 Olivier Blin <oblin at mandriva.com>
* NEWS, lib/network/netcenter.pm: use new status icons
2007-09-10 11:54 Olivier Blin <oblin at mandriva.com>
* lib/network/connection.pm: add get_status_icon()
2007-09-10 11:47 Olivier Blin <oblin at mandriva.com>
* data/pixmaps/bluethooth-24-off.png,
data/pixmaps/bluethooth-24-on.png,
data/pixmaps/bluethooth-24-w.png,
data/pixmaps/cellular-24-off.png,
data/pixmaps/cellular-24-on.png, data/pixmaps/cellular-24-w.png,
data/pixmaps/dvb-24-off.png, data/pixmaps/dvb-24-on.png,
data/pixmaps/dvb-24-w.png, data/pixmaps/ethernet-24-off.png,
data/pixmaps/ethernet-24-on.png, data/pixmaps/ethernet-24-w.png,
data/pixmaps/isdn-24-off.png, data/pixmaps/isdn-24-on.png,
data/pixmaps/isdn-24-w.png, data/pixmaps/modem-24-off.png,
data/pixmaps/modem-24-on.png, data/pixmaps/modem-24-w.png,
data/pixmaps/wireless-24-off.png,
data/pixmaps/wireless-24-on.png, data/pixmaps/wireless-24-w.png,
data/pixmaps/xdsl-24-off.png, data/pixmaps/xdsl-24-on.png,
data/pixmaps/xdsl-24-w.png: add status icons
2007-09-10 10:10 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/ethernet.pm: add reminder
2007-09-10 10:09 Olivier Blin <oblin at mandriva.com>
* bin/drakconnect, bin/drakgw, bin/drakids, bin/drakvpn-old,
bin/net_applet, lib/network/connection.pm,
lib/network/connection/cable.pm,
lib/network/connection/cellular_bluetooth.pm,
lib/network/connection/cellular_card.pm,
lib/network/connection/dvb.pm,
lib/network/connection/ethernet.pm,
lib/network/connection/isdn.pm, lib/network/connection/pots.pm,
lib/network/connection/wireless.pm,
lib/network/connection/xdsl.pm,
lib/network/connection_manager.pm,
lib/network/signal_strength.pm: do not hardcode icon extension
and path
2007-09-10 10:03 Olivier Blin <oblin at mandriva.com>
* bin/drakids: really use window icon
2007-09-09 22:41 kamberd
* po/he.po: update translation for Hebrew
2007-09-09 10:59 jure
* po/sl.po: Updated Slovenian translation
2007-09-08 22:59 kamberd
* po/he.po: update translation for Hebrew
2007-09-08 22:56 Michal Bukovjan <bukovjan at mbox.dkm.cz>
* po/cs.po: Fix a mistranslation.
2007-09-08 22:47 Michal Bukovjan <bukovjan at mbox.dkm.cz>
* po/cs.po: Updated Czech translation.
2007-09-07 23:56 kmashrab
* po/uz.po, po/uz@Latn.po: New translations.
2007-09-07 12:47 Tomasz Bednarski <tbednarski at mandrivalinux.pl>
* po/pl.po: update
2007-09-06 05:35 Funda Wang <fundawang at linux.net.cn>
* po/zh_CN.po: Updated zh_CN translation
2007-09-03 09:02 Thierry Vignaud <tvignaud at mandriva.com>
* po/br.po: update
2007-09-02 12:36 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-09-01 16:46 berthy
* po/fr.po: Update fr translation
2007-09-01 13:11 Marek Laane <bald at starman.ee>
* po/et.po: Updated Estonian translation.
2007-08-30 09:38 ybando
* po/ja.po: Japanese translation updated.
2007-08-29 16:51 nbauer
* po/de.po: Update German translation (Nicolas Bauer)
2007-08-28 22:18 mmodem
* po/pt.po: up
2007-08-28 20:16 kamberd
* po/he.po: update translation for Hebrew
2007-08-28 09:28 Thierry Vignaud <tvignaud at mandriva.com>
* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
po/da.po, po/de.po, po/drakx-net.pot, po/el.po, po/eo.po,
po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po,
po/fur.po, po/ga.po, po/gl.po, po/he.po, po/hi.po, po/hr.po,
po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po,
po/ky.po, po/lt.po, po/ltg.po, po/lv.po, po/mk.po, po/mn.po,
po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po,
po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po,
po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po,
po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po, po/uk.po,
po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po,
po/zh_TW.po: sync with code
2007-08-28 03:10 mmodem
* po/pt.po: update
2007-08-27 23:55 kamberd
* po/he.po: update translation for Hebrew
2007-08-27 23:00 Reinout van Schouwen <reinout at cs.vu.nl>
* po/nl.po: Updated Dutch translation
2007-08-25 10:07 berthy
* po/fr.po: Update fr translation
2007-08-21 23:53 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.14
2007-08-21 23:33 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: move refresh button to be consistent
2007-08-21 23:28 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: add per-connection expander
2007-08-21 22:22 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: move buttons on one row
2007-08-21 20:07 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: always show interfaces in left-click menu
2007-08-21 20:04 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: do not show empty menus
2007-08-20 23:49 Olivier Blin <oblin at mandriva.com>
* NEWS: oops, fix indentation level
2007-08-20 23:41 Olivier Blin <oblin at mandriva.com>
* Makefile, NEWS: 0.13
2007-08-20 23:31 Olivier Blin <oblin at mandriva.com>
* Makefile: install draknetcenter
2007-08-20 23:30 Olivier Blin <oblin at mandriva.com>
* bin/draknetcenter: require to be root
2007-08-20 23:29 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: oops, revert debug code
2007-08-20 23:28 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm, lib/network/netcenter.pm: do
not use big titles, only bold labels
2007-08-20 20:20 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: split status bar code from dbus code
2007-08-20 20:19 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: remove unaccurate comment
2007-08-20 20:18 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: modify image (if any) for
toggle button when toggled
2007-08-20 20:18 Olivier Blin <oblin at mandriva.com>
* lib/network/connection.pm: replace pipe characters with space in
device descriptions
2007-08-20 20:14 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: use new mygtk image features instead of
custom function
2007-08-20 19:50 Olivier Blin <oblin at mandriva.com>
* lib/network/connection/wireless.pm: use '_' in module names
2007-08-20 18:55 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: set spacing of 6 pixels between buttons
(as recommended by Gnome HIG)
2007-08-20 18:41 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: add a "Please select your network:"
label on top of network list
2007-08-20 18:38 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: try a white background (base color) on
containers
2007-08-20 18:13 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: remove scrolled window shadow
2007-08-20 18:12 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: put networks list in a frame
2007-08-20 18:09 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: add interface name
2007-08-20 18:04 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: revert to "standard" window width
2007-08-20 18:04 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: ellipsize description label
2007-08-20 16:44 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: move refresh button on the left to have
a consistent look
2007-08-20 16:43 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: reorganize interface:
- move type icons in front of labels
- add HSeparator between connections
- add text in buttons
- move buttons on two different rows
- align buttons on the right
2007-08-20 09:57 Olivier Blin <oblin at mandriva.com>
* lib/network/monitor.pm: pre-set Managed mode for access points
detected as Master (#30303)
2007-08-19 00:13 kamberd
* po/he.po: update translation for Hebrew
2007-08-17 01:36 ybando
* po/ja.po: Japanese translation updated.
2007-08-14 16:32 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-08-14 14:08 Marek Laane <bald at starman.ee>
* po/et.po: Updated Estonian translation.
2007-08-13 18:06 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: use connection type with lower metric
first
2007-08-13 17:43 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: allow to run configure if type
can't get networks
2007-08-13 17:39 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: update start/stop icons
2007-08-13 17:38 Olivier Blin <oblin at mandriva.com>
* data/icons/activate-16.png, data/icons/activate-24.png,
data/icons/active-16.png, data/icons/active-24.png: rename active
icon as activate
2007-08-13 17:11 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-08-13 17:01 Olivier Blin <oblin at mandriva.com>
* data/icons/active-16.png, data/icons/active-24.png,
data/icons/ok-16.png, data/icons/ok-24.png,
data/icons/remove-16.png, data/icons/remove-24.png: add new icons
2007-08-13 16:51 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm, lib/network/drakroam.pm:
rename prepare_connection as setup_connection (to avoid confusion
with network::connection::prepare_connection)
2007-08-13 16:41 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm: allow to start connection if
the type can't get networks
2007-08-12 12:11 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-08-12 10:07 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-08-11 22:58 kmashrab
* po/uz.po, po/uz@Latn.po: New translations.
2007-08-10 20:53 Inigo Salvador Azurmendi <xalba at euskalnet.net>
* po/eu.po: update translation for basque (euskara)
2007-08-10 17:17 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm, lib/network/netcenter.pm: run
net_monitor when configure button is clicked
2007-08-10 17:12 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: fix typo
2007-08-09 20:17 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm, lib/network/netcenter.pm:
rename update_on_network_change as update_on_status_change (we do
not necessarily have multiple networks)
2007-08-09 20:14 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: connect buttons with connection manager
actions
2007-08-09 20:07 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: remove spurious "button"
2007-08-09 20:06 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: add a button to stop connection
2007-08-09 20:02 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: build a cmanager even if no network
list is shown
2007-08-09 19:50 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: replace most used modules by
connection_manager
2007-08-09 19:47 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm, lib/network/drakroam.pm: move
more code in network::connection_manager
2007-08-09 19:47 Olivier Blin <oblin at mandriva.com>
* lib/network/connection_manager.pm, lib/network/netcenter.pm:
rename droam as cmanager where appropriate
2007-08-09 19:42 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: revert unwanted commit
2007-08-09 19:42 Olivier Blin <oblin at mandriva.com>
* bin/drakroam, lib/network/connection_manager.pm,
lib/network/drakroam.pm, lib/network/netcenter.pm: move
connection management code of drakroam in new
network::connection_manager
2007-08-09 19:19 Olivier Blin <oblin at mandriva.com>
* .perl_checker: update perl_checker blacklist
2007-08-09 18:49 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: fix pixbufs (oops)
2007-08-09 18:28 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: add start/stop buttons
2007-08-09 13:00 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: rename connect as connect_toggle
2007-08-09 09:51 Olivier Blin <oblin at mandriva.com>
* bin/draknetcenter, lib/network/drakroam.pm,
lib/network/netcenter.pm: reorganize to share pixbufs in
draknetcenter
2007-08-09 09:48 Thierry Vignaud <tvignaud at mandriva.com>
* po/fr.po: minor update
2007-08-09 09:48 Thierry Vignaud <tvignaud at mandriva.com>
* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
po/da.po, po/de.po, po/drakx-net.pot, po/el.po, po/eo.po,
po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po,
po/fur.po, po/ga.po, po/gl.po, po/he.po, po/hi.po, po/hr.po,
po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po,
po/ky.po, po/lt.po, po/ltg.po, po/lv.po, po/mk.po, po/mn.po,
po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po,
po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po,
po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po,
po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po, po/uk.po,
po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po,
po/zh_TW.po: sync with code
2007-08-08 23:12 kamberd
* po/he.po: update translation for Hebrew
2007-08-08 17:21 nvigier
* bin/draknfs: - add subtree_check option
- fix bug with sync/async option
- fix more calls to nfs service renamed to nfs-server
2007-08-08 15:37 nvigier
* bin/draksambashare: use exit instead of return as we're not in a
subroutine (fix bug #32374)
2007-08-08 15:27 nvigier
* bin/draknfs: use exit instead of return as we're not in a
subroutine
2007-08-08 15:03 nvigier
* bin/draknfs: - fix path for do_pkgs->ensure_is_installed :
/sbin/rpc.statd
is from nfs-utils-client package, not nfs-utils
- nfs service was renamed to nfs-server for 2008.0
2007-08-06 16:02 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: remove encryption flags column in
networks list
2007-08-06 15:54 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: show signal strength and encryption
flags as tooltip for networks list
2007-08-06 13:25 Thierry Vignaud <tvignaud at mandriva.com>
* bin/net_applet: add "\n" to exception in order not to fire up
drakbug (#32292)
2007-08-06 13:17 Thierry Vignaud <tvignaud at mandriva.com>
* bin/net_applet: prevent firing up drakbug when automatic startup
is disabled (#32292)
2007-08-03 16:13 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: add some space between widgets
2007-08-03 14:29 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: simplify
2007-08-03 14:27 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: remove unused parentheses
2007-08-03 14:26 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: use more drakroam code
2007-08-03 14:25 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: allow to filter networks
2007-08-03 14:24 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: do not modify buttons if not present
2007-08-03 14:14 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: move network list code in
build_network_frame() so that net center can build one network
list per interface
2007-08-03 13:33 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: use drakroam pixbuf code
2007-08-03 13:33 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: split pixbufs code out
2007-08-03 12:58 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: use title2 for descriptions
2007-08-03 12:58 Olivier Blin <oblin at mandriva.com>
* lib/network/netcenter.pm: re-organize boxes
2007-08-03 12:37 Olivier Blin <oblin at mandriva.com>
* lib/network/drakroam.pm: pass droam variable
2007-08-03 12:34 Olivier Blin <oblin at mandriva.com>
* bin/drakroam, lib/network/drakroam.pm: move drakroam code in
network::drakroam
2007-08-03 12:30 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: move most initialization code in a main sub
2007-08-03 12:18 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: simplify
2007-08-03 12:14 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: move gui stuff in build_drakroam_gui
2007-08-03 12:06 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: move net in droam hash
2007-08-03 12:04 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: move interactive object in droam
2007-08-03 12:01 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: pass droam variable to subs
2007-08-03 10:22 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: group gui initialization
2007-08-03 10:21 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: move $w in $droam->{gui}
2007-08-03 10:19 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: further groupir
2007-08-03 10:12 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: group gui/args/dbus initialization stuff
2007-08-03 10:11 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: move gui items in $droam->{gui}
2007-08-03 10:04 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: remove duplicate initialization
2007-08-03 10:02 Olivier Blin <oblin at mandriva.com>
* bin/drakroam: put $connection and @connections in a droam hash
2007-08-03 09:07 Olivier Blin <oblin at mandriva.com>
* bin/draknetcenter: do not use local "lib" directory
2007-08-03 09:07 Olivier Blin <oblin at mandriva.com>
* bin/draknetcenter, lib/network/netcenter.pm: move draknetcenter
code in network::netcenter
2007-08-03 08:54 Olivier Blin <oblin at mandriva.com>
* bin/draknetcenter: move code in a main() sub
2007-08-03 08:50 Olivier Blin <oblin at mandriva.com>
* .perl_checker: update perl_checker skip list for draknetcenter
2007-08-02 18:50 Karl Ove Hufthammer <karl at huftis.org>
* po/nn.po: Updated Norwegian Nynorsk translation.
2007-08-02 18:35 Olivier Blin <oblin at mandriva.com>
* NEWS, lib/network/connection/wireless.pm: add iwl3945/iwl4965
support to replace ipw3945
2007-08-02 18:34 Olivier Blin <oblin at mandriva.com>
* NEWS: supplement NEWS
2007-08-01 21:41 Thierry Vignaud <tvignaud at mandriva.com>
* data/net_applet.desktop: disable notifications (#18965)
2007-07-30 15:00 Thierry Vignaud <tvignaud at mandriva.com>
* NEWS, scripts/net_applet.xinit: fix startup with XFCE (#31834)
2007-07-18 23:30 kamberd
* po/he.po: update translation for Hebrew
2007-07-08 11:30 Olivier Blin <oblin at mandriva.com>
* bin/net_applet: use "Help" instead of "Get Online Help" since the
doc is local (thanks damsweb)
2007-05-31 11:21 Antoine Ginies <aginies at mandriva.com>
* bin/draksambashare: fix #30099 (draksambashare bad testing for
existing shares)
2007-05-25 15:39 Olivier Blin <oblin at mandriva.com>
* .perl_checker, Makefile, NEWS, bin/.perl_checker,
bin/drakconnect, bin/drakfirewall, bin/drakgw, bin/drakhosts,
bin/drakids, bin/drakinvictus, bin/draknetcenter,
bin/draknetprofile, bin/draknfs, bin/drakproxy, bin/drakroam,
bin/draksambashare, bin/drakvpn, bin/drakvpn-old, bin/net_applet,
bin/net_monitor, config, config/drakroam.console,
config/drakroam.pamd, data/icons/configure-16.png,
data/icons/configure-24.png, data/icons/draknetprofile-16.png,
data/icons/draknetprofile-24.png,
data/icons/draknetprofile-32.png,
data/icons/draknetprofile-52.png,
data/icons/draknetprofile-64.png, data/icons/draknetprofile.png,
data/icons/draknetprofile_128.png, data/icons/drakvpn-16.png,
data/icons/drakvpn-24.png, data/icons/drakvpn-32.png,
data/icons/drakvpn-52.png, data/icons/drakvpn-64.png,
data/icons/drakvpn.png, data/icons/drakvpn_128.png,
data/icons/invictus-16.png, data/icons/invictus-24.png,
data/icons/invictus-32.png, data/icons/invictus-52.png,
data/icons/invictus-64.png, data/icons/invictus.png,
data/icons/invictus_128.png, data/icons/monitor-16.png,
data/icons/monitor-24.png, data/net_applet.desktop,
data/pixmaps/bluetooth-128.png, data/pixmaps/bluetooth-16.png,
data/pixmaps/bluetooth-24.png, data/pixmaps/bluetooth-32.png,
data/pixmaps/bluetooth-48.png, data/pixmaps/bluetooth-52.png,
data/pixmaps/bluetooth-64.png, data/pixmaps/cablemodem-128.png,
data/pixmaps/cablemodem-16.png, data/pixmaps/cablemodem-24.png,
data/pixmaps/cablemodem-32.png, data/pixmaps/cablemodem-48.png,
data/pixmaps/cablemodem-52.png, data/pixmaps/cablemodem-64.png,
data/pixmaps/cellular-128.png, data/pixmaps/cellular-16.png,
data/pixmaps/cellular-24.png, data/pixmaps/cellular-32.png,
data/pixmaps/cellular-48.png, data/pixmaps/cellular-52.png,
data/pixmaps/cellular-64.png, data/pixmaps/dvb-128.png,
data/pixmaps/dvb-16.png, data/pixmaps/dvb-24.png,
data/pixmaps/dvb-32.png, data/pixmaps/dvb-48.png,
data/pixmaps/dvb-52.png, data/pixmaps/dvb-64.png,
data/pixmaps/encryption-open-24.png,
data/pixmaps/encryption-strong-24.png,
data/pixmaps/encryption-weak-24.png,
data/pixmaps/ethernet-128.png, data/pixmaps/ethernet-16.png,
data/pixmaps/ethernet-24.png, data/pixmaps/ethernet-32.png,
data/pixmaps/ethernet-48.png, data/pixmaps/ethernet-52.png,
data/pixmaps/ethernet-64.png, data/pixmaps/isdn-128.png,
data/pixmaps/isdn-16.png, data/pixmaps/isdn-24.png,
data/pixmaps/isdn-32.png, data/pixmaps/isdn-48.png,
data/pixmaps/isdn-52.png, data/pixmaps/isdn-64.png,
data/pixmaps/potsmodem-128.png, data/pixmaps/potsmodem-16.png,
data/pixmaps/potsmodem-24.png, data/pixmaps/potsmodem-32.png,
data/pixmaps/potsmodem-48.png, data/pixmaps/potsmodem-52.png,
data/pixmaps/potsmodem-64.png, data/pixmaps/wireless-128.png,
data/pixmaps/wireless-16.png, data/pixmaps/wireless-24.png,
data/pixmaps/wireless-32.png, data/pixmaps/wireless-48.png,
data/pixmaps/wireless-52.png, data/pixmaps/wireless-64.png,
data/pixmaps/xdsl-128.png, data/pixmaps/xdsl-16.png,
data/pixmaps/xdsl-24.png, data/pixmaps/xdsl-32.png,
data/pixmaps/xdsl-48.png, data/pixmaps/xdsl-52.png,
data/pixmaps/xdsl-64.png, lib/network/.perl_checker,
lib/network/adsl.pm, lib/network/adsl_consts.pm,
lib/network/connection, lib/network/connection.pm,
lib/network/connection/cable.pm,
lib/network/connection/cellular.pm,
lib/network/connection/cellular_bluetooth.pm,
lib/network/connection/cellular_card.pm,
lib/network/connection/dvb.pm,
lib/network/connection/ethernet.pm, lib/network/connection/isdn,
lib/network/connection/isdn.pm,
lib/network/connection/isdn/consts.pm,
lib/network/connection/pots.pm, lib/network/connection/ppp.pm,
lib/network/connection/providers,
lib/network/connection/providers/cellular.pm,
lib/network/connection/providers/xdsl.pm,
lib/network/connection/wireless.pm,
lib/network/connection/xdsl.pm, lib/network/drakfirewall.pm,
lib/network/drakvpn.pm, lib/network/ethernet.pm,
lib/network/ifw.pm, lib/network/invictus.pm,
lib/network/ipsec.pm, lib/network/isdn.pm,
lib/network/isdn_consts.pm, lib/network/modem.pm,
lib/network/monitor.pm, lib/network/ndiswrapper.pm,
lib/network/netconnect.pm, lib/network/network.pm,
lib/network/rfswitch.pm, lib/network/shorewall.pm,
lib/network/signal_strength.pm, lib/network/squid.pm,
lib/network/test.pm, lib/network/thirdparty.pm,
lib/network/tools.pm, lib/network/vpn, lib/network/vpn.pm,
lib/network/vpn/openvpn.pm, lib/network/vpn/vpnc.pm,
lib/network/wireless.pm, po, po/Makefile, po/af.po, po/am.po,
po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po, po/br.po,
po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
po/drakx-net.pot, po/el.po, po/eo.po, po/es.po, po/et.po,
po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po,
po/gl.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po,
po/is.po, po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po,
po/ltg.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po,
po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po, po/pt.po,
po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po, po/sk.po, po/sl.po,
po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po,
po/th.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po,
po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po,
scripts/net_applet.xinit: sync with 2007.1 (because of SVN loss)
2007-04-25 12:26 Pixel <pixel at mandriva.com>
* data/icons, data/icons/IC-Dhost-48.png, data/icons/IC-NFS-48.png,
data/icons/IC-sambaprt-16.png, data/icons/IC-winacces1-48.png,
data/icons/IC-winacces2-16.png, data/icons/drakconnect.png,
data/icons/drakfirewall.png, data/icons/drakgw.png,
data/icons/drakvpn.png, data/pixmaps, data/pixmaps/connected.png,
data/pixmaps/disconnected.png, data/pixmaps/wifi-020.png,
data/pixmaps/wifi-040.png, data/pixmaps/wifi-060.png,
data/pixmaps/wifi-080.png, data/pixmaps/wifi-100.png,
lib/network, lib/network/nfs.pm, lib/network/smb.pm,
lib/network/smbnfs.pm: re-sync after the big svn loss
2007-04-25 10:14 Pixel <pixel at mandriva.com>
* data, data/net_applet.desktop, scripts: oops, wrongly moved to
drakx-kbd-mouse-x11 instead of drakx-net
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/net_monitor: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/net_applet: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakvpn: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/draksambashare: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakroam: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakproxy: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/draknfs: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakids: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakhosts: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakgw: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakfirewall: re-sync after the big svn loss
2007-04-25 10:08 Pixel <pixel at mandriva.com>
* bin/drakconnect: re-sync after the big svn loss
2007-04-25 10:07 Pixel <pixel at mandriva.com>
* bin: re-sync after the big svn loss
2007-04-25 10:07 Pixel <pixel at mandriva.com>
* lib: re-sync after the big svn loss
2007-04-25 10:06 Pixel <pixel at mandriva.com>
* .: re-sync after the big svn loss
|