info.xml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-FileCopyrightText: 2015-2016 ownCloud, Inc.
  5. - SPDX-License-Identifier: AGPL-3.0-only
  6. -->
  7. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  9. <id>dav</id>
  10. <name>WebDAV</name>
  11. <summary>WebDAV endpoint</summary>
  12. <description>WebDAV endpoint</description>
  13. <version>1.32.0</version>
  14. <licence>agpl</licence>
  15. <author>owncloud.org</author>
  16. <namespace>DAV</namespace>
  17. <types>
  18. <filesystem/>
  19. </types>
  20. <category>integration</category>
  21. <bugs>https://github.com/nextcloud/server/issues</bugs>
  22. <dependencies>
  23. <nextcloud min-version="31" max-version="31"/>
  24. </dependencies>
  25. <background-jobs>
  26. <job>OCA\DAV\BackgroundJob\CleanupDirectLinksJob</job>
  27. <job>OCA\DAV\BackgroundJob\UpdateCalendarResourcesRoomsBackgroundJob</job>
  28. <job>OCA\DAV\BackgroundJob\CleanupInvitationTokenJob</job>
  29. <job>OCA\DAV\BackgroundJob\EventReminderJob</job>
  30. <job>OCA\DAV\BackgroundJob\CalendarRetentionJob</job>
  31. <job>OCA\DAV\BackgroundJob\PruneOutdatedSyncTokensJob</job>
  32. </background-jobs>
  33. <repair-steps>
  34. <post-migration>
  35. <step>OCA\DAV\Migration\FixBirthdayCalendarComponent</step>
  36. <step>OCA\DAV\Migration\RegenerateBirthdayCalendars</step>
  37. <step>OCA\DAV\Migration\CalDAVRemoveEmptyValue</step>
  38. <step>OCA\DAV\Migration\BuildCalendarSearchIndex</step>
  39. <step>OCA\DAV\Migration\BuildSocialSearchIndex</step>
  40. <step>OCA\DAV\Migration\RefreshWebcalJobRegistrar</step>
  41. <step>OCA\DAV\Migration\RegisterBuildReminderIndexBackgroundJob</step>
  42. <step>OCA\DAV\Migration\RemoveOrphanEventsAndContacts</step>
  43. <step>OCA\DAV\Migration\RemoveClassifiedEventActivity</step>
  44. <step>OCA\DAV\Migration\RemoveDeletedUsersCalendarSubscriptions</step>
  45. <step>OCA\DAV\Migration\RemoveObjectProperties</step>
  46. </post-migration>
  47. <live-migration>
  48. <step>OCA\DAV\Migration\ChunkCleanup</step>
  49. </live-migration>
  50. </repair-steps>
  51. <commands>
  52. <command>OCA\DAV\Command\CreateAddressBook</command>
  53. <command>OCA\DAV\Command\ListAddressbooks</command>
  54. <command>OCA\DAV\Command\CreateCalendar</command>
  55. <command>OCA\DAV\Command\CreateSubscription</command>
  56. <command>OCA\DAV\Command\DeleteCalendar</command>
  57. <command>OCA\DAV\Command\FixCalendarSyncCommand</command>
  58. <command>OCA\DAV\Command\MoveCalendar</command>
  59. <command>OCA\DAV\Command\ListCalendars</command>
  60. <command>OCA\DAV\Command\RetentionCleanupCommand</command>
  61. <command>OCA\DAV\Command\SendEventReminders</command>
  62. <command>OCA\DAV\Command\SyncBirthdayCalendar</command>
  63. <command>OCA\DAV\Command\SyncSystemAddressBook</command>
  64. <command>OCA\DAV\Command\RemoveInvalidShares</command>
  65. </commands>
  66. <settings>
  67. <admin>OCA\DAV\Settings\CalDAVSettings</admin>
  68. <personal>OCA\DAV\Settings\AvailabilitySettings</personal>
  69. </settings>
  70. <activity>
  71. <settings>
  72. <setting>OCA\DAV\CalDAV\Activity\Setting\Calendar</setting>
  73. <setting>OCA\DAV\CalDAV\Activity\Setting\Event</setting>
  74. <setting>OCA\DAV\CalDAV\Activity\Setting\Todo</setting>
  75. <setting>OCA\DAV\CardDAV\Activity\Setting</setting>
  76. </settings>
  77. <filters>
  78. <filter>OCA\DAV\CalDAV\Activity\Filter\Calendar</filter>
  79. <filter>OCA\DAV\CalDAV\Activity\Filter\Todo</filter>
  80. <filter>OCA\DAV\CardDAV\Activity\Filter</filter>
  81. </filters>
  82. <providers>
  83. <provider>OCA\DAV\CalDAV\Activity\Provider\Calendar</provider>
  84. <provider>OCA\DAV\CalDAV\Activity\Provider\Event</provider>
  85. <provider>OCA\DAV\CalDAV\Activity\Provider\Todo</provider>
  86. <provider>OCA\DAV\CardDAV\Activity\Provider\Addressbook</provider>
  87. <provider>OCA\DAV\CardDAV\Activity\Provider\Card</provider>
  88. </providers>
  89. </activity>
  90. </info>