Commit graph

2685 commits

Author SHA1 Message Date
Arlo Rose
e7beb337f1 Fixed all outstanding cHRM white point problems.
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-30 00:43:17 +00:00
Robin Slomkowski
e13d1e1b72 made it find gnome-vfs headers 2000-08-30 00:22:45 +00:00
Robey Pointer
849a03a6fc restore code to jump to the summary widget after an install (for demo), and make a dialog pop up before then 2000-08-29 23:48:07 +00:00
Mike Engber
a50cfd11df Fixed warning caused by passing NULL for a directory - bug 2079.
Fixed warning caused by passing NULL for a directory - bug 2079.
	* src/file-manager/fm-icon-view.c: (layout_changed_callback):
2000-08-29 23:42:07 +00:00
Darin Adler
c843421261 Fixed bug that showed up as warnings on exit and fails of "make check".
* 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 23:30:35 +00:00
John Sullivan
dbbbbe3d49 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 23:28:08 +00:00
Gene Z. Ragan
dfd77a2045 Refactored function and fixed a bug.
2000-08-29  Gene Z. Ragan  <gzr@eazel.com>

	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
	"Empty Trash" in its right click menu

	* src/file-manager/fm-desktop-icon-view.c:
	(fm_desktop_icon_view_initialize_class),
	(new_folder_menu_item_callback), (empty_trash_callback),
	(trash_link_is_selection),
	(fm_desktop_icon_view_create_selection_context_menu_items),
	(fm_desktop_icon_view_create_background_context_menu_items):

	* src/file-manager/fm-directory-view.c:
	(bonobo_menu_open_callback),
	(fm_directory_trash_link_in_selection),
	(real_create_background_context_menu_zoom_items),
	(fm_directory_view_real_create_background_context_menu_items),
	(fm_directory_view_real_create_selection_context_menu_items),
	(create_selection_context_menu):
	* src/file-manager/fm-directory-view.h:
2000-08-29 23:23:53 +00:00
Mathieu Lacage
6e5333700b fix a checks. fix a space added in the generated sentences.
2000-08-29  Mathieu Lacage  <mathieu@eazel.com>

	* libnautilus-extensions/nautilus-search-uri.c: (parse_uri),
	(nautilus_self_check_search_uri): fix a checks. fix a space
	added in the generated sentences.
2000-08-29 23:03:22 +00:00
John Sullivan
1a6c9551b7 Fixed bug 1884 (mistyped URL is changed back to previous)
* src/nautilus-window-manage-views.c:
	(nautilus_window_end_location_change_callback): Replaced
	a nautilus_navigation_bar_set_location call with a comment
	explaining why not to call it there.
2000-08-29 22:59:53 +00:00
John Sullivan
d37aa7efe0 Fixed bug 2173 (We should allow clearing the History list)
There's now a Forget History item in the Go menu which
	(after confirmation) forgets the history items in the Go
	menu and the back/forward chains of each Nautilus window.
	Afterwards, the Go menu's history list contains only locations
	currently being displayed.

	* src/nautilus-window.h: Changed back_list and forward_list
	from GSList * to GList * so I could use nautilus glist
	convenience functions (there's no efficiency issue with these
	small lists). Added prototypes for new functions
	nautilus_clear_back_list, nautilus_clear_forward_list, and
	nautilus_forget_history.

	* src/nautilus-window.c:
	(nautilus_window_clear_forward_list),
	(nautilus_window_clear_back_list): New functions that free and
	set to NULL the back & forward lists.
	(nautilus_window_destroy): Use nautilus_window_clear_back_list
	and nautilus_window_clear_forward_list instead of replicating code.
	(nautilus_window_back_or_forward),
	(nautilus_window_get_base_page_index): Replace "slist" with "list"
	(free_history_list): Set history_list variable to NULL in addition
	to freeing its contents.
	(nautilus_forget_history): New function, walks through all windows
	clearing out their back/forward lists, and throws away all of the
	history list except currently-displayed locations.

	* src/nautilus-window-manage-views.c: (handle_go_back),
	(handle_go_forward), (handle_go_elsewhere): Changed "slist"
	to "list" in various places; called new nautilus_clear_forward_list
	instead of replicating code.

	* src/nautilus-window-menus.c:
	(forget_history_if_confirmed): New function, calls nautilus_history_forget
	if user confirms via modeless dialog (because it would be a pain to
	accidentally choose this menu item and erase your history).
	(go_menu_forget_history_callback): New function used by new menu item,
	calls forget_history_if_confirmed.
	(nautilus_window_initialize_menus): Add "Forget History" item to Go menu.

	* src/nautilus-window-toolbars.c: (create_back_or_forward_menu):
	Replace "slist" with "list"

	* src/file-manager/fm-directory-view.c:
	(fm_directory_view_real_create_background_context_menu_items):
	Just clarified a comment.
2000-08-29 22:41:00 +00:00
J Shane Culpepper
b5d0c09f5b Adding the logout button so that Mike can hook up the callbacks. 2000-08-29 22:24:16 +00:00
Ramiro Estrugo
18137250ba Dumb documentation typos.
* libnautilus-extensions/nautilus-buffered-widget.c:
	* libnautilus-extensions/nautilus-label.h:
	* libnautilus-extensions/nautilus-scalable-font.h:
	Dumb documentation typos.
2000-08-29 22:17:07 +00:00
Ramiro Estrugo
67e5560381 Remove a FIXME (bug 2442) which i already fixed.
* libnautilus-extensions/nautilus-string-map.c:
	Remove a FIXME (bug 2442) which i already fixed.
2000-08-29 22:11:45 +00:00
John Sullivan
c55634deaf Fixed bug 2182 (right-clicking on zoom control changes zoom level)
* src/nautilus-zoom-control.c:
	(nautilus_zoom_control_button_press_event): Made the zoom
	control use Ramiro's nifty nautilus_pop_up_context_menu code
	to offset the menu position slightly.
2000-08-29 19:41:39 +00:00
John Sullivan
c6aa655a4d Corrected half-finished ChangeLog comment. 2000-08-29 18:22:38 +00:00
John Sullivan
409d048a7f Redid changes that converted "Ascending/Descending" menu items
into single "Reversed Order" menu item. Andy accidentally
	clobbered my entire set of changes with a more recent check-in.

	* src/file-manager/fm-icon-view.c: (tighter_layout_callback),
	(update_layout_menus), (sort_callback), (sort_direction_callback),
	(manual_layout_callback), (fm_icon_view_merge_menus),
	(fm_icon_view_initialize_class):
2000-08-29 18:21:32 +00:00
John Sullivan
f222268fd4 Added more bug numbers to FIXMEs. All Nautilus FIXMEs currently
have bug numbers. Huzzah! (Too bad the same can't be said for
	gnome-vfs, oaf, medusa, ...)

	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_initialize):
	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_install_check_existing_packages),
	(eazel_install_fetch_rpm_dependencies):
	* components/services/install/lib/eazel-install-types.c:
	* components/services/install/nautilus-view/nautilus-service-instal
	l-view.c: (current_progress_bar_complete),
	(nautilus_service_install_downloading):
	* components/services/time/nautilus-view/trilobite-eazel-time-view.
	c:
	* components/services/trilobite/libtrilobite/helixcode-utils.c:
	* components/services/trilobite/libtrilobite/trilobite-core-utils.c
	: (trilobite_pexec):
	* components/services/trilobite/libtrilobite/trilobite-root-client.
	c: (trilobite_root_client_initialize):
	* components/services/vault/command-line/main.c:
	* src/nautilus-view-frame-bonobo-control.c:
	(nautilus_view_frame_activate_uri):
	* src/nautilus-view-frame-bonobo-embeddable.c:
	(bonobo_subdoc_load_location):
	* src/nautilus-window-private.h:
2000-08-29 17:42:16 +00:00
John Sullivan
edb515b95d * cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-stand
ard.c: (nautilus_druid_page_standard_init):
	* cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c:
	(nautilus_druid_size_request), (nautilus_druid_next_callback):
	* libnautilus-extensions/nautilus-background-canvas-group.c:
	(nautilus_background_canvas_group_render):
	* libnautilus-extensions/nautilus-directory-background.c:
	(nautilus_connect_background_to_directory_metadata):
	* libnautilus-extensions/nautilus-file-operations-progress.c:
	(truncate_string_from_start):
	* libnautilus-extensions/nautilus-file-operations.c:
	(handle_xfer_duplicate):
	* libnautilus-extensions/nautilus-font-picker.c:
	(nautilus_font_picker_initialize):
	* libnautilus-extensions/nautilus-gdk-extensions.c:
	(nautilus_gdk_font_get_bold):
	* libnautilus-extensions/nautilus-gdk-pixbuf-extensions.c:
	(nautilus_gdk_pixbuf_draw_text):
	* libnautilus-extensions/nautilus-global-preferences.c:
	(global_preferences_create_dialog):
	* libnautilus-extensions/nautilus-gtk-extensions.c:
	(nautilus_gtk_button_auto_click),
	(nautilus_popup_menu_position_func):
	* libnautilus-extensions/nautilus-icon-factory.c:
	(nautilus_icon_factory_get_icon_for_file),
	(cached_image_still_valid),
	(nautilus_icon_factory_make_thumbnails):
	* libnautilus-extensions/nautilus-icon-text-item.c:
	(iti_paint_text):
	* libnautilus-extensions/nautilus-list.c:
	(show_context_menu_callback), (nautilus_list_get_drop_action):
2000-08-29 17:12:57 +00:00
John Sullivan
75d9047c7c Added more bug numbers to FIXMEs. 49 to go.
* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_uninstall_downward_traverse):
	* libnautilus-extensions/nautilus-merged-directory.c:
	(nautilus_merged_directory_add_real_directory):
	* libnautilus-extensions/nautilus-mime-actions.c:
	(make_oaf_query_with_known_mime_type),
	(make_oaf_query_with_uri_scheme_only):
	* libnautilus-extensions/nautilus-preferences.c:
	(nautilus_preferences_set_string_list):
	* libnautilus-extensions/nautilus-program-chooser.c:
	(program_file_pair_compute_status), (get_supertype_from_file):
	* libnautilus-extensions/nautilus-scalable-font.c:
	(nautilus_scalable_font_measure_text):
	* libnautilus/nautilus-view.c: (view_frame_call_begin):
	* nautilus-installer/src/support.c: (create_pixmap),
	(create_image):
	* src/file-manager/fm-desktop-icon-view.c: (create_mount_link),
	(volume_unmounted_callback), (place_home_directory):
	* src/file-manager/fm-icon-view.c: (get_next_position),
	(play_file), (get_icon_text_callback):
	* src/file-manager/fm-list-view.c: (fm_list_view_initialize),
	(create_list), (fm_list_view_set_zoom_level),
	(fm_list_view_font_family_changed):
	* src/file-manager/nautilus-indexing-info.c:
	(nautilus_indexing_info_show_dialog):
	* src/nautilus-application.c: (nautilus_application_startup):
	* src/nautilus-first-time-druid.c:
	(next_proxy_configuration_page_callback), (initiate_file_download):
	* src/nautilus-property-browser.c: (add_background_to_browser):
	* src/nautilus-shell.c:
2000-08-29 16:28:58 +00:00
Josh Barrow
7d9425e312 Fixed Andy's E-mail in ChangeLog
Fixed Andy's E-mail in ChangeLog
2000-08-29 14:23:50 +00:00
Andy Hertzfeld
032447576b made the first time druid handle web proxy configuration, which is
made the first time druid handle web proxy configuration, which
	is presented to the user if the http update download fails.  Also, some
	misc clean-ups.
2000-08-29 08:38:50 +00:00
Robey Pointer
e5b0ece13f pexec now returns the child pid 2000-08-29 06:40:04 +00:00
Robey Pointer
109cc17d64 add try_again signal to the root-client, root-helper, and PasswordQueryClient APIs 2000-08-29 06:39:41 +00:00
Robey Pointer
a9ddcb90bf set up the try_again callback to allow 3 attempts at entering the root password 2000-08-29 06:38:19 +00:00
Robey Pointer
a83610c5f9 return failure if the transaction fails; only call root-helper once now (let root-helper handle the password retries); fix pexec calls to check for the new return value 2000-08-29 06:37:40 +00:00
Robey Pointer
593bab4654 fix small bug that made emit_done() always signal success 2000-08-29 06:36:45 +00:00
Eskil Heyn Olsen
e83437c956 Smarter package-list url generation.
* components/services/install/lib/eazel-install-object.c:
	(eazel_install_fetch_remote_package_list):
	Smarter package-list url generation.

	* components/services/install/lib/eazel-install-public.h:
	Expose fetch_remote_package_list call, used for the installer.

	* components/services/install/lib/eazel-install-rpm-glue.c:
	(eazel_uninstall_downward_traverse):
	Removed FIXME that was in error.

	* nautilus-installer/src/callbacks.c: (druid_cancel),
	(begin_install), (druid_finish), (prep_install):
	* nautilus-installer/src/callbacks.h:
	* nautilus-installer/src/installer.c: (check_system),
	(eazel_installer_do_install):
	* nautilus-installer/src/installer.h:
	* nautilus-installer/src/interface.c: (set_white_stuff),
	(create_what_to_do_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),
	(eazel_installer_finalize), (eazel_installer_unref),
	(eazel_installer_class_initialize), (eazel_installer_initialize),
	(eazel_installer_get_type), (eazel_installer_new):
	* nautilus-installer/src/interface.h:
	* nautilus-installer/src/main.c: (main):
	Slaughtering and revamping the installer. It now loads the
	packagelist as one of the first things (needs changing to support
	proxies), then inserts a radiobutton pr. category (needs to be
	togglebuttons instead).
2000-08-29 05:24:01 +00:00
Mathieu Lacage
d1b703005d makes it compile for true... sorry for the necessary breakage 2000-08-29 03:40:10 +00:00
Mathieu Lacage
598916b71a removing the files for true 2000-08-29 03:31:28 +00:00
Mathieu Lacage
62fdbe1fb7 add news from latest PR1 release. make dnd do real file operations from
2000-08-28  Mathieu Lacage  <mathieu@eazel.com>

	* NEWS: add news from latest PR1 release.
	* components/tree/nautilus-tree-view.c: make dnd do real file operations
	from tree view to other views. Dnd to tree view depends on the views code
	which needs to be fixed (related to bug 2353).
	* libnautilus-extensions/Makefile.am: add nautilus-fils-operations.
	* libnautilus-extensions/nautilus-file-operations-progress.c:
	(nautilus_file_operations_progress_update),
	(nautilus_file_operations_progress_close),
	(nautilus_file_operations_progress_destroy),
	(nautilus_file_operations_progress_initialize),
	(nautilus_file_operations_progress_initialize_class),
	(nautilus_file_operations_progress_new),
	(nautilus_file_operations_progress_set_total),
	(nautilus_file_operations_progress_set_operation_string),
	(nautilus_file_operations_progress_new_file),
	(nautilus_file_operations_progress_clear),
	(nautilus_file_operations_progress_update_sizes),
	(nautilus_file_operations_progress_freeze),
	(nautilus_file_operations_progress_thaw): modify API name.
	* libnautilus-extensions/nautilus-file-operations-progress.h: idem
	* libnautilus-extensions/nautilus-file-operations.c: idem
	(xfer_dialog_clicked_callback), (create_xfer_dialog),
	(progress_dialog_set_files_remaining_text),
	(progress_dialog_set_to_from_item_text), (handle_xfer_ok),
	(handle_xfer_vfs_error), (nautilus_file_operations_copy_move),
	(nautilus_file_operations_new_folder),
	(nautilus_file_operations_move_to_trash),
	(nautilus_file_operations_delete),
	(nautilus_file_operations_empty_trash):
	* libnautilus-extensions/nautilus-file-operations.h: idem.
	* src/file-manager/Makefile.am: remove dfos* from compilation.
	* src/file-manager/fm-directory-view.c:
	(bonobo_menu_empty_trash_callback),
	(fm_directory_view_create_links_for_files),
	(fm_directory_view_duplicate_selection),
	(fm_directory_view_trash_or_delete_selection),
	(fm_directory_view_new_folder),
	(fm_directory_view_move_copy_items): make it call nautilus-file-operations
	functions.
2000-08-29 03:12:36 +00:00
Robey Pointer
f1451cc17c change titlebar font sizes to fit arlo specs 2000-08-29 03:08:09 +00:00
Robey Pointer
7e99fbaefb add '?version=' checking into the install view url, for bootstrapping the installer 2000-08-29 03:06:30 +00:00
Ramiro Estrugo
f7276747ab Add unref/ref functions for gcs that take NULL.
* libnautilus-extensions/nautilus-buffered-widget.c:
	(nautilus_buffered_widget_initialize),
	(nautilus_buffered_widget_destroy),
	(buffered_widget_update_pixbuf),
	(create_background_pixbuf_from_none),
	(create_background_pixbuf_from_solid),
	(create_background_pixbuf_from_ancestor),
	(create_background_pixbuf),
	(nautilus_buffered_widget_get_vertical_offset),
	(nautilus_buffered_widget_set_background_type),
	(nautilus_buffered_widget_get_background_type),
	(nautilus_buffered_widget_set_background_color),
	(nautilus_buffered_widget_get_background_color):
	* libnautilus-extensions/nautilus-buffered-widget.h:

	* libnautilus-extensions/nautilus-gdk-extensions.c:
	(nautilus_gdk_gc_ref_if_not_null),
	(nautilus_gdk_gc_unref_if_not_null):
	* libnautilus-extensions/nautilus-gdk-extensions.h:
	Add unref/ref functions for gcs that take NULL.

	* libnautilus-extensions/nautilus-label.c: (nautilus_label_new):
	* libnautilus-extensions/nautilus-label.h:
	Make the constructor work just like GtkLabel by accepting a string.

	* components/music/nautilus-music-view.c:
	(nautilus_music_view_initialize), (add_play_controls):
	Use the new NautilusLabel constructor.

	* components/services/nautilus-dependent-shared/shared-service-widg
	ets.c: (create_label_widget):
	Use the new NautilusLabel constructor.

	* src/nautilus-first-time-druid.c: (make_anti_aliased_label),
	(set_up_update_feedback_page):
	Use the new NautilusLabel constructor.

	* src/nautilus-property-browser.c:
	(nautilus_property_browser_initialize),
	(make_properties_from_directory_path),
	(make_properties_from_xml_node), (make_category_link):
	Use the new NautilusLabel constructor.
	Fix the tile names to be antialises by using the new buffered
	widget SOLID background mode.

	* src/nautilus-sidebar-title.c:
	(sidebar_create_smooth_components_if_needed):
	Use the new NautilusLabel constructor.

	* src/nautilus-theme-selector.c:
	(nautilus_theme_selector_initialize):
	Use the new NautilusLabel constructor.

	* test/test-nautilus-image.c: (main):
	* test/test-nautilus-label.c: (main):
	Use the new NautilusLabel constructor.
2000-08-29 02:11:38 +00:00
Andy Hertzfeld
b23f4b14cc use the static bookmarks that were downloaded from the service if they are
use the static bookmarks that were downloaded from the service if
	they are present; otherwise, fall back to the built-in ones.
2000-08-29 01:49:52 +00:00
Andy Hertzfeld
6736d1c76f added a drop shadow to the sidebar labels, controllable by the current
added a drop shadow to the sidebar labels, controllable by the
	current theme.  Plus some minor cleanups.
2000-08-29 01:26:11 +00:00
Darin Adler
600f35c146 Lets try that again, this time with feeling.
* src/file-manager/fm-directory-view.c: (display_pending_files):
	Lets try that again, this time with feeling.
2000-08-29 01:18:25 +00:00
Darin Adler
0a7c919544 Fixed a FIXME.
* src/file-manager/fm-directory-view.c: (display_pending_files):
	Fixed a FIXME.
2000-08-29 01:14:26 +00:00
Eskil Heyn Olsen
3e6d382751 Readded eazel-gen-xml
* components/services/install/command-line/Makefile.am:
	Readded eazel-gen-xml

	* components/services/install/command-line/eazel-alt-install-corba.c:
	(done),
	Check the result flag
	(main):
	Added revert to the commandline options.

	* components/services/install/idl/trilobite-eazel-install.idl:
	Added a boolean flag to the done signal

	* components/services/install/lib/eazel-install-corba-callback.c:
	(impl_done), (eazel_install_callback_class_initialize),
	Added a boolean flag to the done signal
	(eazel_install_callback_simple_query):
	Removed a blank line!

	* components/services/install/lib/eazel-install-corba-callback.h:
	Added a boolean flag to the done signal

	* components/services/install/lib/eazel-install-corba.c:
	(impl_Eazel_Install_simple_query):
	Corrected the parse of the root argument

	* components/services/install/lib/eazel-install-object.c:
	(eazel_install_class_initialize), (eazel_install_install_packages),
	(eazel_install_uninstall_packages),
	(eazel_install_revert_transaction_from_xmlstring),
	(eazel_install_query_package_system),
	Uses the enum return status from eazel-install-rpm-glue.c. The
	delete_files signal now depend on this enum.
	(eazel_install_emit_done), (eazel_install_emit_done_default):
	Added a boolean flag to the done signal

	* components/services/install/lib/eazel-install-public.h:
	Added a boolean flag to the done signal

	* components/services/install/lib/eazel-install-query.c:
	(eazel_install_simple_rpm_query):
	Added the root field to the packagedata

	* components/services/install/lib/eazel-install-rpm-glue.c:
	(install_new_packages), (download_all_packages),
	(install_packages), (uninstall_all_packages), (uninstall_packages),
	(hest), (revert_transaction),
	(eazel_install_start_transaction_make_rpm_argument_list),
	(eazel_install_do_transaction_save_report),
	(eazel_install_monitor_rpm_propcess_pipe),
	(eazel_install_monitor_subcommand_pipe),
	(eazel_install_start_transaction),
	(eazel_install_free_rpm_system_close_db_foreach),
	(eazel_install_prepare_rpm_system),
	(eazel_install_prepare_package_system),
	(eazel_install_check_existing_packages), (print_package_list),
	(eazel_uninstall_upward_traverse),
	(eazel_uninstall_downward_traverse),
	(eazel_uninstall_check_for_install), (eazel_uninstall_globber):
	Uses the enum return status from eazel-install-rpm-glue.c. Also
	added "D: " to all the debug output, so I can easily remove them
	in the future.

	* components/services/install/lib/eazel-install-rpm-glue.h:
	Redefined the functions to return an enum status instead of bool.

	* components/services/install/lib/eazel-install-types.h:
	* components/services/install/lib/eazel-install-types.c:
	(packagedata_new), (packagedata_destroy_foreach):
	Added the root field to the packagedage (bug 2345)

	* components/services/time/service/main.c:
	(trilobite_service_factory_destroy):
	Fixed the destruction of the factory object

	* components/services/time/service/trilobite-eazel-time-service-publi
	c.h:
	* components/services/time/service/trilobite-eazel-time-service.c:
	(impl_Trilobite_Eazel_Time_Service_check_time),
	(trilobite_eazel_time_service_finalize),
	(trilobite_eazel_time_service_unref),
	(trilobite_eazel_time_service_class_initialize),
	(trilobite_eazel_time_service_initialize_load_config),
	(trilobite_eazel_time_service_initialize),
	(trilobite_eazel_time_service_do_http_request):
	Added "D: " to debug output. The service now reads config from a
	xml config file (bug 945). Removed the _destroy call and added a
	unref and finallize instead.

	* components/services/trilobite/libtrilobite/helixcode-utils.h:
	* components/services/trilobite/libtrilobite/helixcode-utils.c:
	(xml_get_value):
	Returns the string as a g_strdup'ed value instead. Added a bug
	(2448) reg. making it return const char * instead.

	* components/services/trilobite/libtrilobite/trilobite-core-utils.h:
	*components/services/trilobite/libtrilobite/trilobite-core-utils.c:
	(trilobite_get_config_dir_string):
	Added this call, which returns the top dir for

	* nautilus-installer/src/Makefile:
	* nautilus-installer/src/callbacks.c:
	* nautilus-installer/src/callbacks.h:
	* nautilus-installer/src/installer.c: (installer):
	* nautilus-installer/src/interface.c: (create_window):
	* nautilus-installer/src/main.c:
	Begun work on using the categories.
2000-08-29 00:30:23 +00:00
Robey Pointer
6df15fca4c add md5 code (stolen from evolution) 2000-08-29 00:17:31 +00:00
John Sullivan
adad24996d Added more bug numbers to FIXMEs. 77 to go. I am exhausted
from creating bug reports, so the remaining ones will have
	to wait until at least tomorrow.

	* src/nautilus-complex-search-bar.c:
	(nautilus_complex_search_bar_set_location),
	(fewer_options_callback), (update_options_buttons_state):
	* src/nautilus-search-bar.c:
	* src/nautilus-sidebar-tabs.c: (draw_one_tab_themed),
	(get_tab_width):
	* src/nautilus-sidebar.c: (receive_dropped_uri_list),
	(receive_dropped_keyword), (add_command_buttons):
	* src/nautilus-simple-search-bar.c:
	(nautilus_search_uri_to_simple_search_criteria),
	(nautilus_simple_search_criteria_to_search_uri):
	* src/nautilus-switchable-search-bar.c:
	(search_bar_preference_changed_callback),
	(nautilus_switchable_search_bar_set_location),
	(nautilus_search_uri_is_displayable_by_mode):
2000-08-29 00:12:05 +00:00
Andy Hertzfeld
c6221eea1d used anti-aliased text, via nautilus_label, where appropriate in the
used anti-aliased text, via nautilus_label, where appropriate in
	the property browser and theme selector
2000-08-29 00:06:40 +00:00
J Shane Culpepper
b6ffafd9d2 Removing old FIXME comments. 2000-08-28 23:51:45 +00:00
Ali Abdin
dcacc5e2dd Updated.
2000-08-28  Ali Abdin  <aliabdin@aucegypt.edu>

        * components/help/converters/gnome-db2html2/TODO:
        Updated.

        * components/help/converters/gnome-db2html2/AUTHORS:
        New file (to give credit where its due and to show who to contact
        for maintainership purposes)

        * components/help/converters/gnome-db2html2/sect-elements.c
        (sect_table_with_border_start_element) Its a good idea to actually
2000-08-28 23:45:39 +00:00
John Sullivan
8bc0bad71c Added more bug numbers to FIXMEs. 94 to go.
* libnautilus-extensions/nautilus-icon-canvas-item.c: (map_pixbuf),
	(draw_label_text_aa), (nautilus_icon_canvas_item_event):
	* libnautilus-extensions/nautilus-icon-container.c: (icon_free),
	(get_all_icon_bounds), (lay_down_icons_tblr), (lay_down_icons),
	(nautilus_icon_container_move_icon), (stop_rubberbanding),
	(destroy), (hide_rename_widget):
	* libnautilus-extensions/nautilus-icon-dnd.c:
	(nautilus_icon_container_dropped_icon_feedback),
	(receive_dropped_keyword), (auto_scroll_timeout_callback),
	(nautilus_icon_container_find_drop_target),
	(nautilus_icon_dnd_update_drop_target), (nautilus_icon_dnd_fini):
	* libnautilus-extensions/nautilus-link-set.c: (link_set_path_name),
	(expand_uri):
	* libnautilus-extensions/nautilus-link.c:
	(nautilus_link_get_root_property),
	(nautilus_link_get_additional_text), (make_local_path),
	(nautilus_link_get_image_uri), (nautilus_link_get_link_uri),
	(nautilus_link_get_link_type):
	* src/nautilus-sidebar-title.c:
	(nautilus_sidebar_title_select_text_color), (update_font),
	(update_title), (update_more_info), (update_emblems),
	(update_notes):
2000-08-28 23:36:35 +00:00
Mike Engber
c2d0d23c0c The three zooming related items no longer appear in the desktop's right
The three zooming related items no longer appear in
	the desktop's right click menu (bug 1737)

	* src/file-manager/fm-desktop-icon-view.c:
	(fm_desktop_icon_view_initialize_class),
	(change_desktop_background_menu_item_callback),
	(fm_desktop_icon_view_create_background_context_menu_zoom_items):
	* src/file-manager/fm-directory-view.c:
	(fm_directory_view_initialize_class),
	(real_create_background_context_menu_zoom_items),
	(create_background_context_menu_zoom_items),
	(fm_directory_view_real_create_background_context_menu_items):
	* src/file-manager/fm-directory-view.h:
2000-08-28 23:02:48 +00:00
John Sullivan
5f2663cc76 Added more bug numbers to FIXMEs. 142 to go.
* src/nautilus-view-frame-nautilus-view.c: (load_location),
	(stop_loading), (selection_changed), (title_changed):
	* src/nautilus-view-frame.c:
	(nautilus_view_frame_handle_client_destroy),
	(nautilus_view_frame_set_active_errors):
	* src/nautilus-window-manage-views.c:
	(nautilus_window_report_load_underway),
	(nautilus_window_report_load_complete),
	(nautilus_window_report_load_failed),
	(nautilus_window_update_view),
	(nautilus_window_load_sidebar_panel), (open_location),
	(nautilus_window_update_state),
	(nautilus_window_end_location_change_callback):
	* src/nautilus-window-menus.c: (get_static_bookmarks_file_path):
	* src/nautilus-window.c: (nautilus_window_load_content_view_menu):
	* tools/leak-checker/nautilus-leak-checker.c: (detect_reentry):
	* tools/leak-checker/nautilus-leak-hash-table.c:
	(nautilus_leak_hash_element_vector_add),
	(nautilus_leak_hash_table_remove):
2000-08-28 22:03:46 +00:00
Robey Pointer
97e19ed2d4 support local file RPMs and using a specific server (mostly for demo purposes); make sure test mode is off; some i18n cleanup 2000-08-28 21:36:20 +00:00
John Sullivan
d06e8b95d7 Added more bug numbers to FIXMEs. 166 to go.
* libnautilus-extensions/nautilus-search-bar-criterion.c:
	(nautilus_search_bar_criterion_destroy), (get_size_location_for),
	(get_emblem_location_for):
	* libnautilus-extensions/nautilus-search-uri.c:
	* libnautilus-extensions/nautilus-stock-dialogs.c:
	(timed_wait_callback):
	* libnautilus-extensions/nautilus-string-map.c:
	* libnautilus-extensions/nautilus-trash-directory.c:
	(get_volume_vfs_uri_if_writable):
	* libnautilus-extensions/nautilus-volume-monitor.c:
	(mount_volume_mount), (eject_cdrom), (mount_volume_floppy_add),
	(mount_volume_add_aliases), (mntent_is_removable_fs),
	(find_volumes), (nautilus_volume_monitor_mount_unmount_removable):
2000-08-28 20:44:34 +00:00
Pavel Cisler
a54ce64495 Fix FIXME 2428 and 2389. Made it so that the respective
2000-08-28  Pavel Cisler  <pavel@eazel.com>

	* libnautilus-extensions/nautilus-file.c:
	(nautilus_file_is_in_trash):
	* src/file-manager/fm-directory-view.c:
	(fm_directory_view_can_move_file_to_trash):
	Fix FIXME 2428 and 2389.
	Made it so that the respective gnome_vfs_find_directory calls
	won't do any I/O.
2000-08-28 20:04:32 +00:00
John Sullivan
d911f6baec Added more bug numbers to FIXMEs. 187 to go. This time I
didn't check in until I was sure I hadn't broken the build.

	* libnautilus-extensions/nautilus-directory-async.c:
	(allow_metafile), (set_up_request_by_file_attributes),
	(activation_uri_nautilus_link_read_callback),
	(activation_uri_gmc_link_read_callback):
	* libnautilus-extensions/nautilus-file-utilities.c:
	* libnautilus-extensions/nautilus-file-utilities.h:
	* libnautilus-extensions/nautilus-file.c: (nautilus_file_rename),
	(nautilus_file_compare_for_sort), (nautilus_file_can_get_owner),
	(nautilus_file_set_owner), (nautilus_file_can_get_group),
	(nautilus_file_get_group_name), (nautilus_file_set_group),
	(nautilus_file_get_owner_as_string), (nautilus_file_is_in_trash),
	(nautilus_file_mark_gone), (nautilus_file_dump):
2000-08-28 19:56:29 +00:00