summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Update license headersJenkins for ownCloud2015-03-26473-3403/+8997
|
* Merge pull request #15195 from owncloud/reanimate-add-guzzleMorris Jobke2015-03-2614-174/+812
|\ | | | | Add wrapper for Guzzle
| * Add wrapper for GuzzleLukas Reschke2015-03-2514-174/+812
| |
* | Merge pull request #15194 from owncloud/fix-15146Thomas Müller2015-03-261-0/+2
|\ \ | | | | | | Do not use APCu when apc.enabled is Off.
| * | Do not use APCu when apc.enabled is Off.Andreas Fischer2015-03-251-0/+2
| |/
* | [tx-robot] updated from transifexJenkins for ownCloud2015-03-262-0/+30
| |
* | Revert "FIX for webdav.mediencenter.t-online.de"Morris Jobke2015-03-261-5/+0
| |
* | FIX for webdav.mediencenter.t-online.de Oliver Kohl D.Sc.2015-03-251-0/+5
|/ | | | | | | | | https://webdav.mediencenter.t-online.de returns invalid response code. e.g. {"reqId":"f9a1c394b98108e4e5ca62bf47829c64","remoteAddr":"81.189.45.224","app":"PHP","message":"Undefined offset: 2 at \/var\/www\/owncloud\/3rdparty\/sabre\/dav\/lib\/Sabre\/DAV\/Client.php#569","level":3,"time":"2015-03-25T18:25:48+00:00","method":"GET","url":"\/index.php\/apps\/files\/ajax\/getstoragestats.php?dir=External%2FT-Cloud%2FTests"} e.g. {"reqId":"3407d66672b3cef206b0af883e49bff4","remoteAddr":"46.74.125.245","app":"PHP","message":"Undefined index: {DAV:}getlastmodified at \/var\/www\/owncloud\/lib\/private\/files\/storage\/dav.php#563","level":3,"time":"2015-03-25T16:33:21+00:00"}
* [tx-robot] updated from transifexJenkins for ownCloud2015-03-258-0/+18
|
* Merge pull request #15171 from owncloud/sabre-logforbiddenasdebugThomas Müller2015-03-241-0/+3
|\ | | | | Log forbidden in debug level
| * Log forbidden in debug levelVincent Petry2015-03-241-0/+3
| |
* | Merge pull request #14949 from owncloud/sabre-2.1.3Lukas Reschke2015-03-241-1/+2
|\ \ | | | | | | Update sabre-2.1.3 thirdparty submodule
| * | Fix Principal connector overrideVincent Petry2015-03-171-1/+2
| | |
* | | Merge pull request #15153 from owncloud/uniquename-nodeLukas Reschke2015-03-242-0/+21
|\ \ \ | |_|/ |/| | Add `getNonExistingName()` to the node api
| * | Add `getNonExistingName()` to the node apiRobin Appelman2015-03-242-0/+21
| | |
* | | Merge pull request #15150 from owncloud/sabre-removerangeexceptionforencryptionVincent Petry2015-03-241-14/+0
|\ \ \ | | | | | | | | Remove range header exception for encryption
| * | | Remove range header exception for encryptionjknockaert2015-03-241-14/+0
| |/ / | | | | | | | | | revert #10422
* | | Merge pull request #15126 from owncloud/sabre-storagenotavailableMorris Jobke2015-03-241-0/+4
|\ \ \ | | | | | | | | Soft fail in CustomPropertiesBackend whenever storage not available
| * | | Soft fail in CustomPropertiesBackend whenever storage not availableVincent Petry2015-03-231-0/+4
| | | | | | | | | | | | | | | | | | | | When a storage is not available, it will not fail the whole call any more but still return a usable file list.
* | | | Merge pull request #15149 from owncloud/fix-enable-for-groupJoas Schilling2015-03-241-1/+9
|\ \ \ \ | | | | | | | | | | Correctly get array of groups and send OCP\IGroup objects to enable meth...
| * | | | Correctly get array of groups and send OCP\IGroup objects to enable methodJoas Schilling2015-03-241-1/+9
| | |/ / | |/| |
* | | | Merge pull request #15145 from owncloud/fix-15097-masterVincent Petry2015-03-241-0/+43
|\ \ \ \ | | | | | | | | | | Properly catch whether a share is `null`
| * | | | Properly catch whether a share is `null`Lukas Reschke2015-03-241-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Despite it's PHPDoc the function might return `null` which was not properly catched and thus in some situations the share was resolved to the sharing users root directory. To test this perform the following steps: * Share file in owncloud 7 (7.0.4.2) * Delete the parent folder of the shared file * The share stays is in the DB and the share via the sharelink is inaccessible. (which is good) * Upgrade to owncloud 8 (8.0.2) (This step is crucial. The bug is not reproduceable without upgrading from 7 to 8. It seems like the old tokens are handled different than the newer ones) * Optional Step: Logout, Reset Browser Session, etc. * Access the share via the old share url: almost empty page, but there is a dowload button which adds a "/download" to the URL. * Upon clicking, a download.zip is downloaded which contains EVERYTHING from the owncloud directory (of the user who shared the file) * No exception is thrown and no error is logged. This will add a check whether the share is a valid one and also adds unit tests to prevent further regressions in the future. Needs to be backported to ownCloud 8. Adding a proper clean-up of the orphaned shares is out-of-scope and would probably require some kind of FK or so. Fixes https://github.com/owncloud/core/issues/15097
* | | | | Merge pull request #15003 from owncloud/issue/14859-speed-up-favorite-listVincent Petry2015-03-241-2/+3
|\ \ \ \ \ | |_|/ / / |/| | | | Do not walk over the users directory, but over the list of tagged objects
| * | | | Do not walk over the users directory, but over the list of tagged objectsJoas Schilling2015-03-231-2/+3
| | | | | | | | | | | | | | | | | | | | Way quicker
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-03-244-4/+6
| |/ / / |/| | |
* | | | Merge pull request #14862 from owncloud/introduce-shipped.json-masterMorris Jobke2015-03-232-6/+33
|\ \ \ \ | |_|/ / |/| | | shipped apps are now defined in core/shipped.json - the shipped tag in i...
| * | | Add spacesMorris Jobke2015-03-161-1/+1
| | | |
| * | | [WIP] upgrade app store apps during console upgradeThomas Müller2015-03-131-1/+21
| | | |
| * | | shipped apps are now defined in core/shipped.json - the shipped tag in ↵Thomas Müller2015-03-131-5/+12
| | | | | | | | | | | | | | | | info.xml is ignored from now on - never trust an app :speak_no_evil:
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-03-232-6/+8
| | | |
* | | | Merge pull request #15088 from oparoz/3d-supportMorris Jobke2015-03-222-21/+36
|\ \ \ \ | | | | | | | | | | Introducing 3D images support (media type)
| * | | | Introducing 3D images support (media type)Olivier Paroz2015-03-202-21/+36
| | | | | | | | | | | | | | | | | | | | | | | | | So that people with 3D images can at least see a 2D picture Full 3D support is possible via an app
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-03-222-0/+4
| | | | |
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-03-2116-8/+138
|/ / / /
* | | | Merge pull request #14857 from owncloud/preview-provider-registration-in-managerThomas Müller2015-03-2013-262/+539
|\ \ \ \ | | | | | | | | | | Preview provider registration in manager
| * | | | Remove load*() methods from public interfaceJoas Schilling2015-03-161-48/+1
| | | | | | | | | | | | | | | | | | | | We shall add a factory for that in the future
| * | | | Only register the core providers when necessaryJoas Schilling2015-03-161-6/+13
| | | | |
| * | | | Create an interface for OC_Image and OCP\Image for the public APIJoas Schilling2015-03-1611-24/+215
| | | | |
| * | | | Only sort the list when requiredJoas Schilling2015-03-161-2/+13
| | | | |
| * | | | Order the providers alphabeticallyJoas Schilling2015-03-161-8/+8
| | | | |
| * | | | Only do all the "find path" magic when we need to register themJoas Schilling2015-03-161-1/+5
| | | | |
| * | | | Cache result for isMimeTypeSupported()Joas Schilling2015-03-161-0/+13
| | | | |
| * | | | Add more type hintingJoas Schilling2015-03-164-4/+4
| | | | |
| * | | | Use DI for the configJoas Schilling2015-03-163-13/+23
| | | | |
| * | | | Add an interface for the preview providersJoas Schilling2015-03-164-6/+50
| | | | |
| * | | | Clean up some docsJoas Schilling2015-03-162-9/+9
| | | | |
| * | | | Move default provider registration to preview managerJoas Schilling2015-03-163-178/+209
| | | | |
| * | | | Register preview providers on the preview manager instead of OC\PreviewJoas Schilling2015-03-164-61/+74
| | | | |
* | | | | Merge pull request #14941 from AdamWill/pipeline-appsMorris Jobke2015-03-201-1/+5
|\ \ \ \ \ | | | | | | | | | | | | fall back to absolute path for pipelined assets (#14940)