-
Notifications
You must be signed in to change notification settings - Fork 9
/
ChangeLog
10038 lines (8868 loc) · 416 KB
/
ChangeLog
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
2011-08-17 Michal Pryc <[email protected]>
* configure.in: Bump to 1.174.0
2011-08-10 Yong Sun <[email protected]>
* po/*.po: updated UI message translation for drop 5.0.
2011-08-03 Yong Sun <[email protected]>
Added OLH translations from drop 4.0 based on b169.
* help/zh_CN/zh_CN.po
* help/zh_HK/zh_HK.po
* help/pt_BR/pt_BR.po
* help/fr/fr.po
* help/es/es.po
* help/de/de.po
* help/ko/ko.po
* help/ja/ja.po
* help/zh_TW/zh_TW.po
* help/it/it.po
* help/Makefile.am:
2011-07-20 Lin Ma <[email protected]>
* capplet/nwam_location_dialog.c: (nwam_location_dialog_init),
(refresh), (apply), (daemon_env_selection_mode_changed):
* common/nwamui_daemon.c:
(nwamui_daemon_handle_object_action_event),
(nwamui_daemon_handle_object_state_event):
Should not use action_event to change nwamui object states, use
state_event instead. Action_events come out earlier than
state_events, and the latter is more accurate for GUI.
Fixed 7063887 [nwam] cannot select to switch locations
automatically unless user also selects automatic
location. Location dialog need monitor daemon "env_selection_mode"
notification to update selection mode.
2011-07-20 Lin Ma <[email protected]>
* capplet/nwam_tree_view.c: (on_add_btn_clicked),
(on_remove_btn_clicked), (on_dup_btn_clicked), (on_up_btn_clicked),
(on_down_btn_clicked), (nwam_tree_view_selection_changed_cb),
(nwam_tree_view_update_buttons_status):
* capplet/nwam_tree_view.h:
* capplet/nwam_vpn_pref_dialog.c: (vpn_pref_clicked_cb),
(nwam_vpn_state_cell_cb):
Fixed delete/rename buttons are sensitive when read-only objects
are selected for vpn dialog.
2011-07-19 Lin Ma <[email protected]>
* capplet/nwam_location_dialog.c: (nwam_treeview_update_widget_cb):
* capplet/nwam_profile_panel.c: (nwam_treeview_update_widget_cb):
* capplet/nwam_tree_view.c: (nwam_tree_view_row_selected_cb),
(nwam_tree_view_selection_changed_cb), (update_buttons_status):
* capplet/nwam_vpn_pref_dialog.c: (vpn_pref_clicked_cb),
(nwam_vpn_selection_changed):
* common/nwamui_env.c: (nwamui_env_class_init),
(nwamui_object_real_destroy), (nwamui_object_real_is_modifiable):
* common/nwamui_ncp.c: (nwamui_object_real_is_modifiable):
Fixed delete/rename buttons are sensitive when read-only objects
are selected.
2011-07-19 Lin Ma <[email protected]>
* common/libnwamui.c: (nwamui_util_validate_text_entry): Fixed
7058818 source error: double ":" appear in nwam-manager.pot
* daemon/nwam-menuitem.c: (nwam_menu_item_class_init): Fixed
7058816 [ID 186262]source error: addtional hyphen "proxy-object"
in nwam-manager.pot
2011-07-18 Lin Ma <[email protected]>
* data/nwam-manager-properties: Fixed 7066511 [nwam] user with
Network Manage profiles needs root password to launch
nwam-manager-properties
2011-07-14 Yong Sun <[email protected]>
* po/zh_TW.po:
* po/zh_HK.po:
updated the Traditional Chinese translations.
2011-07-14 Yong Sun <[email protected]>
* po/*.po: updated UI message translation for drop 4.0.
2011-07-04 Michal Pryc <[email protected]>
* common/nwam-scf.c:
* common/nwam-scf.h:
* common/nwamui_daemon.c:
Compability change to allow build those sources on the
Source Juicer builds clients prior to 170. - FOLLOW-UP
2011-07-01 Michal Pryc <[email protected]>
* common/nwam-scf.c:
* common/nwam-scf.h:
* common/nwamui_daemon.c:
Compability change to allow build those sources on the
Source Juicer builds clients prior to 170.
This can be reverted once minilander is integrated
with Solaris.
2011-07-01 Michal Pryc <[email protected]>
* configure.in: Bump to 1.170.0
* common/nwam-scf.c:
* common/nwam-scf.h:
* common/nwamui_daemon.c:
* common/Makefile.am:
* daemon/notify.c:
* data/nwam-manager-properties:
Updated to fit minilander project and fix CR 7029824.
2011-06-27 Michal Pryc <[email protected]>
* capplet/nwam_conn_stat_panel.c:
* capplet/nwam_pref_dialog.c:
* capplet/nwam_tree_view.c:
* capplet/nwam_vpn_pref_dialog.c:
* daemon/notify.c:
* data/nwam-manager-properties:
* ui/nwam-manager-properties.ui:
* configure.in:
Updated strings and dialogs for the Highlander project,
Bug fixes for CR:7042517 and CR 7026071
Bump the version to 1.164.1
2011-06-27 Lin Ma <[email protected]>
* capplet/nwam_profile_panel.c: (nwam_profile_panel_set_property),
(apply), (nwam_profile_panel_finalize),
(nwam_object_activate_toggled_cb),
(nwam_object_toggled_cell_sensitive_func): Removed #if 0 blocks.
* help/C/nwam-manager.xml: Merged CR#7042534.
2011-06-22 Yong Sun <[email protected]>
* po/*.po: updated message translation.
2011-06-22 Lin Ma <[email protected]>
* capplet/nwam_rules_dialog.c (dialog_get_window),
(nwam_pref_init):
* capplet/nwam_vpn_pref_dialog.c (on_rules_button_clicked): Fixed
CR#7057684.
2011-04-08 Lin Ma <[email protected]>
* configure.in: Bump to 1.164.0
2011-04-01 Lin Ma <[email protected]>
* capplet/nwam_profile_dialog.c (nwam_pref_init),
(dialog_get_window): Fixed 7029953 [gnome2.30][nwam] Cannot edit a
network profile
2011-03-11 Lin Ma <[email protected]>
* configure.in: Bump to 1.162.0
2011-02-28 Lin Ma <[email protected]>
* capplet/nwam_env_pref_dialog.c (populate_panels_from_env),
(on_ns_source_clicked), (on_ns_selection_clicked),
(on_ns_text_changed), (update_nsswitch_related_widgets), (refresh):
Rework 7006158, which applies only reload all/cancel an nwam
location. Fixed 7006036.
* common/nwamui_env.c (nwamui_object_real_validate):
Fixed 7006036.
2011-02-26 malin <malin@solaris>
* capplet/main.c (main):
* capplet/nwam_condition_vbox.c (nwam_pref_init):
* capplet/nwam_conn_conf_ip_panel.c (nwam_pref_init):
* capplet/nwam_conn_stat_panel.c (nwam_pref_init):
* capplet/nwam_env_pref_dialog.c (nwam_pref_init),
(nwam_env_pref_dialog_init), (nwam_env_pref_dialog_finalize),
(nwam_compose_sortlist_view), (nsswitch_default_clicked_cb),
(nsswitch_default_file_set), (update_nsswitch_file_widgets),
(response_cb), (refresh), (apply):
Work around for 7006158.
* capplet/nwam_env_svc.c (nwam_pref_init):
* capplet/nwam_location_dialog.c (nwam_pref_init), (response_cb):
* capplet/nwam_object_ctrl_iface.c
(nwam_object_ctrl_iface_class_init):
* capplet/nwam_pref_dialog.c (nwam_pref_init), (response_cb):
* capplet/nwam_profile_dialog.c (nwam_pref_init), (response_cb):
* capplet/nwam_profile_panel.c (nwam_pref_init):
* capplet/nwam_rules_dialog.c (apply), (nwam_pref_init),
(response_cb):
* capplet/nwam_tree_view.c (nwam_tree_view_finalize),
(nwam_tree_view_set_property), (nwam_tree_view_register_widget),
(nwam_tree_view_unregister_widget):
* capplet/nwam_vpn_pref_dialog.c (nwam_pref_init), (response_cb):
* capplet/nwam_wireless_chooser.c (nwam_pref_init),
(join_wireless), (response_cb):
* capplet/nwam_wireless_dialog.c (nwam_pref_init),
(nwam_wireless_dialog_init), (refresh):
* common/libnwamui.c (debug_response_id):
* common/libnwamui.h:
* common/nwam_pref_iface.c (nwam_pref_iface_class_init),
(nwam_pref_dialog_run):
* common/nwam_pref_iface.h:
* common/nwamui_env.c (set_nwam_loc_string_array_prop),
(nwamui_env_get_nameservices),
(nwamui_env_get_nameservices_config_file):
* common/nwamui_ncu.c (nwamui_ncu_add_acquired):
* daemon/status_icon.c (join_wireless): Removed dialog_run from
nwam_pref_iface, and removed all implementations.
2011-02-26 Lin Ma <[email protected]>
* configure.in: bump to 1.161.0
2011-02-26 Lin Ma <[email protected]>
* ui/Makefile.am: do not use install-data-local.
* ui/nwam-manager-properties.ui: nsswitch_file_btn only accept
local file.
2011-02-16 Lin Ma <[email protected]>
* capplet/nwam_object_ctrl_iface.c (nwam_object_ctrl_edit): Fixed
7011269
* capplet/nwam_conn_conf_ip_panel.c (edit_object): Fixed 7011269
* capplet/nwam_location_dialog.c (apply), (response_cb):
* capplet/nwam_pref_dialog.c (response_cb):
* capplet/nwam_profile_dialog.c (apply), (response_cb):
* capplet/nwam_proxy_password_dialog.c (response_cb):
* capplet/nwam_rules_dialog.c (response_cb):
* capplet/nwam_vpn_pref_dialog.c (response_cb):
* capplet/nwam_wireless_chooser.c (response_cb):
* capplet/nwam_wireless_dialog.c: Handle GTK_RESPONSE_DELETE_EVENT
properly (click [X] button). Fixed 7011546.
* common/nwamui_env.c (nwamui_env_set_dns_nameservice_sortlist):
Fixed remove nameserver sort list error.
* help/C/nwam-manager.xml: Change docbook/xml version to 4.2,
since 4.0 isn't shipped by solaris, building will check it online.
2011-01-28 Lin Ma <[email protected]>
* configure.in:
* help/C/nwam-manager.xml: bump to 1.159.0. Updated OLH.
2010-12-02 Lin Ma <[email protected]>
* configure.in: bump to 1.155.0
2010-12-02 Lin Ma <[email protected]>
* capplet/capplet-utils.c
(nwam_disable_ok_on_cell_editing_started),
(nwam_enable_ok_on_cell_canceled):
* capplet/nwam_conn_conf_ip_panel.c: Clean unused code.
* capplet/nwam_env_pref_dialog.c (populate_panels_from_env),
(on_ns_selection_clicked), (on_ns_text_changed): Fixed typing in
default domain does not update nis/ldap domain parallelly. Fixed
enable ldap causes nis manual rb is changed to dhcp rb.
2010-12-01 Lin Ma <[email protected]>
* capplet/nwam_object_ctrl_iface.c
(nwam_object_ctrl_iface_base_init),
(nwam_object_ctrl_iface_class_init),
(nwam_object_ctrl_iface_get_type), (nwam_object_ctrl_create),
(nwam_object_ctrl_remove), (nwam_object_ctrl_rename),
(nwam_object_ctrl_edit), (nwam_object_ctrl_dup):
* capplet/nwam_object_ctrl_iface.h: New interface for control object
in nwam tree view.
2010-12-01 Lin Ma <[email protected]>
* capplet/Makefile.am:
* capplet/capplet-utils.c
(capplet_list_foreach_merge_to_list_store), (nwam_ip_address_cell),
(nwam_ip_subnet_cell), (nwam_ipv4_address_cell_edited),
(nwam_ipv4_subnet_cell_edited), (nwam_ipv6_address_cell_edited),
(nwam_ipv6_subnet_cell_edited),
(nwam_reset_entry_validation_on_cell_editing_started),
(nwam_disable_ok_on_cell_editing_started),
(nwam_enable_ok_on_cell_edited), (nwam_enable_ok_on_cell_canceled):
* capplet/capplet-utils.h: Add more tool functions for display
general object information in tree view.
* capplet/main.c (customwidgethandler), (main): Make all list tree
views are created from nwam_tree_view.
* capplet/nwam_condition_vbox.c (table_models_refresh): Updated
due to capplet tool interfaces change.
* capplet/nwam_conn_conf_ip_panel.c (create_object),
(remove_object), (edit_object), (nwam_object_ctrl_init),
(nwam_compose_wifi_fav_view), (nwam_compose_multi_ip_tree_view),
(nwam_conf_ip_panel_init):
* capplet/nwam_env_pref_dialog.c (create_object), (remove_object),
(nwam_object_ctrl_init), (nwam_env_pref_dialog_init),
(nwam_compose_sortlist_view), (populate_panels_from_env), (apply):
* capplet/nwam_location_dialog.c (create_object), (remove_object),
(rename_object), (edit_object), (dup_object),
(nwam_object_ctrl_init), (nwam_compose_tree_view),
(nwam_location_dialog_init), (refresh), (on_button_clicked):
* capplet/nwam_profile_panel.c (create_object), (remove_object),
(rename_object), (edit_object), (dup_object),
(nwam_object_ctrl_init), (nwam_compose_tree_view),
(nwam_profile_panel_init), (refresh),
(nwam_profile_panel_finalize), (nwamui_ncp_name_cell_edited):
Rework above panels to use nwam_tree_view to show general nwam
object informations.
* capplet/nwam_tree_view.c (nwam_tree_view_property_name),
(nwam_tree_view_class_init), (nwam_tree_view_finalize),
(nwam_tree_view_set_property), (nwam_tree_view_get_property),
(nwam_tree_view_register_widget),
(nwam_tree_view_unregister_widget),
(nwam_tree_view_get_item_by_proxy), (on_add_btn_clicked),
(on_remove_btn_clicked), (on_rename_btn_clicked),
(on_edit_btn_clicked), (on_dup_btn_clicked), (on_up_btn_clicked),
(on_down_btn_clicked), (nwam_tree_view_key_press),
(nwam_tree_view_key_release), (nwam_tree_view_row_activated_cb),
(nwam_tree_view_row_selected_cb),
(nwam_tree_view_update_widget_cb), (object_tree_model_notify),
(nwam_tree_view_row_inserted), (nwam_tree_view_row_changed),
(update_buttons_status):
* capplet/nwam_tree_view.h: General list view for manage general
nwam objects. Current support add, delete, edit, rename, up and
down.
* capplet/nwam_vpn_pref_dialog.c (create_object), (remove_object),
(rename_object), (nwam_object_ctrl_init),
(nwam_vpn_pref_dialog_init), (nwam_compose_tree_view), (refresh),
(vpn_pref_clicked_cb):
* common/libnwamui.c (nwamui_util_ncp_init_acquired_ip),
(nwamui_util_get_interface_address): Port from trunk.
* common/nwam_pref_iface.c (nwam_pref_dialog_run): Remove useless
code.
* common/nwamui_daemon.c (nwamui_object_real_remove): Assert the
removing object can be found in the managed list.
* common/nwamui_env.c (nwamui_env_class_init),
(nwamui_env_set_property), (nwamui_env_get_property),
(set_nwam_loc_string_array_prop),
(nwamui_env_set_dns_nameservice_options),
(nwamui_env_get_dns_nameservice_options),
(nwamui_env_set_dns_nameservice_sortlist),
(nwamui_env_get_dns_nameservice_sortlist):
* common/nwamui_env.h: Fixed doo 17363 [NWAM] support options of
/etc/resolv.conf on GUI
* common/nwamui_ip.c (nwamui_ip_new): IP object support to create
without NCU.
* ui/nwam-manager-properties.ui: Updated for nwam tree view.
2010-08-20 Calum Benson <[email protected]>
* ui/nwam-manager-properties.ui:
Update with additional options required to fix CR 6944603.
2010-10-09 Lin Ma <[email protected]>
* configure.in: Bump to 1.151.0
* daemon/status_icon.c (daemon_switch_loc_manually_changed): fixed
17192 the location switch mode in the location submenu of panel
icon pop ups doesn't update correctly
2010-09-13 Lin Ma <[email protected]>
* common/libnwamui.c (nwamui_util_ncp_init_acquired_ip),
(nwamui_util_get_interface_address): Fixed build issue on nv147
due to 'struct ifaddrs' changes.
* ui/nwam-manager-properties.ui: Fixed some demo numbers are
marked as translation needed.
2010-07-29 Lin Ma <[email protected]>
* configure.in: Bump to 1.146.0
2010-07-21 Lin Ma <[email protected]>
* capplet/nwam_profile_dialog.c (nwam_connection_cell_func): Fixed
16600 [NWAM] Show Wired/Wireless in Edit Connections dialog
2010-07-21 Lin Ma <[email protected]>
* common/nwamui_ncu.c (nwamui_object_real_commit),
(nwamui_object_real_set_enabled): I think disable a NCU should set
'enabled' prop to false for every NCU subobject.
2010-07-21 Lin Ma <[email protected]>
* capplet/main.c:
* common/nwamui_daemon.c (nwam_loc_walker_cb),
(nwam_enm_walker_cb), (nwam_ncp_walker_cb),
(nwam_known_wlan_walker_cb):
* common/nwamui_enm.c (nwamui_enm_class_init), (nwamui_enm_new),
(nwamui_enm_new_with_handle), (nwamui_object_real_open),
(nwamui_object_real_reload):
* common/nwamui_env.c (nwamui_env_class_init), (nwamui_env_new),
(nwamui_env_new_with_handle), (nwamui_object_real_open),
(nwamui_object_real_reload):
* common/nwamui_known_wlan.c (nwamui_known_wlan_class_init),
(nwamui_object_real_reload), (nwamui_known_wifi_new),
(nwamui_known_wlan_new_with_handle), (nwamui_object_real_open):
* common/nwamui_ncp.c (nwamui_ncp_class_init), (nwamui_ncp_new),
(nwamui_ncp_new_with_handle), (nwamui_object_real_reload),
(nwamui_object_real_open):
* common/nwamui_ncu.c (nwamui_ncu_class_init),
(nwamui_ncu_new_with_handle), (nwamui_object_real_reload),
(nwamui_object_real_open):
* common/nwamui_object.c (nwamui_object_open),
(nwamui_object_event), (nwamui_object_add), (nwamui_object_remove):
* common/nwamui_object.h: Clean some code. Probably fixed 6968008
core.i86pc.nwam-manager excessive core file generation on snv_142
2010-06-29 Lin Ma <[email protected]>
* capplet/nwam_wireless_dialog.c
(nwam_wireless_dialog_set_key_index),
(nwam_wireless_dialog_get_key_index):
* capplet/nwam_wireless_dialog.h: Fixed 16390 [osol_142]
nwam-manager cores when joining a unlisted wireless network with
WEP security
2010-06-04 Lin Ma <[email protected]>
* configure.in: Bump to 1.142.0
2010-06-02 Lin Ma <[email protected]>
* capplet/nwam_profile_panel.c (nwamui_ncp_name_cell_edited),
(on_button_clicked): Fixed can't update widgets in cloning NCP.
* common/nwamui_daemon.c (nwamui_object_real_reload),
(nwam_known_wlan_walker_cb): Clean code.
* common/nwamui_env.c (nwamui_object_real_clone),
(nwamui_object_real_reload): Clean code.
* common/nwamui_known_wlan.c (nwamui_object_real_commit):
* common/nwamui_ncu.c (nwamui_ncu_add_acquired):
* common/nwamui_ncu.h:
* common/nwamui_object.c (default_nwamui_object_set_nwam_state):
Clean code.
* daemon/status_icon.c (ncu_notify_nwam_state),
(connect_nwam_object_signals): Fixed show NCU connected
notification on disconnecting.
2010-05-28 Lin Ma <[email protected]>
* capplet/capplet-utils.c
(capplet_tree_model_foreach_nwamui_object_reload),
(capplet_tree_model_foreach_nwamui_object_commit):
* capplet/capplet-utils.h: Common reload/commit useful for tree
view. Note current not all the nwamui object subclass implemented
_has_modifications, _validate, _reload and _commit.
* capplet/nwam_conn_conf_ip_panel.c (nwam_conf_ip_panel_init),
(apply), (daemon_add_object), (daemon_remove_object),
(wireless_tab_add_button_clicked_cb),
(wireless_tab_remove_button_clicked_cb),
(wireless_tab_edit_button_clicked_cb): Monitor daemon_add/remove
events, make sure an object is successfully committed also be
added in order to reuse the object and refect the info on the GUI.
* capplet/nwam_env_pref_dialog.c (apply): Use common object
_validate function.
* capplet/nwam_location_dialog.c (cancel), (apply),
(on_button_clicked): Clean code, use common tree view commit
function.
* capplet/nwam_pref_dialog.c (nwam_capplet_dialog_init), (apply),
(show_changed_cb), (daemon_add_object), (daemon_remove_object):
Monitor daemon_add/remove events instead of daemon_info event
which has been deleted.
* capplet/nwam_profile_dialog.c (apply), (foreach_set_group_mode),
(connections_edit_btn_clicked), (ncp_add_ncu), (ncp_remove_ncu),
(edit_profile_changed), (ncu_pri_treeview_add): Monitor
daemon_add/remove events, make sure an object is successfully
committed also be added in order to reuse the object and refect
the info on the GUI.
* capplet/nwam_profile_panel.c (nwam_compose_tree_view), (cancel),
(apply), (nwamui_ncp_name_cell_edited),
(nwam_treeview_update_widget_cb), (on_button_clicked): Make sure
an object is successfully committed also be added in order to
reuse the object and refect the info on the GUI. Always allow
rename NCP, even the NCP is created(which is already
committed). Rename the committed NCP is to first clone it with the
new name, then delete the old one, and replace the corresponding
row data to the new one.
* capplet/nwam_vpn_pref_dialog.c (cancel), (apply),
(vpn_pref_clicked_cb), (nwam_vpn_pre_selection_validate): Make
sure an object is successfully committed also be added in order to
reuse the object and refect the info on the GUI, e.g. start/stop a
new created ENM. And use the tree view common commit function.
* capplet/nwam_wireless_chooser.c (nwam_wireless_chooser_init),
(daemon_add_object), (daemon_remove_object): Monitor
daemon_add/remove events instead of daemon_info.
* capplet/nwam_wireless_dialog.c (nwam_wireless_dialog_init),
(nwam_wireless_dialog_set_property), (set_purpose),
(nwam_wireless_dialog_get_wifi_net),
(nwam_wireless_dialog_set_wifi_net), (apply), (cancel),
(dialog_run), (validate_information), (key_entry_focus_in_cb):
Clean code. Make the logic simple. Updated the code for the new
subclass NwamuiKnownWlan.
* common/Makefile.am: Added NwamuiKnownWlan source files.
* common/libnwamui.c (debug_g_type_name): For debug usage.
* common/libnwamui.h:
* common/nwamui_daemon.c (nwamui_daemon_class_init),
(nwamui_daemon_init), (nwamui_object_real_reload),
(nwamui_daemon_set_property), (nwamui_daemon_get_property),
(nwamui_daemon_finalize), (nwamui_daemon_get_ncp_by_name),
(nwamui_daemon_get_env_by_name), (nwamui_daemon_get_enm_by_name),
(nwamui_ncp_get_first_wireless_ncu_from_active_ncp),
(nwamui_object_real_event), (find_compare_wifi_net_by_prio),
(nwamui_object_real_add), (nwamui_object_real_remove),
(nwamui_daemon_find_fav_wifi_net_by_name),
(nwamui_object_real_validate), (nwamui_object_real_commit),
(foreach_wifi_in_ncu_emit),
(dispatch_scan_results_from_wlan_array),
(nwamui_daemon_populate_wifi_fav_list), (wep_key_timeout_handler),
(nwamui_daemon_setup_dhcp_or_wep_key_timeout),
(nwamd_event_handler), (nwamui_daemon_update_status),
(nwamui_daemon_handle_object_action_event), (nwam_loc_walker_cb),
(nwam_enm_walker_cb), (nwam_ncp_walker_cb),
(nwam_known_wlan_walker_cb), (nwamui_daemon_foreach_fav_wifi),
(nwamui_daemon_find_fav_wifi):
* common/nwamui_daemon.h: Clean code. Clean signals. Unify
add/remove objects. Unify _reload/_commit to reload/commit all
children. Make signals compatible like GtkContainer. Removed
useless properties. Rework and fix bug of wlan_connection_report
event, wlan need key event. Unify nwam object walker behavior.
* common/nwamui_enm.c (nwamui_enm_class_init),
(nwamui_object_real_set_name), (nwamui_object_real_open),
(nwamui_object_real_set_handle), (nwamui_object_real_clone),
(nwamui_object_real_validate):
* common/nwamui_enm.h: Fix bugs. Clone object don't automatically
add it to daemon. _validate becomes a virtual function.
* common/nwamui_env.c (nwamui_env_class_init),
(nwamui_object_real_set_name), (nwamui_object_real_clone),
(nwamui_object_real_open), (nwamui_object_real_destroy),
(nwamui_object_real_validate):
* common/nwamui_env.h: Fix bugs. Clone object don't automatically
add it to daemon. _validate becomes a virtual function. Fix
destroy handle doesn't clean handle pointer.
* common/nwamui_ip.c (nwamui_object_real_sort): Sort IP by
name(essid).
* common/nwamui_known_wlan.c (nwamui_known_wlan_class_init),
(nwamui_known_wlan_init), (nwamui_known_wlan_set_property),
(nwamui_known_wlan_get_property), (nwamui_object_real_reload),
(nwamui_known_wlan_finalize), (nwamui_known_wifi_new),
(nwamui_known_wlan_update_from_wlan_t),
(nwamui_known_wlan_new_with_handle), (nwamui_object_real_sort),
(nwamui_object_real_destroy), (nwamui_object_real_validate),
(nwamui_object_real_commit), (nwamui_object_real_can_rename),
(nwamui_object_real_set_name), (nwamui_object_real_open),
(nwamui_object_real_set_handle), (nwamui_known_wlan_get_essid),
(nwamui_known_wlan_real_set_bssid_list),
(nwamui_known_wlan_real_get_bssid_list),
(get_nwam_known_wlan_string_prop),
(set_nwam_known_wlan_string_prop),
(get_nwam_known_wlan_string_array_prop),
(set_nwam_known_wlan_string_array_prop),
(get_nwam_known_wlan_boolean_prop),
(get_nwam_known_wlan_uint64_prop),
(set_nwam_known_wlan_uint64_prop),
(get_nwam_known_wlan_uint64_array_prop),
(set_nwam_known_wlan_uint64_array_prop),
(nwamui_object_real_has_modifications):
* common/nwamui_known_wlan.h: New subclass from NwamuiWifiNet.
* common/nwamui_ncp.c (nwamui_ncp_class_init),
(nwamui_object_real_clone), (nwamui_object_real_reload),
(nwamui_object_real_open), (nwamui_object_real_set_name),
(nwamui_object_real_has_modifications), (check_ncu_online),
(nwamui_ncp_all_ncus_online), (nwamui_object_real_remove),
(nwamui_object_real_add), (nwamui_object_real_validate),
(nwamui_object_real_commit), (nwam_ncu_walker_cb):
* common/nwamui_ncp.h: Clean code. Clean signals. Unify add/remove
objects. Unify _reload/_commit to reload/commit all children, do
not maintain new added/removed list. Make signals compatible like
GtkContainer. Removed useless properties. Unify nwam object walker
behavior.
* common/nwamui_ncu.c (nwamui_ncu_class_init),
(nwamui_ncu_set_property), (nwamui_ncu_get_property),
(nwamui_ncu_sync_handle_with_ip_data),
(nwam_ncu_handle_clone_each_prop), (nwamui_object_real_clone),
(nwamui_object_real_event), (nwamui_object_real_is_modifiable),
(nwamui_object_real_reload),
(nwamui_object_real_has_modifications), (nwamui_object_real_sort),
(nwamui_object_real_validate), (nwamui_object_real_commit),
(nwamui_object_real_destroy), (nwamui_object_real_open),
(nwamui_object_real_set_handle), (nwamui_ncu_set_vanity_name),
(nwamui_object_real_set_active),
(nwamui_object_real_set_activation_mode),
(nwamui_object_real_get_activation_mode),
(nwamui_ncu_wifi_hash_lookup_by_essid),
(nwamui_ncu_wifi_hash_insert_or_update_from_wlan_t),
(nwamui_ncu_finalize), (nwamui_ncu_get_interface_nwam_state),
(nwamui_ncu_get_link_nwam_state), (nwamui_ncu_add_acquired),
(nwamui_ncu_clean_acquired), (nwamui_ncu_acquired_all),
(set_modified_flag), (set_enabled_flag),
(nwamui_ncu_has_dhcp_configured),
(nwamui_ncu_get_connection_state_string):
* common/nwamui_ncu.h: Clean code. Clean signals. Unify
_reload/_commit. Unify _open/_set_handle functions like other
objects. Always use loop to loop all NWAM NCU classes/types if
possible. Removed useless properties.
* common/nwamui_object.c (default_nwamui_object_get_name),
(default_nwamui_object_can_rename),
(default_nwamui_object_set_name),
(default_nwamui_object_set_conditions),
(default_nwamui_object_get_conditions),
(default_nwamui_object_get_activation_mode),
(default_nwamui_object_set_activation_mode),
(default_nwamui_object_get_active),
(default_nwamui_object_set_active),
(default_nwamui_object_get_enabled),
(default_nwamui_object_set_enabled),
(default_nwamui_object_is_modifiable),
(default_nwamui_object_has_modifications),
(default_nwamui_object_event), (default_nwamui_object_add),
(default_nwamui_object_remove), (default_nwamui_object_modified),
(default_nwamui_object_validate), (default_nwamui_object_commit),
(default_nwamui_object_reload), (default_nwamui_object_destroy),
(nwamui_object_class_init), (nwamui_object_can_rename),
(nwamui_object_set_name), (nwamui_object_validate),
(nwamui_object_commit), (nwamui_object_event), (nwamui_object_add),
(nwamui_object_remove), (nwamui_object_modified):
* common/nwamui_object.h: New _add/_remove virtual
functions. Unify events, signals.
* common/nwamui_wifi_net.c (nwamui_wifi_net_class_init),
(nwamui_wifi_net_init), (nwamui_wifi_net_set_property),
(nwamui_wifi_net_get_property), (nwamui_wifi_net_finalize),
(nwamui_wifi_net_new), (nwamui_wifi_net_update_from_wlan_t),
(nwamui_wifi_net_new_from_wlan_t), (nwamui_object_real_sort),
(nwamui_wifi_net_store_key), (nwamui_wifi_net_connect),
(nwamui_object_real_can_rename), (nwamui_object_real_set_name),
(nwamui_wifi_net_real_set_bssid_list),
(nwamui_wifi_net_real_get_bssid_list),
(nwamui_wifi_net_set_bssid_list), (nwamui_wifi_net_get_bssid_list):
* common/nwamui_wifi_net.h: Divide NwamuiKnownWlan code from
this. Node some properties are overwriten by NwamuiKnownWlan, so
make sure for those properties use g_object_get to get the correct
info, esspecially for the function nwamui_wifi_net_store_key.
* daemon/notify.c (nwam_notification_msg_new),
(nwam_notification_show_ncu_connected):
* daemon/notify.h: Changes for 15544 NWAM GUI only shows the 0th
address. Need more work.
* daemon/nwam-menu.c (menu_section_get_children): Clean code,
correct comments.
* daemon/nwam-wifi-item.c (on_nwam_wifi_toggled),
(menu_wifi_item_compare): Clean code.
* daemon/status_icon.c (daemon_add_object), (daemon_remove_object),
(daemon_event), (ncu_notify_nwam_state), (ncu_notify_enabled),
(ncu_event), (ncp_remove_ncu), (daemon_active_ncp_changed),
(connect_nwam_object_signals), (initial_notify_nwam_object),
(nwam_menu_update_wifi_section), (nwam_status_icon_run),
(nwam_status_icon_move_menu_items_to_cache): Clean code, monitor
_add/_remove signals. Fixed bugs.
* tests/main.c (main), (process_ncp), (process_known_wlan),
(wlans_changed): Update code.
2010-05-17 Lin Ma <[email protected]>
* capplet/capplet-utils.c:
* capplet/capplet-utils.h:
* common/libnwamui.c (capplet_tree_model_foreach),
(capplet_model_foreach_find_object), (capplet_model_find_object),
(capplet_model_find_object_with_parent), (capplet_model_foreach),
(capplet_model_1_level_foreach):
* common/libnwamui.h: Moved some functions to libnwamui because
common code will use them.
* common/nwamui_ip.c (nwamui_ip_get_display_name):
* common/nwamui_ncu.c (nwamui_ncu_init): Fixed inactive DHCP NCUs
can't show all zero address. DHCP/Static mixed configured NCUs
show static address on DHCP entry.
2010-05-13 Lin Ma <[email protected]>
* capplet/nwam_conn_conf_ip_panel.c (multi_line_add_cb):
* common/libnwamui.c (nwamui_util_split_address_prefix): Fixed mem
leak.
* common/nwamui_daemon.c (nwamui_daemon_set_property),
(nwamui_daemon_get_property), (nwamd_event_handler),
(nwamui_daemon_handle_object_action_event), (nwam_ncp_walker_cb):
Fixed a potential deref NULL. Clean code.
* common/nwamui_env.c (nwamui_object_real_get_active):
* common/nwamui_ip.c (nwamui_ip_class_init),
(nwamui_ip_set_property), (nwamui_ip_get_property),
(nwamui_ip_new): Remove code for dup flags DHCP/STATIC.
* common/nwamui_ip.h:
* common/nwamui_ncu.c (nwamui_ncu_init), (nwamui_ncu_set_property),
(populate_ip_ncu_data):
* common/nwamui_ncu.h: Clean code. Fixing 15544 NWAM GUI only
shows the 0th address. Fixed can't show the only DHCP address in
tooltip and capplet. Fixed some mem leaks.
* common/nwamui_prof.c (user_has_autoconf_auth): Fixed a mem leak.
* daemon/nwam-env-item.c (nwam_env_item_init),
(nwam_env_item_finalize):
* daemon/status_icon.c (daemon_switch_loc_manually_changed),
(connect_nwam_object_signals), (location_model_menuitems):
Reworked auto/manually activate loc since it was broken.
2010-05-12 Lin Ma <[email protected]>
* capplet/nwam_vpn_pref_dialog.c (nwam_vpn_pref_dialog_init),
(nwam_update_obj), (dialog_run), (refresh), (cancel), (apply),
(response_cb), (command_entry_changed), (vpn_pref_clicked_cb),
(nwam_vpn_pre_selection_validate), (nwam_vpn_selection_changed),
(conditional_toggled_cb), (on_radio_button_toggled): Found many
problems when fixing 15855 [NWAM] could not add network
modifier. Since prv->cur_obj always point to the new/editting
object, so it's forced to finish the modifications of cur_obj
before click either apply or cancel button to avoid problems. I
also added editing a start/stop/fmri command and verify the
content in realtime, then set sensitive of start/stop buttons.
* common/libnwamui.c (nwamui_util_ncp_init_acquired_ip):
* common/libnwamui.h: Added a new function to get initial IP
address only for active NCUs of active NCP on starting up
NWAMUI. I do that because I think for any other NCU changes can
get the proper info from nwamd IF_STATE event.
* common/nwamui_daemon.c (nwamui_daemon_class_init),
(nwamui_daemon_init), (nwamui_object_real_reload),
(nwamd_event_handler), (nwamui_daemon_handle_object_state_event),
(nwam_loc_walker_cb), (nwam_enm_walker_cb), (nwam_ncp_walker_cb):
Rename nwamui_daemon_init_lists to nwamui_object_real_reload for
compatible. Clean code and use nwamui_util_ncp_init_acquired_ip on
populating NCP info.
* common/nwamui_enm.c (nwamui_enm_new), (nwamui_object_real_open),
(nwamui_object_real_commit): Fixes which I think should be
correct.
* common/nwamui_env.c (nwamui_object_real_open): ditto.
* common/nwamui_ip.c (nwamui_ip_class_init),
(nwamui_ip_set_property), (nwamui_ip_get_property),
(nwamui_object_real_sort), (nwamui_ip_set_subnet_prefix),
(nwamui_ip_get_display_name):
* common/nwamui_ip.h:
* common/nwamui_ncp.c (nwamui_object_real_open),
(nwamui_object_real_get_active): Clean code.
* common/nwamui_ncu.c (nwamui_ncu_get_property):
* common/nwamui_ncu.h: Fixing 15544 NWAM GUI only shows the 0th
address. Still has problems.
* help/C/nwam-manager.xml: Merge Nita's final fix.
2010-04-22 Lin Ma <[email protected]>
* capplet/Makefile.am:
* common/nwamui_daemon.c (nwamd_event_handler):
* configure.in:
* daemon/Makefile.am:
* tests/Makefile.am: Removed libinetcfg from makefiles.
2010-04-19 Lin Ma <[email protected]>
* help/C/nwam-manager.xml: Merge Nita's fix.
2010-04-16 Lin Ma <[email protected]>
* Makefile.am: Removed unused headers.
* common/libnwamui.c
(nwamui_util_convert_prefixlen_to_netmask_str),
(nwamui_util_convert_netmask_str_to_prefixlen),
(nwamui_util_get_interface_address): Rework mask2plen and
plen2mask related functions.
* common/nwamui_daemon.c (nwamd_event_handler):
* common/nwamui_ncp.c (nwamui_ncp_get_ncu_by_device_name):
* common/nwamui_ncu.c (nwamui_ncu_set_property),
(nwamui_ncu_get_property):
* common/nwamui_ncu.h: Add some code for refresh address on
getting nwamd events, not finished.
* nwam_core/copy_onnv_headers.sh:
* nwam_core/libnwam.h:
* nwam_core/usr/include/libdladm.h:
* nwam_core/usr/include/libdladm_impl.h:
* nwam_core/usr/include/libdlaggr.h:
* nwam_core/usr/include/libdlether.h:
* nwam_core/usr/include/libdlflow.h:
* nwam_core/usr/include/libdlflow_impl.h:
* nwam_core/usr/include/libdllink.h:
* nwam_core/usr/include/libdlmgmt.h:
* nwam_core/usr/include/libdlstat.h:
* nwam_core/usr/include/libdlvlan.h:
* nwam_core/usr/include/libdlvnic.h:
* nwam_core/usr/include/libdlwlan_impl.h:
* nwam_core/usr/include/sys/dld.h:
* nwam_core/usr/include/sys/dls_mgmt.h:
* nwam_core/usr/include/sys/mac.h:
* nwam_core/usr/include/sys/mac_flow.h: Removed unused headers.
2010-04-14 Lin Ma <[email protected]>
* Makefile.am:
* common/libnwamui.c (plen2mask), (mask2plen),
(nwamui_util_get_interface_address),
(nwamui_util_window_title_append_hostname):
* common/nwamui_ncu.c:
* nwam_core/copy_onnv_headers.sh:
* nwam_core/usr/include/inetcfg.h: Remove inetcfg related code,
use getifsaddrs instead. Copy mask2plen and plen2mask from
libinetutil.
2010-04-12 Lin Ma <[email protected]>
* configure.in: version 1.138.0
2010-04-12 Lin Ma <[email protected]>
* capplet/nwam_conn_stat_panel.c (env_clicked_cb),
(vpn_clicked_cb):
* capplet/nwam_vpn_pref_dialog.c
(capplet_tree_model_row_changed_func), (refresh),
(vpn_pref_clicked_cb), (nwam_vpn_pre_selection_validate),
(nwam_vpn_selection_changed): Fixed 14850 [nwam-133] settings in
network modifiers are not restored until nwam-manager-properties
is relaunched. Fixed 14258 [132] nwam error when adding second VPN
2010-04-09 Lin Ma <[email protected]>
* capplet/capplet-utils.c (capplet_tree_model_foreach),
(capplet_model_foreach):
* capplet/capplet-utils.h: Add a new tree model foreach func.
* capplet/nwam_pref_dialog.c (nwam_capplet_dialog_init),
(daemon_info), (ncp_add_ncu), (ncp_remove_ncu),
(nwamui_util_foreach_nwam_object_add_to_tree_store),
(show_combo_add), (show_combo_remove), (combo_find_proper_pos):
* capplet/nwam_profile_dialog.c (net_conf_set_property): Fixed
15314 [NWAM] Force refresh after editing network profile?
* common/libnwamui.c:
* common/libnwamui.h: Remomve unused code.
* common/nwamui_ncp.c (nwamui_ncp_class_init):
* common/nwamui_ncp.h: Clean code. Change some signal slightly,
for adding a container object lately.
* common/nwamui_ncu.c: Clean code.
* daemon/main.c (init_wait_for_embedding_idle),
(init_wait_for_embedding): Fixed 15524 nwam-manager shouldn't run
gtk_status_icon_is_embedded in idle
* daemon/status_icon.c (connect_nwam_object_signals): Signals
changed.
* help/C/nwam-manager.xml: Updated OLH due to 15136 Remove
'Network Locations' menu-item
2010-03-25 Lin Ma <[email protected]>
* data/Makefile.am:
* data/nwam-manager-properties.desktop.in:
* data/nwam-manager.desktop.in.in:
* data/nwam-network.desktop.in:
* data/nwam-network.desktop.in.in:
Fixed remove 'Network Locations'
2010-03-23 Lin Ma <[email protected]>
* configure.in: bump to 1.0.1
* Makefile.am: Clean removed files.
* common/nwamui_env.c (nwamui_env_set_property),
(nwamui_env_get_property), (set_nwam_loc_string_prop),
(nwamui_env_set_nameservices), (nwamui_env_get_nameservices),
(nwamui_env_set_nameservices_config_file),
(nwamui_env_get_nameservices_config_file),
(nwamui_env_set_default_domainname),
(nwamui_env_get_default_domainname),
(nwamui_env_set_dns_nameservice_domain),
(nwamui_env_get_dns_nameservice_domain),
(nwamui_env_set_dns_nameservice_config_source),
(nwamui_env_get_dns_nameservice_config_source),
(nwamui_env_set_dns_nameservice_servers),
(nwamui_env_get_dns_nameservice_servers),
(nwamui_env_set_dns_nameservice_search),
(nwamui_env_get_dns_nameservice_search),
(nwamui_env_set_nis_nameservice_config_source),
(nwamui_env_get_nis_nameservice_config_source),
(nwamui_env_set_nis_nameservice_servers),
(nwamui_env_get_nis_nameservice_servers),
(nwamui_env_set_ldap_nameservice_config_source),
(nwamui_env_get_ldap_nameservice_config_source),
(nwamui_env_set_ldap_nameservice_servers),
(nwamui_env_get_ldap_nameservice_servers),
(nwamui_env_set_hosts_file), (nwamui_env_get_hosts_file),
(nwamui_env_set_nfsv4_domain), (nwamui_env_get_nfsv4_domain),
(nwamui_env_set_ipfilter_config_file),
(nwamui_env_get_ipfilter_config_file),
(nwamui_env_set_ipfilter_v6_config_file),
(nwamui_env_get_ipfilter_v6_config_file),
(nwamui_env_set_ipnat_config_file),
(nwamui_env_get_ipnat_config_file),
(nwamui_env_set_ippool_config_file),
(nwamui_env_get_ippool_config_file),
(nwamui_env_set_ike_config_file), (nwamui_env_get_ike_config_file),
(nwamui_env_set_ipsecpolicy_config_file),
(nwamui_env_get_ipsecpolicy_config_file): Fixed 15298 [nwam] can't
clear settings (e.g. dncp domain) in Location Properties dialog
2010-03-23 Lin Ma <[email protected]>
* capplet/nwam_location_dialog.c (cancel), (apply),
(nwam_location_connection_enabled_toggled_cb), (on_button_clicked),
(location_switch_loc_cb_toggled): cancel dialog forgot clear
toggled-env, which caused the next show time would show the wrong
active env. Clean the code for auto/manually activate env. Fixed
that when apply changes check the modifications first. Fixed
remove to-be-toggled object will lose the toggle flag.
* capplet/nwam_profile_panel.c (nwam_profile_panel_is_toggled_row),
(on_button_clicked), (nwam_object_toggled_cell_sensitive_func):
Removed unused code. Fixed remove to-be-toggled object will lose
the toggle flag.
* capplet/nwam_wireless_chooser.c
(foreach_wifi_in_ncu_add_to_list_store):
* common/nwamui_daemon.c (nwamui_daemon_set_property),
(find_enabled_env), (nwamui_daemon_env_selection_is_manual),
(set_env_disabled):
* common/nwamui_daemon.h:
* common/nwamui_env.c:
* daemon/nwam-env-item.c (on_nwam_env_toggled): Clean the code for
auto/manually activate env.
* daemon/nwam-menu.c (menu_section_get_children):
* daemon/nwam-ncu-item.c (on_nwam_ncu_notify): Changed g_message
to g_debug
* daemon/status_icon.c (daemon_active_env_changed),
(location_model_menuitems): Clean the code for auto/manually
activate env.
2010-03-22 Lin Ma <[email protected]>
* nwam_core/copy_onnv_headers.sh: copy system libnwam.h instead of
repos.
* nwam_core/libnwam.h: move this header out of build include path,
because we use the sysetem one. Keep this to check the header
changes.
* nwam_core/usr/include/libdladm.h:
* nwam_core/usr/include/libdladm_impl.h:
* nwam_core/usr/include/libdllink.h:
* nwam_core/usr/include/libdlstat.h:
* nwam_core/usr/include/libdlvnic.h:
* nwam_core/usr/include/libnwam.h:
* nwam_core/usr/include/sys/dld.h:
* nwam_core/usr/include/sys/mac.h:
* nwam_core/usr/include/sys/mac_flow.h: Update from onnv gate.
2010-03-22 Lin Ma <[email protected]>
* capplet/nwam_conn_stat_panel.c (nwam_conn_status_panel_init),
(refresh), (daemon_active_ncp_notify_cb),
(daemon_active_env_notify_cb): Fixed active profile label isn't
updated on changing.
* common/nwamui_enm.c (nwamui_enm_class_init), (nwamui_enm_new),
(nwamui_object_real_set_name), (nwamui_object_real_open),
(nwamui_object_real_set_handle), (nwamui_object_real_reload),
(nwamui_object_real_clone):
* common/nwamui_env.c (nwamui_env_class_init), (nwamui_env_new),
(nwamui_object_real_set_name), (nwamui_object_real_clone),
(nwamui_object_real_open), (nwamui_object_real_set_handle),
(nwamui_object_real_reload):
* common/nwamui_ncp.c (nwamui_ncp_class_init), (nwamui_ncp_new),
(nwamui_object_real_clone), (nwamui_object_real_reload),
(nwamui_object_real_open), (nwamui_object_real_set_handle),
(nwamui_object_real_set_name):
* common/nwamui_object.c (nwamui_object_open):
* common/nwamui_object.h: Fixed copy 14847 [nwam-133] copy of
location does does not copy settings. Rework part of code for that
fix. Now we cleary call nwamui_object_open to create a handle or
open a handle. Update NCP, LOC, ENM code for that. But we still
need update NCU and WLAN code.
* common/nwamui_prof.c (user_has_autoconf_auth): Remove auth
message.
* nwam_core/lib/i386/libnwam.so:
* nwam_core/lib/i386/libnwam.so.1:
* nwam_core/lib/sparc/libnwam.so:
* nwam_core/lib/sparc/libnwam.so.1: Do not keep private libs
because we have integrated.
2010-03-16 Lin Ma <[email protected]>
* data/nwam-network.desktop.in: Forgot StartupNotify=true, thanks Calum.
2010-03-08 Lin Ma <[email protected]>
* help/C/nwam-manager.xml: Fixed 15032 NWAM OLH files have to
update with Oracle branding
2010-03-01 Lin Ma <[email protected]>
* data/nwam-manager-properties: Fixed a nit since network-admin
is moved to /usr/bin
2010-02-26 Lin Ma <[email protected]>
* capplet/main.c (main):
* capplet/nwam_pref_dialog.c (nwam_capplet_dialog_init),
(response_cb), (nwam_capplet_dialog_select_tab):
* capplet/nwam_pref_dialog.h: Fixed 9522 [gnome2.26] connection
profile launches network preferences showing incorrect combo box
* capplet/nwam_profile_dialog.c (help):
* capplet/nwam_profile_panel.c (help):
* common/help_refs.h: Fixed 14630 [nwam-133] incorrect help page
launches in network profile view
* configure.in: Bump to 1.0.0
* daemon/status_icon.c (daemon_wifi_selection_needed): Fixed
14549 [nwam-133] if no favorites available, do nothing - launches
wireless network chooser
* data/nwam-manager-properties:
* data/nwam-network.desktop.in: Fixed 14886 [nwam-133] determine
correct action from network locations menu item
* nwam_core/lib/i386/libnwam.so.1:
* nwam_core/lib/sparc/libnwam.so.1: