diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-04-17 01:51:14 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-04-17 01:51:14 +0800 |
commit | 196e2ef0e21d62be54de74a66b5321ce12036efd (patch) | |
tree | 267e8d16c2e8165bc2fc75340b890b7644144588 /embed | |
parent | 88ed9f332854171763ad372fad9e4f7d1f718960 (diff) | |
download | gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.tar gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.tar.gz gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.tar.bz2 gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.tar.lz gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.tar.xz gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.tar.zst gsoc2013-epiphany-196e2ef0e21d62be54de74a66b5321ce12036efd.zip |
Fix saving of linked content. Don't create the directory; mozilla will do
2004-04-16 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/MozDownload.cpp:
Fix saving of linked content. Don't create the directory;
mozilla will do it for us if necessary.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index a5c37e0f3..571a937d0 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -503,10 +503,12 @@ nsresult InitiateMozillaDownload (nsIDOMDocument *domDocument, nsIURI *sourceURI PRInt32 encodingFlags = 0; nsCOMPtr<nsILocalFile> filesFolder; - if (contentType && strcmp (contentType, "text/plain") == 0) + if (!contentType || strcmp (contentType, "text/plain") != 0) { - /* Create a local directory in the same dir as our file. It - will hold our associated files. */ + /** + * Construct a directory path to hold the associated files; mozilla + * will create the directory as needed. + */ filesFolder = do_CreateInstance("@mozilla.org/file/local;1"); nsAutoString unicodePath; @@ -522,15 +524,8 @@ nsresult InitiateMozillaDownload (nsIDOMDocument *domDocument, nsIURI *sourceURI nameMinusExt.Left(nameMinusExt, index); } - nameMinusExt += NS_LITERAL_STRING(" Files"); + nameMinusExt += NS_LITERAL_STRING (" Files"); filesFolder->SetLeafName(nameMinusExt); - PRBool exists = PR_FALSE; - filesFolder->Exists(&exists); - if (!exists) - { - rv = filesFolder->Create(nsILocalFile::DIRECTORY_TYPE, 0755); - if (NS_FAILED(rv)) return rv; - } } else { |