aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/file-upload.js
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-08-14 17:49:45 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-08-14 17:49:45 +0200
commit9da49264ea6edbad13455a3e66d7f369f2e8448f (patch)
treecb7a660e62f894f689dc933391b0e53fccc7c112 /apps/files/js/file-upload.js
parente1927d5bee11b561a293a9488bd27d90c2c043e6 (diff)
downloadnextcloud-server-9da49264ea6edbad13455a3e66d7f369f2e8448f.tar.gz
nextcloud-server-9da49264ea6edbad13455a3e66d7f369f2e8448f.zip
change filelist ui updates
Diffstat (limited to 'apps/files/js/file-upload.js')
-rw-r--r--apps/files/js/file-upload.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index 71034a0b3f4..bd9757b5ffc 100644
--- a/apps/files/js/file-upload.js
+++ b/apps/files/js/file-upload.js
@@ -1,3 +1,30 @@
+/**
+ *
+ * when versioning app is active -> always overwrite
+ *
+ * fileupload scenario: empty folder & d&d 20 files
+ * queue the 20 files
+ * check list of files for duplicates -> empty
+ * start uploading the queue (show progress dialog?)
+ * - no duplicates -> all good, add files to list
+ * - server reports duplicate -> show skip, replace or rename dialog (for individual files)
+ *
+ * fileupload scenario: files uploaded & d&d 20 files again
+ * queue the 20 files
+ * check list of files for duplicates -> find n duplicates ->
+ * show skip, replace or rename dialog as general option
+ * - show list of differences with preview (win 8)
+ * remember action for each file
+ * start uploading the queue (show progress dialog?)
+ * - no duplicates -> all good, add files to list
+ * - server reports duplicate -> use remembered action
+ *
+ * dialoge:
+ * -> skip, replace, choose (or abort) ()
+ * -> choose left or right (with skip) (when only one file in list also show rename option and remember for all option)
+ */
+
+
OC.upload = {
_isProcessing:false,
isProcessing:function(){