Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Opening the trashbin causes errors in log for files without preview | Morris Jobke | 2016-09-09 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | * put a file without a generated preview in the trashbin (e.g. a *.docx file) * open the trashbin * following errors will show up in the nextcloud.log: - filesize(): stat failed for ... - fopen(...): failed to open stream: No such file or directory at ... - fread() expects parameter 1 to be resource, boolean given at ... - fclose() expects parameter 1 to be resource, boolean given at ... - imagecreatefromstring(): Empty string or invalid image at ... This is because the preview code tries to load an SVG image, which is obviously only text. The fix simply handles this before the loading happens and the web UI keeps showing the default mimetype icon. | ||||
* | Fix error message while restoring all files | Morris Jobke | 2016-07-25 | 1 | -2/+1 |
| | | | | | * use $_POST['files'] only of ssinlge files are restored * fixes #528 | ||||
* | Update with robin | Joas Schilling | 2016-07-21 | 2 | -2/+2 |
| | |||||
* | Fix apps/ | Joas Schilling | 2016-07-21 | 5 | -8/+13 |
| | |||||
* | Update license headers | Lukas Reschke | 2016-05-26 | 5 | -10/+10 |
| | |||||
* | Happy new year! | Thomas Müller | 2016-01-12 | 5 | -5/+6 |
| | |||||
* | Use proper public API for OC_Helper::getFileNameMimeType | Morris Jobke | 2015-12-17 | 1 | -1/+1 |
| | |||||
* | Update license headers | Lukas Reschke | 2015-10-26 | 3 | -3/+3 |
| | |||||
* | update licence headers via script | Morris Jobke | 2015-10-05 | 3 | -0/+3 |
| | |||||
* | Merge pull request #15506 from rullzer/core_apps_oc_log2ocp_util | Morris Jobke | 2015-07-01 | 3 | -5/+5 |
|\ | | | | | Move core apps from OC_Log::write to OCP\Util | ||||
| * | Move core apps from OC_Log::write to OCP\Util | Roeland Jago Douma | 2015-05-18 | 3 | -5/+5 |
| | | |||||
* | | update license headers and authors | Morris Jobke | 2015-06-25 | 4 | -4/+0 |
|/ | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 5 | -10/+112 |
| | |||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 5 | -109/+11 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 5 | -11/+109 |
| | |||||
* | Manually type-case all AJAX files | Lukas Reschke | 2015-02-13 | 3 | -7/+7 |
| | | | | | | This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support :see_no_evil: Fixes https://github.com/owncloud/core/issues/14196 for core | ||||
* | Close session for files_trashbin | Lukas Reschke | 2014-10-29 | 5 | -0/+6 |
| | | | | When restoring huge folders the interface will be unresponsive otherwise | ||||
* | Use public api for getting l10n | Robin Appelman | 2014-08-31 | 2 | -2/+2 |
| | |||||
* | make sure that we always use the right user | Bjoern Schiessle | 2014-06-18 | 3 | -3/+3 |
| | |||||
* | Add sorting to files list, trashbin and public files | Vincent Petry | 2014-04-28 | 1 | -1/+3 |
| | |||||
* | Files, trashbin, public apps use ajax/JSON for the file list | Vincent Petry | 2014-04-02 | 3 | -27/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Files app: - removed file list template, now rendering list from JSON response - FileList.addFile/addDir is now FileList.add() and takes a JS map with all required arguments instead of having a long number of function arguments - added unit tests for many FileList operations - fixed newfile.php, newfolder.php and rename.php to return the file's full JSON on success - removed obsolete/unused undo code - removed download_url / loading options, now using Files.getDownloadUrl() for that - server side now uses Helper::getFileInfo() to prepare file JSON response - previews are now client-side only Breadcrumbs are now JS only: - Added BreadCrumb class to handle breadcrumb rendering and events - Added unit test for BreadCrumb class - Moved all relevant JS functions to the BreadCrumb class Public page now uses ajax to load the file list: - Added Helper class in sharing app to make it easier to authenticate and retrieve the file's real path - Added ajax/list.php to retrieve the file list - Fixed FileActions and FileList to work with the ajax list Core: - Fixed file picker dialog to use the same list format as files app | ||||
* | Merge branch 'master' into load-apps-proper-master | Thomas Müller | 2014-03-21 | 4 | -19/+36 |
|\ | | | | | | | | | | | | | Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php | ||||
| * | if file is not in db, fall back to restore file to the users root | Bjoern Schiessle | 2014-03-10 | 1 | -3/+3 |
| | | |||||
| * | Merge pull request #7195 from owncloud/files-selectall | Vincent Petry | 2014-02-19 | 2 | -15/+32 |
| |\ | | | | | | | Do not send file list for select all on Download/delete | ||||
| | * | Trashbin select all now doesn't send file list | Vincent Petry | 2014-02-17 | 2 | -15/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Fixed "delete" and "restore" actions to not send the file list when all files are selected - When some files are selected, sends the current dir - Removed "dirListing" attribute as the backend is able to compute the value based on the current dir | ||||
| * | | Merge pull request #6726 from owncloud/fix_6630 | Vincent Petry | 2014-02-14 | 1 | -1/+1 |
| |\ \ | | |/ | |/| | don't urldecode get var, php does this automatically | ||||
| | * | don't urldecode get var, php does this automatically | Georg Ehrke | 2014-01-30 | 1 | -1/+1 |
| | | | |||||
* | | | remove superfluous $RUNTIME_APPTYPES | Thomas Müller | 2014-02-06 | 1 | -6/+0 |
|/ / | |||||
* / | Fixed image preview in trashbin subdirs | Vincent Petry | 2014-01-30 | 1 | -2/+12 |
|/ | |||||
* | check explicitely all possible dir values | Bjoern Schiessle | 2013-12-02 | 1 | -2/+3 |
| | |||||
* | set delete all to true if a complete folder was deleted | Bjoern Schiessle | 2013-12-02 | 1 | -1/+2 |
| | |||||
* | fix delete files from trash bin | Bjoern Schiessle | 2013-12-02 | 1 | -14/+16 |
| | |||||
* | fix restore from files in sub-folders | Bjoern Schiessle | 2013-11-29 | 1 | -0/+1 |
| | |||||
* | remove duplicate | Bjoern Schiessle | 2013-11-28 | 1 | -1/+0 |
| | |||||
* | detect mimetype from the original filename, without the delete timestamp | Bjoern Schiessle | 2013-11-28 | 1 | -2/+9 |
| | |||||
* | Deleting all files in trash now only sends a single flag | Vincent Petry | 2013-11-11 | 1 | -11/+28 |
| | | | | | | | | To prevent having to send the list of all files for deletion, only set a flag "allfiles". This should make it a bit smoother when deleting 5000+ files. Also fixes some "empty trash" message issues. | ||||
* | namespaces use upcasefirst parts | Jörn Friedrich Dreyer | 2013-09-20 | 1 | -2/+2 |
| | | | | | when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app its magic! | ||||
* | Ajax calls for "files" and "files_trashbin" apps | Vincent Petry | 2013-09-13 | 1 | -0/+51 |
| | | | | | | | | | | | | | Frontend: - The files app list now uses ajax calls to refresh the list. - Added support the browser back button (history API). - Added mask + spinner while loading file list Backend: - Added utility function in core JS for parsing query strings. - Moved file list + breadcrumb template data code to helper functions - Fixed some file paths in trashbin app to be similar to the files app | ||||
* | outsource sharing and deleted files previews to apps | Georg Ehrke | 2013-08-19 | 1 | -0/+42 |
| | |||||
* | Merge pull request #3006 from owncloud/===_and_!==_in_files_trashbin-app | Jörn Friedrich Dreyer | 2013-08-02 | 2 | -2/+2 |
|\ | | | | | Use !== and === in files_trashbin app | ||||
| * | Use !== and === in files_trashbin-app | kondou | 2013-07-10 | 2 | -2/+2 |
| | | |||||
* | | added missing isEmpty ajax file | Bjoern Schiessle | 2013-07-30 | 1 | -0/+14 |
|/ | |||||
* | add some error logs to the trash bin app | Björn Schießle | 2013-03-18 | 2 | -0/+3 |
| | |||||
* | Whitespace fixes | Bart Visscher | 2013-02-22 | 2 | -3/+3 |
| | |||||
* | switch to json encoded file list | Björn Schießle | 2013-02-20 | 2 | -2/+2 |
| | |||||
* | use "|" as delimiter instead of ";", since "|" is not allowed in file/folder ↵ | Björn Schießle | 2013-02-20 | 2 | -6/+2 |
| | | | | names | ||||
* | add timestamp to function call; fix trash.js to handle multiple delete ↵ | Björn Schießle | 2013-02-19 | 1 | -1/+1 |
| | | | | operation at once | ||||
* | change $_REQUEST to $_POST; fix check if file was successfully deleted | Björn Schießle | 2013-02-19 | 1 | -5/+6 |
| | |||||
* | use instead of | Björn Schießle | 2013-02-19 | 1 | -2/+2 |
| | |||||
* | allow user to delete selected files from the trash bin permanently | Björn Schießle | 2013-02-19 | 1 | -14/+38 |
| |