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
0 answers

Is there a standard method to create a "Subscribe to Calendar" button?

I'm wanting a button which, when clicked, will instruct the default calendar application to subscribe to the calendar. I've found the protocol "webcal://" which only works with apple. If you try to open it in windows the popup dialog to "choose…
TxTechnician
  • 318
  • 1
  • 11
0
votes
2 answers

JAVA created ical meeting doesn't show in outlook calendar when accepted

With the iCal format, what could cause a meeting invite to successfully be sent to a user, but prevent that meeting from appearing in the user's calendar if it is accepted? I'm working on a new feature in my java based web app, which integrates with…
Langecrew
  • 21
  • 2
  • 11
0
votes
1 answer

Google Calendar. ICS Attachment - Automatically set timezone

How to format an ICS file attached to an email that automatically sets the time zone correctly in Google Calendar so when the receiving party clicks "add to calendar" it looks like the screenshot below. (appointment set in specific time zone. New…
Skiltz
  • 544
  • 1
  • 6
  • 18
0
votes
0 answers

FileSaver.js is saving .ics as .txt on iPhones

I'm trying to save a blob as name.ics, but for some reason on iPhone they all get saved as name.ics.txt This is the code // Creating event template for ICS file const event = { start: startAt, end: endAt, title: !location ?…
Stefan
  • 13
  • 2
0
votes
0 answers

Icalendar file (.ics) queries on the font-face

When creating a ".ics" file and opening on notepad, there would be this particular line that talks bout the mso-font-signature under the @font-face portion. May I ask what does the 32 numbers behind mso-font -signature means? An example is as shown…
0
votes
0 answers

How do I fix "TypeError: can't compare offset-naive and offset-aware datetimes"?

I'm using the code linked below to convert ICS files to csv, and one particular calendar gives me "Traceback (most recent call last): File "ical2csv.py", line 126, in sortedevents = sorted(formatted_events, key=lambda obj: obj.start) TypeError:…
0
votes
0 answers

How to create an iCalender event that repeats very irregulary?

Background: where I park my car, during the winter it is cleaning day once a week (=parking is not allowed) so I have to move the car before that to avoid getting a ticket. I want to create an iCal reminder about that but the pattern is very…
d-b
  • 695
  • 3
  • 14
  • 43
0
votes
0 answers

Ical-generator event invitation not adding to calender

I want to send a calendar invitation in nodejs. I'm using Nodemailer and ical-generator to generate ical files. Everything working fine but the email doesn't add invite to the calendar automatically instead I get an option to Add to the calendar.…
Athulya Ratheesh
  • 291
  • 4
  • 22
0
votes
0 answers

Spatie/icalendar how to send email to organizer when event added to clients(attendee) calendar like notifications

I'm using Laravel 9 with Laravel Mailables. When I create an appointment, an email will be sent with a date and time value. The email content has a Google Calendar widget (I'm using spatie/icalendar). When the client clicks on the 'add to calendar'…
0
votes
0 answers

issues with format of an ics file on iphone

I am trying to add an event to a calendar on mobile phones. On a click of a button in my react application, i download an ics file. What i am doing works great on android, but it seems that downloading the file on iphone reformats it and i am…
julBayonna
  • 409
  • 7
  • 19
0
votes
1 answer

Multipart email with ical attachment displays incorrectly

I'm not sure if this is an issue with my code, ActionMailer, Mail, or maybe even the icalendar gem? A user registers for an event and they get an email with an ical attachment: # app/mailers/registration_mailer.rb class RegistrationMailer <…
Chiperific
  • 4,428
  • 3
  • 21
  • 41
0
votes
0 answers

Adding an event from a different Google Calendar, with dynamic update

In Google Calendar, I can select an event, click on "publish event", and obtain a URL that another user can use to add the event to their calendar. However, that is a static copy of my event. If I edit my event, the edits are not propagated to the…
mernst
  • 7,437
  • 30
  • 45
0
votes
0 answers

How to parse ical and get excluded dates in recurring event?

End goal I would like to parse an ical file and get all final events that appear on the calendar. I thought I had easily accomplished this but realized I was not properly capturing recurring events. I was simply counting the number of times the…
0
votes
0 answers

iCalendar only showing 3 months python

I have a python script that reads in an .ics file. I'm able to parse the data just fine but notice I'm only seeing events for the first 3 months of the year (Jan-Mar), and do not see events past that. Is there pagination or query parameter I need to…
t tran
  • 1,575
  • 2
  • 11
  • 15
0
votes
1 answer

Send ics blob through POST API

I would like to generate an ics file then transform it in blob to finally send it through an Zendesk API POST call The code const blob = new Blob([icsContent], { type: "application/json" }); const uploadICSFile = await…
etrix
  • 59
  • 6
1 2 3
99
100