diff options
author | Havoc Pennington <hp@redhat.com> | 2001-07-02 23:54:12 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-07-02 23:54:12 +0000 |
commit | 8d9cd2e8d1b0c0ad8de56411ff183644d9646a0a (patch) | |
tree | 1d5cd1ae7c7ecfd5bf2088ae23c361079dbc5e53 | |
parent | f9895f1347680a6e918c4755540a543eea3503a9 (diff) | |
download | nautilus-8d9cd2e8d1b0c0ad8de56411ff183644d9646a0a.tar.gz |
Don't create a desktop link to Eazel services or open Eazel home page.
2001-06-28 Havoc Pennington <hp@redhat.com>
* src/nautilus-first-time-druid.c (druid_finished): Don't create a
desktop link to Eazel services or open Eazel home page.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/nautilus-first-time-druid.c | 30 |
2 files changed, 6 insertions, 29 deletions
@@ -1,3 +1,8 @@ +2001-06-28 Havoc Pennington <hp@redhat.com> + + * src/nautilus-first-time-druid.c (druid_finished): Don't create a + desktop link to Eazel services or open Eazel home page. + 2001-07-02 Cody Russell <bratsche@gnome.org> * libnautilus-private/nautilus-volume-monitor.[ch]: Added diff --git a/src/nautilus-first-time-druid.c b/src/nautilus-first-time-druid.c index 73ad77fac..0c9c7f9c6 100644 --- a/src/nautilus-first-time-druid.c +++ b/src/nautilus-first-time-druid.c @@ -93,10 +93,6 @@ enum { #define NETSCAPE_PREFS_PATH "/.netscape/preferences.js" -/* FIXME: this needs to use a custom URL */ -#define EAZEL_SERVICES_URL "http://services.eazel.com/services" - - /* globals */ static NautilusApplication *save_application; @@ -195,20 +191,6 @@ druid_set_first_time_file_flag (void) g_free (druid_flag_file_name); } -static gint -create_services_link_callback (gpointer data) -{ - char *desktop_path; - - /* Create default services icon on the desktop */ - desktop_path = nautilus_get_desktop_directory (); - nautilus_link_local_create (desktop_path, _("Eazel Services"), "hand.png", - "eazel:", NULL, NAUTILUS_LINK_GENERIC); - g_free (desktop_path); - - return FALSE; -} - static void druid_finished (GtkWidget *druid_page) { @@ -243,13 +225,8 @@ druid_finished (GtkWidget *druid_page) } signup_uris[0] = eel_preferences_get (NAUTILUS_PREFERENCES_HOME_URI); + signup_uris[1] = NULL; - if (http_is_known_to_work) { - signup_uris[1] = EAZEL_SERVICES_URL; - signup_uris[2] = NULL; - } else { - signup_uris[1] = NULL; - } #ifdef TRANSITIONAL_NAUTILUS /* Do the GMC to Nautilus Transition */ @@ -263,11 +240,6 @@ druid_finished (GtkWidget *druid_page) gtk_idle_add (convert_gmc_desktop_icons, NULL); } #endif - - /* Arrange to create default services icon on the desktop. Do this - * at idle time for the same reason as when converting gmc icons - */ - gtk_idle_add (create_services_link_callback, NULL); /* Time to start. Hooray! */ nautilus_application_startup (save_application, FALSE, FALSE, draw_desktop, |