icalendar

data:text/calendar not recognized by Internet Explorer

前提是你 提交于 2019-12-05 09:23:38
I'm trying to create an ics file on the fly using only JavaScript without an intermediate save. I'm restricted to JavaScript and no save because of the platform this will eventually be running on. I'm a novice JavaScript programmer, but I've cobbled together something that works (almost) by a lot of searching on the web. What I've come up with works in Chrome, Firefox, and even Opera, but it doesn't work in Internet Explorer. In all other browsers I get an ics file created and downloaded, but in Explorer I get "The webpage cannot be displayed" with the entire ics stream displayed in the

UIDocumentInteractionController Calendar Access

*爱你&永不变心* 提交于 2019-12-05 09:14:43
问题 I have an ics (Calendar) file that I'm opening with a UIDocumentInteractionController , using presentOptionsMenuFromRect: . When this runs, the "Open In" menu looks like this. As you can see, no "Add to Calendar" option. Here's what gets me: I'm using the same exact code for a .vcf (contact card) file, and it works as expected with the "Open In Contacts" option available. Am I missing some sort of permission in my Info.plist for calendar access? Why can't UIDocumentInteractionController

How to import ical .ics file in R

给你一囗甜甜゛ 提交于 2019-12-05 07:58:31
I would like to import a .ics file into R, however, when I try to do so like... sneak_cal <- read.delim("iCal-TribeEvents.ics", sep = ":", header=FALSE, stringsAsFactors = FALSE, strip.white = TRUE, na.strings = "") ...I end up splitting the character strings of website (belonging to the X-ORIGINAL-URL or the UID field) too, which is undesirable ie https and //www.kicksonfire.com The ultimate goal is to get the data into a tidy format where each row represents a single VEVENT , which I think would be represented by a unique UID , without any loss of information (such as the URL) Is there

How to create “recurData” in Google Calendar?

你。 提交于 2019-12-05 07:46:43
I want to create recurring events of Calendar using Google API. I am following links: Google Calendar API I am not getting how to create "recurData". I can't modify String and pass it as parameter. Tried DDay.iCal Version 0.80. also. DDay.iCal There are some Example code given.I tried them. I am able to create ".ics" file. But when i pass this file content as "recurData" Getting Error : {"Execution of request failed: http://www.google.com/calendar/feeds/user@domain.com/private/full?gsessionid=AHItK5wrSIoJVawFjGt-0g "} My icf File content is: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//DDay.iCal/

Scheduling a monthly event “Every Nth Weekday” using RFC 5545 recurrence rule

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-05 07:34:34
I'm trying to replicate some scheduling functionality in Google Calendar in C# using the RFC5545 recurrence rule. There are two options for scheduling monthly with Google calendar, either by every Nth day month, ie: Every 10th day of the month every 1 months , this will obviously occur regardless of the week day. My recurrence rule for this is: FREQ=MONTHLY;BYMONTHDAY=10 The other option is to repeat the event on every Nth weekday, ie: " Every second Sunday every one months , this is the one I'm having trouble writing the rule for. What should my rule be for the second rule? I've tried FREQ

ICS in Outlook being sent as a .msg file

扶醉桌前 提交于 2019-12-05 04:31:25
I have an application, it is creating an ICS similar to the following: BEGIN:VCALENDAR VERSION:2.0 METHOD:REQUEST BEGIN:VEVENT ATTENDEE;ROLE=REQ-PARTICIPANT;RSVP=TRUE:MAILTO:test1234@gmail.com ORGANIZER:MAILTO:test1234@org.com DTSTART:20100803T190000Z DTEND:20100803T200000Z LOCATION:Go to http://100.200.0.55/Login/ParticipantLogIn.asp and enter Conference ID: 0000 SEQUENCE:0 UID:352C75A6-0117-4B3A-AFE6-7B18649CD45A DTSTAMP:20100803T184455Z DESCRIPTION:TO ACCESS THE WEB CONFERENCE:\n\n Click on the link bel ow:\n SUMMARY:Test User's Conference PRIORITY:5 CLASS:PUBLIC BEGIN:VALARM TRIGGER:-PT15M

Applescript and iCal interaction

為{幸葍}努か 提交于 2019-12-05 03:10:27
问题 I'm trying to write an AppleScript to query iCal and find all the events I've got for a given date, in any calendar. I started by writing a simple script that does something simple with every event in a given calendar: tell application "iCal" tell calendar "Reuniones" set the_events to every event repeat with an_event in the_events -- do something with every event set value to summary of an_event end repeat end tell end tell However, this simple script is taken a lot of time to execute (a few

Parse .ics data in iPhone project

风格不统一 提交于 2019-12-05 02:48:17
问题 I am making an iPhone application and i want to use libical to parse .ics dat from an .ics file OR from the URL location of the .ics file.. Firstly i want to know how i would go about using libical in my project? How to add it into my iphone project etc.. ive seen some guides but they seem to be specific to OSX projects and not iphone projects.. Secondly i want to parse event names and their descriptions, so i that i can store the event names/ descriptions as variables.. I was wondering if

can/should iCal property parametrs be escaped?

大城市里の小女人 提交于 2019-12-05 01:12:48
specifically, the CN (common name) parameter, e.g. ORGANIZER;CN=John Doe,Eng:mailto:jd@some.com The RFC is vague on this, IMHO. It is very clear about property values of type TEXT, but for this parameter it just says " The parameter value is text ". Anyways, the escaping specified for TEXT type doesn't seem complete for parameter values (e.g. ':' is not escaped). thanks a lot! Davka, Yes, parameter values can be escaped by surrounding the value in double-quotes. Parameter values must be escaped if they contain any of the following characters: ; - semicolon : - colon , - comma It is illegal to

.ics invitation calendar not working in outlook.com issue

醉酒当歌 提交于 2019-12-05 00:05:51
Hi im using cakephp email to send an email with .ics calendar attached to it the problem is that the confirmation button si shown in yahoo and gmail prefectly but not in outlook.com. here's an example of an .ics file: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//T//T//EN METHOD:REQUEST BEGIN:VEVENT UID:20150830T184133-19847-domain.com DTSTAMP:20150830T184133 DTSTART:20150812T000000Z DTEND:20150818T000000Z ORGANIZER;CN=myteam:MAILTO:admin@myteam.org ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN=brabrick@hotmail.com:MAILTO:brabrick@hotmail.com LOCATION:new york SUMMARY:Madrid BEGIN