vcal

Mulit-Day All-Day Event

孤者浪人 提交于 2020-01-24 18:19:17
问题 I am having issues getting the right syntax for an all day event which spans multiple days. Here is my ICAL event: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//http://XXX//Event METHOD:PUBLISH BEGIN:VEVENT DTSTART;TZID="America/Chicago";VALUE=DATE:20150809 DTEND;TZID="America/Chicago";VALUE=DATE:20150812 SUMMARY:Event Name DESCRIPTION:Event Description LOCATION:Event Location END:VEVENT END:VCALENDAR Shows up great in Mac Calendar: But in Outlook, it starts at 1AM and isn't marked as all day: 回答1:

Is there any good iCal & vCal parser in php(library)?

廉价感情. 提交于 2019-12-22 11:15:55
问题 I'm creating a web app that need to upload iCal or vCal files. I wonder if there is any php library that can parse the information, so I can store it on my database? 回答1: that should help http://www.phpbuilder.com/columns/chow20021007.php3?print_mode=1 回答2: This seems the most complete and updated. http://kigkonsult.se/index.php It goes from parsing to generation of .ics files 来源: https://stackoverflow.com/questions/7508800/is-there-any-good-ical-vcal-parser-in-phplibrary

How to Create “Add to Calendar” Link on Web Page for iPhone

末鹿安然 提交于 2019-12-18 12:56:24
问题 Many calendaring programs (Outlook, iCal) support vCal for downloading event information and adding it to your calendar. Others can use the vCalendar microformat to extract data. Neither of these, however, seems to be supported on the iPhone. Is there any functional equivalent that will allow me to list event information on a page and have a website visitor add the event to her calendar with a single click? Since Mobile Safari makes it super-easy to extract emails and phone numbers from web

PHP : send ical using php mailer

£可爱£侵袭症+ 提交于 2019-12-11 02:17:50
问题 I am trying to send the ical using the php mailer here id my function function sendIcalEmail($firstname,$lastname,$email,$meeting_date,$meeting_name,$meeting_duration) { //Convert MYSQL datetime and construct iCal start, end and issue dates $meetingstamp = strtotime($meeting_date . " UTC"); $dtstart= gmdate("Ymd\THis\Z",$meetingstamp); $dtend= gmdate("Ymd\THis\Z",$meetingstamp+$meeting_duration); $todaystamp = gmdate("Ymd\THis\Z"); //Create unique identifier $cal_uid = date('Ymd').'T'.date(

Export event with C# to iCalendar and vCalendar format

ぃ、小莉子 提交于 2019-12-10 06:03:07
问题 I'm working on a project where we'll be supporting the ability to export an event to Outlook 2007, Outlook 2010, and iCal. I've done some research and found that iCal (to support the iCal program) and vCal (to support Outlook) are basically the same thing, from what I've seen. It appears that iCal is based on the old vCal format, so I'm trying to see what I can borrow between the two implementations to make it easier to generate .ics and .vcs files. I've found a C# implementation for a vCal

can/should iCal property parametrs be escaped?

孤者浪人 提交于 2019-12-10 02:31:18
问题 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! 回答1: Davka, Yes, parameter values can be escaped by surrounding the value in double-quotes. Parameter values must be

Is there any good iCal & vCal parser in php(library)?

一世执手 提交于 2019-12-05 19:35:55
I'm creating a web app that need to upload iCal or vCal files. I wonder if there is any php library that can parse the information, so I can store it on my database? that should help http://www.phpbuilder.com/columns/chow20021007.php3?print_mode=1 This seems the most complete and updated. http://kigkonsult.se/index.php It goes from parsing to generation of .ics files 来源: https://stackoverflow.com/questions/7508800/is-there-any-good-ical-vcal-parser-in-phplibrary

Export event with C# to iCalendar and vCalendar format

本秂侑毒 提交于 2019-12-05 16:46:24
I'm working on a project where we'll be supporting the ability to export an event to Outlook 2007, Outlook 2010, and iCal. I've done some research and found that iCal (to support the iCal program) and vCal (to support Outlook) are basically the same thing, from what I've seen. It appears that iCal is based on the old vCal format , so I'm trying to see what I can borrow between the two implementations to make it easier to generate .ics and .vcs files. I've found a C# implementation for a vCal file , and a C# implementation for a iCal file as well. Is there anyone out there that knows of the

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

How to Create “Add to Calendar” Link on Web Page for iPhone

穿精又带淫゛_ 提交于 2019-11-30 08:46:09
Many calendaring programs (Outlook, iCal) support vCal for downloading event information and adding it to your calendar. Others can use the vCalendar microformat to extract data. Neither of these, however, seems to be supported on the iPhone. Is there any functional equivalent that will allow me to list event information on a page and have a website visitor add the event to her calendar with a single click? Since Mobile Safari makes it super-easy to extract emails and phone numbers from web pages, it seems odd that there's no similar functionality for events. Update: Note that this is a very