@@ -1,2 +1,3 @@
|
||||
node_modules/
|
||||
bower_components/
|
||||
.DS_Store
|
||||
|
||||
@@ -17,6 +17,23 @@ Simply use invoke the object and use the functions...
|
||||
`begin` and `end` need to be formatted in a way that is friendly to `Date()`
|
||||
|
||||
|
||||
Recurring Events
|
||||
----------------
|
||||
Recurring events can be added with the `rrule` object.
|
||||
|
||||
`cal.addEvent(subject, description, location, begin, end, rrule)`
|
||||
|
||||
The `rrule` object has the following properties:
|
||||
|
||||
- `freq` : __Required.__ The frequency of event recurrence. Can be `DAILY`, `WEEKLY`, `MONTHLY`, or `YEARLY`.
|
||||
- `until` : A date string representing the date on which to end repitition. Must be friendly to `Date()`
|
||||
- `count` : Alternative to until. Repeat the event `count` times. Must be an integer
|
||||
- `interval` : The interval of `freq` to recur at. For example, if `freq` is `WEEKLY` and `interval` is `2`, the event will repeat every 2 weeks. Must be an integer.
|
||||
- `byday` : Which days of the week the event is to occur. An array containing any of `SU`, `MO`, `TU`, `WE`, `TH`, `FR`, `SA`.
|
||||
|
||||
The four properties described above are not exhaustive of recurrence rule capabilities. If extra functionality is required, you can set the `rrule.rule` property to a full recurrence rule string. In this case, none of the four properties described above are necessary. See [this page](http://www.kanzaki.com/docs/ical/rrule.html) for a description of recurrence rules.
|
||||
|
||||
|
||||
Example
|
||||
-------
|
||||
* **[Demo](http://htmlpreview.github.io/?https://github.com/nwcell/ics.js/blob/master/demo/demo.html)**
|
||||
@@ -25,7 +42,7 @@ Example
|
||||
<script>
|
||||
var cal = ics();
|
||||
cal.addEvent('Demo Event', 'This is an all day event', 'Nome, AK', '8/7/2013', '8/7/2013');
|
||||
cal.addEvent('Demo Event', 'This is thirty minut event', 'Nome, AK', '8/7/2013 5:30 pm', '8/9/2013 6:00 pm');
|
||||
cal.addEvent('Demo Event', 'This is thirty minute event', 'Nome, AK', '8/7/2013 5:30 pm', '8/7/2013 6:00 pm');
|
||||
</script>
|
||||
<a href="javascript:cal.download()">Demo</a>
|
||||
```
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
@@ -16,6 +16,7 @@ var ics = function() {
|
||||
'VERSION:2.0'
|
||||
].join(SEPARATOR);
|
||||
var calendarEnd = SEPARATOR + 'END:VCALENDAR';
|
||||
var BYDAY_VALUES = ['SU', 'MO', 'TU', 'WE', 'TH', 'FR', 'SA'];
|
||||
|
||||
return {
|
||||
/**
|
||||
@@ -42,7 +43,7 @@ var ics = function() {
|
||||
* @param {string} begin Beginning date of event
|
||||
* @param {string} stop Ending date of event
|
||||
*/
|
||||
'addEvent': function(subject, description, location, begin, stop) {
|
||||
'addEvent': function(subject, description, location, begin, stop, rrule) {
|
||||
// I'm not in the mood to make these optional... So they are all required
|
||||
if (typeof subject === 'undefined' ||
|
||||
typeof description === 'undefined' ||
|
||||
@@ -51,7 +52,55 @@ var ics = function() {
|
||||
typeof stop === 'undefined'
|
||||
) {
|
||||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
// validate rrule
|
||||
if (rrule) {
|
||||
if (!rrule.rule) {
|
||||
if (rrule.freq !== 'YEARLY' && rrule.freq !== 'MONTHLY' && rrule.freq !== 'WEEKLY' && rrule.freq !== 'DAILY') {
|
||||
throw "Recurrence rule frequency must be provided and be one of the following: 'YEARLY', 'MONTHLY', 'WEEKLY', or 'DAILY'";
|
||||
}
|
||||
|
||||
if (rrule.until) {
|
||||
if (isNaN(Date.parse(rrule.until))) {
|
||||
throw "Recurrence rule 'until' must be a valid date string";
|
||||
}
|
||||
}
|
||||
|
||||
if (rrule.interval) {
|
||||
if (isNaN(parseInt(rrule.interval))) {
|
||||
throw "Recurrence rule 'interval' must be an integer";
|
||||
}
|
||||
}
|
||||
|
||||
if (rrule.count) {
|
||||
if (isNaN(parseInt(rrule.count))) {
|
||||
throw "Recurrence rule 'count' must be an integer";
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof rrule.byday !== 'undefined') {
|
||||
if ( (Object.prototype.toString.call(rrule.byday) !== '[object Array]') ) {
|
||||
throw "Recurrence rule 'byday' must be an array";
|
||||
}
|
||||
|
||||
if (rrule.byday.length > 7) {
|
||||
throw "Recurrence rule 'byday' array must not be longer than the 7 days in a week";
|
||||
}
|
||||
|
||||
// Filter any possible repeats
|
||||
rrule.byday = rrule.byday.filter(function(elem, pos) {
|
||||
return rrule.byday.indexOf(elem) == pos;
|
||||
});
|
||||
|
||||
for (var d in rrule.byday) {
|
||||
if (BYDAY_VALUES.indexOf(rrule.byday[d]) < 0) {
|
||||
throw "Recurrence rule 'byday' values must include only the following: 'SU', 'MO', 'TU', 'WE', 'TH', 'FR', 'SA'";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//TODO add time and time zone? use moment to format?
|
||||
var start_date = new Date(begin);
|
||||
@@ -62,19 +111,19 @@ var ics = function() {
|
||||
var start_day = ("00" + ((start_date.getDate()).toString())).slice(-2);
|
||||
var start_hours = ("00" + (start_date.getHours().toString())).slice(-2);
|
||||
var start_minutes = ("00" + (start_date.getMinutes().toString())).slice(-2);
|
||||
var start_seconds = ("00" + (start_date.getMinutes().toString())).slice(-2);
|
||||
var start_seconds = ("00" + (start_date.getSeconds().toString())).slice(-2);
|
||||
|
||||
var end_year = ("0000" + (end_date.getFullYear().toString())).slice(-4);
|
||||
var end_month = ("00" + ((end_date.getMonth() + 1).toString())).slice(-2);
|
||||
var end_day = ("00" + ((end_date.getDate()).toString())).slice(-2);
|
||||
var end_hours = ("00" + (end_date.getHours().toString())).slice(-2);
|
||||
var end_minutes = ("00" + (end_date.getMinutes().toString())).slice(-2);
|
||||
var end_seconds = ("00" + (end_date.getMinutes().toString())).slice(-2);
|
||||
var end_seconds = ("00" + (end_date.getSeconds().toString())).slice(-2);
|
||||
|
||||
// Since some calendars don't add 0 second events, we need to remove time if there is none...
|
||||
var start_time = '';
|
||||
var end_time = '';
|
||||
if (start_minutes + start_seconds + end_minutes + end_seconds != 0) {
|
||||
if (start_minutes + start_seconds + end_minutes + end_seconds !== 0) {
|
||||
start_time = 'T' + start_hours + start_minutes + start_seconds;
|
||||
end_time = 'T' + end_hours + end_minutes + end_seconds;
|
||||
}
|
||||
@@ -82,17 +131,53 @@ var ics = function() {
|
||||
var start = start_year + start_month + start_day + start_time;
|
||||
var end = end_year + end_month + end_day + end_time;
|
||||
|
||||
// recurrence rule vars
|
||||
var rruleString;
|
||||
if (rrule) {
|
||||
if (rrule.rule) {
|
||||
rruleString = rrule.rule;
|
||||
} else {
|
||||
rruleString = 'RRULE:FREQ=' + rrule.freq;
|
||||
|
||||
if (rrule.until) {
|
||||
var uDate = new Date(Date.parse(rrule.until)).toISOString();
|
||||
rruleString += ';UNTIL=' + uDate.substring(0, uDate.length - 13).replace(/[-]/g, '') + '000000Z';
|
||||
}
|
||||
|
||||
if (rrule.interval) {
|
||||
rruleString += ';INTERVAL=' + rrule.interval;
|
||||
}
|
||||
|
||||
if (rrule.count) {
|
||||
rruleString += ';COUNT=' + rrule.count;
|
||||
}
|
||||
|
||||
if (rrule.byday && rrule.byday.length > 0) {
|
||||
rruleString += ';BYDAY=' + rrule.byday.join(',');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var stamp = new Date().toISOString();
|
||||
|
||||
var calendarEvent = [
|
||||
'BEGIN:VEVENT',
|
||||
'CLASS:PUBLIC',
|
||||
'DESCRIPTION:' + description,
|
||||
'DTSTART;VALUE=DATE:' + start,
|
||||
'DTEND;VALUE=DATE:' + end,
|
||||
'DESCRIPTION:' + description.replace('\r\n', '\\n'),
|
||||
'DTSTART:' + start,
|
||||
'DTEND:' + end,
|
||||
'DTSTAMP:' + stamp.substring(0, stamp.length - 13).replace(/[-]/g, '') + '000000Z',
|
||||
'LOCATION:' + location,
|
||||
'SUMMARY;LANGUAGE=en-us:' + subject,
|
||||
'TRANSP:TRANSPARENT',
|
||||
'END:VEVENT'
|
||||
].join(SEPARATOR);
|
||||
];
|
||||
|
||||
if (rruleString) {
|
||||
calendarEvent.splice(4, 0, rruleString);
|
||||
}
|
||||
|
||||
calendarEvent = calendarEvent.join(SEPARATOR);
|
||||
|
||||
calendarEvents.push(calendarEvent);
|
||||
return calendarEvent;
|
||||
|
||||
Vendored
+2
-2
@@ -1,2 +1,2 @@
|
||||
/*! ics.js March 11, 2014 */
|
||||
var ics=function(){"use strict";if(navigator.userAgent.indexOf("MSIE")>-1&&navigator.userAgent.indexOf("MSIE 10")==-1){console.log("Unsupported Browser");return}var e=navigator.appVersion.indexOf("Win")!==-1?"\r\n":"\n";var t=[];var n=["BEGIN:VCALENDAR","VERSION:2.0"].join(e);var r=e+"END:VCALENDAR";return{events:function(){return t},calendar:function(){return n+e+t.join(e)+r},addEvent:function(n,r,i,s,o){if(typeof n==="undefined"||typeof r==="undefined"||typeof i==="undefined"||typeof s==="undefined"||typeof o==="undefined"){return false}var u=new Date(s);var a=new Date(o);var f=("0000"+u.getFullYear().toString()).slice(-4);var l=("00"+(u.getMonth()+1).toString()).slice(-2);var c=("00"+u.getDate().toString()).slice(-2);var h=("00"+u.getHours().toString()).slice(-2);var p=("00"+u.getMinutes().toString()).slice(-2);var d=("00"+u.getMinutes().toString()).slice(-2);var v=("0000"+a.getFullYear().toString()).slice(-4);var m=("00"+(a.getMonth()+1).toString()).slice(-2);var g=("00"+a.getDate().toString()).slice(-2);var y=("00"+a.getHours().toString()).slice(-2);var b=("00"+a.getMinutes().toString()).slice(-2);var w=("00"+a.getMinutes().toString()).slice(-2);var E="";var S="";if(p+d+b+w!=0){E="T"+h+p+d;S="T"+y+b+w}var x=f+l+c+E;var T=v+m+g+S;var N=["BEGIN:VEVENT","CLASS:PUBLIC","DESCRIPTION:"+r,"DTSTART;VALUE=DATE:"+x,"DTEND;VALUE=DATE:"+T,"LOCATION:"+i,"SUMMARY;LANGUAGE=en-us:"+n,"TRANSP:TRANSPARENT","END:VEVENT"].join(e);t.push(N);return N},download:function(i,s){if(t.length<1){return false}s=typeof s!=="undefined"?s:".ics";i=typeof i!=="undefined"?i:"calendar";var o=n+e+t.join(e)+r;var u;if(navigator.userAgent.indexOf("MSIE 10")===-1){u=new Blob([o])}else{var a=new BlobBuilder;a.append(o);u=a.getBlob("text/x-vCalendar;charset="+document.characterSet)}saveAs(u,i+s);return o}}}
|
||||
/*! ics.js Wed Aug 20 2014 17:23:02 */
|
||||
var ics=function(){"use strict";if(navigator.userAgent.indexOf("MSIE")>-1&&-1==navigator.userAgent.indexOf("MSIE 10"))return void console.log("Unsupported Browser");var a=-1!==navigator.appVersion.indexOf("Win")?"\r\n":"\n",b=[],c=["BEGIN:VCALENDAR","VERSION:2.0"].join(a),d=a+"END:VCALENDAR",e=["SU","MO","TU","WE","TH","FR","SA"];return{events:function(){return b},calendar:function(){return c+a+b.join(a)+d},addEvent:function(c,d,f,g,h,i){if("undefined"==typeof c||"undefined"==typeof d||"undefined"==typeof f||"undefined"==typeof g||"undefined"==typeof h)return!1;if(i&&!i.rule){if("YEARLY"!==i.freq&&"MONTHLY"!==i.freq&&"WEEKLY"!==i.freq&&"DAILY"!==i.freq)throw"Recurrence rule frequency must be provided and be one of the following: 'YEARLY', 'MONTHLY', 'WEEKLY', or 'DAILY'";if(i.until&&isNaN(Date.parse(i.until)))throw"Recurrence rule 'until' must be a valid date string";if(i.interval&&isNaN(parseInt(i.interval)))throw"Recurrence rule 'interval' must be an integer";if(i.count&&isNaN(parseInt(i.count)))throw"Recurrence rule 'count' must be an integer";if("undefined"!=typeof i.byday){if("[object Array]"!==Object.prototype.toString.call(i.byday))throw"Recurrence rule 'byday' must be an array";if(i.byday.length>7)throw"Recurrence rule 'byday' array must not be longer than the 7 days in a week";i.byday=i.byday.filter(function(a,b){return i.byday.indexOf(a)==b});for(var j in i.byday)if(e.indexOf(i.byday[j])<0)throw"Recurrence rule 'byday' values must include only the following: 'SU', 'MO', 'TU', 'WE', 'TH', 'FR', 'SA'"}}var k=new Date(g),l=new Date(h),m=("0000"+k.getFullYear().toString()).slice(-4),n=("00"+(k.getMonth()+1).toString()).slice(-2),o=("00"+k.getDate().toString()).slice(-2),p=("00"+k.getHours().toString()).slice(-2),q=("00"+k.getMinutes().toString()).slice(-2),r=("00"+k.getMinutes().toString()).slice(-2),s=("0000"+l.getFullYear().toString()).slice(-4),t=("00"+(l.getMonth()+1).toString()).slice(-2),u=("00"+l.getDate().toString()).slice(-2),v=("00"+l.getHours().toString()).slice(-2),w=("00"+l.getMinutes().toString()).slice(-2),x=("00"+l.getMinutes().toString()).slice(-2),y="",z="";q+r+w+x!==0&&(y="T"+p+q+r,z="T"+v+w+x);var A,B=m+n+o+y,C=s+t+u+z;if(i)if(i.rule)A=i.rule;else{if(A="RRULE:FREQ="+i.freq,i.until){var D=new Date(Date.parse(i.until)).toISOString();A+=";UNTIL="+D.substring(0,D.length-13).replace(/[-]/g,"")+"000000Z"}i.interval&&(A+=";INTERVAL="+i.interval),i.count&&(A+=";COUNT="+i.count),i.byday&&i.byday.length>0&&(A+=";BYDAY="+i.byday.join(","))}var E=(new Date).toISOString(),F=["BEGIN:VEVENT","CLASS:PUBLIC","DESCRIPTION:"+d,"DTSTART:"+B,"DTEND:"+C,"DTSTAMP:"+E.substring(0,E.length-13).replace(/[-]/g,"")+"000000Z","LOCATION:"+f,"SUMMARY;LANGUAGE=en-us:"+c,"TRANSP:TRANSPARENT","END:VEVENT"];return A&&F.splice(4,0,A),F=F.join(a),b.push(F),F},download:function(e,f){if(b.length<1)return!1;f="undefined"!=typeof f?f:".ics",e="undefined"!=typeof e?e:"calendar";var g,h=c+a+b.join(a)+d;if(-1===navigator.userAgent.indexOf("MSIE 10"))g=new Blob([h]);else{var i=new BlobBuilder;i.append(h),g=i.getBlob("text/x-vCalendar;charset="+document.characterSet)}return saveAs(g,e+f),h}}};
|
||||
+30
-4
@@ -2,6 +2,10 @@
|
||||
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
var stamp = new Date().toISOString();
|
||||
stamp = stamp.substring(0, stamp.length - 13).replace(/[-]/g, '') + '000000Z';
|
||||
|
||||
describe('Load ics Object', function () {
|
||||
describe('Calendar Events Array', function () {
|
||||
it('should be an empty array initially', function () {
|
||||
@@ -21,25 +25,47 @@
|
||||
cal.addEvent('Christmas', 'Christian holiday celebrating the birth of Jesus Christ', 'Bethlehem', '12/25/2013', '12/25/2013');
|
||||
assert.isArray(cal.events(), 'calendarEvents not an array');
|
||||
assert.lengthOf(cal.events(), '1');
|
||||
assert.strictEqual(cal.events()[0], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Christian holiday celebrating the birth of Jesus Christ\nDTSTART;VALUE=DATE:20131225\nDTEND;VALUE=DATE:20131225\nLOCATION:Bethlehem\nSUMMARY;LANGUAGE=en-us:Christmas\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
assert.strictEqual(cal.events()[0], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Christian holiday celebrating the birth of Jesus Christ\nDTSTART:20131225T000000\nDTEND:20131225T000000\nDTSTAMP:' + stamp + '\nLOCATION:Bethlehem\nSUMMARY;LANGUAGE=en-us:Christmas\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
});
|
||||
describe('Calendar String', function () {
|
||||
it('should have one event', function () {
|
||||
assert.strictEqual(cal.calendar(), 'BEGIN:VCALENDAR\nVERSION:2.0\nBEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Christian holiday celebrating the birth of Jesus Christ\nDTSTART;VALUE=DATE:20131225\nDTEND;VALUE=DATE:20131225\nLOCATION:Bethlehem\nSUMMARY;LANGUAGE=en-us:Christmas\nTRANSP:TRANSPARENT\nEND:VEVENT\nEND:VCALENDAR', 'calendar does not match');
|
||||
assert.strictEqual(cal.calendar(), 'BEGIN:VCALENDAR\nVERSION:2.0\nBEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Christian holiday celebrating the birth of Jesus Christ\nDTSTART:20131225T000000\nDTEND:20131225T000000\nDTSTAMP:' + stamp + '\nLOCATION:Bethlehem\nSUMMARY;LANGUAGE=en-us:Christmas\nTRANSP:TRANSPARENT\nEND:VEVENT\nEND:VCALENDAR', 'calendar does not match');
|
||||
});
|
||||
});
|
||||
describe('Calendar String of Single Digit Months', function () {
|
||||
it('should have one event', function () {
|
||||
cal.addEvent('Easter', 'Christian holiday celebrating the resurrection of Jesus Christ', 'Jerusalem', '04/20/2014', '04/20/2014');
|
||||
assert.strictEqual(cal.events()[1], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Christian holiday celebrating the resurrection of Jesus Christ\nDTSTART;VALUE=DATE:20140420\nDTEND;VALUE=DATE:20140420\nLOCATION:Jerusalem\nSUMMARY;LANGUAGE=en-us:Easter\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
assert.strictEqual(cal.events()[1], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Christian holiday celebrating the resurrection of Jesus Christ\nDTSTART:20140420T000000\nDTEND:20140420T000000\nDTSTAMP:' + stamp + '\nLOCATION:Jerusalem\nSUMMARY;LANGUAGE=en-us:Easter\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
});
|
||||
describe('Calendar String of Single Digit Day', function () {
|
||||
it('should have one event', function () {
|
||||
cal.addEvent('April Fools Day', 'What isn\'t is', 'America', '4/1/2014', '4/1/2014');
|
||||
assert.strictEqual(cal.events()[2], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:What isn\'t is\nDTSTART;VALUE=DATE:20140401\nDTEND;VALUE=DATE:20140401\nLOCATION:America\nSUMMARY;LANGUAGE=en-us:April Fools Day\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
assert.strictEqual(cal.events()[2], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:What isn\'t is\nDTSTART:20140401T000000\nDTEND:20140401T000000\nDTSTAMP:' + stamp + '\nLOCATION:America\nSUMMARY;LANGUAGE=en-us:April Fools Day\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
});
|
||||
|
||||
describe('Recurring Events', function () {
|
||||
it('should add recurring events using frequency and until', function () {
|
||||
cal.addEvent('Soccer Practice', 'Practice kicking the ball in the net! YAYY!!', 'Soccer field', '08/18/2014', '09/18/2014', {freq: 'WEEKLY', until: '08/18/2014'});
|
||||
assert.strictEqual(cal.events()[3], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Practice kicking the ball in the net! YAYY!!\nDTSTART:20140818T000000\nRRULE:FREQ=WEEKLY;UNTIL=20140818T000000Z\nDTEND:20140918T000000\nDTSTAMP:' + stamp + '\nLOCATION:Soccer field\nSUMMARY;LANGUAGE=en-us:Soccer Practice\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
|
||||
it('should add recurring events using interval and count', function () {
|
||||
cal.addEvent('Soccer Practice', 'Practice kicking the ball in the net! YAYY!!', 'Soccer field', '08/18/2014', '09/18/2014', {freq: 'WEEKLY', interval: 2, count: 10});
|
||||
assert.strictEqual(cal.events()[4], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Practice kicking the ball in the net! YAYY!!\nDTSTART:20140818T000000\nRRULE:FREQ=WEEKLY;INTERVAL=2;COUNT=10\nDTEND:20140918T000000\nDTSTAMP:' + stamp + '\nLOCATION:Soccer field\nSUMMARY;LANGUAGE=en-us:Soccer Practice\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
|
||||
it('should add recurring events using interval and until and byday', function () {
|
||||
cal.addEvent('Soccer Practice', 'Practice kicking the ball in the net! YAYY!!', 'Soccer field', '08/18/2014', '09/18/2014', {freq: 'WEEKLY', interval: 1, until: '08/18/2014', byday: ['MO','WE','FR']});
|
||||
assert.strictEqual(cal.events()[5], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Practice kicking the ball in the net! YAYY!!\nDTSTART:20140818T000000\nRRULE:FREQ=WEEKLY;UNTIL=20140818T000000Z;INTERVAL=1;BYDAY=MO,WE,FR\nDTEND:20140918T000000\nDTSTAMP:' + stamp + '\nLOCATION:Soccer field\nSUMMARY;LANGUAGE=en-us:Soccer Practice\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
|
||||
it('should add recurring events using interval and until and ignore duplicates in byday array', function () {
|
||||
cal.addEvent('Soccer Practice', 'Practice kicking the ball in the net! YAYY!!', 'Soccer field', '08/18/2014', '09/18/2014', {freq: 'WEEKLY', interval: 1, until: '08/18/2014', byday: ['MO', 'WE', 'MO']});
|
||||
assert.strictEqual(cal.events()[6], 'BEGIN:VEVENT\nCLASS:PUBLIC\nDESCRIPTION:Practice kicking the ball in the net! YAYY!!\nDTSTART:20140818T000000\nRRULE:FREQ=WEEKLY;UNTIL=20140818T000000Z;INTERVAL=1;BYDAY=MO,WE\nDTEND:20140918T000000\nDTSTAMP:' + stamp + '\nLOCATION:Soccer field\nSUMMARY;LANGUAGE=en-us:Soccer Practice\nTRANSP:TRANSPARENT\nEND:VEVENT');
|
||||
});
|
||||
});
|
||||
});
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user