Feature Added : Ability to drag and drop in Chrome

This commit is contained in:
Luke Policinski 2014-02-19 21:28:32 +00:00
parent 79a6d89bcc
commit b01492fecd
3 changed files with 13 additions and 13 deletions

View File

@ -107,12 +107,12 @@ $directory = '';
if (strpos($dir, '..') === false) {
$fileCount = count($files['name']);
for ($i = 0; $i < $fileCount; $i++) {
// Get the files directory
if(isset($_POST['file_directory']) === true) {
$directory = '/'.$_POST['file_directory'];
}
// $path needs to be normalized - this failed within drag'n'drop upload to a sub-folder
if (isset($_POST['resolution']) && $_POST['resolution']==='autorename') {
// append a number in brackets like 'filename (2).ext'

View File

@ -936,7 +936,7 @@ $(document).ready(function() {
var file = result[0];
if (data.context && data.context.data('type') === 'dir') {
// update upload counter ui
var uploadtext = data.context.find('.uploadtext');
var currentUploads = parseInt(uploadtext.attr('currentUploads'));
@ -962,12 +962,12 @@ $(document).ready(function() {
// only append new file if uploaded into the current folder
if (file.directory !== FileList.getCurrentDirectory()) {
file_directory = file.directory.replace('/','').replace(/\/$/, "").split('/');
if (file_directory.length == 1) {
file_directory = file_directory[0];
// Get the directory
if ($('tr[data-file="'+file_directory+'"]').length == 0)
{
@ -977,13 +977,13 @@ $(document).ready(function() {
else {
file_directory = file_directory[0];
}
// update folder size
var size = parseInt($('tr[data-file="'+file_directory+'"]').attr('data-size'));
size += parseInt(file.size);
$('tr[data-file="'+file_directory+'"]').attr('data-size', size);
$('tr[data-file="'+file_directory+'"]').find('td.filesize').text(humanFileSize(size));
return;
}

View File

@ -617,21 +617,21 @@ class View {
}
public function fromTmpFile($tmpFile, $path) {
if (Filesystem::isValidPath($path)) {
// Get directory that the file is going into
$file_path = \OC_User::getHome(\OC_User::getUser()) . '/files'.substr($path, 0, strrpos($path,'/'));
// Create the directories if any
if(empty($file_path) === false) {
mkdir($file_path, 0770, true);
}
if (!$tmpFile) {
debug_print_backtrace();
}
$source = fopen($tmpFile, 'r');
if ($source) {
$this->file_put_contents($path, $source);