JavaScript-Ical-Parser
JavaScript-Ical-Parser copied to clipboard
Proof of concept Javascript ical (.ics) parser
This struggled with processing the .ics from homeaway.com. Their format is: ``` BEGIN:VEVENT UID:2739f1fd-dbb7-40f8-bf3c-a23ffcc30ae2 DTSTAMP:20180625T100336Z DTSTART;VALUE=DATE:20160124 DTEND;VALUE=DATE:20160224 SUMMARY:Reserved - Rennovations 3 END:VEVENT ``` I've made it work on my local...
Hi Carl, Unfortunately I can't get any output when I am using Apple iCalendar's .ics file. Do you have any time check it? I know that this is an old...
Fix for Apple Calendar, which uses TZID AFTER DTSTART: DTSTART;TZID=Europe/Budapest:20170429T100000
I needed to set the "withCredentials" parameter to true to be able to perform cross-domain requests. This addition does not change anything to the library signature and it is compatible...
Hi, I made some small changes (improvements?) to your JS iCal parser: 1. Dates are now parsed as UTC and converted to local time 2. Event time scope is now...
Hi, Great job on the parser algorithm. There is a small issue in the code with regards to setting dates for DTSTART and DTEND objects. The logic is doing a...