Tagged Questions
The rrule tag has no wiki summary.
4
votes
2answers
678 views
Looking for JavaScript lib that implements RRULE (iCalendar RFC 5545)
I am looking for a good iCalendar RFC 5545 processing library (open source / GPL compatible) that has been implemented in JaavScript. My current interest is a js library that fully implements the ...
3
votes
1answer
584 views
dateutil.rrule.rrule.between() gives only dates after now
from ipython console:
In [16]: b
Out[16]: datetime.datetime(2008, 3, 1, 0, 0)
In [17]: e
Out[17]: datetime.datetime(2010, 5, 2, 0, 0)
In [18]: rrule(MONTHLY).between(b, e, inc=True)
Out[18]:
...
1
vote
1answer
124 views
Recurring events on a calendar : RFC 5545 Javascript parsing
I need to integrate recurring events into an adapted version of full-calendar that has an added javascript module which allows offline event browsing.
I'm looking for a javascript library that can ...
1
vote
2answers
133 views
iCal event repeat set to M,W,F - showing up as S,T,R!
I have an iCal event specified in UTC with repeats. Everything appears to be output properly, yet iCal clients are flailing: the repeat pattern is M,W,F but the start date (translated to UTC) is a ...
0
votes
0answers
13 views
Internationalizing recurring calendar event descriptions?
Does anyone know of a solution or strategy for translating structured data for recurring events (rrules) into any given language?
RRules are part of the iCalendar spec about storing recurring event ...
0
votes
1answer
22 views
Programatically translating recurring calendar events?
Does anyone know of a solution or strategy for parsing and translating recurring events in any given language?
I've got some code that sort of works, but I'm having trouble even wrapping my brain ...
0
votes
2answers
128 views
JAVA created ical meeting doesn't show in outlook calendar when accepted
With the iCal format, what could cause a meeting invite to successfully be sent to a user, but prevent that meeting from appearing in the user's calendar if it is accepted?
I'm working on a new ...
0
votes
0answers
85 views
Using dateutil rrules, how to specify byhour argument to end before half-past hour?
I am making a calendar django app with the excellent django-schedule lib. In order to determine an event recurrence, I need to generate datetimes that fall within 8:00 and 9:30 every Friday and ...
0
votes
1answer
590 views
How should I update an iCal RRULE when moving an appointment?
I'm switching my app's calendar from Telerik Scheduler to jQuery fullcalendar. I'm storing recurring events in the db using iCal RRULEs.
The question is, when someone drags an event to a new date, ...
0
votes
1answer
538 views
expanding recurrence data of iCalendar
I'm in middle of creating calendar app. for iPhone.
I get calendar events from google calendars (without expanding recurrence)
Then tried to expand recurrence events by writing codes from scratch.
I ...