diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-11-28 07:46:32 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-11-28 07:46:32 +0800 |
commit | 493334ce5b250010cd55fddfef9d83470b6d0c70 (patch) | |
tree | b0ca55562c16790de3626e99f38e0aa75e735e5a /embed/mozilla/EphyHeaderSniffer.cpp | |
parent | 9bba3e204ba22f682e2ab211f9fccf760ae58a93 (diff) | |
download | gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.tar gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.tar.gz gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.tar.bz2 gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.tar.lz gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.tar.xz gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.tar.zst gsoc2013-epiphany-493334ce5b250010cd55fddfef9d83470b6d0c70.zip |
Do not blindly overwrite when downloading a file with the same name than a
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/MozDownload.h:
Do not blindly overwrite when downloading a file with the same
name than a local one, append a number after the name.
Fixes (more or less) #12775
Diffstat (limited to 'embed/mozilla/EphyHeaderSniffer.cpp')
-rw-r--r-- | embed/mozilla/EphyHeaderSniffer.cpp | 40 |
1 files changed, 2 insertions, 38 deletions
diff --git a/embed/mozilla/EphyHeaderSniffer.cpp b/embed/mozilla/EphyHeaderSniffer.cpp index a1e621fad..b6bc1ffb0 100644 --- a/embed/mozilla/EphyHeaderSniffer.cpp +++ b/embed/mozilla/EphyHeaderSniffer.cpp @@ -324,46 +324,10 @@ nsresult EphyHeaderSniffer::PerformSave (nsIURI* inOriginalURI) return NS_OK; } - /* FIXME ask user if overwriting ? */ - /* FIXME: how to inform user of failed save ? */ - download_dir = eel_gconf_get_string (CONF_STATE_DOWNLOAD_DIR); - if (!download_dir) - { - /* Emergency download destination */ - download_dir = g_strdup (g_get_home_dir ()); - } - - if (!strcmp (download_dir, "Desktop")) - { - if (eel_gconf_get_boolean (CONF_DESKTOP_IS_HOME_DIR)) - { - path = g_build_filename - (g_get_home_dir (), - NS_ConvertUCS2toUTF8 (defaultFileName).get(), - NULL); - } - else - { - path = g_build_filename - (g_get_home_dir (), "Desktop", - NS_ConvertUCS2toUTF8 (defaultFileName).get(), - NULL); - } - } - else - { - path = g_build_filename - (gnome_vfs_expand_initial_tilde (download_dir), - NS_ConvertUCS2toUTF8 (defaultFileName).get(), - NULL); - } - g_free (download_dir); - - nsCOMPtr<nsILocalFile> destFile = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID); - destFile->InitWithNativePath (nsDependentCString (path)); - g_free (path); + nsILocalFile *destFile; + BuildDownloadPath (NS_ConvertUCS2toUTF8 (defaultFileName).get(), &destFile); return InitiateDownload (destFile); } |