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/lib
AgeCommit message (Collapse)Author
2022-05-18Merge pull request #26813 from nextcloud/feature/files-search-tagsSimon L
Files: Extend search to also cover tags
2022-05-17Files: Extend search to also cover tagsfeature/files-search-tagsMarcel Klehr
fixes #326 Signed-off-by: Marcel Klehr <mklehr@gmx.net>
2022-05-17Merge pull request #32404 from nextcloud/debt/noid/psalm-warning-iaddressbookCôme Chilliet
[Psalm] Drop redundanten return comment
2022-05-17Merge pull request #32427 from nextcloud/boot-event-orderingRobin Appelman
reorder startup events to fix overlapping
2022-05-17Merge pull request #32216 from SUNET/masterLouis
Respect user settings in php.ini if they are big enough
2022-05-17Merge pull request #32405 from nextcloud/debt/noid/psalm-warning-isearchrequestJohn Molakvoæ
2022-05-16Allow to tweak default scopes for accountsThomas Citharel
Close #6582 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-05-16Merge pull request #32357 from nextcloud/user-delete-remove-wrappersJulius Härtl
remove storage wrappers when deleting the user storage
2022-05-16Merge pull request #32412 from nextcloud/bugfix/noid/maintenance-scriptJulius Härtl
Properly import maintenance script
2022-05-16Merge pull request #32413 from nextcloud/fix/psalm-oc-legacyCarl Schwan
Fix psalm errors from the end of the baseline file
2022-05-16reorder startup events to fix overlappingRobin Appelman
current the `request` and `runtime` events overlap with the `init` event which makes it hard to create usefull visualizations. this reorders things a bit to remove an overlap Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-05-16Merge pull request #32382 from nextcloud/event-logger-log-minimumRobin Appelman
only log diagnostic events if a treshhold is set
2022-05-16Merge pull request #32305 from nextcloud/bugfix/32302/fix-browser-agent-trimmingJoas Schilling
Fix user agent trimming on installation
2022-05-16Fix psalm errors fron the end of the baseline fileCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-16Fix suggestions by @artonageMicke Nordin
Signed-off-by: Micke Nordin <kano@sunet.se>
2022-05-16Properly import maintenance scriptJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-05-15Fix spelling for return typedebt/noid/psalm-warning-isearchrequestDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2022-05-15Drop redundanten return commentdebt/noid/psalm-warning-iaddressbookDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2022-05-13Merge pull request #31662 from nextcloud/modernize-contactmenuJohn Molakvoæ
2022-05-13Merge pull request #32384 from nextcloud/improve-psalm-server-getJohn Molakvoæ
2022-05-13Merge pull request #32261 from nextcloud/feat/remove-scss-supportJohn Molakvoæ
2022-05-13Merge pull request #32376 from ↵John Molakvoæ
nextcloud/debt/noid/fix-psalm-warning-for-zip-response
2022-05-13Improve psalm annotation to make it stricterCarl Schwan
Now using class-string<T> as input will only return T, and any other string will return mixed Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-13Cleanup and compileJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-05-13Remove SCSSCacherJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-05-13Fix psalm warning for zip response due wrong typeDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2022-05-13only log diagnostic events if a treshhold is setevent-logger-log-minimumRobin Appelman
this prevents log spam and it's rare that you actually want to very short events logged anyway Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-05-13Merge pull request #30863 from nextcloud/performance/saving-user-profile-infoCarl Schwan
Minor optimizations for saving user personal information
2022-05-13Merge pull request #32250 from nextcloud/cleanup/cappedmemorycacheJohn Molakvoæ
2022-05-12Minor optimizations for saving user personal informationCarl Schwan
* Remove double hook: the OC_User::changeUser triggers an OC\AccountManager::userUpdated and the app is already listening to this signal in its Application definition * Make createCard not check if an card exists if we already checked previously. We also don't try to get the card if the user is disabled as we don't use the card in this case We this change we go from 100 DB requests to 80 DB requests when saving an user email address. Signed-off-by: Carl Schwan <carl@carlschwan.eu> (cherry picked from commit c6fd482edf33214a9ad4787e4cac278f871fa7c8)
2022-05-12Merge pull request #32008 from nextcloud/fix/getSize-boolCarl Schwan
Fix Call to a member function getSize() on bool
2022-05-12Merge pull request #32335 from nextcloud/storage-info-dont-unjailCarl Schwan
Don't unjail the path when getting the storage info
2022-05-12Merge pull request #32185 from nextcloud/fix/default-share-provider-oracleCarl Schwan
Fix getting shares in a folder on Oracle
2022-05-12Merge pull request #32077 from nextcloud/cleanup/lockCarl Schwan
Cleanup lock related code
2022-05-12Modernize contacts menumodernize-contactmenuThomas Citharel
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-05-12Fix Call to a member function getSize() on boolCarl Schwan
getFileInfo might return false, handle this case by ignoring the result Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-12Cleanup lock related codeCarl Schwan
- Port to QueryBuilder - Improve the doc a bit - Add type hinting Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-12Add stricter psalm type for CappedMemoryCachecleanup/cappedmemorycacheCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-12Fix getting shares in a folder on OracheCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-12remove storage wrappers when deleting the user storageuser-delete-remove-wrappersRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-05-12Validate requested length is random string generatorVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-05-12Merge pull request #32344 from ↵Joas Schilling
nextcloud/fix/always-free-db-result-qbmapper-find-entities Always free the DB result in QBMapper::findEntities
2022-05-12Merge pull request #32339 from nextcloud/appdatafactory-publicCarl Schwan
Make it possible to get the appdata folder using the public API
2022-05-12Merge pull request #32278 from nextcloud/remove-default-phpJohn Molakvoæ
2022-05-12Always free the DB result in QBMapper::findEntitiesChristoph Wurst
Without this patch it only happened if the code ran through without any errors. Now the result is also freed in the case of an error. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-05-12Make it possible to get the appdata folder using the public APIappdatafactory-publicCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-05-11Add talk-poll to the ROS definitionsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-05-11don't unjail the path when getting the storage infostorage-info-dont-unjailRobin Appelman
the original reason for adding it no longer exist. This was added with #30985 since then the share source storage was also used, however this was changed with #32076 Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-05-11Merge pull request #32326 from nextcloud/fix/icons-cacherJohn Molakvoæ
2022-05-11Compile themingJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>