~cszikszoy/do-plugins/fix-confluence

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
<Addin 
	id="GoogleCalendar" 
	namespace= "Do" 
	version="1.5"
	name="Google Calendar"
	description="Create, search, and browse Google calendar events."
	author="Alex Launi"
	category="Official"
	>

	<Runtime>
		<Import assembly="GCalendar.dll"/>
		<Import assembly="Google.GData.AccessControl.dll"/>
		<Import assembly="Google.GData.Calendar.dll"/>
		<Import assembly="Google.GData.Client.dll"/>
		<Import assembly="Google.GData.Extensions.dll"/>
	</Runtime>

	<Dependencies>
		<Addin id="Universe" version="1.0" />
	</Dependencies>

	<Extension path="/Do/ItemSource">
		<ItemSource type="GCalendar.GCalendarItemSource" />
	</Extension>

	<Extension path="/Do/Action">
		<Action type="GCalendar.GCalendarNewEvent" />
		<Action type="GCalendar.GCalendarSearchEvents" />
	</Extension>
</Addin>