You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2013/09/19 16:47:52 UTC

[2/2] git commit: updated refs/heads/reset-doc-id to a766cac

show upload errors


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/a766cac7
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/a766cac7
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/a766cac7

Branch: refs/heads/reset-doc-id
Commit: a766cac7f07d0bf3ad4c94407cb1a06828cddef6
Parents: 10f2be4
Author: Garren Smith <ga...@gmail.com>
Authored: Thu Sep 19 16:47:31 2013 +0200
Committer: Garren Smith <ga...@gmail.com>
Committed: Thu Sep 19 16:47:31 2013 +0200

----------------------------------------------------------------------
 src/fauxton/app/modules/documents/views.js            | 9 ++++++---
 src/fauxton/app/templates/documents/upload_modal.html | 2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/a766cac7/src/fauxton/app/modules/documents/views.js
----------------------------------------------------------------------
diff --git a/src/fauxton/app/modules/documents/views.js b/src/fauxton/app/modules/documents/views.js
index de19386..c70e94e 100644
--- a/src/fauxton/app/modules/documents/views.js
+++ b/src/fauxton/app/modules/documents/views.js
@@ -147,6 +147,7 @@ function(app, FauxtonAPI, Components, Documents, pouchdb, Codemirror, JSHint, re
       event.preventDefault();
 
       var docRev = this.model.get('_rev'),
+          that = this,
           $form = this.$('#file-upload');
 
       if (!docRev) {
@@ -165,21 +166,23 @@ function(app, FauxtonAPI, Components, Documents, pouchdb, Codemirror, JSHint, re
         beforeSend: this.beforeSend,
         uploadProgress: this.uploadProgress,
         success: this.success,
-        error: function () {
-          console.log('ERR on upload', arguments);
+        error: function (resp) {
+          console.log('ERR on upload', resp);
+          return that.set_error_msg('Could not upload document: ' + JSON.parse(resp.responseText).reason);
         }
       });
     },
 
     success: function (resp) {
       var hideModal = this.hideModal,
-      $form = this.$('#file-upload');
+          $form = this.$('#file-upload');
 
       FauxtonAPI.triggerRouteEvent('reRenderDoc');
       //slight delay to make this transistion a little more fluid and less jumpy
       setTimeout(function () {
         $form.clearForm();
         hideModal();
+        $('.modal-backdrop').remove();
       }, 1000);
     },
 

http://git-wip-us.apache.org/repos/asf/couchdb/blob/a766cac7/src/fauxton/app/templates/documents/upload_modal.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/templates/documents/upload_modal.html b/src/fauxton/app/templates/documents/upload_modal.html
index 08a14a6..33c2861 100644
--- a/src/fauxton/app/templates/documents/upload_modal.html
+++ b/src/fauxton/app/templates/documents/upload_modal.html
@@ -18,7 +18,7 @@ the License.
     <h3>Upload an Attachment</h3>
   </div>
   <div class="modal-body">
-    <div id="modal-error" class="hide alert alert-error"/>
+    <div id="modal-error" class="alert alert-error hide" style="font-size: 16px;"> </div>
     <form id="file-upload" class="form" method="post">
       <p class="help-block">
       Please select the file you want to upload as an attachment to this document.