icalendar

Does icalendar support HTML and CSS?

余生颓废 提交于 2019-12-23 03:17:14
问题 I am attempting to create a ICalendar with a html description using the X-ALT-DESC;FMTTYPE=text/html: but it does not appear to support inline CSS for layout/styling is there anyway of making CSS work within an icalendar? 回答1: RFC 5545 (the iCalendar specification) allows you to use HTML, but that's a different thing from the calendar clients supporting it. I suspect that you'll find it rare that any of the non-browser-based calendars will do so. 回答2: As opposed to what jgm implied, the

What is the correct ics file for editing only one occurrence from the series

大憨熊 提交于 2019-12-23 02:18:28
问题 I have ICS file AS BEGIN:VCALENDAR PRODID:-//Schedule a Meeting VERSION:2.0 METHOD:REQUEST BEGIN:VEVENT CATEGORIES: MEETING UID:PPLSCH_574 DESCRIPTION: X-ALT-DESC;FMTTYPE=text/html: SUMMARY: ORGANIZER:MAILTO:no-reply@mailid.com ATTENDEE;CN="Anya Julian, Julian Smith";RSVP=TRUE:mailto:valid@mailid.com, valid@mailid.com RRULE:FREQ=DAILY;INTERVAL=1;UNTIL=20160729T080000Z; DTSTART:20160727T073000Z DTEND:20160727T080000Z TEXT: BEGIN:VALARM TRIGGER:-PT15M ACTION:DISPLAY DESCRIPTION: END:VALARM END

sending ical through zend_mail

孤街浪徒 提交于 2019-12-22 12:44:29
问题 Can someone guide me in right direction. I am trying to send my all calendar events to my users using mail. I have a php function which is working as per my expectations. I am trying to implement the same functionality in zend framework using zend_mail. Here is the function that is working. function sendIcalEmail($firstname,$lastname,$email,$meeting_date,$meeting_name,$meeting_duration) { $from_name = "RK"; $from_address = "m.ravikant10@gmail.com"; $subject = "Meeting Booking"; //Doubles as

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 Set a Title/Description for a Subscription Calendar (webcal:// ICS file)

送分小仙女□ 提交于 2019-12-22 09:01:11
问题 I have a calendar app for which I provide subscriptions by linking client using the "webcal://" protocol. It's working quite nicely. What I'd like to know is if there is a way title it in the receiving calendar application, such as Outlook, iPhone, Google, etc? Currently, when loaded into Outlook it is displayed as the name of the web script from which it came. For instance if the script is (using ColdFusion) Create_ICS_File.cfm then Outlook shows it as "Create_ICS_File in Internet Calendars"

How to remove unwanted WWW-Authenticate headers

旧时模样 提交于 2019-12-22 08:10:06
问题 From an MVC app, I'm sourcing an iCal subscription with authentication following the answer to this SO question: Serving an iCalendar file in ASPNET MVC with authentication The iCal stream is being created dynamically from events in the DB using the DDay.iCal library. This solution works fine on the local development server: both OSX Calendar and Outlook can subscribe to and receive updates from the app. However, on the shared server at my web host, the authentication fails for both Calendar

PHP calendar recurrence logic

可紊 提交于 2019-12-22 01:31:26
问题 I know that there are a million projects out there that have done this already. Having said that what I am trying to do is create an online calendar using PHP & MySQL here is what I am planning: tables in database ((calendar_item) id, title, start_date, start time, end time, recurrence_type_id, recurrence_qty, interval, end_date) ((recurrence_type) id, name, value (where I want to store the logic so it can be edited on the fly)) ((calendar_item_exception) id, calendar_item_id, title, start

iCloud calendar synchronization issue while creating calendar from application

≡放荡痞女 提交于 2019-12-21 20:28:50
问题 Trying to implement iCloud Calendar synchronization for iOS. The idea is to create a new calendar from my app and sync it with iCloud when iCloud sync is on actually. To get corresponding source I'm using the following code: EKSource* localSource=nil; for (EKSource* source in self.eventStore.sources) { if(source.sourceType == EKSourceTypeCalDAV && [source.title isEqualToString:@"iCloud"]) { localSource = source; break; } } Then creating a calendar in that source and saving. When iCloud sync

Exporting Single Google Calendar Events to ICS?

安稳与你 提交于 2019-12-21 19:30:06
问题 I am currently looking into the possibility of displaying lists of events from multiple Google Calendars on a Web page. At the moment, I'm using the Google Calendar Events plugin for WordPress to display the events on the site (development site behind a firewall, so I can't share a link); but I'd like to see if there's any simple method to dynamically generate ICS files for each individual event. We would like to allow the website visitors to add individual events to their calendars, but the

How to parse calendar file dates with JavaScript?

你。 提交于 2019-12-21 05:46:06
问题 We need to use JavaScript on the browser to read and parse calendar files (.ics) (also called iCal formats). I wrote a custom function to read these values and then use the JavaScript Date() function to make a data object. Is any easier and better way to do this? Please look at my function (below), your comments would be welcome. A typical date value from an .ics file looks like this: DTSTART:20110914T184000Z Need to break it apart at the colon, so: var strData = 'DTSTART:20110914T184000Z'