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-09-14dont try email login if the provider username is not a valid emaillogin-email-filterRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-09-13[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-12Merge pull request #34019 from nextcloud/fix/quota-typeVincent Petry
Fix quota type to int
2022-09-12Merge pull request #33921 from nextcloud/fix/fix-config-file-emptiedCôme Chilliet
Do not empty config.php file if reading failed for any reason
2022-09-12Fix quota type to intCarl Schwan
Change the quota to int from float, since the quota is a number of bits and a bits can not be splitted. Fix #34010 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-10[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-09Update avatars on updateCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-09Dark theme for guest avatarCarl Schwan
And better caching policy Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-09Avatar new styleCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-09[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-08Merge pull request #33788 from nextcloud/improve-recentCarl Schwan
Improve getting recent files performance
2022-09-08Merge pull request #33906 from nextcloud/fix/fix-calendar-tests-getTimestampblizzz
Fix Calendar tests mocking a non-existant method.
2022-09-08[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-08Fix various errors in iMIP logicAnna Larch
Signed-off-by: Anna Larch <anna@nextcloud.com>
2022-09-07Merge pull request #33600 from nextcloud/lazy-quotablizzz
get quota for user only when needed
2022-09-07[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-06Do not empty config.php file if reading failed for any reasonfix/fix-config-file-emptiedCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-09-06Merge pull request #33813 from nextcloud/fix/infinite_email_change_notificationLouis
Compare lowercase email when updating from ldap
2022-09-06Merge pull request #29881 from nextcloud/fix/setting/accessibility-titleCarl Schwan
Improve accessibility of the title of the settings
2022-09-06I dug into it again, and the issue is much simpler than I previously though.Louis Chemineau
- LDAP has an email address with capital letters - NC store this address in lower case - When the user logs in, we compare the [stored email with the new lower case email](https://github.com/nextcloud/server/blob/master/lib/private/AllConfig.php#L259-L261) before storing it. Here, both email will be the same, so we won't store the new email address with upper case letters. Which is what we want. - We then [compare emails as they are before triggering an event](https://github.com/nextcloud/server/blob/master/lib/private/User/User.php#L202-L204), they won't match, so the user will receive an email signaling an email change every time he logs in. The fix is to compare the old email with the new lower case email before sending the event. Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-09-06[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-05Merge pull request #33889 from nextcloud/debt/noid/docblock-cache-forDaniel
Update docblock for cacheFor
2022-09-05Filter out old files when trying to get recent filesimprove-recentCarl Schwan
Only do so when asking for less than 100 files and having an offset equal to 0. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-05[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-04[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-03Add description for public and immutabledebt/noid/docblock-cache-forDaniel
Co-authored-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Daniel <mail@danielkesselberg.de>
2022-09-03Update docblock for cacheForDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2022-09-03[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-02Merge pull request #33863 from nextcloud/hash-wrapper-catch-errorsblizzz
handle errors from hash_final
2022-09-02Merge pull request #33692 from nextcloud/update-dirblizzz
Document and use the new updateDirectory if set
2022-09-02Merge pull request #33790 from nextcloud/Valdnet-patch-2Simon L
l10n: Spelling unification
2022-09-02l10n: Spelling unificationValdnet
Spelling unification in Transifex. Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> l10n: Change to administration Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> l10n: Spelling unification Spelling unification in Transifex. Match the menu name to the header name of the settings page. Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-09-02handle errors from hash_finalRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-09-02Merge branch 'master' into fix/setting/accessibility-titlefix/setting/accessibility-titleCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-02Merge pull request #33818 from nextcloud/enh/reference-eventJulius Härtl
Add event to load scripts for reference rendering
2022-09-02[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-09-01Add event to load scripts for reference renderingenh/reference-eventJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-09-01get quota for user only when neededlazy-quotaRobin Appelman
always apply the wrapper but have the wrapper get the quota lazily only when an operation where quota is applied is performed Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-09-01Merge pull request #33625 from nextcloud/fix/33572/add-userVincent Petry
Fix creation of new user and display the correct error message
2022-09-01Merge pull request #33780 from nextcloud/enh/noid/cloud-id-cliblizzz
filter index.php from cloudId
2022-09-01Merge pull request #33764 from nextcloud/cloudid-cacheVincent Petry
cache cloud id data in CloudIdManager
2022-09-01Merge pull request #33774 from nextcloud/hash-wrapper-closed-hashVincent Petry
handle cases where the hash context gets cleaned up before the hash wrapper
2022-09-01Merge pull request #33772 from ↵Julius Härtl
nextcloud/debug/remember-me-login-token-mispatch-session-unavailable
2022-09-01[tx-robot] updated from transifexNextcloud bot
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-08-31filter index.php from cloudIdenh/noid/cloud-id-cliMaxence Lange
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2022-08-31Merge pull request #33494 from nextcloud/enh/referencesJulius Härtl
Backend for reference metadata fetching
2022-08-31Inject all dependnencies and increase cache timeoutJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-08-31Merge pull request #33756 from nextcloud/enh/noid/admin-settings-directlySimon L
add a way to open the admin settings overview directly
2022-08-31Refactor cache handlingJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-08-31CleanupJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>