Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make public link share page work with Webdav and add operations | Vincent Petry | 2015-11-22 | 1 | -5/+2 |
| | | | | | | | | The public page now uses the public.php/webdav endpoint. Also enabled more file operations like rename, move, delete and create folder from the public page, which are now all possible thanks to the public.php/webdav endpoint. | ||||
* | Make files app use Webdav for most operations | Vincent Petry | 2015-11-22 | 5 | -400/+0 |
| | |||||
* | update licence headers via script | Morris Jobke | 2015-10-05 | 3 | -1/+2 |
| | |||||
* | allow ".." in folder names | Individual IT Services | 2015-09-14 | 1 | -1/+1 |
| | | | | ".." are valid in folder names, only ".." by itself is invalid fix for #18987 | ||||
* | Prevent scanner going crazy with unavailable storages | Vincent Petry | 2015-08-24 | 1 | -4/+8 |
| | |||||
* | Merge pull request #17175 from owncloud/add-download-feedback | Morris Jobke | 2015-07-30 | 1 | -0/+11 |
|\ | | | | | Add loading spinner to download icon | ||||
| * | Add proper download started feedback | Morris Jobke | 2015-07-07 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | * this code adds a cookie when a special get parameter is set * the content of this get parameter is used as value for the cookie * the cookie expires after 20 seconds * the JS code checks every 500 milliseconds for the cookie -> if the cookie is set the request returned and the download is started | ||||
* | | Remove ajax/mimeicon.php and its route | Roeland Jago Douma | 2015-07-09 | 1 | -27/+0 |
|/ | |||||
* | update license headers and authors | Morris Jobke | 2015-06-25 | 7 | -7/+1 |
| | |||||
* | Verify if path exists | Lukas Reschke | 2015-06-18 | 1 | -0/+4 |
| | | | | We need to check if the path exists and throw an error instead of handling this situation ungraciously. | ||||
* | Catch exceptions in files ajax calls | Vincent Petry | 2015-06-03 | 4 | -21/+59 |
| | |||||
* | fix filepicker | Morris Jobke | 2015-04-13 | 1 | -2/+24 |
| | | | | | | * add ability to filter for mimetype * fixes #15526 * fixes #11563 | ||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 11 | -40/+275 |
| | |||||
* | adding storage specific filename verification - refs #13640 | Thomas Müller | 2015-03-09 | 2 | -32/+20 |
| | |||||
* | remove $content parameter | Thomas Müller | 2015-03-02 | 1 | -7/+4 |
| | |||||
* | Remove "Download from URL" feature | Lukas Reschke | 2015-03-02 | 1 | -107/+14 |
| | | | | Fixes https://github.com/owncloud/core/issues/13326 | ||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 11 | -269/+42 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 11 | -42/+269 |
| | |||||
* | Merge pull request #14199 from owncloud/cast-type-manually | Morris Jobke | 2015-02-19 | 11 | -24/+24 |
|\ | | | | | Manually type-cast all AJAX files | ||||
| * | Do not change behaviour of 'false' | Joas Schilling | 2015-02-13 | 1 | -2/+2 |
| | | |||||
| * | Manually type-case all AJAX files | Lukas Reschke | 2015-02-13 | 11 | -26/+26 |
| | | | | | | | | | | | | 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 | ||||
* | | Merge pull request #13505 from owncloud/streamline-scanning-code | Thomas Müller | 2015-02-19 | 1 | -1/+5 |
|\ \ | | | | | | | Streamline auth and CSRF check in scan.php | ||||
| * | | Streamline auth and CSRF check in scan.php | Lukas Reschke | 2015-01-20 | 1 | -1/+5 |
| | | | | | | | | | | | | Furthermore a not logged-in user was able to access this page before which resulted in a Fatal PHP error since the filesystem could not get setup properly. | ||||
* | | | Ensure that passed argument is always a string | Lukas Reschke | 2015-02-13 | 1 | -1/+1 |
| |/ |/| | | | | | | | | | Some code paths called the `normalizePath` functionality with types other than a string which resulted in unexpected behaviour. Thus the function is now manually casting the type to a string and I corrected the usage in list.php as well. | ||||
* | | Merge pull request #13502 from owncloud/streamline-authentication-in-newfile | Morris Jobke | 2015-02-07 | 1 | -6/+3 |
|\ \ | | | | | | | Streamline CSRF and login check | ||||
| * | | Streamline CSRF and login check | Lukas Reschke | 2015-01-20 | 1 | -6/+3 |
| |/ | | | | | | | Let's make this consistent with other pieces of the code to make it easier to auditable. | ||||
* / | Catch exception properly | Lukas Reschke | 2015-02-04 | 1 | -1/+6 |
|/ | | | | | | `\OCA\Files\Helper::buildFileStorageStatistics` might throw an exception from `OC_Helper::getStorageInfo`, previously this lead to a uncatched exception being thrown when invoking this methods. This was user triggable by for example calling `/index.php/apps/files/ajax/delete.php` with a not existing dir (for example `dir=asdf/../&allfiles=true`) | ||||
* | Remove stripslashes() from newfolder.php | Lukas Reschke | 2015-01-19 | 1 | -2/+1 |
| | |||||
* | Check for existence of $_GET keys | Lukas Reschke | 2015-01-14 | 1 | -2/+2 |
| | | | | `$dir` may for example very well not get passed at well. | ||||
* | Get rid of `stripslashes()` | Lukas Reschke | 2015-01-13 | 5 | -9/+8 |
| | | | | This conversions are actually totally unneeded and probably left-overs from ages where the safe_mode was still a valid thing. | ||||
* | Merge pull request #13279 from owncloud/upload-original-name | Morris Jobke | 2015-01-12 | 1 | -2/+2 |
|\ | | | | | Send the proper original name for uploaded files | ||||
| * | Send the proper original name for uploaded files | Robin Appelman | 2015-01-12 | 1 | -2/+2 |
| | | |||||
* | | Check for existence of $_GET keys | Lukas Reschke | 2015-01-09 | 1 | -5/+5 |
|/ | | | | Otherwise PHP errors are thrown in the error log. | ||||
* | Verify existence of $_GET key | Lukas Reschke | 2015-01-09 | 1 | -1/+3 |
| | | | | | | | | Otherwise when the file without any specified mimetype was accessed the error log was flooded with entries such as "Undefined index: mime", there can be multiple issues found about this in the forum and our bugtracker. To test this access `/index.php/apps/files/ajax/mimeicon.php` with and without `$_GET['mime']`. Fixes itself. | ||||
* | Add error handling to getstoragestats.php | Robin Appelman | 2015-01-06 | 1 | -1/+5 |
| | |||||
* | Only populate tags in main file list | Vincent Petry | 2014-12-18 | 1 | -0/+1 |
| | | | | | | Moved populateTags to be done on the main file list. This prevents the public file list to go through the same code and cause an error when there is no user. | ||||
* | Merge pull request #12698 from owncloud/handle_readonly_shared_files | Morris Jobke | 2014-12-12 | 1 | -6/+18 |
|\ | | | | | Handle readonly shared files | ||||
| * | show readonly message in file conflict dialog, make it always selected | Jörn Friedrich Dreyer | 2014-12-11 | 1 | -6/+18 |
| | | |||||
* | | Skip headers that can not be split | Victor Dubiniuk | 2014-12-08 | 1 | -0/+3 |
|/ | |||||
* | Check if files are deletable before trying to delete them | Robin Appelman | 2014-11-26 | 1 | -1/+3 |
| | |||||
* | Merge pull request #12421 from ↵ | Morris Jobke | 2014-11-26 | 1 | -3/+3 |
|\ | | | | | | | | | owncloud/issue/6101-remove-namespace-permission-constants Issue/6101 remove namespace permission constants | ||||
| * | Replace deprecated constant with new class constant | Joas Schilling | 2014-11-25 | 1 | -3/+3 |
| | | |||||
* | | we no longer need to keep the session open for encryption | Bjoern Schiessle | 2014-11-25 | 1 | -6/+2 |
|/ | |||||
* | Prevent division by zero | Lukas Reschke | 2014-10-24 | 1 | -1/+1 |
| | | | | Potentially fixes https://github.com/owncloud/core/issues/11742 | ||||
* | log exceptions when listing files | Jörn Friedrich Dreyer | 2014-10-08 | 1 | -0/+3 |
| | |||||
* | Do only follow HTTP and HTTPS redirects | Lukas Reschke | 2014-09-22 | 1 | -2/+7 |
| | | | | | | | | We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests | ||||
* | Merge pull request #10922 from owncloud/explicit-scan-transactions | Lukas Reschke | 2014-09-09 | 1 | -1/+1 |
|\ | | | | | Use bigger transactions when doing explicit file system scans | ||||
| * | Use bigger transactions when doing explicit file system scans | Robin Appelman | 2014-09-08 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #10739 from owncloud/eventsource-public | Lukas Reschke | 2014-09-08 | 2 | -4/+4 |
|\ \ | | | | | | | Add EventSource to the public API | ||||
| * | | Better phpdoc and method naming | Robin Appelman | 2014-09-04 | 2 | -2/+2 |
| | | |