www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 7787f2f1cc1fdc74a7ccc4bb5238c425eb46fd6d
parent 85914325aa859b16fc1bc376c0fea5e7fab6ddd0
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 18 Dec 2009 12:10:51 +0000

More helpful message for HTTP 507 Insufficient Storage (WebDAV)


Diffstat:
Mchrome/content/zotero/xpcom/storage/webdav.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js @@ -552,6 +552,10 @@ Zotero.Sync.Storage.Session.WebDAV.prototype._onUploadComplete = function (httpR + "from the Sync pane of the Zotero preferences."); return; + case 507: + this.onError("A file upload failed due to insufficient space on the WebDAV server."); + return; + default: this.onError("Unexpected file upload status " + status + " in Zotero.Sync.Storage._onUploadComplete()");