summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib
Commit message (Collapse)AuthorAgeFilesLines
* fix shared-as-busy events for ownerGeorg Ehrke2017-01-261-1/+7
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Make sure the used event type and the setting/filter are the sameJoas Schilling2017-01-102-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #2512 from nextcloud/cleanup-system-tag-usageRoeland Jago Douma2017-01-061-3/+4
|\ | | | | Only allow admins to delete tags
| * Only allow admins to delete tagsJoas Schilling2016-12-061-3/+4
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Fix generation of birthday, deathdate and anniversary in case where no year ↵Thomas Müller2017-01-051-6/+39
| | | | | | | | | | | | | | is set - which is allowed as per https://tools.ietf.org/html/rfc6350#section-6.2.5 (#26756) Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #2850 from nextcloud/downstream-26603Roeland Jago Douma2017-01-021-0/+3
|\ \ | | | | | | Fixed size issues on main detail view and disappearing of share recipients (#26603)
| * | Fixed size issues on main detail view and disappearing of share recipients ↵Michael Jobst2016-12-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#26603) * fixed size issues on main detail view and disappearing of share recipients * Changes due to code comments * Moved reloadProperties() to FileInfoModel * Solved Scrutinizer issues * Bugfix: undefined value used on error * check if options are set for FileInfoModel.initialize() Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Fix legacy caldav endpointsRoeland Jago Douma2017-01-023-31/+22
| | | | | | | | | | | | | | | | | | | | | * CaldavBackend is now endpoint aware (use old style principals on old endpoint and new onces on new). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | Add test execution against legacy DAV backendLukas Reschke2017-01-021-1/+1
|/ / | | | | | | | | | | Since the tests to quite hugely rely on sync tokens being present I also included those in the legacy backend. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Return explicit values instead of boolean from sabre (#26654)Sergio Bertolín2016-12-221-1/+5
| | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | Merge pull request #2758 from nextcloud/only-one-dav-backendLukas Reschke2016-12-213-25/+28
|\ \ | | | | | | Register only one dav backend
| * | Fix error when $view is null when being passed into some pluginsThomas Müller2016-12-192-24/+27
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Fix "Call to a member function getUID() on null"Thomas Müller2016-12-191-0/+1
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Allow registration of federated authThomas Müller2016-12-191-4/+3
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Register only one dav auth backendThomas Citharel2016-12-191-4/+4
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | Merge pull request #2273 from nextcloud/fix_invalid_calendarLukas Reschke2016-12-202-0/+134
|\ \ \ | |/ / |/| | Add DAV repair step to fix calendar data
| * | Add DAV repair step to fix calendar dataRoeland Jago Douma2016-11-242-0/+134
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | Merge pull request #2625 from nextcloud/fix-todo-filterRoeland Jago Douma2016-12-161-1/+1
|\ \ \ | | | | | | | | Fix the Todos filter
| * | | Fix the Todos filterJoas Schilling2016-12-121-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Don't set Content-Disposition header if one already existsLukas Reschke2016-12-141-2/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | If a Content-Disposition header is already set by another plugin we don't need to set another one as this breaks clients. Fixes https://github.com/nextcloud/server/issues/1992 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | / Overwrite the schedule target calendar with the personal one and create it ↵Joas Schilling2016-12-092-0/+66
| |/ |/| | | | | | | | | | | | | | | | | if missing Otherwise this leads to problems like events being added to the birthday calendar, if that one is the first calendar which was created for the user. See: https://github.com/nextcloud/server/pull/2274 Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #1934 from nextcloud/move-latly-used-tags-to-the-topMorris Jobke2016-12-051-1/+1
|\ \ | | | | | | Move lately used tags to the top
| * | First list tags the user used latelyJoas Schilling2016-11-071-1/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #2471 from nextcloud/harden_files_dropLukas Reschke2016-12-021-20/+10
|\ \ \ | | | | | | | | Harden files drop
| * | | Harden files dropRoeland Jago Douma2016-12-021-20/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fail on MKCOL * Only take filename ignore directories * No need to parse query parameters Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #2432 from nextcloud/activity-mail-languageMorris Jobke2016-12-013-9/+26
|\ \ \ \ | |/ / / |/| | | Make sure the activity emails can be sent in the users language
| * | | Adjust all implementations in the server repoJoas Schilling2016-12-013-9/+26
| | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | Merge pull request #2371 from ↵Lukas Reschke2016-12-011-1/+2
|\ \ \ \ | |/ / / |/| | | | | | | | | | | nextcloud/issue-2369-add-share-indicator-for-mail-shares Add share indicator for mail shares
| * | | Also get infos about email sharesJoas Schilling2016-11-301-1/+2
| | |/ | |/| | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add tests for the base providerJoas Schilling2016-11-301-1/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Deduplicate the provider codeJoas Schilling2016-11-304-171/+133
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Move event and todo parsing to new APIJoas Schilling2016-11-295-302/+368
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Deduplicate icon assignmentJoas Schilling2016-11-291-18/+3
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Move calendar activity parsing to new APIJoas Schilling2016-11-292-73/+285
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Move CalDAV activity settings to new APIJoas Schilling2016-11-294-23/+296
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Move CalDAV activity filters to new APIJoas Schilling2016-11-293-25/+186
|/ / | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | VCARDS don't hold binary dataRoeland Jago Douma2016-11-231-1/+1
| | | | | | | | | | | | | | | | * We need to base64 encode the avatar! * Switched to vcard v4 * User proper data uri Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Remove 9.1 migration steps in app dav (#25654)Thomas Müller2016-11-222-165/+0
| |
* | Merge pull request #2225 from nextcloud/fix_caldav_proppatch_requestsLukas Reschke2016-11-211-1/+1
|\ \ | | | | | | fix PropPatch requests on calendars
| * | fix PropPatch requests on calendarsGeorg Ehrke2016-11-211-1/+1
| | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | | Remove debug codeLukas Reschke2016-11-211-4/+0
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | update system address book if the user change the personal settingsBjoern Schiessle2016-11-214-94/+96
| | | | | | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | | BirthdayCalendar: fix issue with birthyear to high when birthday on Dec 31stGeorg Ehrke2016-11-171-1/+5
|/ / | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* | basic lockdown logicRobin Appelman2016-11-161-0/+1
| | | | | | | | Signed-off-by: Robin Appelman <icewind@owncloud.com>
* | Fix integration testsJoas Schilling2016-11-161-3/+3
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Merge pull request #2111 from nextcloud/oc_26549Roeland Jago Douma2016-11-143-5/+0
|\ \ | | | | | | Remove unused $view from FilesPlugin (#26549)
| * | Remove unused $view from FilesPlugin (#26549)Vincent Petry2016-11-143-5/+0
| | | | | | | | | | | | The Sabre FilesPlugin never uses the view so remove it.
* | | Introduce an event for first time login based on the last login time stampThomas Müller2016-11-142-7/+12
|/ / | | | | | | | | | | | | | | | | | | | | | | Use firstLogin event to trigger creation of default calendar and default address book Delay login of admin user after setup so that firstLogin event can properly be processed for the admin Fixing tests ... Skeleton files are not copied over -> only 3 cache entries are remaining Use updateLastLoginTimestamp to properly setup lastLogin value for a test user
* | Merge pull request #2068 from ↵Morris Jobke2016-11-141-14/+20
|\ \ | | | | | | | | | | | | nextcloud/sharetypesinfolder-no-getdirectorycontent remove unneeded getDirectoryContent when getting share types for a folder
| * | remove unneeded getDirectoryContent when getting share types for a folderRobin Appelman2016-11-091-14/+20
| | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>