-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-20000831
16566 lines (13567 loc) · 655 KB
/
ChangeLog-20000831
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
2000-08-31 Robey Pointer <[email protected]>
* components/services/trilobite/libtrilobite/Makefile.am:
Libtrilobite now needs gnome-vfs -- oops.
2000-08-31 J Shane Culpepper <[email protected]>
* components/services/summary/lib/eazel-summary-shared.c:
(parse_a_service), (parse_a_eazel_news_item),
(parse_a_update_news_item):
* components/services/summary/lib/eazel-summary-shared.h:
Adding the rest of the xml parser.
2000-08-31 Robey Pointer <[email protected]>
* components/services/trilobite/libtrilobite/Makefile.am:
* components/services/trilobite/libtrilobite/trilobite-core-utils.c
: (trilobite_close_log), (trilobite_open_uri),
(trilobite_fetch_uri), (trilobite_fetch_uri_to_file):
* components/services/trilobite/libtrilobite/trilobite-core-utils.h
:
Add trilobite_fetch_uri() and trilobite_fetch_uri_to_file() to the
core utils in libtrilobite. This makes it easy to use gnome-vfs
to fetch a remote file into a buffer (hint: XML).
* components/services/trilobite/libtrilobite/trilobite-redirect.c:
* components/services/trilobite/libtrilobite/trilobite-redirect.h:
Fetch the url redirection table from an XML file on the server and
store it in gconf for other views to use.
* components/services/trilobite/libtrilobite/trilobite-root-client.
c: (trilobite_root_client_initialize):
Clarify the FIXME.
2000-08-31 John Sullivan <[email protected]>
* components/tree/nautilus-tree-expansion-state.c:
Made the tree view expansion state preference use a full gconf
path so it's not coupled to user level.
2000-08-31 Andy Hertzfeld <[email protected]>
* src/nautilus-throbber.c: (select_throbber_image),
(nautilus_throbber_load_images):
made the throbber throb in the intended direction (clockwise); the
problem was caused by prepending to the image list, which was reversing
their order - fixed by making it append instead.
2000-08-31 J Shane Culpepper <[email protected]>
* components/services/summary/lib/eazel-summary-shared.c:
(summary_data_new), (services_data_new), (eazel_news_data_new),
(update_news_data_new), (parse_a_service),
(parse_a_eazel_news_item), (parse_a_update_news_item),
(build_services_glist_from_xml), (build_eazel_news_glist_from_xml),
(build_update_news_glist_from_xml), (parse_summary_xml_file):
New snapshot of the summary xml parser. Getting closer to finished.
2000-08-31 Andy Hertzfeld <[email protected]>
various cleanups and enhancements for the rpm view
* components/rpmview/nautilus-rpm-view.h:
moved the details private again by moving them out of the header file
* components/rpmview/nautilus-rpm-view.c:
(nautilus_rpm_view_initialize),
(nautilus_rpm_view_update_from_uri), (nautilus_rpm_view_get_uri),
(nautilus_rpm_view_verify_package_callback):
moved the details back here; added an accessor for the uri field;
added a verify button; changed label info text back to using non-aa
text, since aa-text doesn't justify right yet; captured images
from the header if present.
* components/rpmview/nautilus-rpm-view-install.c:
(nautilus_rpm_view_install_done),
(nautilus_rpm_view_install_package_callback):
used the new accessor for uris.
2000-08-31 John Sullivan <[email protected]>
* libnautilus-extensions/nautilus-gtk-extensions.c:
(finish_button_activation): Little bitty code cleanup.
2000-08-31 Gene Z. Ragan <[email protected]>
Fixed bug 1699, get help stuff to render in mozilla.
* components/mozilla/main.c: (main):
* components/mozilla/nautilus-mozilla-content-view.c:
(mozilla_vfs_read_callback), (mozilla_vfs_callback),
Two new callbacks to handle streaming of data into
the mozilla component.
(nautilus_mozilla_content_view_load_uri):
* components/mozilla/nautilus-mozilla-content-view.oafinfo:
Modified file so mozilla component will handle all types.
2000-08-31 Rebecca Schulman <[email protected]>
Completed the rest of 2369 for the required
milestone.
* check-FIXME.pl: Make the script a little
bit smarter about recognizing FIXMEs with
bug reports.
* src/nautilus-search-bar-criterion.c:
* src/nautilus-search-bar-criterion.h:
* src/nautilus-search-bar-criterion-private.h:
(nautilus_search_bar_criterion_destroy),
(nautilus_search_bar_criterion_new), (option_menu_callback),
(nautilus_search_bar_criterion_set_callback),
(nautilus_search_bar_criterion_new_from_values),
(nautilus_search_bar_criterion_next_new),
(nautilus_search_bar_criterion_first_new),
(nautilus_search_bar_criterion_get_location),
(get_next_default_search_criterion_type),
(nautilus_search_bar_criterion_show),
(nautilus_search_bar_criterion_hide),
(nautilus_search_bar_criterion_human_from_uri),
(nautilus_search_uri_get_first_criterion), (get_name_location_for),
(get_content_location_for), (get_file_type_location_for),
(get_size_location_for), (get_emblem_location_for),
(get_date_modified_location_for), (get_owner_location_for),
(make_emblem_value_menu), (emblems_changed_callback):
* libnautilus-extensions/Makefile.am:
* src/Makefile.am:
moved search bar criterion class out of
libnautilus-extensions and into /src
Added acceptance of the emblems changed signal, which
causes a redraw of an emblem criteria menu.
* libnautilus-extensions/nautilus-directory.c:
(nautilus_directory_destroy), (construct_private_metafile_vfs_uri),
(nautilus_directory_new):
Changed the name of metafile_vfs_uri function from
metafile_uri to reflect its return of a gnome vfs uri.
Check for the case where the metafile was not successfully
created when freeing.
* src/nautilus-complex-search-bar.c: (criterion_callback):
got rid of extraneous print statement.
* src/nautilus-property-browser.c: (remove_emblem),
(emblem_dialog_clicked), (emit_emblems_changed_signal):
Added the emission of signals that happen when the list of
emblems change so that we tell the search bar about it.
* src/nautilus-signaller.c: (nautilus_signaller_initialize_class):
* src/nautilus-signaller.h:
Added an "emblems changed" signal to the signaller's vocabulary,
since we need a global signal, so this seems to be the logical
object to attach it to.
2000-08-31 John Sullivan <[email protected]>
Fixed bug 2013 (Enter should start complex search when any
search text field has focus)
* libnautilus-extensions/nautilus-gtk-extensions.c:
(nautilus_gtk_button_auto_click): Now checks for insensitive
state and does nothing in that case.
* src/nautilus-complex-search-bar.c:
(nautilus_complex_search_bar_initialize):
Made find button get created before criteria widgets.
(attach_criterion_to_search_bar): Wire up "activate"
signal for text field to auto_click the find button.
* src/nautilus-simple-search-bar.c:
(nautilus_simple_search_bar_initialize): Now the
"activate" signal for the one text field here calls
auto_click on the button instead of calling a separate
callback that checks button sensitivity (indirectly) and
then starts search. Watch the button depress as if by magic!
Impress your friends!
2000-08-31 John Sullivan <[email protected]>
Fixed bug 1037 (Use "folder" instead of "directory" consistently)
I think I found them all. If you find any others, fix them or
write up new bug reports about them.
* libnautilus-extensions/nautilus-file.c:
(format_item_count_for_display), (nautilus_file_dump):
* src/file-manager/fm-directory-view.c:
(fm_directory_view_display_selection_info):
* src/file-manager/fm-error-reporting.c:
(fm_report_error_renaming_file): Replaced uses of "directory"
and "directories" in the UI with "folder" and "folders"
* src/nautilus-window-menus.c: (nautilus_window_initialize_menus):
* src/nautilus-window-private.h:
* src/nautilus-window-toolbars.c: Same as above. Also moved the
hint strings used by both toolbar buttons and menu items into
a shared header file instead of duplicating them.
2000-08-31 Ramiro Estrugo <[email protected]>
* components/mozilla/Makefile.am:
* components/mozilla/nautilus-mozilla-content-view.c:
(nautilus_mozilla_content_view_initialize),
(bonobo_mozilla_callback):
Add commented out support for registering a component.
Add a dumb streaming example.
2000-08-31 Ramiro Estrugo <[email protected]>
* components/mozilla/mozilla-components.cpp:
* components/mozilla/mozilla-components.h:
New dumb wrapper for registering a mozilla xpcom component from the
Nautilus universe.
2000-08-31 Andy Hertzfeld <[email protected]>
* src/nautilus-toolbar.c: (nautilus_toolbar_size_allocate):
fixed bug 2628, merged toolbar items appear after throbber, by
saving and restoring the current position around the positioning
of the throbber.
2000-08-31 John Sullivan <[email protected]>
Converted more preferences to not be coupled to user level,
following up on Ramiro's change to make this possible. Note
that some of your preferences might experience a one-time
change after this checkout (most noticeably the sidebar width).
* libnautilus-extensions/nautilus-global-preferences.c:
(global_preferences_register): Removed default values for
sidebar width.
* libnautilus-extensions/nautilus-global-preferences.h:
Renamed NAUTILUS_PREFERENCES_ICON_VIEW_TEXT_ATTRIBUTE_NAMES to
NAUTILUS_PREFERENCES_ICON_CAPTIONS.
Moved NAUTILUS_PREFERENCES_ICON_CAPTIONS,
NAUTILUS_PREFERENCES_SHOW_BUILT_IN_BOOKMARKS, and
NAUTILUS_PREFERENCES_SIDEBAR_WIDTH to the non-user-level-coupled
section, and gave them full gconf paths.
Added clarifying comment to NAUTILUS_PREFERENCES_SIDEBAR_PANELS_NAMESPACE.
* src/file-manager/fm-directory-view.c:
Removed mysterious semicolon that was the first character in the file.
(fm_directory_view_initialize), (fm_directory_view_destroy):
Update for name change of NAUTILUS_PREFERENCES_ICON_CAPTIONS.
* src/file-manager/fm-icon-text-window.c:
(changed_attributes_option_menu_callback),
(create_icon_text_window), (fm_icon_text_window_destroy_callback),
(fm_get_text_attribute_names_preference_or_default):
Update for name change of NAUTILUS_PREFERENCES_ICON_CAPTIONS.
* src/nautilus-window.c: (nautilus_window_initialize): Teensy
comment clarification.
2000-08-31 John Sullivan <[email protected]>
Fixed bug 2327 (Alt-key shortcuts to navigate menus shouldn't
work on Desktop). Control-key shortcuts to invoke items directly
still work. I had to fix a Bonobo bug to make this work, so
until you get a new Bonobo this won't work for you (but it will
still compile and run and all).
* src/nautilus-window.h:
Prototype for nautilus_window_disable_keyboard_navigation_for_menus.
* src/nautilus-window-menus.c: Added normal_menu_titles, a static
array of menu paths used for iterating across all the textual
menu titles.
(get_menu_title): New function, returns menu title given path.
(remove_underline_accelerator_from_menu_title): New function,
resets the label of a menu to be the same, but without the underline.
(nautilus_window_disable_keyboard_navigation_for_menus): New function,
iterates through normal_menu_titles calling remove_underline_...
on each.
(new_top_level_menu): Now computes title from path using get_menu_title
instead of taking title as parameter.
(nautilus_window_create_top_level_menus): New function, creates all
the top-level menus (other than weird user level one) by iterating
across normal_menu_titles.
(nautilus_window_initialize_menus): Now calls _create_top_level_menus
instead of creating each one at a time.
* src/nautilus-desktop-window.c: (nautilus_desktop_window_new):
Now calls nautilus_window_disable_keyboard_navigation_for_menus
just after creating the NautilusWindow.
2000-08-31 Andy Hertzfeld <[email protected]>
* src/nautilus-about.c: (nautilus_about_initialize),
(nautilus_about_draw_info):
draw the passed-in comment in the appropriate position. This change
completes the new about dialog.
* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback):
tweaked the about window comment and authors.
2000-08-31 Andy Hertzfeld <[email protected]>
* src/nautilus-about.c: (nautilus_about_initialize):
fixed bug 2653, about window crashes if shown more than once.
Fixed by setting the "close_hides" boolean. Also, set the
title of the window to "About Nautilus".
2000-08-31 Ramiro Estrugo <[email protected]>
Bug 1293. Core dump if gconf returns bad values
* libnautilus-extensions/nautilus-user-level-manager.c:
(nautilus_user_level_manager_get_user_level):
Add blurb explaining why its ok to trust the returned string.
This was actually fixed by komrade Jirka's last checkin to this
file.
2000-08-31 Ramiro Estrugo <[email protected]>
* src/nautilus-window-menus.c:
(nautilus_window_initialize_menus): Use
gtk_signal_connect_while_alive() for user_level_changed_callback
so that we dont get callbacks after we are dead.
2000-08-31 Ramiro Estrugo <[email protected]>
Task 1229. Need support for preferences not coupled to user level.
* libnautilus-extensions/nautilus-global-preferences.c:
(global_preferences_register):
Add FIXME for the issue of setting default values for non user
level specific preferences.
* libnautilus-extensions/nautilus-global-preferences.h:
Add blurb explaining preferences that are user level specific and
those that arent.
* libnautilus-extensions/nautilus-preferences.c:
(preferences_hash_node_add_by_user_level_callbacks),
(preferences_hash_node_add_callback),
New functions to deal with callbacks for preferences that are
coupled to the user level.
(preferences_hash_node_check_changes_func),
(preferences_make_make_gconf_key),
(preferences_gconf_by_user_level_callback),
(preferences_gconf_callback), (nautilus_preferences_add_callback),
New functions to deal with callbacks for preferences that are NOT
coupled to the user level.
(nautilus_preferences_set_boolean),
(nautilus_preferences_get_boolean),
(nautilus_preferences_set_string_list),
(nautilus_preferences_get_string_list),
(nautilus_preferences_set_enum), (nautilus_preferences_get_enum),
(nautilus_preferences_set), (nautilus_preferences_get):
Add support for preferences that are not coupled to the user
level. Compute gconf keys by taking the preference name into
account. If it begins with a "/" (indicating it is fully
qualified) then treat it as a regular gconf key and use it as is.
Otherwise, use the user_level_manager to compute a key according
to the current user level.
* libnautilus-extensions/nautilus-preferences.h:
Add documentation explaining the two different ways to specify
preference names depending on whether they are user level specific
or not.
* src/nautilus-first-time-druid.c: (set_http_proxy):
Use the non user level specific perferences support instead of
poking gconf directly.
2000-08-31 Eskil Heyn Olsen <[email protected]>
* nautilus-installer/src/evil.xpm:
Forget the evil xpm for failed operation.
2000-08-31 Eskil Heyn Olsen <[email protected]>
* components/services/install/lib/eazel-install-object.c:
(eazel_install_emit_done):
Debug output.
* components/services/install/lib/eazel-install-rpm-glue.c:
(eazel_install_flatten_categories), (install_new_packages),
(eazel_install_download_packages),
(eazel_install_pre_install_packages),
(eazel_install_do_install_packages),
(eazel_install_prune_packages),
(eazel_install_package_name_compare),
(eazel_install_fetch_rpm_dependencies):
Revamped a lot to prevent multiple downloads of the same file (bug
2643), as the installer revealed some easy ways to trigger
that. Basically, I no longer handle each category individually,
but flatten the list. Also handles package-list xml's with
dependency trees.
* components/services/install/lib/eazel-install-xml-package-list.c:
(parse_category), (osd_parse_implementation), (osd_parse_softpkg):
Removed xml_get_prop and use xml_get_value instead.
* nautilus-installer/src/Makefile:
* nautilus-installer/src/Makefile.am:
* nautilus-installer/src/callbacks.c: (begin_install):
* nautilus-installer/src/installer.c: (create_pixmap),
(create_what_to_do_page), (create_install_page),
(create_finish_page_good), (create_finish_page_evil),
(create_window), (install_done), (toggle_button_lock),
(toggle_button_toggled), (eazel_installer_add_category),
(create_info_druid_page), (check_system),
(eazel_install_parse_dont_shows), (eazel_install_parse_must_haves),
(eazel_install_parse_depends), (eazel_installer_load_dependencies),
(eazel_install_get_depends), (eazel_installer_initialize):
* nautilus-installer/src/installer.h:
* nautilus-installer/src/link.sh:
* nautilus-installer/src/main.c: (nautilus_pixmap_file):
* nautilus-installer/src/package-list-depends.xml:
* nautilus-installer/src/prescript:
Slam bam thank you mam. Now uses the nautilus-druid, and only grew
by 100k... phew.
Added some funky xml parsing so you can control category
dependency via a xml file.
2000-08-31 J Shane Culpepper <[email protected]>
* components/services/summary/lib/eazel-summary-shared.c:
(build_services_glist_from_xml), (build_eazel_news_glist_from_xml),
(build_update_news_glist_from_xml), (parse_summary_xml_file):
* components/services/summary/lib/eazel-summary-shared.h:
Added the beginnings of the summary configuration xml parser.
Nowhere close to working yet.
2000-08-31 Andy Hertzfeld <[email protected]>
added a new about box that uses anti-aliased text.
* icons/Makefile.am:
* icons/about_background.png:
added image for about background
* src/Makefile.am:
* src/nautilus-about.c,h: (nautilus_about_initialize_class),
(nautilus_about_destroy), (nautilus_about_initialize),
(nautilus_about_new), (draw_pixbuf), (nautilus_about_repaint),
(draw_aa_string), (nautilus_about_draw_info):
added a new class for our about box
* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback):
invoked nautilus_about instead of gnome_about
update the list of authors and other info
2000-08-31 Mathieu Lacage <[email protected]>
* components/tree/nautilus-tree-view.c: fix bug 2468.
maciej now owes me a restaurant. (zuni ?)
* libnautilus-extensions/nautilus-file.c:
(nautilus_file_get_type_as_string): update to gnome-vfs API
changes.
2000-08-30 Ramiro Estrugo <[email protected]>
* test/test-nautilus-label.c: (justification_changed_callback),
(drop_shadow_offset_changed_callback),
(create_justification_frame), (create_drop_shadow_offset_frame),
(main):
Add justification tests. Add drop shadow tests.
2000-08-30 Gene Z. Ragan <[email protected]>
* libnautilus-extensions/nautilus-volume-monitor.c: (eject_cdrom):
Fixed bug 2446, need to implement CDROM ejection.
It's in there. Let's see what breaks.
* src/nautilus-window.c: (nautilus_window_initialize_class):
(realize):
Added a new hint for sawfish and removed a focus flag at the
reccomendation of John Harper.
2000-08-30 John Sullivan <[email protected]>
Fixed bug 2393 (need cleaner way for directory view subclasses
to insert menu items)
I'm going to be futzing with directory view context menu items
soon, so I started by cleaning up the architecture a little to
make future futzing easier.
* src/file-manager/fm-directory-view.h:
* src/file-manager/fm-directory-view.c:
(set_menu_item_path): New function, stores the menu's path
identifier in the GtkMenuItem (via set_data) so that it can
be compared against later.
(menu_item_matches_path): New function, checks whether a menu
item's stored path matches a specified one.
(fm_directory_view_add_context_menu_item): Renamed this function
from fm_directory_view_add_menu_item for clarity, and gave it
a path parameter so callers could specify the path by which the
item can later be identified. Calls set_menu_item_path with
path.
(append_gtk_menu_item_with_view): call set_menu_item_path.
(real_create_background_context_menu_zoom_items),
(fm_directory_view_real_create_background_context_menu_items):
Update for fm_directory_view_add_context_menu_item change.
(add_open_with_gtk_menu_item): Add comment about lameness that I
will fix soon.
(fm_directory_view_get_context_menu_index): Reimplement using
menu_item_matches_path instead of hardwiring indices that could
easily get out of synch with actual menu-creation code (and were
in fact out of synch). Added a GtkMenu parameter as part of this.
* src/file-manager/fm-desktop-icon-view.c:
(fm_desktop_icon_view_create_background_context_menu_items):
Update for fm_directory_view_add_context_menu_item change.
* src/file-manager/fm-icon-view.c:
(fm_icon_view_create_selection_context_menu_items),
* src/file-manager/fm-search-list-view.c:
(real_create_selection_context_menu_items): Update for
fm_directory_view_get_context_menu_index change.
2000-08-30 Andy Hertzfeld <[email protected]>
* src/nautilus-throbber.c: (get_throbber_dimensions),
(nautilus_throbber_initialize):
made the throbber compute its size using all of its constituent
images instead of just the rest image. Plus some minor clean-ups.
2000-08-30 Darin Adler <[email protected]>
* libnautilus-extensions/nautilus-directory.c:
(construct_private_metafile_uri), (nautilus_self_check_directory):
* libnautilus-extensions/nautilus-icon-factory.c:
(make_thumbnail_path):
* libnautilus-extensions/nautilus-link.c: (make_local_path):
Use escape function in gnome-vfs instead of one in Nautilus.
* libnautilus-extensions/nautilus-string.h:
* libnautilus-extensions/nautilus-string.c:
(nautilus_str_strip_chr), (nautilus_str_double_underscores),
(nautilus_str_middle_truncate): Use g_new instead of g_malloc.
Helps get rid of silly "sizeof (char)" business.
Remove nautilus_str_escape_slashes.
2000-08-30 J Shane Culpepper <[email protected]>
* components/services/summary/Makefile.am:
* components/services/summary/lib/.cvsignore:
* components/services/summary/lib/Makefile.am:
* components/services/summary/lib/eazel-summary-shared.c:
(http_fetch_remote_file):
* components/services/summary/lib/eazel-summary-shared.h:
* configure.in:
Adding a portion of the shared download / parse framework
for summary configuration.
2000-08-30 Rebecca Schulman <[email protected]>
Most of the work on 2369, to add the emblems to the search
criteria. This work involved refactoring the code to generate
property information for display. This new code is used by the
code to create the search criterion, and also by the emblem
display code, which is in nautilus-property-browser.
* libnautilus-extensions/Makefile.am:
* libnautilus-extensions/nautilus-customization-data.c:
* libnautilus-extensions/nautilus-customization-data.h:
(nautilus_customization_data_new),
(nautilus_customization_data_get_next_element_for_display),
(nautilus_customization_data_private_data_was_displayed),
(nautilus_customization_data_destroy),
(get_global_customization_uri), (get_private_customization_uri),
(get_file_path_for_mode),
(nautilus_customization_make_background_chit),
(format_name_for_display), (strip_extension):
New file with extracted methods from nautilus-property browser.
The new API initiates a new structure, and has an iterative call
to "get the next element for display" which returns a correctly
sized pixmap widget and a label widget containing the name appropriate
for display.
* libnautilus-extensions/nautilus-dateedit-extensions.c:
(nautilus_gnome_date_edit_get_date_as_string):
Removed extraneous debugging printf.
* libnautilus-extensions/nautilus-search-bar-criterion.c:
* libnautilus-extensions/nautilus-search-bar-criterion.h:
(nautilus_search_bar_criterion_new_from_values),
(nautilus_search_bar_criterion_next_new),
(nautilus_search_bar_criterion_get_location),
(get_emblem_location_for), (get_date_modified_location_for),
(make_emblem_value_menu):
Added code to generate the emblem menu, and to generate a
search criterion for the search uri from the menu's settings.
* libnautilus-extensions/nautilus-search-uri.c:
More language updated, and added text for emblems
* src/nautilus-property-browser.c: (make_drag_image),
(make_properties_from_directories), (make_category):
Updated this code to deal with new refactoring.
2000-08-30 John Sullivan <[email protected]>
* src/file-manager/fm-icon-view.c: (fm_icon_view_merge_menus):
Moved the "Tighter Layout" and "Reversed Order" toggle items
into the "Lay out items" submenu, after discussing with Andy
(who had earlier discussed with Arlo).
2000-08-30 Robey Pointer <[email protected]>
* src/nautilus-main.c: (main):
* src/nautilus-shell.c: (corba_open_default_window),
(save_window_states), (restore_window_states), (corba_restart):
Make restart save window sizes, positions, and uri's in a gconf
setting, so that the windows can be (mostly) restored.
2000-08-30 Andy Hertzfeld <[email protected]>
* src/nautilus-throbber.c: (nautilus_throbber_initialize),
(nautilus_throbber_load_images),
(nautilus_throbber_button_press_event):
some samll clean-ups for the throbber, including removing some
debug messages that were accidentally left in, which John called
"throbber spam".
2000-08-30 Mike Fleming <[email protected]>
eazel:summary view now calls ammonite to log in.
Also added ammonite dependency to configure.in when
nautilus is compiled with --enable-eazel-services
* components/services/summary/nautilus-view/Makefile.am:
* components/services/summary/nautilus-view/nautilus-summary-view.c
: (entry_changed_cb), (authn_cb_succeeded), (authn_cb_failed),
(login_button_cb), (logout_button_cb),
(nautilus_summary_view_initialize),
(nautilus_summary_view_destroy):
* configure.in:
2000-08-30 Gene Z. Ragan <[email protected]>
* libnautilus-extensions/nautilus-mime-actions.c:
(nautilus_mime_get_default_component_for_uri_internal):
Fixed bug 1158, GnomeVFSMimeHandlers code needs error handling.
There was a lonely FIXME here. A NULL is now returned instead of
an assert. A NULL is handled properly by all callers of this function.
* src/file-manager/fm-desktop-icon-view.c: (event_callback),
(fm_desktop_icon_view_initialize):
Work in progress trying to get keyboard events to the desktop.
I am working with John Harper on this.
2000-08-30 Ali Abdin <[email protected]>
New tags to fix the following bugs: #2383, #2384, #2386, #2387,
#2382, #2523
Also add in a first cut at Navigation Links (Bug #2201)
* components/help/converters/gnome-db2html2/gdb3html.h:
Add the following tags: superscript, systemitem, varname, option,
quote, blockquote - Fixes bug #2383, #2384, #2386, #2387, #2382, #2523
Add a sect1id_stack GList to the Context struct
* components/help/converters/gnome-db2html2/sect-elements.[ch]:
(sect_blockquote_start_element),
(sect_blockquote_end_element),
(sect_quote_start_element),
(sect_quote_end_element),
(sect_sup_start_element),
(sect_sup_end_element): New functions to handle some of the new tags
* components/help/converters/gnome-db2html2/gdb3html.c:
(find_first_element): Remove inadvertant debug check-in
(sect_footer),
(print_footer): New functions to handle the output of a footer
(sect1_start_element): New 'shared' function that builds a GList of
sect1 id's
(article_end_element): No longer print out </HTML> or </BODY> as that
should be handled by the footer
(parse_file): Modify to print out the footer
* components/help/converters/gnome-db2html2/toc-elements.c:
* components/help/converters/gnome-db2html2/sect-preparse.c:
(sect_preparse_sect_start_element): Make a call to the
sect1_start_element function when we encounter a sect1 tag
(toc_sect_start_element): ditto
2000-08-30 Robin * Slomkowski <[email protected]>
README: added requirement of GCONF_0_8 tag
2000-08-30 Eskil Heyn Olsen <[email protected]>
* components/rpmview/nautilus-rpm-view.c:
(nautilus_rpm_view_update_from_uri):
Changed the comments reg. bug 1657
components/services/install/command-line/eazel-alt-install-corba.c:
(create_package),
Handles ~ in filenames now
(main):
Proper gtk_signal_func cast for the delete_files signal
* components/services/install/command-line/eazel-gen-pre-xml.sh:
Script to generate a colon-delimited file for eazel-gen-xml, by
using rpm -qp on rpm files.
* components/services/install/lib/eazel-install-object.c:
(eazel_install_class_initialize), (eazel_install_initialize):
-DEAZEL_INSTALL_SLIM no longer creates a userlocal rpmdb
* components/services/install/lib/eazel-install-protocols.c:
(gnome_vfs_xfer_callback), (free_string),
(gnome_vfs_fetch_remote_file)
(get_url_for_package):
Added D: to debug output, nicefied the gnome-vfs stuff after shane
laughed at me
(eazel_install_fetch_package),
Added the md5 stuff, it's commented out, as there is no md5 in the
xml from the server, thus checking md5 would fail all packages.
* components/services/install/lib/eazel-install-rpm-glue.c:
(eazel_install_download_packages), (download_all_packages),
(eazel_install_pre_install_packages), (install_packages),
(uninstall_packages),
(eazel_install_prepare_rpm_system), (eazel_install_add_to_rpm_set),
(eazel_install_check_existing_packages),
(eazel_install_fetch_rpm_dependencies):
So much...
- xml packagelist can now have soft_depends which
the download and install now checks for
- removed some leaks
- check for reopening rpmdb which is bad
- clarifying comments for div FIXME's
(eazel_install_prune_packages),
Fixed a vaarg usage
* components/services/install/lib/eazel-install-types.h:
Added md5 to the PackageData struct
* components/services/install/lib/eazel-install-types.c:
(categorydata_new), (categorydata_destroy_foreach),
(packagedata_new), (packagedata_destroy_foreach),
Added md5 to the PackageData struct
Now has some debug stuff to check for deallocating structes.
(packagedata_remove_soft_dep),
added function to remove a package from another packages soft_deps
(rpmfilename_from_packagedata):
Fixed a wrong g_strconcat
* components/services/install/lib/eazel-install-xml-package-list.c:
(generate_xml_package_list)
Generates nicer category names...
(parse_category), (parse_memory_transaction_file),
Uses categorydata_new now
(osd_parse_implementation),
Added FIXME reg. md5 check
(parse_osd_xml_from_memory):
D: to debug output
* components/services/install/lib/makefile.staticlib.in:
No longer sets the defines, they are now set in the link.sh
scrip in the nautilus-installer
* nautilus-installer/src/Makefile:
* nautilus-installer/src/Makefile.am:
* nautilus-installer/src/callbacks.c: (druid_cancel),
(begin_install), (druid_finish), (prep_install):
* nautilus-installer/src/installer.c: (set_white_stuff),
(create_what_to_do_page), (create_install_page),
(create_finish_page), (create_window), (set_images),
(eazel_install_progress), (eazel_download_progress),
(install_failed_helper), (install_failed), (download_failed),
(eazel_install_preflight), (eazel_install_dep_check),
(eazel_install_delete_files), (eazel_installer_add_category),
(check_system), (eazel_installer_do_install),
(eazel_installer_finalize), (eazel_installer_unref),
(eazel_installer_class_initialize), (eazel_installer_initialize),
(eazel_installer_get_type), (eazel_installer_new):
* nautilus-installer/src/installer.h:
* nautilus-installer/src/interface.c:
* nautilus-installer/src/link.sh:
* nautilus-installer/src/main.c: (oaf_init), (bonobo_init):
* nautilus-installer/src/support.c:
* nautilus-installer/src/support.h:
Created a gtkobject for the installer, revamped the choice stuff,
so it now offers the categories, stabilization work etc.
2000-08-30 Andy Hertzfeld <[email protected]>
added a Netscape-like throbber widget to the toolbar, to give busy feedback. It uses
uses a generic animation from Arlo, but it's themable. It still needs some clean-up
but it's mostly done.
* configure.in:
* icons/Makefile.am:
* icons/throbber
* icons/throbber/.cvsignore:
* icons/throbber/Makefile.am:
* icons/throbber/*.png:
added a directory of frame images for the generic throbber.
* src/Makefile.am:
* src/nautilus-throbber.c,h: (nautilus_throbber_initialize_class),
(nautilus_throbber_destroy), (get_throbber_dimensions),
(nautilus_throbber_initialize), (nautilus_throbber_new),
(nautilus_throbber_theme_changed), (draw_pixbuf),
(select_throbber_image), (draw_throbber_image),
(nautilus_throbber_draw), (nautilus_throbber_expose),
(bump_throbber_frame), (nautilus_throbber_start),
(nautilus_throbber_stop), (nautilus_throbber_unload_images),
(load_themed_image), (make_throbber_frame_name),
(nautilus_throbber_load_images),
(nautilus_throbber_button_press_event),
(nautilus_throbber_size_allocate):
added a throbber widget that animates while pages are loaded.
* src/nautilus-toolbar.h:
made the nautilus toolbar know about the throbber
* src/nautilus-toolbar.c,h: (nautilus_toolbar_set_throbber),
(nautilus_toolbar_size_allocate):
made the nautilus toolbar position the throbber on the far right
* src/nautilus-window-toolbars.c: (allocate_throbber),
(nautilus_window_initialize_toolbars):
allocate the throbber when we make the toolbar
* src/nautilus-window.c: (nautilus_window_allow_stop):
tell the throbber to start and stop when page loading begins/ends. We piggy-back
off of the stop button.
* src/nautilus-window.h:
made the nautilus_window know about the throbber
2000-08-29 Mike Fleming <[email protected]>
* src/nautilus-first-time-druid.c:
(next_proxy_configuration_page_callback), (download_callback),
(initiate_file_download), (set_http_proxy), (getline_dup),
(load_nscp_proxy_settings), (attempt_http_proxy_autoconfigure):
Bug #1812
First-time druid now autoprobes for HTTP proxy settings and
saves them to GConf. Now gnome-vfs needs to be fixed to make use
of this (ammonite already does).
Tue Aug 29 22:43:15 2000 George Lebl <[email protected]>
This should close bug #1361
* configure.in, cut-n-paste-code/widgets/Makefile.am,
cut-n-paste-code/widgets/nautilus-druid/*,
po/POTFILES.in:
Remove the nautilus druid hack from here. We can do all
that we need from libnautilus extensions without need of
cut and paste code.
* libnautilus-extensions/nautilus-druid.[ch],
libnautilus-extensions/nautilus-druid-page-eazel.[ch],
po/POTFILES.in:
Make NautilusDruid be a derivation of GnomeDruid and
the NautilusDruidPageEazel of GnomeDruidPage. Also make
use of more of the nautilus style of coding in both. Federico
will kill me for using remove/add to move a file, but it's more
then just a move anyway.
* src/nautilus-first-time-druid.c (set_up_proxy_config_page)
(next_update_page_callback) (next_update_feedback_page_callback)
(next_proxy_configuration_page_callback)
(finish_page_back_callback) (nautilus_first_time_druid_show)
(download_callback) (initiate_file_download):
Use the new nautilus druid and the new eazel druid page everywhere.
Also fix one case of double adding things to a GtkBox.
2000-08-29 Gene Z. Ragan <[email protected]>
* src/file-manager/fm-desktop-icon-view.c:
(fm_desktop_icon_view_create_background_context_menu_items):
Added an accelerator for the New Folder item.
* src/file-manager/fm-directory-view.c: (select_all_callback),
(fm_directory_view_add_menu_item),
(fm_directory_view_real_create_background_context_menu_items):
Added support for accelerators in popup menu items. You
specify the accelerator key by placing an _ before the desired
letter.
* libnautilus-extensions/nautilus-drag.c:
(nautilus_drag_can_accept_item):
Fixed a bug dealing with dragging over trash.
2000-08-29 Andy Hertzfeld <[email protected]>
* components/rpmview/nautilus-rpm-view.c:
(nautilus_rpm_view_initialize),
(nautilus_rpm_view_update_from_uri):
used nautilus_label to provide anti-aliased text in the rpm-view,
as well as some other clean-ups. The labels aren't aligned properly,
due to a bug in nautilus_label that Ramiro will be fixing soon.
* src/nautilus-property-browser.c:
(nautilus_property_browser_initialize), (make_category_link),
(nautilus_property_browser_update_contents):
changed command buttons at bottom back to using non-aa text at
Arlo's request; also, put the labels inside the category buttons
like Susan and Arlo both want, as well as other minor tweaks.
* src/nautilus-sidebar-title.c: (update_font):
changed a comment as part of resolving a FIXME.
2000-08-29 Arlo Rose <[email protected]>
Fixed all outstanding cHRM white point problems.
* data/emblems/OK.png
* data/emblems/draft.png
* data/emblems/erase.png
* data/emblems/favorite.png
* data/emblems/important.png
* data/emblems/new.png
* data/emblems/ohno.png
* data/emblems/personal.png
* data/emblems/urgent.png
* icons/backgrounds.png
* icons/colors.png
* icons/emblems.png
* icons/knob.png
* icons/nautilus-logo.png
* icons/search.png
* icons/eazel/i-directory-aa.png
* icons/eazel/i-directory-accept-72.png
2000-08-29 Robin * Slomkowski <[email protected]>
* cut-n-paste-code/widgets/nautilus-druid/Makefile.am:
added VFS_CFLAGS so it could find gnome vfs headers.
2000-08-29 Robey Pointer <[email protected]>
* components/services/install/nautilus-view/nautilus-service-instal
l-view.c: (current_progress_bar_complete),
(nautilus_service_install_preflight_check),
(show_dialog_and_run_away), (nautilus_service_install_done),
(nautilus_service_install_failed):
Restore code to jump to the summary widget after an install (for
demo), and make a dialog popup before then.
2000-08-29 Michael Engber <[email protected]>
Fixed warning caused by passing NULL for a directory - bug 2079.
* src/file-manager/fm-icon-view.c: (layout_changed_callback):
2000-08-29 Darin Adler <[email protected]>
* libnautilus-extensions/nautilus-directory-async.c:
(call_ready_callbacks), (start_or_stop_io),
(nautilus_directory_async_state_changed):
Fixed bug that showed up as warnings on exit and fails of "make
check". The code needs to check for I/O that must be stopped after
calling "call_when_ready" callbacks. I improved the structure here
a bit too by making a new function.
* libnautilus-extensions/nautilus-directory.c:
(nautilus_self_check_directory): Fixed a mistake in the self-check
that made it check the wrong thing.
* libnautilus-extensions/nautilus-link-set.c: (link_set_path_name):
Use nautilus_make_path instead of the hard-coded equivalent.
* libnautilus-extensions/nautilus-gtk-extensions.h: Reformatted.
* src/nautilus-property-browser.c: (remove_emblem): Formatting tweak.
2000-08-29 John Sullivan <[email protected]>
Fixed bug 2223 (selecting separator of "View As" option
menu causes problems).
Surprise, surprise, surprise -- separator menu items are
not treated as insensitive by default, so you can select
them. This makes no difference in pull-down menus, but
leads to trouble in option menus.
* src/nautilus-window.c:
(new_gtk_separator): New convenience function, makes
a separator item, sets it to be insensitive, and shows it.
(replace_special_current_view_in_content_view_menu),
(nautilus_window_load_content_view_menu): Deploy new_gtk_separator.
2000-08-29 Gene Z. Ragan <[email protected]>
Refactored function and fixed a bug.
* libnautilus-extensions/nautilus-drag.c:
(nautilus_drag_can_accept_item):
Fixed bug 1950, Trash icon on desktop should have