-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add TZID property to date-time if available
it's not clear if that actually leads to a better user experience than floating time that we are currently using Google Calendar seems to work OK with floating time - it is using the event location to properly display the time if the default timezone of the calendar is different from that of the event if we do set TZID Google Calendar will also use it, but it might make incorrect assumptions about DST (for example America/New York tends to result in Eastern Time - and not EDT or EST depending on the specific date)
- Loading branch information
Showing
5 changed files
with
74 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,5 @@ | |
"sub": true, | ||
"undef": true, | ||
"unused": true, | ||
"esversion": 10 | ||
"esversion": 11 | ||
} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
BEGIN:VCALENDAR | ||
VERSION:2.0 | ||
PRODID:-//code42day//Furkot - road trip planner//EN | ||
BEGIN:VEVENT | ||
DTSTAMP:20220529T071758 | ||
UID:[email protected] | ||
SUMMARY:San Francisco | ||
LOCATION:San Francisco\, CA | ||
GEO:37.7749295;-122.41941550000001 | ||
DTSTART;TZID=America/Los_Angeles:20130708T090000 | ||
DTEND;TZID=America/Los_Angeles:20130708T090000 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
DTSTAMP:20220529T071758 | ||
UID:[email protected] | ||
SUMMARY:Redding | ||
LOCATION:1510 Gordon Lane\, Redding\, CA 96002\, USA | ||
GEO:40.54720023441049;-122.34375 | ||
DTSTART;TZID=America/Los_Angeles:20130708T121300 | ||
DTEND;TZID=America/Los_Angeles:20130708T122800 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
DTSTAMP:20220529T071758 | ||
UID:[email protected] | ||
SUMMARY:Lane | ||
LOCATION:51-559 Walnut Place\, Springfield\, OR 97477\, USA | ||
GEO:44.04811573082351;-123.046875 | ||
DTSTART;TZID=America/Los_Angeles:20130708T173100 | ||
DTEND;TZID=America/Los_Angeles:20130708T174600 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
DTSTAMP:20220529T071758 | ||
UID:[email protected] | ||
SUMMARY:Portland | ||
DESCRIPTION:Trip notes for first stop | ||
LOCATION:Portland\, OR | ||
GEO:45.5234515;-122.6762071 | ||
DTSTART;TZID=America/Los_Angeles:20130708T193555 | ||
DTEND;TZID=America/Los_Angeles:20130708T193555 | ||
END:VEVENT | ||
END:VCALENDAR |
This file contains 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