Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
AgeCommit message (Collapse)Author
2018-08-20Merge pull request #10566 from ↵Morris Jobke
nextcloud/stable12-10348-fix-transfering-ownership-of-a-share-to-user-with-same-id-as-receiver [stable12] Fix transfering ownership of a share to user with same id as receiver
2018-08-07Fix transfering ownership of a share to user with same id as receiverDaniel Calviño Sánchez
When the ownership of a user share is transfered to the receiver the share is removed, as the receiver now owns the original file. However, due to a missing condition, any share with a group, link or remote with the same id as the user was removed, not only the user shares. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-07-11Fix the behat version to 3.3.*Joas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-05-28Limit Sinon version to 5.0.7 at mostDaniel Calviño Sánchez
When using fake servers with Sinon.JS, the JavaScript test framework, the XHR objects are also fake. In Sinon 5.0.8 the "setRequestHeader" of XMLHttpRequest was modified to normalize the header values (as requested by the spec), but since then only string values are accepted; null or integer values can no longer be passed to "setRequestHeader", as it expects the "replace" function to be available in the object. However, in the tests null and integer values are passed to "setRequestHeader", which causes them to fail. Both Firefox and Chromium accept passing non-string values to their "setRequestHeader" implementation, and it is done, for example, in davclient.js; it is not clear yet whether Sinon got too restrictive or the code calling "setRequestHeader" was too loose. Given that davclient.js is an external dependency, as a temporary measure Sinon version is forced to be 5.0.7 at most until either Sinon or davclient.js are updated. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-03-02backport of #8355 to stable12Arthur Schiwon
test creating comments with numeric user ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> fix creating comments when file is accessible to users with numeric ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> tests for systemtags related to numeric user ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> fix systemtags event with numeric user ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-02-08Remove old perl script to update l10n filesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-10-03show diff in autoload checkerRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2017-07-18Add test to check if new files are added to the root of the repositoryMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-06-13Prevent sending second WWW-Authenticate headerLukas Reschke
Overrides \Sabre\DAV\Auth\Backend\AbstractBearer::challenge to prevent sending a second WWW-Authenticate header which is standard-compliant but most DAV clients simply fail hard. Fixes https://github.com/nextcloud/server/issues/5088 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Bearer comes first on the new endpointLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Adjust realm from SabreDAV to NextcloudLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Make legacy DAV backend use the BearerAuth backend as wellLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Add additional test for accessing DAV using Bearer AuthLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Use a standardized Bearer nowLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Add app to autoenabled provisioning API scenarioLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-09Extract app name and navigation entries for l10nMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-05-02Split up sharing-v1-part2.feature to avoid timeoutsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-26Fix forbidden backslash DAV integration testsVincent Petry
2017-04-26Added test cases from core 16825Sergio Bertolin
2017-04-26Simplified new endpoint move testVincent Petry
2017-04-26Added case when final chunk move must not change file idVincent Petry
2017-04-26Added test about checking file id after a moveSergio Bertolin
2017-04-25Merge pull request #4494 from nextcloud/fix-jsunitMorris Jobke
Fix JS unit failure because of Jasmine 2.6 and the phantomjs launcher
2017-04-25Fix JS unit failure because of Jasmine 2.6 and the phantomjs launcherMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-25Loop over the apps directory and add the taskJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-25Check whether we can json decode the translationsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-13Add support for ratelimiting via annotationsLukas Reschke
This allows adding rate limiting via annotations to controllers, as one example: ``` @UserRateThrottle(limit=5, period=100) @AnonRateThrottle(limit=1, period=100) ``` Would mean that logged-in users can access the page 5 times within 100 seconds, and anonymous users 1 time within 100 seconds. If only an AnonRateThrottle is specified that one will also be applied to logged-in users. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-12Favorites integration tests for shared filesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-12Fix casing of same origin frame optionJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-11Add integration test for trashbinVincent Petry
Add test for basic deletion. Add test when deleting from shared folder as recipient. Add test to check that metadata stays when moving out of shared folder as recipient. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-11Clear opcode cache after config changeLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-11Add integration testsLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-07Merge pull request #4221 from nextcloud/provisioning-api-for-account-infoMorris Jobke
Allow to change account info via provisioning api
2017-04-07Allow to change account info via provisioning apiJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-06Merge pull request #4224 from nextcloud/dont-list-on-public-calendar-endpointMorris Jobke
Don't list on public calendar endpoints
2017-04-05Don't list on public calendar endpointsLukas Reschke
There is no need to allow listing here. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-05Add integration tests for token authLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-03-31mergejs should print a newline between importsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-03-30fix setup of external storage integration testsRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2017-03-29Fix unit testsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-29Split long running features/sharing-v1.feature into two smaller partsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-28Merge pull request #4004 from nextcloud/backport-27172Roeland Jago Douma
Remove SharedCache::getNumericStorageId to let CacheWrapper do it
2017-03-24Use authType BASIC for Sabre client in integration testsVincent Petry
This helps massively reduce the numerous useless 401 exceptions that appears in the test log. These appear only because Sabre first connects without any auth type to receive the challenge and then sends the authentication data. With this change it will directly use basic auth. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24Merge pull request #4013 from nextcloud/bundle_vendor_jsLukas Reschke
Bundle vendor js
2017-03-24also install sinonMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24Update karma, use sinon from npmVincent Petry
Update karma library and use sinon JS library provided by karma-jasmine-sinon instead of local file. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24Merge pull request #3879 from nextcloud/downstream-26915Morris Jobke
Added integration tests for sharees using v2.php
2017-03-24Merge pull request #3965 from nextcloud/downstream-27343Morris Jobke
Providing --path option to transfer-ownership
2017-03-23Add CI step to verify merged vendor jsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-03-23Merge vendor jsRoeland Jago Douma
There is a bunch of javascript we always load from vendors. This combines this into 1 javascript file. Which reduces the number of request by ~10. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>