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
2 answers

How to work with RRULE datetime series and arbitrary, non-RRULE datetime series coherently in one application

How to generate an RRULE (any RRULE, no matter how supoptimal) from a series of dates— or, failing that, to use RRULE-defined dates in an easily compatible way with lists of dates. In other words, how to deal with arbitrary lists of dates that…
mlncn
  • 3,308
  • 2
  • 23
  • 20
0
votes
0 answers

Can't integratie rrule js

I am trying to use rrule js: https://jakubroztocil.github.io/rrule/ https://github.com/jakubroztocil/rrule But I can't get it to work at all. How has this script to be used in a regular web project? I've integrated the script as mentioned on github…
GDY
  • 2,872
  • 1
  • 24
  • 44
0
votes
1 answer

Is it possible to use rrule(freq, count, byeaster) with an orthodox method of easter?

Is it possible to change the method of byeaster in dateutil.rrule.rrule(freq, count, byeaster) somehow? I need to use the orthodox one, which is like dateutil.easter.easter(year, method=2) instead of default dateutil.easter.easter(year,…
Tor_Gash
  • 164
  • 1
  • 9
0
votes
0 answers

problems with displaying recurring events in fullcalendar using rrule plugin npm in visual studio core app

Recurring events do not seem to appear on the calendar, single events do appear in c# core app. Ive installed rrule via npm in visual studio 2017 (recurring events do appear when i try in scripts tags as described below How to implement recurring…
Gino
  • 39
  • 1
  • 8
0
votes
2 answers

iCalendar recurrence rule for event to run: every two weeks, on Mondays and Wednesdays, each 30 minutes within a day of event?

I need to schedule an event in a form of iCalendar (RFC5545) rrule. The event should be fired: every two weeks, on Mondays and Wednesdays, every 30 minutes within a day of event. So far I created this rrule…
Dmitry Mishin
  • 37
  • 1
  • 7
0
votes
2 answers

In Dart get next occurring date from an rrule

Is there a Dart library or, lacking one, a correct way to handle finding the next date that would be returned from a correctly formatted rrule? For example give the following rule: "FREQ=WEEKLY;BYDAY=WE;INTERVAL=1;DTSTART=20180328T160000Z" I would…
dwax
  • 381
  • 7
  • 19
0
votes
1 answer

how to add recurring events on Fullcalendar v3.6 in Angular 5

I am using Fullcalendar v 3.6 in Angular5. I am getting the Rrule as shown in this image My code is, showEvents(events: any) {debugger let calendarOptions: Object; let newEvents = []; this.eventSource.map((event) => { event.title…
Rohit Borude
  • 218
  • 1
  • 3
  • 10
0
votes
2 answers

FullCalendar V4 - How to account for shorter months in a recurring event series?

I'm using FullCalendar v4-alpha-3 with the RRule plugin to generate recurring events. It works as expected with only one problem: how do I modify a recurring event to account for months with fewer days than the starting month in a series? For…
TPM
  • 69
  • 8
0
votes
2 answers

Is there a way to create a rrule for recurrent events that only fall into weekdays?

I am trying to user google calendar api to schedule events, they have different recurrency types type1: weekly type2: every 14 days type3: every 28 days type4: every 42 days type5: every 56 days The problem is: if the 56th day falls on the…
fweffort
  • 75
  • 9
0
votes
1 answer

Python iterator: use every consecutive entry as start and end

I want to find the weeks between two dates and iterate over them. I would like to have every consecutive entry as start and end. For instance, the list with indexes 0,1,2,3,... , I will have start date is the content of index 0 and end date the…
Louis
  • 1,265
  • 1
  • 15
  • 22
0
votes
1 answer

Can't render recurring events using rrule plugin in fullcalendar

I'm trying to render reccurring events in Angular using fullcalendar 4.0.0-alpha2 and RRULE. angular.json: "scripts": [ "node_modules/fullcalendar/dist/fullcalendar.js", "node_modules/rrule/dist/es5/rrule.js", …
Yozki
  • 73
  • 1
  • 2
  • 13
0
votes
1 answer

How to generate RRULE for recurring events with multiple BYSETPOS values?

I'm trying to define a RRULE for an event which occurs on the first and second Monday and Tuesday of each month. This would equal four event occurrences per month. I thought this was correct: FREQ=MONTHLY;INTERVAL=1;BYSETPOS=1,2;BYDAY=MO,TU But…
Ryan Griggs
  • 2,457
  • 2
  • 35
  • 58
0
votes
1 answer

RRULE bug? only first item in list is used to generate occurrences

I am attempting to generate lists of occurrences for a specified RRULE in PHP using a couple of different libraries (When and RRule). The RRule specification (also see this) indicates we can specify multiple items separated by commas for most…
Ryan Griggs
  • 2,457
  • 2
  • 35
  • 58
0
votes
1 answer

Generating rrules based on certain timezones

Let's say I have a user of my application set a recurring event. His timezone is America/Denver, so I store that along with an rrule that determines when the recurrences happen. This works assuming that both my server and all of my users are in the…
Turner Houghton
  • 496
  • 6
  • 16
0
votes
2 answers

RRULE for first Advent

I am currently trying to setup my own holiday iCalendar to which I can subscribe on, since I don't want to depend on 3rd party services. I am currently trying to make the the VEVENTs for Christmas. The 2nd, 3rd and 4th advent, as well as the…
CharlyDelta
  • 938
  • 11
  • 31