icalendar

ICal import creates new calendar When Open the ics file

牧云@^-^@ 提交于 2019-11-27 06:50:10
问题 I'm working on "Add to Calendar" feature from my Sharepoint webpart (created using VS2010). I have exported the ICS file programatically with no issues. But the problem is when I try to open the ICS file from OUTLOOK. If the ICS file has single appointment, no issues.... If the ICS file has multiple appointments, the problem comes... When I do File >> Open >> Import >> Choose ics file, it works fine But If I try to just double click the ICS file, it creates a NEW calendar instead of updating

ICalendar and event updates not working in Outlook

我的梦境 提交于 2019-11-27 06:45:42
I'm generating ICalendar (.ics) files. Using the UID and SEQUENCE fields I can update existing events in Google Calendar and in Windows Calendar BUT NOT in MS Outlook 2007 - it just creates a second event How do I get them to work for Outlook ? Thanks Tom I've continued to do some testing and have now managed to get Outlook to update and cancel events based on the .cs file. Outlook in fact seems to respond to the rules defined in RFC 2446 In summary you have to specify METHOD:REQUEST and ORGANIZER:xxxxxxxx in addition to UID : and SEQUENCE: For a cancellation you have to specify METHOD:CANCEL

How to cancel an calendar event using ics files?

左心房为你撑大大i 提交于 2019-11-27 05:58:03
问题 One of our requirements is to create iCalendar files (.ics) and send them each in emails as an attachment. We are using DDay.Ical.dll to create ics files as under: // Create a new iCalendar iCalendar iCal = new iCalendar(); // Create the event, and add it to the iCalendar Event evt = iCal.Create<Event>(); // Set information about the event evt.Start = new iCalDateTime(SomeStartTime); evt.End = new iCalDateTime(SomeEndTime); evt.Location = "At so and so place"; evt.Description = "Some

Parsing files (ics/ icalendar) using Python

心已入冬 提交于 2019-11-27 03:11:06
I have a .ics file in the following format. What is the best way to parse it? I need to retrieve the Summary, Description, and Time for each of the entries. BEGIN:VCALENDAR X-LOTUS-CHARSET:UTF-8 VERSION:2.0 PRODID:-//Lotus Development Corporation//NONSGML Notes 8.0//EN METHOD:PUBLISH BEGIN:VTIMEZONE TZID:India BEGIN:STANDARD DTSTART:19500101T020000 TZOFFSETFROM:+0530 TZOFFSETTO:+0530 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;TZID="India":20100615T111500 DTEND;TZID="India":20100615T121500 TRANSP:OPAQUE DTSTAMP:20100713T071035Z CLASS:PUBLIC DESCRIPTION:Emails\nDarlene\n Murphy\nDr. Ferri\n

Creating iCal Files in c#

断了今生、忘了曾经 提交于 2019-11-27 02:45:42
I'm looking for a good method of generating an iCalendar file (*.ics) in c# (asp.net). I've found a couple resources, but one thing that has been lacking is their support for quoted-printable fields - fields that have carriage returns and line feeds. For example, if the description field isn't encoded properly, only the first line will display and possibly corrupting the rest of the information in the *.ics file. I'm looking for existing classes that can generate *.ics files and/or a class that can generate quoted-printable fields. DevelopingChris I use DDay.Ical , its good stuff. Has the

URL scheme for opening native calendar with specific date

我怕爱的太早我们不能终老 提交于 2019-11-27 02:42:46
问题 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

Sending Meeting Invitations With Python

十年热恋 提交于 2019-11-27 02:20:48
问题 I'm pretty new to Python and i'm trying to create a script which gathers data from our database and converts the data into sets. It then takes those sets of data and generates ICS (icalendar) objects (by using icalendar http://codespeak.net/icalendar/). The problem I'm running into is the email part, I am able to send an email and attach the ICS file but when the email arrives it's just an email with an attachment. I was really hoping for the email to be viewed as a meeting invitation where

iCalendar does not create an event for organizer

半腔热情 提交于 2019-11-27 02:10:07
问题 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

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

回眸只為那壹抹淺笑 提交于 2019-11-27 00:30:34
问题 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! 回答1: If your site is built on Linux like mine you can simply add a line to your htaccess

Best iCalendar library for Java? [closed]

回眸只為那壹抹淺笑 提交于 2019-11-27 00:02:54
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . 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? 回答1: I had limited success with iCal4j (intro) on a