Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move non PSR-4 files from lib/private root to legacy | Roeland Jago Douma | 2016-04-30 | 1 | -316/+0 |
| | | | | | | As discussed we move all old style classes (OC_FOO_BAR) to legacy. Then from there we can evaluate the need to convert them back or if they can be fully deprecated/deleted. | ||||
* | Replace all required values | Lukas Reschke | 2016-03-15 | 1 | -1/+1 |
| | |||||
* | Remove Scrutinizer Auto Fixer | Lukas Reschke | 2016-03-01 | 1 | -1/+0 |
| | |||||
* | Scrutinizer Auto-Fixes | Scrutinizer Auto-Fixer | 2016-02-05 | 1 | -4/+6 |
| | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com | ||||
* | Happy new year! | Thomas Müller | 2016-01-12 | 1 | -2/+3 |
| | |||||
* | Replacing ini_get instances with inigetwrapper usages | Clark Tomlinson | 2015-11-23 | 1 | -1/+1 |
| | |||||
* | Allow storage wrappers to through a forbidden exception with retry information | Joas Schilling | 2015-11-17 | 1 | -0/+5 |
| | |||||
* | Update license headers | Lukas Reschke | 2015-10-26 | 1 | -1/+0 |
| | |||||
* | The full name has to be tested if it's a dir - fixes #19854 | Thomas Müller | 2015-10-19 | 1 | -1/+1 |
| | |||||
* | Fix single file download - fixes #19614 | Thomas Müller | 2015-10-07 | 1 | -0/+3 |
| | |||||
* | Merge pull request #19407 from owncloud/lock-zip-content | Thomas Müller | 2015-10-06 | 1 | -78/+129 |
|\ | | | | | Lock zip content | ||||
| * | Refactor single file download into it's own method | Thomas Müller | 2015-10-05 | 1 | -76/+71 |
| | | |||||
| * | Recursively lock folder contents | Thomas Müller | 2015-10-05 | 1 | -6/+27 |
| | | |||||
| * | release locks in case of exception | Thomas Müller | 2015-10-05 | 1 | -0/+2 |
| | | |||||
| * | log the exception during zip creation | Thomas Müller | 2015-10-05 | 1 | -13/+26 |
| | | |||||
| * | Lock files which are zipped | Thomas Müller | 2015-10-05 | 1 | -6/+26 |
| | | |||||
* | | update licence headers via script | Morris Jobke | 2015-10-05 | 1 | -6/+1 |
|/ | |||||
* | More corrections | Victor Dubiniuk | 2015-09-28 | 1 | -2/+2 |
| | |||||
* | Add namespace. Fix broken zip | Victor Dubiniuk | 2015-09-28 | 1 | -1/+2 |
| | |||||
* | Introduce streamer | Victor Dubiniuk | 2015-09-28 | 1 | -63/+33 |
| | |||||
* | use zipstreamer via composer | Nicolai Ehemann | 2015-09-14 | 1 | -3/+0 |
| | |||||
* | lib/private/files.php: adapted to minimally changed ZipStreamer API | Nicolai Ehemann | 2015-09-14 | 1 | -2/+2 |
| | |||||
* | Remove XSendFile support | Lukas Reschke | 2015-09-07 | 1 | -57/+1 |
| | | | | Required to ensure proper locking | ||||
* | Unit test OC_Files::setUploadLimit() | Robin McCorkell | 2015-07-20 | 1 | -14/+11 |
| | | | | | | | There was also a bug with checking the upper limit on the passed upload size. PHP does funny things with integer vs float comparisons, so our check didn't work. Now the check is much simpler, and ensures the value is sane. | ||||
* | Update .user.ini when setting upload size limit | Robin McCorkell | 2015-07-20 | 1 | -22/+48 |
| | |||||
* | Remove OC_Log | Thomas Müller | 2015-07-03 | 1 | -2/+2 |
| | |||||
* | Merge pull request #17163 from owncloud/update-licenses | Lukas Reschke | 2015-06-27 | 1 | -3/+2 |
|\ | | | | | Update license headers | ||||
| * | update license headers and authors | Morris Jobke | 2015-06-25 | 1 | -3/+2 |
| | | |||||
* | | Enable x-sendfile only if we do not lock the file system | Thomas Müller | 2015-06-22 | 1 | -4/+8 |
| | | |||||
* | | Lock file before download | Vincent Petry | 2015-06-18 | 1 | -2/+13 |
|/ | | | | | This will throw a LockedException if a concurrent request is currently touching that file. | ||||
* | End processing when file is not found | Lukas Reschke | 2015-05-22 | 1 | -0/+1 |
| | | | | | | We have to end the processing when a file is not found or otherwise the method is proceeding and even sending invalid file paths to the sendfile methods. Due to nginx preventing directory traversals this is luckily not immediately exploitable. We should for hardening purposes however quit the script execution just as we do for 403 cases and others as well. | ||||
* | a new approach to display the error message | Bjoern Schiessle | 2015-05-18 | 1 | -40/+48 |
| | |||||
* | Removing files_encryption left overs | Thomas Müller | 2015-04-07 | 1 | -1/+1 |
| | |||||
* | Merge pull request #15229 from owncloud/response-setContentLengthHeader | Thomas Müller | 2015-04-03 | 1 | -1/+1 |
|\ | | | | | Add OC_Response::setContentLengthHeader() for Apache PHP SAPI workaround... | ||||
| * | Add OC_Response::setContentLengthHeader() for Apache PHP SAPI workaround. | Andreas Fischer | 2015-03-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | Do not send Content-Length headers with a value larger than PHP_INT_MAX (2147483647) on Apache PHP SAPI 32-bit. PHP will eat them and send 2147483647 instead. When X-Sendfile is enabled, Apache will send a correct Content-Length header, even for files larger than 2147483647 bytes. When X-Sendfile is not enabled, ownCloud will not send a Content-Length header. This prevents progress bars from working, but allows the actual transfer to work properly. | ||||
* | | Require minimum 1 MiB upload limit | Robin McCorkell | 2015-03-27 | 1 | -3/+7 |
| | | |||||
* | | Merge pull request #14495 from owncloud/update-mailmap-01 | Thomas Müller | 2015-03-26 | 1 | -13/+32 |
|\ \ | |/ |/| | Updating .mailmap | ||||
| * | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -13/+32 |
| | | |||||
| * | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -32/+14 |
| | | | | | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
| * | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -14/+32 |
| | | |||||
* | | Removed simplified X-accel-redirect even further | dratini0 | 2015-03-23 | 1 | -6/+1 |
| | | |||||
* | | Changed the disputed while loop to a single if. | dratini0 | 2015-03-23 | 1 | -2/+2 |
| | | |||||
* | | Extending the X-accel redirect functionality with a more scalable approach. | dratini0 | 2015-02-11 | 1 | -1/+10 |
| | | |||||
* | | Revert "Fix: X-Accel-Redirect did not support custom data dir and local mounts" | dratini0 | 2015-02-11 | 1 | -1/+1 |
| | | | | | | | | This reverts commit f2075f803fc59918cc20071cf174d6b5f81f5eed. | ||||
* | | Revert "removed a little duplication" | dratini0 | 2015-02-11 | 1 | -1/+3 |
|/ | | | | This reverts commit 31970ee7409ff2ed303b728ea4fd6f8d10302649. | ||||
* | removed a little duplication | dratini0 | 2014-12-30 | 1 | -3/+1 |
| | |||||
* | Fix: X-Accel-Redirect did not support custom data dir and local mounts | dratini0 | 2014-12-30 | 1 | -1/+1 |
| | |||||
* | Move constants from GET_TYPE to OC\Files so they can be autoloaded | Joas Schilling | 2014-11-26 | 1 | -12/+9 |
| | |||||
* | Add type hinting to functions | Lukas Reschke | 2014-10-24 | 1 | -1/+1 |
| | | | | It's only reasonable to have proper type hinting here which might even help us to catch bugs. | ||||
* | Make 404 page easier to understand | Lukas Reschke | 2014-09-17 | 1 | -1/+0 |
| | | | | Fixes https://github.com/owncloud/core/issues/11133 |