summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix MKCOL for IE11 as wellRoeland Jago Douma2016-03-101-1/+6
| | | | | Using https://github.com/owncloud/core/pull/22274 we have to patch the iedavclient.js as well.
* Merge pull request #21582 from owncloud/core_composerThomas Müller2016-03-1011-0/+526
|\ | | | | Composers PSR-4 autoloader in core
| * POC for PSR-4 autoloader server.php => Server.phpRoeland Jago Douma2016-03-091-0/+0
| |
| * Add composers default autoloader to coreRoeland Jago Douma2016-03-0910-0/+526
| | | | | | | | | | | | | | | | This introduces the defacto standard PSR-4 autoloader from composer into core. This will allow proper PSR-4 naming of our classes. Since our original autoloader is still available we can slowly switch over classes to PSR-4.
* | Merge pull request #23017 from owncloud/first-stop-the-dockersThomas Müller2016-03-108-0/+9
|\ \ | | | | | | docker containers should be stopped before being removed - refs https…
| * | docker containers should be stopped before being removed - refs ↵Thomas Müller2016-03-098-0/+9
| | | | | | | | | | | | https://github.com/docker/docker/issues/18758
* | | Merge pull request #23050 from owncloud/href-target-blankThomas Müller2016-03-101-1/+1
|\ \ \ | | | | | | | | make sure links open in new tabs
| * | | make sure links open in new tabsJan-Christoph Borchardt2016-03-091-1/+1
| | | |
* | | | Merge pull request #23029 from owncloud/add-rewrite-rules-after-setupThomas Müller2016-03-102-3/+3
|\ \ \ \ | | | | | | | | | | Add base rewrite rule only when RewriteBase is defined
| * | | | Add base rewrite rule only when RewriteBase is definedLukas Reschke2016-03-092-3/+3
| | |/ / | |/| | | | | | | | | | In case Apache is configured with an `Alias` such as with the ownCloud packages the rewrite rules will fail when no valid RewriteBase is configured.
* | | | Merge pull request #23064 from owncloud/typo-comments-app-descThomas Müller2016-03-101-1/+1
|\ \ \ \ | | | | | | | | | | fix typo in comments app meta data
| * | | | fix typoArthur Schiwon2016-03-091-1/+1
| | |/ / | |/| |
* / | | [tx-robot] updated from transifexJenkins for ownCloud2016-03-1012-18/+24
|/ / /
* | | Merge pull request #23035 from owncloud/fix-syncing-of-all-birthday-calendarsThomas Müller2016-03-091-1/+1
|\ \ \ | | | | | | | | Fix syncing of all birthday calendars in one go
| * | | Fix syncing of all birthday calendars in one goJoas Schilling2016-03-091-1/+1
| | |/ | |/|
* | | Merge pull request #22967 from Aeyoun/masterThomas Müller2016-03-093-3/+3
|\ \ \ | | | | | | | | Change rel="shortcut icon" to the standard rel="icon"
| * | | Stupid clients only literally understand rel="icon"Daniel Aleksandersen2016-03-083-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | rel="shortcut icon" hasn’t been relevant in years, isn’t in any standards, and causes problems for simple pattern matching clients. https://www.w3.org/TR/html/links.html#linkTypes
* | | | Merge pull request #23026 from stweil/masterThomas Müller2016-03-095-6/+6
|\ \ \ \ | | | | | | | | | | apps/files: Fix typos in comments (found and fixed by codespell)
| * | | | apps/files: Fix typos in comments (found and fixed by codespell)Stefan Weil2016-03-095-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This contribution is AGPL and MIT licensed. Signed-off-by: Stefan Weil <sw@weilnetz.de>
* | | | | Merge pull request #23032 from owncloud/basephp-showclierrorThomas Müller2016-03-091-1/+3
|\ \ \ \ \ | |_|_|/ / |/| | | | Do not set response status in CLI in case of error
| * | | | Do not set response status in CLI in case of errorVincent Petry2016-03-091-1/+3
|/ / / /
* | | | Merge pull request #22602 from owncloud/fix_slow_chunkcheckThomas Müller2016-03-094-5/+115
|\ \ \ \ | | | | | | | | | | Do not check all chunks of a chunked upload if we do not need to
| * | | | Added testsRoeland Jago Douma2016-03-073-0/+108
| | | | | | | | | | | | | | | | | | | | | | | | | * Unit tests for OC_Filechunking to verify the isComplete function * Intergration tests to show that shuffling chunks is all fine
| * | | | Do not check all chunks of a chunked upload if we do not need toRoeland Jago Douma2016-03-071-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #22601 Before we did a full test on all chunks to verify if a chunked upload was completed. This is unneeded since if we are missing one chunk we can already fail. Also we look from back to front since it is much more likely that we find a missing chunk thus can error out early.
* | | | | Merge pull request #22986 from owncloud/remove-disabled-autocorrect-new-fileThomas Müller2016-03-091-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | Remove disabled autocorrect for new file names
| * | | | Remove disabled autocorrect for new file namesMorris Jobke2016-03-091-1/+1
| | | | | | | | | | | | | | | | | | | | * ref #22784
* | | | | Merge pull request #23006 from owncloud/require-xml-readerThomas Müller2016-03-091-1/+2
|\ \ \ \ \ | | | | | | | | | | | | Add XMLReader as requirement
| * | | | | Add XMLReader as requirementLukas Reschke2016-03-091-1/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The SabreDAV release in 9.0 requires XMLReader, while this is usually compiled in by default some distributions like Gentoo don't. Without this ownCloud gives a fatal 500 error instead of telling people to enable XMLReader. Fixes https://github.com/owncloud/core/issues/23003
* | | | | Merge pull request #22831 from owncloud/bump_polyfillThomas Müller2016-03-091-0/+0
|\ \ \ \ \ | |_|_|_|/ |/| | | | [3rdparty] Bump symfony/polyfill-php* to 1.1.0
| * | | | [3rdparty] Bump symfony/polyfill-php* to 1.1.0Roeland Jago Douma2016-03-081-0/+0
| | | | |
* | | | | Merge pull request #23008 from owncloud/only_query_file_folder_sharesThomas Müller2016-03-091-10/+51
|\ \ \ \ \ | | | | | | | | | | | | Select queries in the default share provider should query for file/folder
| * | | | | Select queries in the default share provider should query for file/folderRoeland Jago Douma2016-03-091-10/+51
| | |/ / / | |/| | | | | | | | | | | | | | | | | | There can be leftover calendar and contacts shares in the oc_share table. We need to filter those out properly.
* | | | | Merge pull request #22930 from ↵Thomas Müller2016-03-092-2/+12
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | owncloud/bugfix-submit-disable-password-length-zero Public link share disabled if password length is equal to 0
| * | | | | Public link share disabled if password length is equal to 0prastut2016-03-082-2/+12
| | | | | |
* | | | | | Merge pull request #22951 from owncloud/fix_intThomas Müller2016-03-091-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix capabilities intergration tests
| * | | | | | Fix capabilities intergration testsRoeland Jago Douma2016-03-081-2/+2
| | |_|/ / / | |/| | | | | | | | | | | | | | | | Split the array element selection and the member selection.
* | | | | | Merge pull request #22961 from owncloud/fix-gdrive-on-php54Thomas Müller2016-03-091-1/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix compatibility with PHP 5.4
| * | | | | | Fix compatibility with PHP 5.4Lukas Reschke2016-03-081-1/+2
| |/ / / / / | | | | | | | | | | | | | | | | | | Fixes https://github.com/owncloud/core/issues/22960
* | | | | | Merge pull request #22972 from ↵Thomas Müller2016-03-091-27/+23
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | owncloud/use-httpclient-instead-of-file-get-contents Use HTTPClient instead of file_get_contents
| * | | | | | Use HTTPClient instead of file_get_contentsLukas Reschke2016-03-081-27/+23
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows us to catch exceptions like 404's and thus prevents stuff like: ``` {"reqId":"fnmS0hc+fL4+WXKAruo5","remoteAddr":"192.168.39.100","app":"PHP","message":"file_get_contents(http:\/\/ckamm.blaucloud.de\/\/status.php): failed to open stream: HTTP request failed! HTTP\/1.1 404 Not Found\r\n at \/var\/www\/owncloud\/apps\/files_sharing\/lib\/external\/storage.php#260","level":3,"time":"2016-03-08T21:00:33+00:00","method":"PROPFIND","url":"\/remote.php\/webdav\/"} ```
* | | | | | Merge pull request #22974 from owncloud/php-automagics-type-conversion-is-funThomas Müller2016-03-091-2/+2
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Use "hasKey" instead of checking the value
| * | | | | Use "hasKey" instead of checking the valueLukas Reschke2016-03-081-2/+2
| |/ / / / | | | | | | | | | | | | | | | If the check is negative it would depending on the used cache store the value as an empty string. When reading the value this check would thus return "false" even if a value exists.
* / / / / [tx-robot] updated from transifexJenkins for ownCloud2016-03-0928-8/+124
|/ / / /
* | | | Merge pull request #22950 from owncloud/fixsharemountrecursionRoeland Douma2016-03-083-3/+10
|\ \ \ \ | |/ / / |/| | | Fix share mounting recursion
| * | | Fix share mounting recursionVincent Petry2016-03-083-3/+10
|/ / /
* | | Merge pull request #22936 from ↵Thomas Müller2016-03-085-18/+31
|\ \ \ | | | | | | | | | | | | | | | | owncloud/fix-group-share-migration-for-calendars-and-contacts Fix migration of group shared calendars and addressbooks
| * | | Fix group sharing and sharing permissions - fixes #22932Thomas Müller2016-03-085-18/+31
| | | |
* | | | Merge pull request #22814 from owncloud/delete-empty-fileThomas Müller2016-03-081-0/+0
|\ \ \ \ | |/ / / |/| | | Delete empty file
| * | | Delete empty fileLukas Reschke2016-03-031-0/+0
| | | | | | | | | | | | Ref https://github.com/owncloud/core/issues/22803#issuecomment-191749499
* | | | Merge pull request #22800 from owncloud/fix-20536Thomas Müller2016-03-081-0/+3
|\ \ \ \ | | | | | | | | | | don't hide server not available exception, fixes #20536