Questions tagged [rrule]

A rrule is used in the iCal format to specify rules for recurring events.

A rrule is used in the iCal format to specify rules for recurring events. Its description can be found here: RFC 5545

241 questions
0
votes
1 answer

rrule weekly for three weeks, then one week not, repeat

I'm using rrule from python dateutil and don't know how to create an rruleset for the following example: Monday, three weeks in a row. Then a week not, then again three weeks in a row, one not, and so on. Any advice on creating an rrule(set) for…
Muling
  • 13
  • 3
0
votes
2 answers

iCalendar YEARLY rrule without BYMONTH value

I am building something that takes an icalendar event and calculate all occurrences of a repeating event. I have discovered a problem which returns me a few YEARLY events every month. Those event has a yearly frequency but only have bymonthday…
maxi C
  • 142
  • 1
  • 13
0
votes
1 answer

How to list / extract all the recurring events from the ics file from RRULE in Android?

I am developing an application which reads all the events from the calendar.ics file and then display all the events. My code works fine with individual events and i am able to extract all the events from the file because it contains all the events.…
0
votes
1 answer

parsing recurrence Google Calendar API

I'm trying to create small web app which will work with user Google Calendar data. Everything works fine except getting start datetime for events with 'recurrence' in item.keys(). Question: How can I get start time of event from given data: {'kind':…
gasabr
  • 55
  • 3
  • 9
0
votes
2 answers

EWS recurrence meeting, can I use a recurrence rule (RRULE)?

I'm trying out the EWS managed API for creating a recurring meeting. Is it possible to define the recurrence pattern through a Recurrence Rule (RRULE)?
0
votes
1 answer

Android google calendar deleting future instances of recurring event

I'm trying to delete future instances of a google calendar recurring (repeated) event pro-grammatically using content resolver. And to do this i have updated the rRule of the event , so for example if want to delete future instances of an event…
0
votes
1 answer

How to find a Friday after last Wednesday of month?

What iCal RRULE expression should I use to find a Friday after last Wednesday of month? So I need (RRULE:FREQ=MONTHLY;BYDAY=-1WE) + 2 days...
0
votes
1 answer

PHP - Getting the next occurrence of a date between a period

I'm working with icalendar events that make use of RRULE to deal with repetitions; Now, i'm aware that the are some php class like When and RRules etc.. to handle RRULE and i'm already using it, to accomplish the task of generating repeating…
Julie Rokk
  • 560
  • 1
  • 7
  • 17
0
votes
1 answer

Can an rrule (RFC5545) be defined for an event that repeats every 2 weeks from a start day/month to an end day/month, every year?

Example: Repeat every 2nd week on Mondays every year between January 15th and May 10th.
Quirion
  • 119
  • 10
0
votes
1 answer

Changes to recurring allday events not sent from iCal

I'm running a sabre CalDAV server and I'm using iCal on Yosemite as a client. Now, I create an allday recurring event in iCal and use the Charles Proxy to check the body of the request, that is sent from iCal. Creating the event it sends correct…
0
votes
1 answer

iCal rrule for two different lengths

I want to enter an event in my calendar that runs on Monday and Tuesdays from 8-3 and Saturdays from 8-12 every week. My app is supporting rrule's. Is it possible to pack that into a single rrule? If it would be only the weekdays, then the rule…
Laoneo
  • 1,546
  • 1
  • 18
  • 25
0
votes
1 answer

RRULE (rfc 5545) until and count

I'm having trouble understanding the rfc5545 concerning the the until and count. From what I understand, UNTIL and COUNT cannot be in the same recur rule according to this part of the RFC: Value Name: RECUR Purpose: This value type is used to…
Nico
  • 6,395
  • 4
  • 25
  • 34
0
votes
1 answer

iCal in Google Calendar; rrule: every other weekday

My wife (teacher) teaches every other weekday. Is it possible to make a recurrence rule that covers that? I tried: RRULE:FREQ=WEEKLY;INTERVAL=2;COUNT=5;BYDAY=MO,WE,FR,TU,TH ...but that didn't work. It just did every day, every other week.
0
votes
2 answers

Creating RRULE for local timezone in iOS

RRULE requires specific information for when timezone changes between standard and daylight time. This information originally comes from the Olson database, and I suspect that it is available in the data property of the NSTimeZone class. But how do…
Victor Engel
  • 2,037
  • 2
  • 25
  • 46
0
votes
1 answer

Java code to use Ical rrule and generate next recurrence date

I need a java code snippet to parse ICal rrule and generate the next recurrence date. There is a Java library specifically for parsing RRULEs called google-rfc-2445. The following link contains an example using the library where you supply a start…
Abhishek2k6
  • 425
  • 5
  • 9
1 2 3
15
16