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
AgeCommit message (Collapse)Author
2022-04-14Fix CalDAV subscriptions calendarorder column/prop typebackport/30438/stable23Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-04-14Fix column/property type of the calendar orderChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-04-14Fix column/property type of the CalDAV deleted_at time stampChristoph Wurst
The timestamp is an int, but we treated it as string. With this patch the property map is enriched with types and settype casts the value if necessary. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-04-14Merge pull request #31453 from nextcloud/s3-primary-ci-23blizzz
[stable23] Run tests with primary object storage in CI + large upload fixes
2022-03-11Don't recreate sql query each timebackport/31274/stable23Carl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-03-11Fix more than 1000 entries in queries exception in CardDavBackendCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-03-10also handle expired pre-write shared lock on dav upload when not using part ↵s3-primary-ci-23Robin Appelman
files Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-03-10Merge pull request #31392 from nextcloud/backport/30536/stable23blizzz
[stable23] Make Sabre File exception messages translatable
2022-03-10Merge pull request #31000 from nextcloud/backport/30974/stable23blizzz
[stable23] Fix: Birthday events missing after reimporting contacts
2022-03-09Merge pull request #31183 from nextcloud/backport/31178/stable23Vincent Petry
[stable23] Fix typo in DAV namespace registration
2022-03-02PHP 7.3 compatibilitybackport/30536/stable23Christopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-03-02Make Sabre File exception messages translatableChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-02-24Merge pull request #31262 from nextcloud/backport/20766/stable23John Molakvoæ
2022-02-23Fix cleaning reminders after subscription purgeThomas Citharel
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-02-23delete birthday calendar events permanentlybackport/30974/stable23Maximilian Martin
Signed-off-by: Maximilian Martin <maximilian_martin@gmx.de>
2022-02-22Use the new option to signaling insensitivityJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-21Wrap S3 multipart upload exceptionLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2022-02-18Clean reminders for calendar when deleting a subscriptionThomas Citharel
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-02-18Consider only reminders with calendar dataThomas Citharel
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-02-17Fix typo in DAV namespace registrationbackport/31178/stable23Thomas Citharel
See https://github.com/nextcloud/3rdparty/blob/b0afba6d6508a1c85332cf8c61e90ad91b289ebc/sabre/dav/lib/DAV/Xml/Service.php#L43 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-02-15Also comment out in testJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-02-14Disable bulk upload by not advertising itVincent Petry
It has been reported broken on many instances. Disable it for now until it can be fixed. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-01-12Set the file's mtime from the headers in bulk uploadLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2021-12-14Carefully filter out non matching time ranges for CalDAV searchChristoph Wurst
When we search for CalDAV objects in the DB we take the first and last occurence into account. For recurring events that is when they take place the very first time and the very last time. Searching in a more specific time range will still match this condition, because the recurring event starts before the end of the requested range but ends after the start of the requested range. Sabre has filters for this. If we apply them on all seach objects of a search with a time range, then only the recurring events actually taking place at the time of the requested time range will be returned. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-12-13Convert strict_search to wildcard property and add psalm docsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-12-13Only wildcard search if enumeration is allowedJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-12-07Prevent writing invalid mtimeJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2021-12-02Close open cursor in the caldav back-endChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-12-01Cast orphan subscription id to intChristoph Wurst
DB columns are of type int by default, so they need to be casted. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-11-24Allow to fetch the creation time of foldersJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-11-11Fix loading all principal calendars in the dav app calendar providerChristoph Wurst
If we load all calendar infos of a principal then we get back an array and not a single calendar info. This was handled incorrectly and an array of calendar infos were passed to the calendar implementation, resulting in interesting bugs. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-11-08Force Calendar Obejct Chnage Path to support public writeAnna Larch
Signed-off-by: Anna Larch <anna@nextcloud.com>
2021-11-04Fix missing calendar path for public write on CalendarsAnna Larch
Signed-off-by: Anna Larch <anna@nextcloud.com>
2021-11-01Revert "add dav plugin to trigger recalculating of checksums"John Molakvoæ
2021-11-01Merge pull request #27378 from nextcloud/dav-recalc-checksumJohn Molakvoæ
2021-10-28Merge pull request #29481 from ↵Christoph Wurst
nextcloud/fix/dav-calendar-query-start-end-immutable Fix immutable datetime handling in DAV calendar search
2021-10-28Fix immutable datetime handling in DAV calendar searchChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-10-28Register missing DAV app calendar providerChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-10-22Merge pull request #28997 from nextcloud/fix/set-attendee-as-recipientJohn Molakvoæ
2021-10-18Add scheduling availability settingsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-10-16Merge pull request #28991 from nextcloud/feature/bulk_uploadJulius Härtl
2021-10-16Clean BulkUpload pluginLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2021-10-15Merge pull request #29240 from nextcloud/work/admin-delegation-implementationCarl Schwan
Add support for Delegation Settings for more apps
2021-10-15Add support for Delegation Settings for more appsCarl Schwan
* This adds support for the sharing, groupware, theming and user_ldap app * This adds some code who disapeared during a rebase in the initial delegation PR (provisioning_api) Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-10-15Add BulkUpload DAV pluginLouis Chemineau
Signed-off-by: Louis Chemineau <louis@chmn.me>
2021-10-15Merge pull request #29188 from nextcloud/enhancement/public-write-apiDaniel
Add calendar object creation API to OCP
2021-10-15Add create method to extended calendar implementationAnna Larch
Signed-off-by: Anna Larch <anna@nextcloud.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-10-14Change return type to correct typeAnna Larch
Signed-off-by: Anna Larch <anna@nextcloud.com>
2021-10-14Merge pull request #29195 from ↵Daniel
nextcloud/fix/calendar-invitations-default-language Fix default language detection for calendar emails
2021-10-14Add Public Calendar ProviderAnna Larch
Signed-off-by: Anna Larch <anna@nextcloud.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>