aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-09-20 19:17:54 +0800
committerChristian Persch <chpe@src.gnome.org>2003-09-20 19:17:54 +0800
commitb93121c147570503f42ce2d1d619296b26081d59 (patch)
tree3a0d846c2d897d711ee3ae22d6584101d298b095
parent68616208eeeee369e62c9256fc9aba5dbe139e3e (diff)
downloadgsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.tar
gsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.tar.gz
gsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.tar.bz2
gsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.tar.lz
gsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.tar.xz
gsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.tar.zst
gsoc2013-epiphany-b93121c147570503f42ce2d1d619296b26081d59.zip
Fix directory selection persistence [bug #122780].
2003-09-20 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-utils.c: (ephy_embed_utils_save): * embed/mozilla/mozilla-embed-single.cpp: * src/window-commands.c: (window_cmd_file_open): Fix directory selection persistence [bug #122780].
-rw-r--r--ChangeLog8
-rw-r--r--embed/ephy-embed-utils.c28
-rw-r--r--embed/mozilla/mozilla-embed-single.cpp6
-rw-r--r--src/window-commands.c43
4 files changed, 47 insertions, 38 deletions
diff --git a/ChangeLog b/ChangeLog
index ff0993e42..06370288c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2003-09-20 Christian Persch <chpe@cvs.gnome.org>
+ * embed/ephy-embed-utils.c: (ephy_embed_utils_save):
+ * embed/mozilla/mozilla-embed-single.cpp:
+ * src/window-commands.c: (window_cmd_file_open):
+
+ Fix directory selection persistence [bug #122780].
+
+2003-09-20 Christian Persch <chpe@cvs.gnome.org>
+
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_class_init),
(ephy_location_entry_activation_finished), (location_focus_out_cb),
diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c
index ecb3dff7c..ff3dcbef5 100644
--- a/embed/ephy-embed-utils.c
+++ b/embed/ephy-embed-utils.c
@@ -61,7 +61,6 @@ ephy_embed_utils_save (GtkWidget *window,
char *retPath = NULL;
char *fileName = NULL;
char *dirName = NULL;
- char *retDir;
char *target;
const char *source;
gresult ret;
@@ -136,18 +135,27 @@ ephy_embed_utils_save (GtkWidget *window,
if (ask_dest)
{
+ char *ret_dir;
+
/* show the file picker */
ret = ephy_embed_single_show_file_picker
(single, window, title,
dirName, fileName, modeSave, &retPath,
NULL, NULL);
- }
-
- uri = gnome_vfs_uri_new (retPath);
- g_return_if_fail (uri != NULL);
-
- retDir = gnome_vfs_uri_extract_dirname (uri);
+ if (g_file_test (retPath, G_FILE_TEST_IS_DIR))
+ {
+ ret_dir = g_strdup (retPath);
+ }
+ else
+ {
+ ret_dir = g_path_get_dirname (retPath);
+ }
+
+ /* set default save dir */
+ eel_gconf_set_string (default_dir_pref, ret_dir);
+ g_free (ret_dir);
+ }
if (ret == G_OK)
{
@@ -173,12 +181,6 @@ ephy_embed_utils_save (GtkWidget *window,
}
- /* set default save dir */
- eel_gconf_set_string (default_dir_pref,
- retDir);
-
- g_free (retDir);
- gnome_vfs_uri_unref (uri);
g_free (retPath);
g_object_unref (G_OBJECT(persist));
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp
index b4f5fc2f8..8bbfc43c1 100644
--- a/embed/mozilla/mozilla-embed-single.cpp
+++ b/embed/mozilla/mozilla-embed-single.cpp
@@ -38,6 +38,7 @@
#include <time.h>
#include <libgnome/gnome-i18n.h>
+#include <libgnomevfs/gnome-vfs-utils.h>
#include <string.h>
#include <nsICacheService.h>
#include <nsCOMPtr.h>
@@ -1017,15 +1018,14 @@ impl_show_file_picker (EphyEmbedSingle *shell,
GFilePicker *filePicker = new GFilePicker (file_formats);
- /* FIXME sane path: expand tilde ... */
- expanded_directory = g_strdup (directory);
+ expanded_directory = gnome_vfs_expand_initial_tilde (directory);
/* make sure the directory exists, and use the home directory
* otherwise */
if (!expanded_directory ||
!g_file_test (expanded_directory, G_FILE_TEST_IS_DIR))
{
- if (expanded_directory) g_free (expanded_directory);
+ g_free (expanded_directory);
expanded_directory = g_strdup (g_get_home_dir());
}
diff --git a/src/window-commands.c b/src/window-commands.c
index e4dcac9d5..bb2286848 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -318,10 +318,7 @@ void
window_cmd_file_open (GtkAction *action,
EphyWindow *window)
{
- gchar *dir, *retDir;
- gchar *file;
- GnomeVFSURI *uri;
- GtkWidget *wmain;
+ char *dir, *ret_dir, *file;
EphyEmbedShell *embed_shell;
gresult result;
EphyEmbedSingle *single;
@@ -331,35 +328,37 @@ window_cmd_file_open (GtkAction *action,
embed_shell = EPHY_EMBED_SHELL (ephy_shell);
- wmain = GTK_WIDGET (window);
- g_return_if_fail (wmain != NULL);
-
dir = eel_gconf_get_string (CONF_STATE_OPEN_DIR);
result = ephy_embed_single_show_file_picker
- (single, wmain,
+ (single, GTK_WIDGET (window),
_("Open"),
dir, NULL, modeOpen,
&file, NULL, NULL);
- uri = gnome_vfs_uri_new (file);
- if (uri)
+ /* persist directory choice */
+ /* Fix for bug 122780:
+ * if the user selected a directory, or aborted with no filename typed,
+ * g_path_get_dirname and gnome_vfs_uri_extract_dirname strip the last
+ * path component, so test if the returned file is actually a directory.
+ */
+ if (g_file_test (file, G_FILE_TEST_IS_DIR))
{
- retDir = gnome_vfs_uri_extract_dirname (uri);
-
- /* set default open dir */
- eel_gconf_set_string (CONF_STATE_OPEN_DIR,
- retDir);
+ ret_dir = g_strdup (file);
+ }
+ else
+ {
+ ret_dir = g_path_get_dirname (file);
+ }
- g_free (retDir);
- gnome_vfs_uri_unref (uri);
+ eel_gconf_set_string (CONF_STATE_OPEN_DIR, ret_dir);
- if (result == G_OK)
- {
- ephy_window_load_url(window, file);
- }
- }
+ if (result == G_OK)
+ {
+ ephy_window_load_url(window, file);
+ }
+ g_free (ret_dir);
g_free (file);
g_free (dir);
}