icalendar

URL scheme for opening native calendar with specific date

痞子三分冷 提交于 2019-11-28 09:15:06
I have found the sample code to open calendar from my app, but i can't open at a specific date. NSString* launchUrl = @"calshow://"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString: launchUrl]]; Is there a way to add specific date at the end of the "lunchUrl" string so when the user opens the calendar it displays the given date. I have already tried the following formats: @"calshow://?=2013 12 19", @"calshow://?=2013-12-19", @"calshow://?=2013+12+19". None of these seem to work for me... any ideas what am i'm doing wrong? I played with this url scheme a little and found the way

iCalendar does not create an event for organizer

为君一笑 提交于 2019-11-28 08:21:49
I’m trying to create an event in my Microsoft Outlook calendar by using iCalendar standard. I’ve sent an email with content type “text/calendar” to my Exchange mailbox from .NET application. It arrives to Outlook as an meeting request. Everything looks good, till the moment when I click the received meeting request, Outlook displays it as an empty calendar view with the text: “Meeting cannot be found in the calendar” . I don’t understand why – I wanted to create an event and it is trying to find some existing? If I send exactly the same email to whoever participant of the meeting except the

I want HTML link to .ics file to open in calendar app when clicked, currently opens file as plain text. Suggestions?

旧巷老猫 提交于 2019-11-28 04:34:19
I am linking to an .ics file exported from Apple iCal in an HTML web page. <a href="calendar.ics"> This link will open the calendar.ics file as plain text in my browser (Chrome). I want automatic opening in Outlook or iCal or other calendar apps. What can I add to the link tag in order to produce the desired behavior? What about modifying the HTTP headers on .ics files? Any suggestions are appreciated! Ryan Corbin If your site is built on Linux like mine you can simply add a line to your htaccess file to make it open as a download instead of a text page. add this to your htaccess file: AddType

Best iCalendar library for Java? [closed]

◇◆丶佛笑我妖孽 提交于 2019-11-28 03:46:35
I'm looking for a library to handle iCalendar data in Java. Open source, well-documented implementations with a good object model are preferred. iCal parsing capabilities are less important to me, but still nice to have. Does anyone have any recommendations? Brian Gianforcaro I had limited success with iCal4j ( intro ) on a project last year. It seems to be a fairly popular choice for ical work in the java community. If I remember correctly the API can be slightly confusing at first glance. However It's pretty solid in the long run. Good luck, Brian Michael A challenger appears! Please give

Is There a Workaround for lack of Olsen TZ TZID Format in ICS File

↘锁芯ラ 提交于 2019-11-28 03:11:00
问题 I recently had a problem with an ICS file that I received in email. My copy of Outlook 2010 would not recognize the timezone correctly. Here is the way that the start time of a meeting was represented in the ICS file: DTSTART;TZID=America/Los_Angeles:20110928T183000 When Outlook imported this file, it changed the time from 6:30 pm Pacific time to 7:30 pm Pacific time. After some experimentation I was able to get an ICS file that imported correctly in Outlook by changing the time zone format:

Why are my icalendar invitations not processed by the outlook sniffer?

放肆的年华 提交于 2019-11-28 01:31:30
Invitations generated by my ASP.net application, sent as email with .ics attachment to Outlook 2010, are not being processed by the sniffer. As such, they are not appearing as tentative in the calendar, and are not available in the preview pane. The .ics attachment appears to be valid and can be opened in outlook by double clicking. The same invitations sent to Gmail are processed no worries. I have ruled out a number of accepted solutions to the same problem... Outlook is correctly configured, and processes Gmail invitations no problem The message is sent as Content-Type: multipart/mixed,

ICalendar not readable by google calendar.

若如初见. 提交于 2019-11-27 20:49:38
问题 Operating system : WinXP Program and version you use to access Google Calendar (FF3.5): I'm developing a script (based on an existing vCal ASP.NET class I found online) to generate an .ics file. This file works perfectly when importing to Outlook 2003. When I try to import to Google Calendar, I get the following error: Failed to import events: Unable to process your iCal/CSV file.. I don't know too much about the vCal format or syntax, but everything looks fine to me. I'll post the sample

How to extract a string using JavaScript Regex?

这一生的挚爱 提交于 2019-11-27 20:20:26
I'm trying to extract a substring from a file with JavaScript Regex. Here is a slice from the file : DATE:20091201T220000 SUMMARY:Dad's birthday the field I want to extract is "Summary". Here is the approach: extractSummary : function(iCalContent) { /* input : iCal file content return : Event summary */ var arr = iCalContent.match(/^SUMMARY\:(.)*$/g); return(arr); } You need to use the m flag : multiline; treat beginning and end characters (^ and $) as working over multiple lines (i.e., match the beginning or end of each line (delimited by \n or \r), not only the very beginning or end of the

ICalendar parser in PHP that supports timezones

纵饮孤独 提交于 2019-11-27 18:33:30
问题 I am looking for a PHP class that can parse an ICalendar (ICS) file and correctly handle timezones. I already created an ICS parser myself but it can only handle timezones known to PHP (like 'Europe/Paris'). Unfortunately, ICS file generated by Evolution (default calendar software of Ubuntu) does not use default timezone IDs. It exports events with its a specific timezone ID exporting also the full definition of the timezone: daylight saving dates, recurrence rule and all the hard stuff to

Update an event in Outlook 2007 with an iCalendar file

谁都会走 提交于 2019-11-27 17:48:21
问题 There is a previous thread with this question, and hints at an answer, but I could not get it to work. I have an ICS file. It validates. It looks like this: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//WA//FRWEB//EN BEGIN:VEVENT UID:FRICAL201 SEQUENCE:0 DTSTAMP:20081108T151809Z DTSTART:20081109T121200 SUMMARY:11/9/2008 12:12:00 PM TRIP FROM JFK AIRPORT (JFK) LOCATION:JFK AIRPORT (JFK) END:VEVENT END:VCALENDAR I double-click it and it goes into Outlook 2007 perfectly. Then, I double-click another ICS