Questions tagged [icalendar]

iCalendar is a widely-used data format for representing and exchanging calendaring and scheduling information independent of any particular calendar service or protocol.

iCalendar is a data format for representing and exchanging calendaring and scheduling information such as events, to-dos, journal entries, and free/busy information, independent of any particular calendar service or protocol.

Used and supported by many products, including , Apple's iCal and Microsoft .

2435 questions
0
votes
1 answer

Pre-Populate Google Calendar Subscribe by URL

I want to pre-populate the URL box at https://calendar.google.com/calendar/u/0/r/settings/addbyurl with my calendar feel link webcal://domain.co.uk/calendar/export.php?Staff=Mr+Alan+Smith is there any functionality to create a subscribe link so…
Henry Aspden
  • 1,863
  • 3
  • 23
  • 45
0
votes
0 answers

Google Calendar ICS to include the day before

This is for a custody calendar which shows who has the kids and when. There is a situation revolving around several holidays that happen on x Monday of every year. The custody terms give a parent time on that Monday as well as the Sunday before. …
0
votes
1 answer

JavaScript RRule - how to get "all the dates for Monday, Tuesday and Friday of 3rd week of every month for 10 counts starting from any certain date"

Hi dear stackoverflow community people, need your help in a problem. I am using rrule JavaScript lib to generate event dates for calendar. Below is the example condition for which I want event dates. freq: Monthly startDate: 1 Nov 22, 6AM count:…
0
votes
0 answers

Does RFC 5545 allow specifying a nominal duration shorter than 24h?

Consider a recurring iCalendar event as follows: BEGIN:VCALENDAR BEGIN:VEVENT DTSTART;TZID=Europe/Vienna:20221029T010000 DURATION:PT4H RRULE:FREQ=DAILY END:VEVENT END:VCALENDAR The first two recurrences end at the following times: 2022-10-29 05:00…
MarkusM
  • 751
  • 1
  • 5
  • 14
0
votes
0 answers

Sending meeting invitation using "icalendar" in Python

While sending meeting invite using "icalendar" library I am facing issue with time zone difference in Gmail and outlook mails. When I am sending meeting invitation to outlook it automatically changing time zone IST to GMT. Please help me out to…
0
votes
1 answer

Is there any RFC standard that defines which timezone wins for recurring events if daylight savings occur?

Example An Austrian who works in Vienna has a video call on October 28th, 2022 with an Indian who works in New Delhi (note that in Austria it is still daylight saving time on October 29th, 2022, but it ends at October 30th, 2022). The time is: in…
Michael Käfer
  • 1,597
  • 2
  • 19
  • 37
0
votes
0 answers

Can Unity Open ICS Files on Android or iOS?

I have a volunteering app that I made in Unity. When someone signs up for a volunteer event, I want to show them a confirmation page that lets them add the event to the calendar of their choice. Google Calendar is easy because I can make a string…
0
votes
0 answers

Grouping multiple events in an ICS file as series

Problem I am trying to create a single ICS file containing multiple events without a pattern but have them behave as a series. By making them behave as a series, I am hoping to have options such as "RSVP/delete this and all future events". These…
0
votes
1 answer

Undefined symbol in OSX, but standard Apple methods?

I am pretty new to OSX programming, or to the use of ObjC. I've done a fair bit of C en C++ in the past, mainly in combination with VTK. I am trying to compile a very simple program, where I copied an init method from Apple demo code. I am pretty…
Carelinkz
  • 936
  • 8
  • 27
0
votes
1 answer

Wrong time when adding event to iCal programmatically

I was trying to add an ical event using this code. EKEventStore *eventStore = [[EKEventStore alloc] init]; EKEvent *event = [EKEvent eventWithEventStore:eventStore]; event.title = title; event.startDate = date; event.endDate = [[NSDate…
iphonic
  • 12,615
  • 7
  • 60
  • 107
0
votes
0 answers

how to host and export my availability ics calendar and sync it to other hosts like booking.com or homeaway?

I am using my own selfmade php calendar. Every time I update the calendar, an ics file is created and placed in the "ical" directory on my server under the name "24633.ics". I can import the file into my Google calendar, but it fails on other…
Mr.Ferien
  • 1
  • 1
0
votes
1 answer

Processing a remote iCal with Python

Hi I need to process a remote .ical file from another server on my own server and hand it back to the requesting user. So what I need to do is: Fetch the file (could do this with urllib2) Process the file with some regex (not the question) hand it…
algorithms
  • 1,085
  • 1
  • 12
  • 21
0
votes
0 answers

Creating a calendar feed URL with Python

I'm trying to write a view into my Django application that an external calendar application can subscribe to. For example, in Google Calendar, you can "Add a calendar from a URL". This is what I want to create so that I can automatically add new…
Luctia
  • 322
  • 1
  • 5
  • 17
0
votes
1 answer

How to fetch ics file on the client side in Vue.js?

I'm trying to fetch the online calendar (iCal) to the client side. From that calendar I want to fetch data like this: (3) [{…}, {…}, {…}, __ob__: Observer]. This is the example of a calendar: https://ical.neolab.hr/11111.ics. Is there any package…
Jan Tuđan
  • 233
  • 3
  • 17
0
votes
0 answers

Event calendar for outlook

I have creating iCal feature for event calendar Received mail with .ics file but not set Calendar event please see .ics file code below I have tried sent mail by Curl but not created RSVP only received .ics file $ical =…
Amit Kanala
  • 123
  • 1
  • 1
  • 12