mirror of
https://github.com/aluxnimm/outlookcaldavsynchronizer.git
synced 2026-04-25 11:05:56 +03:00
[GH-ISSUE #27] one yearly recurrence pattern is not implemented #19
Labels
No labels
1.0
1.0
1.0
2.0
Feature
Feature request
Google
Google Calendar
async
attachement
auto-migrated
auto-migrated
auto-migrated
bug
critical
enhancement
help wanted
implemented
pull-request
solved
solved
sourceforge
sourceforge
sourceforge
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/outlookcaldavsynchronizer#19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @aluxnimm on GitHub (Apr 7, 2015).
Original GitHub issue: https://github.com/aluxnimm/outlookcaldavsynchronizer/issues/27
Originally assigned to: @aluxnimm on GitHub.
e.g. every 2nd thursday in april every year
following code in MapRecurrance2To1 in case FrequencyType.Yearly fixes it:
...
Original comment by: aluxnimm
Original Ticket: outlookcaldavsynchronizer/20
@aluxnimm commented on GitHub (Apr 9, 2015):
Diff:
Original comment by: aluxnimm
@aluxnimm commented on GitHub (Apr 10, 2015):
Some more fixes for monthly and yearly patterns are needed.
Just the monthly or yearly pattern alone without day or dayofweek are valid e.g.
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
LAST-MODIFIED:20130129T141112Z
DTSTAMP:20130129T141112Z
UID:35475026-1869-47dd-839a-95f7088593c7
SUMMARY:Kontoauszug
RRULE:FREQ=MONTHLY;UNTIL=20121209T000000
DTSTART;VALUE=DATE:20100808
DTEND;VALUE=DATE:20100809
END:VEVENT
END:VCALENDAR
So the else part in the monthly and yearly cases should just set
the targetRecurrencePattern.RecurrenceType to Monthly or Yearly instead of warning about a not supported rule.
Original comment by: aluxnimm
@aluxnimm commented on GitHub (Apr 11, 2015):
Original comment by: aluxnimm