Open
Conversation
Add a calendar name to the ICS, to give Giggity and other clients a conference name. Inspired from https://www.paris-web.fr/2025/conferences-paris-web-2025.ics We could also add a `X-WR-CALDESC`description, but the `X-WR-CALNAME` seems to be the most important one.
It turns out that [RFC7986](https://www.rfc-editor.org/rfc/rfc7986#section-5.1) has standardized on ǸAME`.
Member
|
Thanks, Bo! Would it make sense to include the year in the name? |
tykling
reviewed
Dec 22, 2025
| cal = icalendar.Calendar() | ||
| cal.add("prodid", "-//BornHack Website iCal Generator//bornhack.dk//") | ||
| cal.add("version", "2.0") | ||
| cal.add("NAME", "BornHack") |
Member
There was a problem hiding this comment.
Suggested change
| cal.add("NAME", "BornHack") | |
| cal.add("NAME", self.camp.title) |
tykling
reviewed
Dec 22, 2025
| cal.add("prodid", "-//BornHack Website iCal Generator//bornhack.dk//") | ||
| cal.add("version", "2.0") | ||
| cal.add("NAME", "BornHack") | ||
| cal.add("X-WR-CALNAME", "BornHack") |
Member
There was a problem hiding this comment.
Suggested change
| cal.add("X-WR-CALNAME", "BornHack") | |
| cal.add("X-WR-CALNAME", self.camp.title) |
Author
There was a problem hiding this comment.
Thanks, Bo! Would it make sense to include the year in the name?
I think not, but other conferences are doing it. Maybe we can try without the year.
Member
There was a problem hiding this comment.
I was thinking if you have the bornhack ical thing added from 2025, and you then add the new one from 2026, having the same name for both of them would make it difficult to tell them apart (since we have different ical URLs per year)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a calendar name to the ICS, to give Giggity and other clients a conference name. Inspired from https://www.paris-web.fr/2025/conferences-paris-web-2025.ics We could also add a
X-WR-CALDESCdescription, but theX-WR-CALNAMEseems to be the most important one.Update:
NAMEhas been chosen as the standard key, in RFC7986. Lets keep both, for backwards compatibility.