Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fede63276b402115b1c2b2032c36f1b788285409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
	  xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
	<id>dav</id>
	<name>WebDAV</name>
	<summary>WebDAV endpoint</summary>
	<description>WebDAV endpoint</description>
	<version>1.21.0</version>
	<licence>agpl</licence>
	<author>owncloud.org</author>
	<namespace>DAV</namespace>
	<default_enable/>
	<types>
		<filesystem/>
	</types>
	<category>integration</category>
	<bugs>https://github.com/nextcloud/server/issues</bugs>
	<dependencies>
		<nextcloud min-version="23" max-version="23"/>
	</dependencies>

	<background-jobs>
		<job>OCA\DAV\BackgroundJob\CleanupDirectLinksJob</job>
		<job>OCA\DAV\BackgroundJob\UpdateCalendarResourcesRoomsBackgroundJob</job>
		<job>OCA\DAV\BackgroundJob\CleanupInvitationTokenJob</job>
		<job>OCA\DAV\BackgroundJob\EventReminderJob</job>
		<job>OCA\DAV\BackgroundJob\CalendarRetentionJob</job>
	</background-jobs>

	<repair-steps>
		<post-migration>
			<step>OCA\DAV\Migration\FixBirthdayCalendarComponent</step>
			<step>OCA\DAV\Migration\RegenerateBirthdayCalendars</step>
			<step>OCA\DAV\Migration\CalDAVRemoveEmptyValue</step>
			<step>OCA\DAV\Migration\BuildCalendarSearchIndex</step>
			<step>OCA\DAV\Migration\BuildSocialSearchIndex</step>
			<step>OCA\DAV\Migration\RefreshWebcalJobRegistrar</step>
			<step>OCA\DAV\Migration\RegisterBuildReminderIndexBackgroundJob</step>
			<step>OCA\DAV\Migration\RemoveOrphanEventsAndContacts</step>
			<step>OCA\DAV\Migration\RemoveClassifiedEventActivity</step>
			<step>OCA\DAV\Migration\RemoveDeletedUsersCalendarSubscriptions</step>
		</post-migration>
		<live-migration>
			<step>OCA\DAV\Migration\ChunkCleanup</step>
		</live-migration>
	</repair-steps>

	<commands>
		<command>OCA\DAV\Command\CreateAddressBook</command>
		<command>OCA\DAV\Command\CreateCalendar</command>
		<command>OCA\DAV\Command\DeleteCalendar</command>
		<command>OCA\DAV\Command\MoveCalendar</command>
		<command>OCA\DAV\Command\ListCalendars</command>
		<command>OCA\DAV\Command\RetentionCleanupCommand</command>
		<command>OCA\DAV\Command\SendEventReminders</command>
		<command>OCA\DAV\Command\SyncBirthdayCalendar</command>
		<command>OCA\DAV\Command\SyncSystemAddressBook</command>
		<command>OCA\DAV\Command\RemoveInvalidShares</command>
	</commands>

	<settings>
		<admin>OCA\DAV\Settings\CalDAVSettings</admin>
		<personal>OCA\DAV\Settings\AvailabilitySettings</personal>
	</settings>

	<activity>
		<settings>
			<setting>OCA\DAV\CalDAV\Activity\Setting\Calendar</setting>
			<setting>OCA\DAV\CalDAV\Activity\Setting\Event</setting>
			<setting>OCA\DAV\CalDAV\Activity\Setting\Todo</setting>
			<setting>OCA\DAV\CardDAV\Activity\Setting</setting>
		</settings>

		<filters>
			<filter>OCA\DAV\CalDAV\Activity\Filter\Calendar</filter>
			<filter>OCA\DAV\CalDAV\Activity\Filter\Todo</filter>
			<filter>OCA\DAV\CardDAV\Activity\Filter</filter>
		</filters>

		<providers>
			<provider>OCA\DAV\CalDAV\Activity\Provider\Calendar</provider>
			<provider>OCA\DAV\CalDAV\Activity\Provider\Event</provider>
			<provider>OCA\DAV\CalDAV\Activity\Provider\Todo</provider>
			<provider>OCA\DAV\CardDAV\Activity\Provider\Addressbook</provider>
			<provider>OCA\DAV\CardDAV\Activity\Provider\Card</provider>
		</providers>
	</activity>

	<public>
		<webdav>appinfo/v1/publicwebdav.php</webdav>
	</public>
</info>