justinsoong-ri_cal 0.8.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. data/History.txt +402 -0
  2. data/Manifest.txt +161 -0
  3. data/README.txt +410 -0
  4. data/Rakefile +69 -0
  5. data/VERSION +1 -0
  6. data/bin/ri_cal +8 -0
  7. data/component_attributes/alarm.yml +10 -0
  8. data/component_attributes/calendar.yml +4 -0
  9. data/component_attributes/component_property_defs.yml +180 -0
  10. data/component_attributes/event.yml +45 -0
  11. data/component_attributes/freebusy.yml +16 -0
  12. data/component_attributes/journal.yml +35 -0
  13. data/component_attributes/timezone.yml +3 -0
  14. data/component_attributes/timezone_period.yml +11 -0
  15. data/component_attributes/todo.yml +46 -0
  16. data/copyrights.txt +1 -0
  17. data/docs/draft-ietf-calsify-2446bis-08.txt +7280 -0
  18. data/docs/draft-ietf-calsify-rfc2445bis-09.txt +10416 -0
  19. data/docs/incrementers.txt +7 -0
  20. data/docs/rfc2445.pdf +0 -0
  21. data/lib/ri_cal/component/alarm.rb +19 -0
  22. data/lib/ri_cal/component/calendar.rb +258 -0
  23. data/lib/ri_cal/component/event.rb +58 -0
  24. data/lib/ri_cal/component/freebusy.rb +16 -0
  25. data/lib/ri_cal/component/journal.rb +27 -0
  26. data/lib/ri_cal/component/non_standard.rb +33 -0
  27. data/lib/ri_cal/component/t_z_info_timezone.rb +153 -0
  28. data/lib/ri_cal/component/timezone/daylight_period.rb +25 -0
  29. data/lib/ri_cal/component/timezone/standard_period.rb +23 -0
  30. data/lib/ri_cal/component/timezone/timezone_period.rb +76 -0
  31. data/lib/ri_cal/component/timezone.rb +197 -0
  32. data/lib/ri_cal/component/todo.rb +42 -0
  33. data/lib/ri_cal/component.rb +256 -0
  34. data/lib/ri_cal/core_extensions/array/conversions.rb +15 -0
  35. data/lib/ri_cal/core_extensions/array.rb +7 -0
  36. data/lib/ri_cal/core_extensions/date/conversions.rb +56 -0
  37. data/lib/ri_cal/core_extensions/date.rb +13 -0
  38. data/lib/ri_cal/core_extensions/date_time/conversions.rb +50 -0
  39. data/lib/ri_cal/core_extensions/date_time.rb +15 -0
  40. data/lib/ri_cal/core_extensions/object/conversions.rb +20 -0
  41. data/lib/ri_cal/core_extensions/object.rb +8 -0
  42. data/lib/ri_cal/core_extensions/string/conversions.rb +57 -0
  43. data/lib/ri_cal/core_extensions/string.rb +8 -0
  44. data/lib/ri_cal/core_extensions/time/calculations.rb +153 -0
  45. data/lib/ri_cal/core_extensions/time/conversions.rb +42 -0
  46. data/lib/ri_cal/core_extensions/time/tzid_access.rb +50 -0
  47. data/lib/ri_cal/core_extensions/time/week_day_predicates.rb +55 -0
  48. data/lib/ri_cal/core_extensions/time.rb +14 -0
  49. data/lib/ri_cal/core_extensions.rb +11 -0
  50. data/lib/ri_cal/fast_date_time.rb +234 -0
  51. data/lib/ri_cal/floating_timezone.rb +32 -0
  52. data/lib/ri_cal/invalid_property_value.rb +8 -0
  53. data/lib/ri_cal/invalid_timezone_identifier.rb +20 -0
  54. data/lib/ri_cal/occurrence_enumerator.rb +265 -0
  55. data/lib/ri_cal/occurrence_period.rb +17 -0
  56. data/lib/ri_cal/parser.rb +145 -0
  57. data/lib/ri_cal/properties/alarm.rb +390 -0
  58. data/lib/ri_cal/properties/calendar.rb +164 -0
  59. data/lib/ri_cal/properties/event.rb +1523 -0
  60. data/lib/ri_cal/properties/freebusy.rb +593 -0
  61. data/lib/ri_cal/properties/journal.rb +1237 -0
  62. data/lib/ri_cal/properties/timezone.rb +150 -0
  63. data/lib/ri_cal/properties/timezone_period.rb +416 -0
  64. data/lib/ri_cal/properties/todo.rb +1559 -0
  65. data/lib/ri_cal/properties.rb +12 -0
  66. data/lib/ri_cal/property_value/array.rb +27 -0
  67. data/lib/ri_cal/property_value/cal_address.rb +11 -0
  68. data/lib/ri_cal/property_value/date.rb +184 -0
  69. data/lib/ri_cal/property_value/date_time/additive_methods.rb +44 -0
  70. data/lib/ri_cal/property_value/date_time/time_machine.rb +159 -0
  71. data/lib/ri_cal/property_value/date_time/timezone_support.rb +100 -0
  72. data/lib/ri_cal/property_value/date_time.rb +359 -0
  73. data/lib/ri_cal/property_value/duration.rb +110 -0
  74. data/lib/ri_cal/property_value/geo.rb +11 -0
  75. data/lib/ri_cal/property_value/integer.rb +12 -0
  76. data/lib/ri_cal/property_value/occurrence_list.rb +144 -0
  77. data/lib/ri_cal/property_value/period.rb +86 -0
  78. data/lib/ri_cal/property_value/recurrence_rule/enumeration_support_methods.rb +100 -0
  79. data/lib/ri_cal/property_value/recurrence_rule/enumerator.rb +79 -0
  80. data/lib/ri_cal/property_value/recurrence_rule/initialization_methods.rb +148 -0
  81. data/lib/ri_cal/property_value/recurrence_rule/negative_setpos_enumerator.rb +53 -0
  82. data/lib/ri_cal/property_value/recurrence_rule/numbered_span.rb +31 -0
  83. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_day_incrementer.rb +86 -0
  84. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_hour_incrementer.rb +31 -0
  85. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_minute_incrementer.rb +32 -0
  86. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_month_incrementer.rb +52 -0
  87. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_monthday_incrementer.rb +31 -0
  88. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_numbered_day_incrementer.rb +38 -0
  89. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_second_incrementer.rb +32 -0
  90. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_weekno_incrementer.rb +69 -0
  91. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_yearday_incrementer.rb +31 -0
  92. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/daily_incrementer.rb +28 -0
  93. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/frequency_incrementer.rb +80 -0
  94. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/hourly_incrementer.rb +23 -0
  95. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/list_incrementer.rb +106 -0
  96. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/minutely_incrementer.rb +23 -0
  97. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/monthly_incrementer.rb +33 -0
  98. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/null_sub_cycle_incrementer.rb +43 -0
  99. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb +28 -0
  100. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/weekly_incrementer.rb +37 -0
  101. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/yearly_incrementer.rb +57 -0
  102. data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer.rb +135 -0
  103. data/lib/ri_cal/property_value/recurrence_rule/recurring_day.rb +131 -0
  104. data/lib/ri_cal/property_value/recurrence_rule/recurring_month_day.rb +64 -0
  105. data/lib/ri_cal/property_value/recurrence_rule/recurring_numbered_week.rb +33 -0
  106. data/lib/ri_cal/property_value/recurrence_rule/recurring_year_day.rb +53 -0
  107. data/lib/ri_cal/property_value/recurrence_rule/time_manipulation.rb +42 -0
  108. data/lib/ri_cal/property_value/recurrence_rule/validations.rb +125 -0
  109. data/lib/ri_cal/property_value/recurrence_rule.rb +154 -0
  110. data/lib/ri_cal/property_value/text.rb +44 -0
  111. data/lib/ri_cal/property_value/uri.rb +11 -0
  112. data/lib/ri_cal/property_value/utc_offset.rb +33 -0
  113. data/lib/ri_cal/property_value/zulu_date_time.rb +34 -0
  114. data/lib/ri_cal/property_value.rb +159 -0
  115. data/lib/ri_cal/required_timezones.rb +55 -0
  116. data/lib/ri_cal.rb +187 -0
  117. data/parked_specs/ri_cal/claudio_a_bug_spec.rb +100 -0
  118. data/performance/empty_propval/subject.rb +43 -0
  119. data/performance/paris_eastern/subject.rb +90 -0
  120. data/performance/penultimate_weekday/subject.rb +15 -0
  121. data/performance/psm_big_enum/ical.ics +3171 -0
  122. data/performance/psm_big_enum/subject.rb +16 -0
  123. data/performance/utah_cycling/subject.rb +55 -0
  124. data/ri_cal.gemspec +244 -0
  125. data/script/benchmark_subject +23 -0
  126. data/script/console +10 -0
  127. data/script/destroy +14 -0
  128. data/script/generate +14 -0
  129. data/script/profile_subject +29 -0
  130. data/script/txt2html +71 -0
  131. data/spec/ri_cal/bugreports_spec.rb +276 -0
  132. data/spec/ri_cal/component/alarm_spec.rb +12 -0
  133. data/spec/ri_cal/component/calendar_spec.rb +88 -0
  134. data/spec/ri_cal/component/event_spec.rb +735 -0
  135. data/spec/ri_cal/component/freebusy_spec.rb +12 -0
  136. data/spec/ri_cal/component/journal_spec.rb +37 -0
  137. data/spec/ri_cal/component/t_z_info_timezone_spec.rb +60 -0
  138. data/spec/ri_cal/component/timezone_spec.rb +236 -0
  139. data/spec/ri_cal/component/todo_spec.rb +112 -0
  140. data/spec/ri_cal/component_spec.rb +224 -0
  141. data/spec/ri_cal/core_extensions/string/conversions_spec.rb +78 -0
  142. data/spec/ri_cal/core_extensions/time/calculations_spec.rb +188 -0
  143. data/spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb +45 -0
  144. data/spec/ri_cal/fast_date_time_spec.rb +77 -0
  145. data/spec/ri_cal/inf_loop_spec.rb +78 -0
  146. data/spec/ri_cal/occurrence_enumerator_spec.rb +611 -0
  147. data/spec/ri_cal/parser_spec.rb +337 -0
  148. data/spec/ri_cal/property_value/date_spec.rb +53 -0
  149. data/spec/ri_cal/property_value/date_time_spec.rb +383 -0
  150. data/spec/ri_cal/property_value/duration_spec.rb +126 -0
  151. data/spec/ri_cal/property_value/occurrence_list_spec.rb +72 -0
  152. data/spec/ri_cal/property_value/period_spec.rb +63 -0
  153. data/spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb +21 -0
  154. data/spec/ri_cal/property_value/recurrence_rule_spec.rb +1814 -0
  155. data/spec/ri_cal/property_value/text_spec.rb +25 -0
  156. data/spec/ri_cal/property_value/utc_offset_spec.rb +48 -0
  157. data/spec/ri_cal/property_value_spec.rb +125 -0
  158. data/spec/ri_cal/required_timezones_spec.rb +67 -0
  159. data/spec/ri_cal_spec.rb +53 -0
  160. data/spec/spec.opts +4 -0
  161. data/spec/spec_helper.rb +50 -0
  162. data/tasks/gem_loader/load_active_support.rb +3 -0
  163. data/tasks/gem_loader/load_tzinfo_gem.rb +2 -0
  164. data/tasks/ri_cal.rake +412 -0
  165. data/tasks/spec.rake +102 -0
  166. metadata +264 -0
@@ -0,0 +1,180 @@
1
+ calscale:
2
+ purpose: This property defines the calendar scale used for the calendar information specified in the calendar object.
3
+ constant_value: GREGORIAN
4
+ rfc_ref: "4.7.1 p 73"
5
+ method:
6
+ purpose: This property defines the iCalendar object method associated with the calendar object
7
+ ruby_name: icalendar_method
8
+ rfc_ref: "4.7.2 p 74-75"
9
+ prodid:
10
+ purpose: This property specifies the identifier for the product that created the iCalendar object.
11
+ required: true
12
+ default_value: '-//com.denhaven2/NONSGML ri_cal gem//EN'
13
+ rfc_ref: '4.7.3 pp 75-76'
14
+ version:
15
+ purpose: This property specifies the identifier corresponding to thehighest version number or the minimum and maximum range of the iCalendar specification that is required in order to interpret the iCalendar object.
16
+ constant_value: '2.0'
17
+ rfc_ref: '4.7.4 pp 76-77'
18
+ attach:
19
+ purpose: The property provides the capability to associate a document object with a calendar component.
20
+ type: Uri
21
+ rfc_ref: '4.8.1.1 pp 77-78'
22
+ categories:
23
+ purpose: This property defines the categories for a calendar component.
24
+ type: Array
25
+ array_type: Text
26
+ rfc_ref: '4.8.1.2 pp 78-79'
27
+ class:
28
+ ruby_name: security_class
29
+ purpose: This property defines the access classification for a calendar component.
30
+ rfc_ref: '4.8.1.3 pp 79-80'
31
+ comment:
32
+ purpose: This property specifies non-processing information intended to provide a comment to the calendar user.
33
+ rfc_ref: '4.8.1.4 pp 80-81'
34
+ description:
35
+ purpose: This property provides a more complete description of the calendar component, than that provided by the "SUMMARY" property.
36
+ rfc_ref: '4.8.1.5 pp 81-82'
37
+ geo:
38
+ purpose: This property specifies information related to the global position for the activity specified by a calendar component.
39
+ type: Geo
40
+ rfc_ref: '4.8.1.6 pp 82-83'
41
+ location:
42
+ purpose: This property defines the intended venue for the activity defined by a calendar component.
43
+ rfc_ref: '4.8.1.7 pp 84'
44
+ percent-complete:
45
+ purpose: This property is used by an assignee or delegatee of a to-do to convey the percent completion of a to-do to the Organizer.
46
+ type: Integer
47
+ rfc_ref: '4.8.1.8 pp 85'
48
+ priority:
49
+ type: Integer
50
+ purpose: This property defines the relative priority for a calendar component.
51
+ rfc_ref: '4.8.1.9 pp 85-87'
52
+ resources:
53
+ purpose: This property defines the equipment or resources anticipated for an activity specified by a calendar entity.
54
+ type: 'Array'
55
+ rfc_ref: '4.8.1.10 pp 87-88'
56
+ status:
57
+ purpose: This property defines a short summary or subject for the calendar component.
58
+ rfc_ref: '4.8.1.11 pp 80-89'
59
+ summary:
60
+ purpose: This property defines a short summary or subject for the calendar component.
61
+ rfc_ref: '4.8.1.12 pp 89-90'
62
+ completed:
63
+ purpose: This property specifies the date and time that a to-do was actually completed.
64
+ type: DateTime
65
+ type_constraint: must_be_utc
66
+ rfc_ref: '4.8.2.1 pp 90-91'
67
+ dtend:
68
+ purpose: This property specifies the date and time that a calendar component ends.
69
+ type: date_time_or_date
70
+ rfc_ref: '4.8.2.2 pp 91-92'
71
+ due:
72
+ purpose: This property defines the date and time that a to-do is expected to be completed.
73
+ type: date_time_or_date
74
+ rfc_ref: '4.8.2.3 pp 92-93'
75
+ dtstart:
76
+ purpose: This property specifies when the calendar component begins.
77
+ type: date_time_or_date
78
+ rfc_ref: '4.8.2.4 pp 93-94'
79
+ duration:
80
+ purpose: This property specifies a positive duration of time.
81
+ type: Duration
82
+ rfc_ref: '4.8.2.5 pp 94-95'
83
+ freebusy:
84
+ purpose: This property defines one or more free or busy time intervals.
85
+ type: Period
86
+ type_constraint: must_be_utc
87
+ rfc_ref: '4.8.2.6 pp 95-96'
88
+ transp:
89
+ purpose: This property defines whether an event is transparent or not to busy time searches.
90
+ rfc_ref: '4.8.2.7 pp 96-97'
91
+ tzid:
92
+ purpose: This property specifies the text value that uniquely indentifies the "VTIMEZONE" calendar component.
93
+ rfc_ref: '4.8.3.1 pp 97-98'
94
+ tzname:
95
+ purpose: This property specifies the customary designation for a time zone description.
96
+ rfc_ref: '4.8.3.2 p 99'
97
+ tzoffsetfrom:
98
+ purpose: This property specifies the offset which is in use prior to this time zone observance
99
+ type: UtcOffset
100
+ rfc_ref: '4.8.3.3 pp 99-100'
101
+ tzoffsetto:
102
+ purpose: This property specifies the offset which is in use in this time zone observance
103
+ type: UtcOffset
104
+ rfc_ref: '4.8.3.4 pp 100-101'
105
+ tzurl:
106
+ purpose: The TZURL provies a means for a VTIMEZONE component to point to a network location that can be used to retrieve an up-to_date version of itself.
107
+ type: Uri
108
+ rfc_ref: '4.8.3.4 p 101'
109
+ attendee:
110
+ purpose: The property defines an 'Attendee' within a calendar component.
111
+ type: CalAddress
112
+ rfc_ref: '4.8.4.1 pp 102-104'
113
+ contact:
114
+ purpose: The property is used to represent contact information oralternately a reference to contact information associated with the calendar component.
115
+ rfc_ref: '4.8.4.2 pp 104-106'
116
+ organizer:
117
+ purpose: The property defines the organizer for a calendar component.
118
+ type: CalAddress
119
+ rfc_ref: '4.8.4.3 pp 106-107'
120
+ recurrence-id:
121
+ purpose: This property is used in conjunction with the "UID" and "SEQUENCE" property to identify a specific instance of a recurring "VEVENT", "VTODO" or "VJOURNAL" calendar component. The property value is the effective value of the "DTSTART" property of the recurrence instance.
122
+ type: date_time_or_date
123
+ rfc_ref: '4.8.4.4 pp 107-109'
124
+ related-to:
125
+ purpose: The property is used to represent a relationship or reference between one calendar component and another.
126
+ rfc_ref: '4.8.4.5 pp 109-110'
127
+ url:
128
+ purpose: This property defines a Uniform Resource Locator (URL) associated with the iCalendar object.
129
+ type: Uri
130
+ rfc_ref: '4.8.4.6 pp 110-111'
131
+ uid:
132
+ purpose: This property defines the persistent, globally unique identifier for the calendar component.
133
+ rfc_ref: '4.8.4.7 pp 111-112'
134
+ exdate:
135
+ purpose: This property defines the list of date/time exceptions for a recurring calendar component.
136
+ type: 'OccurrenceList'
137
+ rfc_ref: '4.8.5.1 pp 112-114'
138
+ exrule:
139
+ purpose: This property defines a rule or repeating pattern for an exception to a recurrence set.
140
+ type: 'RecurrenceRule'
141
+ rfc_ref: '4.8.5.2 pp 114-125'
142
+ rdate:
143
+ purpose: This property defines the list of date/times for a recurring calendar component.
144
+ type: 'OccurrenceList'
145
+ rfc_ref: '4.8.5.3 pp 115-117'
146
+ rrule:
147
+ purpose: This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions.
148
+ type: 'RecurrenceRule'
149
+ rfc_ref: '4.8.5.4 pp 117-125'
150
+ action:
151
+ purpose: This property defines the action to be invoked when an alarm is triggered
152
+ rfc_ref: '4.8.6.1 p 126'
153
+ repeat:
154
+ purpose: This property defines the number of times the alarm should be repeated, after the initial trigger.
155
+ type: Integer
156
+ rfc_ref: '4.8.6.2 p 126-127'
157
+ trigger:
158
+ purpose: This property specifies when an alarm will trigger.
159
+ type: Duration
160
+ rfc_ref: '4.8.6.3 p 127-129'
161
+ created:
162
+ purpose: This property specifies the date and time that the calendar information was created by teh calendar user agent in the calendar store.
163
+ type: ZuluDateTime
164
+ rfc_ref: '4.8.7.1 pp 129-130'
165
+ dtstamp:
166
+ purpose: This property indicates the date/time that the instance of the iCalendar object was created.
167
+ type: ZuluDateTime
168
+ auto_set: to_ical
169
+ rfc_ref: '4.8.7.2 pp 130-131'
170
+ last-modified:
171
+ purpose: This property specifies the date and time that the information associated with the calendar component was last revised in teh calendar store.
172
+ type: ZuluDateTime
173
+ rfc_ref: '4.8.7.3 p 131'
174
+ sequence:
175
+ purpose: This property defines the revision sequence number of the calendar component within a sequence of revisions.
176
+ type: Integer
177
+ auto_set: sequence_modifiers
178
+ rfc_ref: '4.8.7.4 pp 131-133'
179
+ request-status:
180
+ rfc_ref: '4.8.8.2 pp 134-136'
@@ -0,0 +1,45 @@
1
+ - class
2
+ - created
3
+ - description
4
+ - dtstart
5
+ - geo
6
+ - last-modified
7
+ - location
8
+ - organizer
9
+ - priority
10
+ - dtstamp
11
+ - sequence
12
+ - status
13
+ - summary
14
+ - transp
15
+ - uid
16
+ - url
17
+ - recurrence-id
18
+ - dtend:
19
+ conflicts_with: duration
20
+ - duration:
21
+ conflicts_with: dtend
22
+ - attach:
23
+ multi: *
24
+ - attendee:
25
+ multi: *
26
+ - categories:
27
+ multi: *
28
+ - comment:
29
+ multi: *
30
+ - contact:
31
+ multi: *
32
+ - exdate:
33
+ multi: *
34
+ - rdate:
35
+ multi: *
36
+ - exrule:
37
+ multi: *
38
+ - request-status:
39
+ multi: *
40
+ - related-to:
41
+ multi: *
42
+ - resources:
43
+ multi: *
44
+ - rrule:
45
+ multi: *
@@ -0,0 +1,16 @@
1
+ - contact
2
+ - dtstart
3
+ - dtend
4
+ - duration
5
+ - dtstamp
6
+ - organizer
7
+ - uid
8
+ - url
9
+ - attendee:
10
+ multi: *
11
+ - comment:
12
+ multi: *
13
+ - freebusy:
14
+ multi: *
15
+ - request-status:
16
+ multi: *
@@ -0,0 +1,35 @@
1
+ - class
2
+ - created
3
+ - description
4
+ - dtstart
5
+ - dtstamp
6
+ - last-modified
7
+ - organizer
8
+ - recurrence-id
9
+ - sequence
10
+ - status
11
+ - summary
12
+ - uid
13
+ - url
14
+ - attach:
15
+ multi: *
16
+ - attendee:
17
+ multi: *
18
+ - categories:
19
+ multi: *
20
+ - comment:
21
+ multi: *
22
+ - contact:
23
+ multi: *
24
+ - exdate:
25
+ multi: *
26
+ - exrule:
27
+ multi: *
28
+ - related-to:
29
+ multi: *
30
+ - rdate:
31
+ multi: *
32
+ - rrule:
33
+ multi: *
34
+ - request-status:
35
+ multi: *
@@ -0,0 +1,3 @@
1
+ - tzid
2
+ - last-modified
3
+ - tzurl
@@ -0,0 +1,11 @@
1
+ - dtstart
2
+ - tzoffsetto
3
+ - tzoffsetfrom
4
+ - comment:
5
+ multi: *
6
+ - rdate:
7
+ multi: *
8
+ - rrule:
9
+ multi: *
10
+ - tzname:
11
+ multi: *
@@ -0,0 +1,46 @@
1
+ - class
2
+ - completed
3
+ - created
4
+ - description
5
+ - dtstamp
6
+ - dtstart
7
+ - geo
8
+ - last-modified
9
+ - location
10
+ - organizer
11
+ - percent-complete
12
+ - priority
13
+ - recurrence-id
14
+ - sequence
15
+ - status
16
+ - summary
17
+ - uid
18
+ - url
19
+ - due:
20
+ conflicts_with: duration
21
+ - duration:
22
+ conflicts_with: due
23
+ - attach:
24
+ multi: *
25
+ - attendee:
26
+ multi: *
27
+ - categories:
28
+ multi: *
29
+ - comment:
30
+ multi: *
31
+ - contact:
32
+ multi: *
33
+ - exdate:
34
+ multi: *
35
+ - exrule:
36
+ multi: *
37
+ - request-status:
38
+ multi: *
39
+ - related-to:
40
+ multi: *
41
+ - resources:
42
+ multi: *
43
+ - rdate:
44
+ multi: *
45
+ - rrule:
46
+ multi: *
data/copyrights.txt ADDED
@@ -0,0 +1 @@
1
+ ©2009 Rick DeNatale, All rights reserved. Refer to the file README.txt for the license