From 4f0b1386924b52da59d0a4eedaae689173fe21da Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 6 Aug 2016 12:46:10 +0200 Subject: bring back acl for cloud file uploads --- view/js/mod_cloud.js | 4 ++-- view/tpl/cloud_actionspanel.tpl | 41 ++++++++++++++++++++++++++--------------- 2 files changed, 28 insertions(+), 17 deletions(-) (limited to 'view') diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js index 5b3c78bed..8b8a3ba3f 100644 --- a/view/js/mod_cloud.js +++ b/view/js/mod_cloud.js @@ -202,7 +202,7 @@ function UploadFile(file, idx) { }); // POST to the entire cloud path - xhr.open('post', window.location.pathname, true); + xhr.open('post', 'file_upload', true); var formfields = $("#ajax-upload-files").serializeArray(); @@ -210,7 +210,7 @@ function UploadFile(file, idx) { $.each(formfields, function(i, field) { data.append(field.name, field.value); }); - data.append('file', file); + data.append('userfile', file); xhr.send(data); } diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index 0884cd0b4..d27b3f42d 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -1,20 +1,31 @@
- -
- - - -
-
+ +
+ + + +
+
- {{if $quota.limit || $quota.used}}{{/if}} -
- - - - -
-
+ {{if $quota.limit || $quota.used}}{{/if}} +
+ + + + + +
+
+ {{if $lockstate}} + + {{/if}} + +
+
+
+
{{$aclselect}} -- cgit v1.2.3