-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-20001018
14060 lines (11352 loc) · 545 KB
/
ChangeLog-20001018
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-10-18 Andy Hertzfeld <[email protected]>
added a Services menu, per Darin's advice, as a separate bonobo
ui component. Right now, it's leaking the UI handler, and the
menu uris aren't correct; will finish this tomorrow.
* src/Makefile.am:
added new files: nautilus-service-ui.xml and
nautilus_window_install_service_menu
* src/nautilus-service-ui.xml:
xml file defining service menu and toolbar button
* src/nautilus-shell-ui.xml:
added placeholder for services menu and toolbar button; removed
definition of toolbar button
* src/nautilus-window-private.h:
added reference to install routine
* src/nautilus-window-service-menu.c: (goto_services_summary),
(goto_online_storage), (goto_software_catalog),
(nautilus_window_install_service_menu):
merge in the services menu and button and handle the commands
* src/nautilus-window-toolbars.c: (set_up_toolbar_images),
(nautilus_window_initialize_toolbars):
change the service button image when the theme changes
if EAZEL_SERVICES is defined
* src/nautilus-window.c: (nautilus_window_constructed):
call the install routine if EAZEL_SERVICES is defined
2000-10-17 Robey Pointer <[email protected]>
* components/services/install/lib/Makefile.am:
* components/services/install/nautilus-view/nautilus-service-instal
l-view.c: (create_package),
(nautilus_service_install_view_update_from_uri):
Fix "id=" stuff to "rpm_id=" to match new softcat format, and use
special pack->eazel_id field now that libeazelinstall provides it.
2000-10-17 Robey Pointer <[email protected]>
* nautilus-installer/src/callbacks.c: (prep_retry):
* nautilus-installer/src/callbacks.h:
* nautilus-installer/src/installer.c: (start_over),
(dont_start_over), (jump_to_retry_page):
Change installer's "let's upgrade other packages" screen to be
user-friendly and Arloified.
2000-10-17 Ramiro Estrugo <[email protected]>
* components/mozilla/nautilus-mozilla-content-view.c:
(mozilla_content_view_one_time_happenings):
Make the "misc" part of the User-Agent "Nautilus/1.0" instead of
"Nautilus"
2000-10-17 John Sullivan <[email protected]>
Fixed NULL dereference bug Eli was running into in the
location bar.
* libnautilus-extensions/nautilus-file-utilities.c:
(nautilus_handle_trailing_slashes): added assert that
parameter is not NULL
(nautilus_make_uri_canonical): Handle NULL up front,
to avoid dereferencing it later.
2000-10-17 Darin Adler <[email protected]>
* libnautilus-extensions/nautilus-icon-container.c: (icon_free),
(stop_rubberbanding), (destroy): Oops. Canvas items are not
widgets, although they ref. count in a similar way.
2000-10-17 Darin Adler <[email protected]>
* libnautilus-extensions/nautilus-directory-async.c:
(async_job_wake_up): Fix reentrancy problem.
2000-10-17 Darin Adler <[email protected]>
* libnautilus-extensions/nautilus-icon-container.c: (icon_free),
(stop_rubberbanding), (destroy): Fixed a bunch of FIXMEs now that
I "get" widget ref. counting.
(icon_set_position): Clip code rearranging.
2000-10-17 Andy Hertzfeld <[email protected]>
* components/hardware/nautilus-hardware-view.c:
(setup_overview_form):
made long device names wrap to multiple lines.
2000-10-17 Darin Adler <[email protected]>
Fix assert introduced with my last check-in.
* libnautilus-extensions/nautilus-directory-async.c:
(async_job_start), (async_job_end): Added a debugging feature to
match up starts with ends.
(directory_count_cancel), (deep_count_cancel), (mime_list_cancel),
(top_left_cancel), (activation_uri_cancel), (file_info_cancel),
(metafile_read_cancel), (file_list_cancel),
(directory_count_callback), (start_monitoring_file_list),
(directory_count_start), (deep_count_callback),
(deep_count_start), (mime_list_callback), (mime_list_start),
(top_left_read_done), (top_left_start), (get_info_callback),
(file_info_start), (activation_uri_done), (activation_uri_start):
Pass additional parameters to make debugging feature work.
(metafile_read_mark_done), (metafile_read_done),
(metafile_read_start): Broke out the read complete code to fix a
case where we would end a thread that we didn't start.
2000-10-17 John Sullivan <[email protected]>
Fixed bug 3828 (switching views makes torn-off menus disappear)
Fixed bug 3822 (Edit menu flashes when you click in location field)
Fixed bug 3529 (menu bar flashes when view switched)
These were all caused by our Bonobo xml files redefining labels
for submenus, causing Bonobo to think that it needed to destroy
the widget holding the title of the old submenu.
* libnautilus/nautilus-clipboard-ui.xml:
* src/file-manager/nautilus-directory-view-ui.xml:
* src/file-manager/nautilus-icon-view-ui.xml:
* src/file-manager/nautilus-search-list-view-ui.xml:
Removed all _label="Foo"s from submenus defined in
nautilus-shell-ui.xml (e.g. File, Edit, View).
Some bug fixes and cleanup in the summary view code. I noticed a
couple of obvious problems when I was trying to use services
earlier, and they led me to fix up a little of this code.
* components/services/summary/nautilus-view/nautilus-summary-view.c:
Removed "feedback_text" field from Details struct; now it's just a
parameter to generate_error_dialog (it was being leaked with each
use, also).
(generate_summary_form): Use new error_dialog_shown boolean to avoid
showing exactly the same dialog twice; removed a bunch of duplicate
code by collapsing an if/else into only the part that's different;
pass dialog text to generate_error_dialog directly
(authn_cb_failed): Don't follow an exclamation point with a period.
(generate_error_dialog): Set up a parent window so the dialog
appears in a sensible place; use GNOME_STOCK_BUTTON_CANCEL instead
of "CANCEL"; get message from parameter instead of Details field;
change "Retry" to "Try Again" to be less nerdly.
2000-10-17 Maciej Stachowiak <[email protected]>
* libnautilus-extensions/nautilus-directory-async.c:
(cancel_mime_list, set_up_request_by_file_attributes,
lacks_mime_list, nautilus_directory_invalidate_counts,
mime_list_callback, mime_list_start): Fix assorted bugs which made
NautilusFile think the list was never complete.
* libnautilus-extensions/nautilus-wait-until-ready.h: Include
<libnautilus-extensions/nautilus-directory.h> and
<libnautilus-extensions/nautilus-file.h>.
* libnautilus-extensions/nautilus-file-attributes.h: Rename
MIME_LIST attroibute to DIRECTORY_ITEM_MIME_TYPES.
* libnautilus-extensions/nautilus-file.h,
libnautilus-extensions/nautilus-file.c:
(nautilus_file_get_directory_item_mime_types): Renamed from
nautilus_file_get_mime_list.
* libnautilus-extensions/nautilus-mime-actions.h,
libnautilus-extensions/nautilus-mime-actions.c
(nautilus_file_wait_for_metadata,
nautilus_file_wait_for_mime_action_attributes,
nautilus_mime_get_default_action_type_for_uri,
nautilus_mime_get_default_action_for_uri,
nautilus_mime_get_default_application_for_uri_internal,
nautilus_mime_get_default_application_for_uri,
nautilus_mime_is_default_application_for_uri_user_chosen,
nautilus_mime_get_default_component_for_uri_internal,
nautilus_mime_get_default_component_for_uri,
nautilus_mime_is_default_component_for_uri_user_chosen,
nautilus_mime_get_short_list_applications_for_uri,
nautilus_mime_get_short_list_components_for_uri,
nautilus_mime_get_short_list_methods_for_uri,
nautilus_mime_get_all_applications_for_uri,
nautilus_mime_has_any_applications_for_uri,
nautilus_mime_get_all_components_for_uri,
nautilus_mime_has_any_components_for_uri,
nautilus_mime_set_default_action_type_for_uri,
nautilus_mime_set_default_application_for_uri,
nautilus_mime_set_default_component_for_uri,
nautilus_mime_set_short_list_applications_for_uri,
nautilus_mime_set_short_list_components_for_uri,
nautilus_mime_add_application_to_short_list_for_uri,
nautilus_mime_remove_application_from_short_list_for_uri,
nautilus_mime_add_component_to_short_list_for_uri,
nautilus_mime_remove_component_from_short_list_for_uri,
nautilus_mime_extend_all_applications_for_uri,
nautilus_mime_remove_from_all_applications_for_uri,
mime_type_list_to_hash_table, nautilus_do_component_query): Use
all the new NautilusFile APIs and stop using NautilusDirectory. No
longer take NautilusDirectory as a parameter in addition to
NautilusFile.
* libnautilus-extensions/nautilus-program-chooser.c:
(repopulate_program_list, is_application_default_for_uri,
is_component_default_for_uri, is_component_in_short_list_for_uri,
is_application_in_short_list_for_uri,
program_file_pair_is_default_for_file, add_to_short_list_for_file,
remove_from_short_list_for_file, remove_default_for_item,
set_default_for_item): Stop passing NautilusDirectory to
nautilus-mime-actions functions.
* libnautilus-extensions/nautilus-program-choosing.c:
(any_programs_available_for_file): Likewise.
* src/file-manager/fm-directory-view.c (switch_location_and_view,
files_added_callback, files_changed_callback,
create_open_with_gtk_menu, reset_bonobo_open_with_menu,
activate_callback): Likewise.
* src/nautilus-applicable-views.c (got_file_info_callback): Likewise.
* src/nautilus-sidebar.c (nautilus_sidebar_update_buttons): Likewise.
* src/nautilus-window-manage-views.c
(nautilus_window_set_content_view): Likewise.
* src/nautilus-window.c (nautilus_window_load_content_view_menu):
Likewise.
* test/test-nautilus-mime-actions-set.c (main): Likewise.
* test/test-nautilus-mime-actions.c (main): Likewise.
2000-10-17 Robey Pointer <[email protected]>
* components/services/install/lib/eazel-install-logic.c:
(eazel_install_flatten_categories):
Apply Eskil's memory patch to make the bootstrap not crash on
success (yay!).
2000-10-17 Darin Adler <[email protected]>
* check-FIXME.pl: Skip the macros directory.
* libnautilus-extensions/nautilus-directory-async.c:
(async_job_start), (async_job_end), (get_one_value_callback),
(get_one_value), (async_job_wake_up): Add new calls that limit the
number of async. jobs done at once.
(directory_count_cancel), (deep_count_cancel), (mime_list_cancel),
(top_left_cancel), (activation_uri_cancel), (file_info_cancel),
(metafile_read_cancel), (metafile_read_done): End the async. job
if it's cancelled.
(metafile_read_try_public_metafile), (metafile_read_restart):
Changed the old metafile_read_start function's name to
metafile_read_restart since it's used on the second try.
(is_anyone_waiting_for_metafile), (metafile_read_start): Move the
logic about whether to start reading into this function to make it
more like the other jobs. Also start the async. job.
(file_list_cancel): Changed name for consistency and end the
async. job.
(directory_count_callback): End the async. job.
(start_monitoring_file_list): Start the async job.
(file_list_start): Moved logic about when to start loading the file
list into this function to make it more like other jobs.
(directory_count_start): Renamed to make it more like other jobs
and start the async. job.
(deep_count_callback): End the async. job.
(deep_count_start): Start the async. job.
(mime_list_callback): End the async. job.
(mime_list_start): Start the async. job.
(top_left_read_done): End the async. job.
(top_left_start): Start the async. job.
(get_info_callback): End the async. job.
(file_info_start): Start the async. job.
(activation_uri_done): End the async. job.
(activation_uri_start): Start the async. job.
(nautilus_directory_async_state_changed): Wake up directories that
may have breathing from from all the cancellation.
(nautilus_directory_cancel): Moved the cancelling code down here,
remove a directory from the waiting list when it goes, and also
wake up directories that may have breathing room from all the
cancellation.
* libnautilus-extensions/nautilus-directory-private.h: Remove
request_read_metafile from the header.
* libnautilus-extensions/nautilus-directory.c:
(nautilus_directory_destroy): Eliminate the call to
nautilus_directory_stop_monitoring_file_list since that's now
handled by nautilus_directory_cancel.
* libnautilus-extensions/nautilus-file-private.h: Removed the
got_*_mime_type variables since they are the same as *_mime_type
!= NULL.
* libnautilus-extensions/nautilus-file.c: (destroy): Get rid of
checks for NULL before calling g_free.
(nautilus_file_update_info): Replace == FALSE with !. Simplified
some tortuous logic by getting rid of checks for NULL that weren't
needed and booleans that weren't needed.
(get_either_mime_type): Add helper to make it easier to avoid
confusion between default and slow MIME type.
(nautilus_file_compare_by_type): Use get_either_mime_type so it
works when default MIME type is NULL.
(nautilus_file_get_type_as_string): Use get_either_mime_type so it
works when default MIME type is NULL.
(nautilus_file_get_slow_mime_type): Simplified logic. Also got rid
of "application/nonono" which was left here by accident.
(nautilus_file_get_mime_type): Simplified logic and use
get_either_mime_type to share code.
(nautilus_file_is_mime_type): Simplified logic and use
get_either_mime_type to share code.
* src/file-manager/fm-directory-view.c: Format tweaks.
* user-guide/C/Makefile.am: Not so much echoing as we install.
2000-10-17 Gene Z. Ragan <[email protected]>
Fixed bug 3716, Bonobo paths for applications and
viewers must be unique.
Added unique index to bonobo path name.
* src/file-manager/fm-directory-view.c:
(add_open_with_app_bonobo_menu_item),
(add_open_with_viewer_bonobo_menu_item),
(add_application_to_bonobo_menu), (add_component_to_bonobo_menu),
(reset_bonobo_open_with_menu):
2000-10-17 John Sullivan <[email protected]>
Made "this application can only handle local files"
dialog be parented on the NautilusWindow from whence
it came.
* libnautilus-extensions/nautilus-program-choosing.h:
* libnautilus-extensions/nautilus-program-choosing.c:
(nautilus_launch_application_parented): Removed this function
(nautilus_launch_application): Made this function take a
parent (can be NULL, but better not to be).
* src/file-manager/fm-directory-view.c:
(fm_directory_view_launch_application): Remove "_parented"
* src/nautilus-sidebar.c:
(nautilus_sidebar_get_window): New helper function to get
enclosing window.
(command_button_callback),
(nautilus_sidebar_chose_application_callback): Pass parent
window to nautilus_launch_application.
2000-10-17 Andy Hertzfeld <[email protected]>
* src/nautilus-window.c: (nautilus_window_constructed),
(nautilus_window_set_content_view_widget):
fixed bug 3411, the sidebar resizes itself when viewing the
summary page, by setting the "shrink" boolean to true
when adding the content view container to the splitter.
2000-10-17 John Sullivan <[email protected]>
Fixed bug 3824 (Files in search list have unknown type)
* libnautilus-extensions/nautilus-file.c:
(nautilus_file_get_type_as_string): Made this check cached
slow_mime_type as well as cached default_mime_type. I'm worried
about this whole area -- why did we differentiate the two? I'll
bet there are other lurking bugs around here.
2000-10-17 John Sullivan <[email protected]>
Fixed bug 3825 (Bonobo error messages viewing search results)
Fixed bug 3826 ("Reveal in New Window" misplaced in context menu)
* src/file-manager/fm-directory-view.c:
(append_selection_menu_subtree): take an identifier, store
it in menu item for later identification, just like other menu
items. This will all change when we switch to using Bonobo for
context menus.
(fm_directory_view_real_create_selection_context_menu_items):
Pass the identifier that list view code was expecting to find.
* src/file-manager/fm-search-list-view.c:
fixed typo in COMMAND_REVEAL_IN_NEW_WINDOW #define. Those darn
typos are deadly with new Bonobo.
2000-10-17 Pavel Cisler <[email protected]>
* libnautilus-extensions/nautilus-file-operations.c:
(get_next_duplicate_name):
Part of fix to but 2840 - URI parsing works wrong for URIs with
# characters. I noticed duplicating and creating links to files
with funny characters like # was broken and added proper escaping
code to fix it.
2000-10-17 Robey Pointer <[email protected]>
* components/services/install/lib/eazel-install-logic.c:
(eazel_install_do_transaction_all_files_check):
* components/services/install/lib/eazel-install-types.c:
(categorydata_list_copy), (categorydata_copy),
(categorydata_destroy_foreach), (categorydata_list_destroy),
(packagedata_fill_from_rpm_header):
* components/services/install/lib/eazel-install-types.h:
Fix missing param in prune_packages. Make categorydata_list_copy
stop iterating sometime in my life. Add matching
categorydata_list_destroy.
* nautilus-installer/src/callbacks.c: (begin_install):
* nautilus-installer/src/installer.c: (jump_to_error_page),
(start_over), (dont_start_over), (create_finish_page_good),
(get_required_name), (get_detailed_errors_foreach),
(get_detailed_errors), (install_failed), (eazel_install_dep_check),
(eazel_install_delete_files), (install_done), (toggle_button_lock),
(eazel_installer_add_category), (check_system),
(eazel_installer_do_install), (eazel_install_get_depends):
* nautilus-installer/src/installer.h:
* nautilus-installer/src/link.sh:
Further attempts at recovering from a common error case (where the
user ought to upgrade gnumeric too). Fix up some of the text to
match biz requirements. Make a copy of the category list before
doing the install-lib call, so that it doesn't munge our pristine
list for the cases where we want to try again later.
2000-10-17 Andy Hertzfeld <[email protected]>
* components/music/nautilus-music-view.c:
(nautilus_music_view_initialize), (ensure_uri_is_image),
(set_album_cover), (dialog_destroy), (set_image_button_callback),
(nautilus_music_view_set_album_image):
for bug 2261, added a "set cover image" button to the music view,
which is visible when there's no cover, which displays a file
selector, and set the metadata when the user selects a valid image.
This is almost complete, but it's not quite working yet.
* src/nautilus-shell.c: (display_caveat):
increased the font size of the caveat to 14pt, since it was
a little too hard to read and there was plenty of space.
2000-10-16 Andy Hertzfeld <[email protected]>
* src/file-manager/fm-icon-view.c: (fm_icon_view_update_menus):
fixed occasional segfaults from fm_icon_view_update_menus
being called from idle after they've been destroyed; fixed by
exiting if the menus_ready boolean is clear.
* components/music/nautilus-music-view.c:
(nautilus_music_view_set_album_image), (metadata_callback),
(nautilus_music_view_update_from_uri):
fixed bug 3720, music view asks for album cover metadata incorrectly.
Fixed by doing it correctly, using nautilus_file_call_when_ready.
This also partially fixes bug 2261, but it's still too hidden, so
I won't close it out until we have an explicit way to do it.
2000-10-17 Mathieu Lacage <[email protected]>
fix "do nothing" part of bug 3640
* components/tree/nautilus-tree-view.c: move
re-init of code from drag_leave to drag_begin.
2000-10-16 Andy Hertzfeld <[email protected]>
* src/file-manager/fm-icon-view.c: (fm_icon_view_destroy):
fixed a problem where we generated a zillion bonobo criticals
when the view changed. The problem was that the fm-icon-view
was trying to update the layout menus while it was being destroyed,
after the menus were already gone. The fix is clearing the
"menus_ready" boolean at the start of the destroy method.
2000-10-16 Eskil Heyn Olsen <[email protected]>
* nautilus.spec.in:
Reverting change to check >= vs = issue.
2000-10-16 Eskil Heyn Olsen <[email protected]>
* nautilus.spec.in:
Changed the dep of nautilus-maozilla to mozilla = M18 instead of
mozilla-M18. I can't put in >= M18, because rpm's fucks up on
alphachar versions.
2000-10-16 Eskil Heyn Olsen <[email protected]>
* components/services/install/lib/eazel-install-logic.c:
(eazel_install_fetch_dependencies), (dump_one_package),
(dump_packages_foreach), (dump_packages),
(eazel_install_ensure_deps):
Debug output.
Revamping the error tree for failures' reg. circular conflicts.
* components/services/install/lib/eazel-install-types.c:
(categorydata_list_copy), (categorydata_copy),
(packagedata_list_copy), (eazel_install_requirement_dep_compare):
Fixed a bug in the copy functions and the dep_compare.
* nautilus-installer/src/Makefile:
Yeah...
* nautilus-installer/src/installer.c:
(get_detailed_errors_foreach):
Inserting code to make the circular conflict handling nice.
2000-10-16 Ramiro Estrugo <[email protected]>
* nautilus.spec.in:
Fix a typo in the required version of mozilla.
2000-10-16 Ramiro Estrugo <[email protected]>
* configure.in:
Remove extraneous debugging printf.
2000-10-16 Rebecca Schulman <[email protected]>
* libnautilus/nautilus-clipboard.c: (add_menu_items_callback),
(ui_component_remove_container_and_unref),
(finish_setting_up_editable),
Fixed a problem with the clipboard caused by having many components
in the same container with the same name, and fixed a potential
leak.
2000-10-16 John Sullivan <[email protected]>
Fixed bug 3789 (Zoom In/Zoom Out/Back/Forward have lost
their control-key equivalents)
* src/nautilus-shell-ui.xml: Updated the specification
of non-alphanumeric keyboard equivalents to the new
required style ("*Control*equal", not "*Control*=").
2000-10-16 John Sullivan <[email protected]>
* libnautilus-extensions/nautilus-directory-async.c:
(mime_list_load): Added a (conditional) line of spam for
when load_directory is called to get the MIME list.
2000-10-16 Eskil Heyn Olsen <[email protected]>
* components/services/install/command-line/Makefile.am:
* components/services/install/command-line/eazel-alt-install.c:
* components/services/install/command-line/eazel-install.c:
* components/services/install/command-line/eazel-package-query.c:
* components/services/install/command-line/eazel-revert.c:
* components/services/install/command-line/eazel-uninstall.c:
Removed these old evil files.
* components/services/install/lib/eazel-install-types.h:
* components/services/install/lib/eazel-install-types.c:
(categorydata_list_copy), (categorydata_copy),
(packagedata_list_copy), (packagedata_copy):
Implemented package & categorydata copy functions.
* components/services/trilobite/libtrilobite/trilobite-core-distrib
ution.h:
* components/services/trilobite/libtrilobite/trilobite-core-distrib
ution.c: (determine_mandrake_version), (determine_suse_version),
(determine_debian_version):
Removed g_assert_not_reached calls. Also added enum for YELLOWDOG.
* nautilus-installer/src/Makefile:
* nautilus-installer/src/installer.c: (get_required_name),
(get_detailed_errors_foreach), (get_detailed_errors),
(eazel_install_dep_check), (check_system):
Doing some funk to handle circular deps better.
2000-10-16 John Sullivan <[email protected]>
* libnautilus-extensions/nautilus-list.c:
(nautilus_list_keyboard_navigation_key_press),
(nautilus_list_get_first_selected_row),
(nautilus_list_get_last_selected_row):
* libnautilus-extensions/nautilus-list.h:
Finished up Matt Bissiri's earlier checkin for him.
Removed the confusingly almost-redundant
nautilus_clist_get_first/last_selected_row; made
nautilus_list_get_last_selected_row public to match
get_first_selected_row. Thanks to Matt for the patch.
2000-10-16 Darin Adler <[email protected]>
* libnautilus-extensions/nautilus-global-preferences.c: Changed
the search default to the one at Eazel as planned.
2000-10-16 Pavel Cisler <[email protected]>
* cut-n-paste-code/widgets/gtkclist/Makefile.am:
* cut-n-paste-code/widgets/gtkclist/gtkclist.c:
* cut-n-paste-code/widgets/gtkclist/gtkclist.h:
Get rid of obsolete copy of GtkCList.
2000-10-12 Pavel Cisler <[email protected]>
* src/file-manager/fm-list-view.c: (fm_list_get_drag_pixmap):
Fix 3558 - Nautilus crashes with a specific sequence of icon
dragging ...
Handle a case where the cell pixmap does not have a mask.
* libnautilus-extensions/nautilus-icon-container.c:
(motion_notify_event):
Small renaming.
* libnautilus-extensions/nautilus-list.c:
(nautilus_list_dnd_initialize), (nautilus_list_drag_begin):
Get rid of a drag_begin signal override that is not needed.
2000-10-16 Josh Barrow <[email protected]>
* icons/Makefile.am:
* icons/emblem-symbolic-link-*.png
Removed all of the different size symbolic link icons. They
were useless as the emblems are now stuck at the defautl size.
2000-10-16 Rebecca Schulman <[email protected]>
Fixed bug 3745, that reverse sort order / tighter
layout buttons weren't working after the newest bonobo
changes
* src/file-manager/fm-icon-view.c:
(tighter_layout_state_changed_callback),
(fm_icon_view_create_background_context_menu_items),
(sort_reversed_state_changed_callback), (fm_icon_view_merge_menus):
Changed the callbacks for the buttons to use listeners and ids
rather than verbs.
* src/file-manager/nautilus-icon-view-ui.xml:
Added id fields
2000-10-16 Ramiro Estrugo <[email protected]>
* acconfig.h:
* configure.in:
Define the build timestamp only if given in the environment.
* libnautilus-extensions/nautilus-file-utilities.c:
(nautilus_get_build_timestamp):
* libnautilus-extensions/nautilus-file-utilities.h:
New function to obtain the build timestamp.
* src/nautilus-window-manage-views.c:
(window_set_title_with_timestamp), (update_title):
* src/nautilus-window-menus.c: (get_about_box_timestamp_string),
(help_menu_about_nautilus_callback):
Display the build timestamp in both the about box and window
title. This only happens if the build timestamp is set at
compile time.
2000-10-16 Ramiro Estrugo <[email protected]>
* README:
Update docs for the fact that we now require Mozilla-M18.
* components/mozilla/nautilus-mozilla-content-view.c:
(mozilla_content_view_one_time_happenings),
(nautilus_mozilla_content_view_initialize),
(nautilus_mozilla_content_view_destroy),
(mozilla_load_location_callback), (mozilla_net_state_callback),
(mozilla_dom_mouse_click_callback),
(mozilla_translate_uri_if_needed),
(mozilla_untranslate_uri_if_needed):
Cleanup a bunch of pre Mozilla M18 code. Turn of a rogue printf.
Remove the cut-n-pasted Bonobo merging code. We can add it back
if we ever have something we really need to merge.
* configure.in:
Update for new Mozilla M18 requirement. Bail of detected Mozilla
is not M18.
* nautilus.spec.in:
Add mozilla-m18 dependency to the nautilus-mozilla package.
2000-10-16 Ramiro Estrugo <[email protected]>
* libnautilus-extensions/nautilus-label.c:
(nautilus_label_set_line_wrap_separators):
Fix memory leak.
2000-10-16 John Sullivan <[email protected]>
Fixed bug 3582 (warning on boot due to verb/button problem
in non-Eazel-service build)
* src/nautilus-window-toolbars.c:
(nautilus_window_initialize_toolbars): Call set_hidden on
the command, not the widget. We were waiting for a Bonobo
fix to make this change, because it didn't work last time
we tried. But now it does, so the Bonobo fix must have
occurred.
2000-10-16 John Sullivan <[email protected]>
Fixed bug 3753 (status bar shows selected items info even
after they are deselected)
* src/nautilus-window.c:
(nautilus_window_clear_status): Reinstate workaround (and
associated FIXME) of passing " " to clear the status. This
had been fixed in Bonobo but was rebroken some time in the
last few days.
(nautilus_window_set_status): Call nautilus_window_clear_status
when the desired status text is empty or NULL, instead of
ignoring the request.
2000-10-16 Matt Bissiri <[email protected]>
* libnautilus-extensions/nautilus-list.c:
(nautilus_clist_get_first_selected_row),
(nautilus_clist_get_last_selected_row):
Now that NautilusList derives from NautilusCList instead of GtkCList,
do not call `nautilus_gtk_clist_get_first_selected_row' or
`nautilus_gtk_clist_get_last_selected_row'.
Instead add implementation using NautilusCList instead of GtkCList.
This fixes a bug where up/down/pgup/pgdown keys did not work properly
when viewing directory as list.
(nautilus_list_get_first_selected_row):
To avoid code duplication, replace the body of this function
with a call to `nautilus_clist_get_first_selected_row'.
2000-10-16 Ramiro Estrugo <[email protected]>
* libnautilus-extensions/nautilus-label.c:
(nautilus_label_initialize), (nautilus_label_destroy),
(render_buffer_pixbuf), (label_recompute_line_geometries),
(nautilus_label_set_line_offset),
(nautilus_label_get_drop_shadow_color),
(nautilus_label_set_line_wrap), (nautilus_label_get_line_wrap),
(nautilus_label_set_line_wrap_width),
(nautilus_label_get_line_wrap_width),
(nautilus_label_set_line_wrap_separators),
(nautilus_label_get_line_wrap_separators):
* libnautilus-extensions/nautilus-label.h:
Add support for line wrappping.
* src/nautilus-shell.c: (display_caveat):
Change the caveat text to not use hard coded new lines and use the
new NautilusLabel text wrapping feature instead.
* test/.cvsignore:
* test/Makefile.am:
* test/test-nautilus-label.c: (main):
* test/test-nautilus-wrapped-label.c: (delete_event),
(create_gtk_label), (create_nautilus_label),
(create_gtk_label_window), (create_nautilus_label_window), (main):
Add a test for the NautilusLabel line wrapping feature.
2000-10-16 Gene Z. Ragan <[email protected]>
Fixed an error where I was escaping the wrong item
to create a unique verb name.
* libnautilus-extensions/nautilus-bonobo-extensions.c:
(nautilus_bonobo_add_menu_item):
* src/nautilus-window-menus.c: (append_bookmark_to_menu):
2000-10-15 Andy Hertzfeld <[email protected]>
* components/music/nautilus-music-view.c:
(nautilus_music_view_update_from_uri):
As Arlo suggested, moved the album cover image to the right
of the play controls, so the play controls appear in the same position
whether or not a cover image is present.
2000-10-15 Maciej Stachowiak <[email protected]>
* libnautilus-extensions/nautilus-file.h,
libnautilus-extensions/nautilus-file.c
(nautilus_file_get_file_info_result): Renamed and changed
interface.
* src/nautilus-applicable-views.c (got_file_info_callback,
nautilus_navigation_info_new, nautilus_navigation_info_cancel,
nautilus_navigation_info_free): Reorganize to use the new
NautilusFile features.
2000-10-15 Kjartan Maraas <[email protected]>
* components/services/install/command-line/eazel-install.c:
s/RedHat/Red Hat Linux/g
2000-10-15 Andy Hertzfeld <[email protected]>
* src/nautilus-throbber.c: (load_themed_image),
(nautilus_throbber_load_images):
implemented theme indirection for throbbers, so themes can
share throbbers
* icons/ardmore/ardmore.xml:
made the ardmore theme use the eazel theme's throbber
* libnautilus-extensions/nautilus-icon-container.c:
(nautilus_icon_container_update_icon):
at Susan's suggestion, pinned emblem size to 100%, so emblems don't
get huge when you scale up.
2000-10-14 Andy Hertzfeld <[email protected]>
* src/nautilus-throbber.c: (nautilus_throbber_initialize_class),
(nautilus_throbber_initialize), (nautilus_throbber_theme_changed),
(nautilus_throbber_size_allocate),
(nautilus_throbber_size_request):
made the throbber resize and reposition itself properly when the
theme changes by implementing size_request and calling queue_resize
when the theme changes.
2000-10-13 Andy Hertzfeld <[email protected]>
* src/nautilus-throbber.c: (bump_throbber_frame),
(nautilus_throbber_load_images):
added support for throbbers with a different number of frames
by adding a frame count fetched from the theme data
* configure.in:
* icons/eazel/Makefile.am:
* icons/eazel/throbber/.cvsignore:
* icons/eazel/throbber/Makefile.am:
* icons/eazel/throbber/*.png:
added a eazel logo throbber to the eazel theme
* icons/eazel/eazel.xml:
* icons/default.xml:
* icons/gnome/gnome.xml:
added the appropriate frame count to the relevant themes.
2000-10-13 Robey Pointer <[email protected]>
* components/services/install/lib/eazel-install-object.c:
(eazel_install_class_initialize), (eazel_install_install_packages):
* components/services/install/lib/eazel-install-rpm-glue.c:
(eazel_install_free_rpm_system_close_db_foreach):
* components/services/install/lib/eazel-install-rpm-glue.h:
Don't set up a default delete_files signal handler when not using
corba (otherwise it overrides the real signal). Clean up some
destroy code in preparation for making the bootstrap installer
able to retry.
2000-10-13 Robey Pointer <[email protected]>
* libnautilus-extensions/nautilus-directory-async.c:
(cancel_mime_list), (nautilus_directory_cancel),
(set_up_request_by_file_attributes),
(nautilus_directory_monitor_add_internal),
(nautilus_async_destroying_file), (lacks_mime_list),
(wants_mime_list), (request_is_satisfied),
(nautilus_directory_invalidate_counts), (mime_list_one),
(mime_list_callback), (mime_list_load), (mime_list_start),
(start_or_stop_io):
* libnautilus-extensions/nautilus-directory-private.h:
* libnautilus-extensions/nautilus-file-attributes.h:
* libnautilus-extensions/nautilus-file-private.h:
* libnautilus-extensions/nautilus-file.c: (destroy),
(nautilus_file_recompute_deep_counts),
(nautilus_file_get_mime_list):
* libnautilus-extensions/nautilus-file.h:
Added mime-list support (can fetch the list of mime-types in the
subdirs of a directory) for bug 3364.
2000-10-13 Eskil Heyn Olsen <[email protected]>
* components/services/install/lib/eazel-install-rpm-glue.c:
(eazel_install_do_rpm_dependency_check):
Fix for 3537
* nautilus-installer/src/Makefile:
?
* nautilus.spec.in:
Fixing nautilus rpm build
2000-10-13 Rebecca Schulman <[email protected]>
* libnautilus/nautilus-clipboard-ui.xml:
Fixed the names of these files to match the menu items in shell-ui
* libnautilus/nautilus-clipboard.h:
* libnautilus/nautilus-clipboard.c: (add_menu_items_callback),
(container_copy_free), (ui_component_remove_container_and_unref),
(finish_setting_up_editable),
(finish_setting_up_editable_from_bonobo_control_callback),
(nautilus_clipboard_set_up_editable_from_bonobo_control),
(nautilus_clipboard_set_up_editable_from_bonobo_ui_container):
Added the from_ui_container function for local editable widgets
to use, and changed the function sequence around so that the two
clipboard set up functions share an api except for the initial calling
functions
* src/nautilus-window-private.h:
* src/nautilus-window.c: (nautilus_window_constructed),
(nautilus_window_show), (nautilus_window_get_bonobo_ui_container),
(nautilus_window_get_bonobo_ui_component):
added the new nautilus-window_get_bonobo_ui_component function for local
editables to use, and changed the construction order so that menu items
would get merged correctly (set up the main window menus before setting
up the location bar)
* src/nautilus-complex-search-bar.c:
(nautilus_complex_search_bar_new):
* src/nautilus-complex-search-bar.h:
* src/nautilus-location-bar.c: (nautilus_location_bar_get_window),
(nautilus_location_bar_initialize), (nautilus_location_bar_new),
(nautilus_location_bar_set_location):
* src/nautilus-location-bar.h:
* src/nautilus-simple-search-bar.c:
(nautilus_simple_search_bar_initialize),
(nautilus_simple_search_bar_destroy),
(nautilus_simple_search_bar_new):
* src/nautilus-simple-search-bar.h:
* src/nautilus-switchable-navigation-bar.c:
(nautilus_switchable_navigation_bar_initialize),
(nautilus_switchable_navigation_bar_destroy),
(nautilus_switchable_navigation_bar_new):
* src/nautilus-switchable-navigation-bar.h:
* src/nautilus-switchable-search-bar.c:
(nautilus_switchable_search_bar_initialize),
(nautilus_switchable_search_bar_destroy),
(nautilus_switchable_search_bar_new):
* src/nautilus-switchable-search-bar.h:
Changed the location bar and switchable
search bar to take windows in the constructor funciton.
These are used to get the local ui component when
setting up the clipboard
2000-10-13 Eskil Heyn Olsen <[email protected]>
* nautilus.spec.in:
Updated deps to
bonobo >= 0.21
oaf >= 0.5.1
gdk-pixbuf >= 0.9.0
as those are the versions we're building against.
2000-10-13 Gene Z. Ragan <[email protected]>
Work in progress on creating unique ideas for menu items
added to the bookmarks menu.
* libnautilus-extensions/nautilus-bonobo-extensions.c:
* libnautilus-extensions/nautilus-bonobo-extensions.h:
(nautilus_bonobo_add_menu_item),
(nautilus_bonobo_get_menu_item_verb_name):
* src/file-manager/fm-directory-view.c:
(add_open_with_app_bonobo_menu_item),
(add_open_with_viewer_bonobo_menu_item):
* src/nautilus-window-menus.c: (append_bookmark_to_menu),
(create_menu_item_from_node), (append_dynamic_bookmarks),
(refresh_go_menu):
2000-10-13 John Sullivan <[email protected]>
Fixed bug 3592 (rename text widget persists after dragging icon)
* libnautilus-extensions/nautilus-icon-container.c:
(motion_notify_event): added end_renaming_mode call
when a drag begins.
2000-10-13 Andy Hertzfeld <[email protected]>
* libnautilus-extensions/nautilus-file.c:
(nautilus_file_get_type_as_string):
fixed bug 3711, sidebar says home directory is a "program", by
explicitly checking nautilus_file_is_directory if the mime-type
is NULL and returning "folder" in that case.
* src/nautilus-window-toolbars.c:
(nautilus_window_initialize_toolbars):
added some padding around the throbber to better position it in
the toolbar.
2000-10-13 John Sullivan <[email protected]>
* src/nautilus-applicable-views.c:
(get_nautilus_navigation_result_from_gnome_vfs_result):
added GNOME_VFS_ERROR_INTERNAL to the known list of
errors that we can't say anything useful about, since
this is firing in some cases when Mozilla fails.
2000-10-13 John Sullivan <[email protected]>
* src/file-manager/fm-directory-view.c: Changed the
SILENT_WINDOW_OPEN_LIMIT from 10 to 5 after feedback that
opening 9 windows accidentally was dragging someone's
machine into the muck.
2000-10-13 John Sullivan <[email protected]>
Added some conditionalized debugging spam to help
investigate bug 3389 (performance problem with
load_directory getting called so often)
* libnautilus-extensions/nautilus-directory-async.c:
(start_monitoring_file_list), (start_getting_directory_counts),
(deep_count_load): Add #ifdeffed-out spam whenever
gnome_vfs_async_load_directory is called.
2000-10-13 Andy Hertzfeld <[email protected]>
* data/emblems/Makefile.am:
* data/emblems/confidential.gif: removed
* data/emblems/cool.png: