Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make resolve public to avoid boiler plate code | Bernhard Posselt | 2015-09-13 | 1 | -1/+1 |
| | | | | add resolve to public interface | ||||
* | Merge pull request #18658 from owncloud/configurable-temp | Frank Karlitschek | 2015-09-12 | 2 | -4/+87 |
|\ | | | | | Configurable temporary directory | ||||
| * | Clean up TempManager to follow code guidelines | Robin McCorkell | 2015-08-30 | 2 | -40/+69 |
| | | | | | | | | tmpBaseDir can be overridden for unit testing purposes | ||||
| * | moved code to /lib/private/tempmanager.php | root | 2015-08-29 | 2 | -4/+58 |
| | | | | | | | | | | | | fix for unit test some fixes | ||||
* | | Merge pull request #18653 from owncloud/dav-stream-guzzle | Lukas Reschke | 2015-09-11 | 3 | -66/+45 |
|\ \ | | | | | | | stream webdav downloads using http client | ||||
| * | | also use httpclient for uploadFile | Robin Appelman | 2015-09-01 | 1 | -35/+18 |
| | | | |||||
| * | | stream webdav downloads using http client | Robin Appelman | 2015-08-29 | 1 | -29/+15 |
| | | | |||||
| * | | allow streamed responses in http client | Robin Appelman | 2015-08-29 | 2 | -4/+14 |
| | | | |||||
* | | | Add reset method to mimetype loader | Robin McCorkell | 2015-09-11 | 2 | -1/+9 |
| | | | | | | | | | | | | Used to solve concurrency issues | ||||
* | | | Merge pull request #18676 from owncloud/ext-eventdispatcher | Robin McCorkell | 2015-09-11 | 1 | -0/+32 |
|\ \ \ | | | | | | | | | files_external event dispatcher | ||||
| * | | | Expose files_external services from Server | Robin McCorkell | 2015-08-31 | 1 | -0/+32 |
| | | | | | | | | | | | | | | | | Not exposed to OCP yet | ||||
* | | | | Merge pull request #18851 from owncloud/memcached-getallkeys-fallback | Robin McCorkell | 2015-09-10 | 1 | -0/+5 |
|\ \ \ \ | | | | | | | | | | | Fallback to complete Memcached flush if getAllKeys fails | ||||
| * | | | | Fallback to complete Memcached flush if getAllKeys fails | Robin McCorkell | 2015-09-05 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Newer Memcached's do not support the underlying protocol commands that getAllKeys() is implemented with. We should fallback to clearing everything in that case, as causing (temporary) performance problems for other applications on the server is better than having stale cached data. | ||||
* | | | | | Merge pull request #18699 from owncloud/notification-manager | Lukas Reschke | 2015-09-10 | 9 | -0/+1323 |
|\ \ \ \ \ | | | | | | | | | | | | | Notification manager | ||||
| * | | | | | Move interfaces to private until they are no longer experimental | Joas Schilling | 2015-09-08 | 9 | -9/+506 |
| | | | | | | |||||
| * | | | | | Add tests for the notification manager | Joas Schilling | 2015-09-08 | 1 | -2/+15 |
| | | | | | | |||||
| * | | | | | Add tests for notification | Joas Schilling | 2015-09-08 | 1 | -8/+8 |
| | | | | | | |||||
| * | | | | | Add tests for Action | Joas Schilling | 2015-09-08 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Fix the subject of notifications | Joas Schilling | 2015-09-08 | 2 | -2/+2 |
| | | | | | | |||||
| * | | | | | Fix closures and adding parsed Actions | Joas Schilling | 2015-09-08 | 2 | -3/+3 |
| | | | | | | |||||
| * | | | | | Fix the request type and the validity | Joas Schilling | 2015-09-08 | 2 | -3/+4 |
| | | | | | | |||||
| * | | | | | Allow getting the request type | Joas Schilling | 2015-09-08 | 1 | -0/+8 |
| | | | | | | |||||
| * | | | | | Use an INotification to getCount() and markProcessed() | Joas Schilling | 2015-09-08 | 1 | -10/+6 |
| | | | | | | |||||
| * | | | | | Add the request type to the action | Joas Schilling | 2015-09-08 | 1 | -1/+9 |
| | | | | | | |||||
| * | | | | | Add the app id to the markProcessed method | Joas Schilling | 2015-09-08 | 1 | -2/+3 |
| | | | | | | |||||
| * | | | | | Handle InvalidArgumentException more gracefully | Joas Schilling | 2015-09-08 | 1 | -5/+10 |
| | | | | | | |||||
| * | | | | | Add language to the preparation method | Joas Schilling | 2015-09-08 | 1 | -2/+3 |
| | | | | | | |||||
| * | | | | | Notification API | Joas Schilling | 2015-09-08 | 4 | -0/+793 |
| | | | | | | |||||
* | | | | | | Merge pull request #17791 from owncloud/make-eventsource-compatible-with-win10 | Lukas Reschke | 2015-09-10 | 1 | -0/+11 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Add custom CSP for Win 10 compatibility | ||||
| * | | | | | | Add custom CSP for Win 10 compatibility | Lukas Reschke | 2015-07-21 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default content-security-policy of ownCloud forbids inline JavaScript for security reasons. IE starting on Windows 10 will however also obey the CSP which will break the event source fallback. As a workaround thus we set a custom policy which allows the execution of inline JavaScript. This fixes https://github.com/owncloud/core/issues/14286 | ||||
* | | | | | | | Write to session in batch at the end of the request | Lukas Reschke | 2015-09-09 | 2 | -8/+22 |
| | | | | | | | |||||
* | | | | | | | Write session data to single key | Lukas Reschke | 2015-09-09 | 1 | -16/+30 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents decrypting values multiple times. | ||||
* | | | | | | | Use md5 over the version file to prevent cyclyc dependency | Lukas Reschke | 2015-09-09 | 1 | -3/+1 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #18684 from owncloud/explicit-upgrade-version | Morris Jobke | 2015-09-09 | 2 | -11/+23 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Explicit upgrade version + prevent downgrades | ||||
| * | | | | | | | Improved update version detection logic | Vincent Petry | 2015-08-31 | 1 | -7/+1 |
| | | | | | | | | |||||
| * | | | | | | | Simplify comparison algo | Vincent Petry | 2015-08-31 | 1 | -15/+1 |
| | | | | | | | | |||||
| * | | | | | | | Throw exception on downgrade attempt | Vincent Petry | 2015-08-30 | 1 | -1/+5 |
| | | | | | | | | |||||
| * | | | | | | | Restrict upgrades to explicit allowed version | Vincent Petry | 2015-08-30 | 1 | -6/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | version.php now contains the previous ownCloud version from which upgrades are allowed. Any other upgrades will show a message that the upgrade/downgrade is not supported. | ||||
* | | | | | | | | Merge pull request #18908 from owncloud/allow-0-as-password | Björn Schießle | 2015-09-09 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Allow 0 and false as password | ||||
| * | | | | | | | | Allow 0 and false as password | Lukas Reschke | 2015-09-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we use the check for "empty" here passwords such as 0 will not work. Fixes https://github.com/owncloud/password_policy/issues/8 | ||||
* | | | | | | | | | Cache generated result | Lukas Reschke | 2015-09-08 | 1 | -1/+8 |
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | Saves 50ms | ||||
* | | / / / / / | Remove XSendFile support | Lukas Reschke | 2015-09-07 | 1 | -57/+1 |
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | Required to ensure proper locking | ||||
* | | | | | | | Merge pull request #18839 from owncloud/autoloader-supersecure | Morris Jobke | 2015-09-07 | 2 | -9/+16 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Restrict autoloaded paths to loaded apps (and other enhancements) | ||||
| * | | | | | | | Unique exception for invalid autoload paths, better handling | Robin McCorkell | 2015-09-05 | 1 | -8/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Background jobs are tolerant of stale entries left by disabled apps, which will cause an autoload exception. | ||||
| * | | | | | | | Only add valid root for enabled apps | Robin McCorkell | 2015-09-05 | 1 | -1/+2 |
| | |_|/ / / / | |/| | | | | | |||||
* | | | | | | | Merge pull request #18742 from owncloud/mimetype-updatedb | Roeland Douma | 2015-09-06 | 4 | -88/+217 |
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | Introduce mimetype DB update occ command | ||||
| * | | | | | | Split mimetype handling to new class | Robin McCorkell | 2015-09-04 | 3 | -80/+195 |
| | | | | | | | |||||
| * | | | | | | Allow access to full alias and mapping arrays | Robin McCorkell | 2015-09-01 | 1 | -8/+22 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #18833 from owncloud/share-prevent-twice | Morris Jobke | 2015-09-04 | 1 | -0/+12 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Prevent sharing twice with user when already a group | ||||
| * | | | | | | | Prevent sharing twice with user when already a group | Vincent Petry | 2015-09-04 | 1 | -0/+12 |
| | | | | | | | |