-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9066f3e
commit b5e1984
Showing
22 changed files
with
144 additions
and
0 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
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,14 @@ | ||
- date: 2023-3-22 | ||
entries: | ||
- name: Test 1 | ||
description: Description 1 | ||
location: Location 1 | ||
url: https://www.swift.org | ||
start: "08:30:00" | ||
duration: 0H30M | ||
- name: Test 2 | ||
description: Description 2 | ||
location: Location 2 | ||
url: https://www.swift.org | ||
start: "18:00:00" | ||
duration: 2H30M |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+872 Bytes
assets/javascripts/web-components/components/assets/close-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions
39
assets/javascripts/web-components/components/files/SwiftEvents.ics
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,39 @@ | ||
--- | ||
layout: none | ||
--- | ||
BEGIN:VCALENDAR | ||
VERSION:2.0 | ||
CALSCALE:GREGORIAN | ||
BEGIN:VTIMEZONE | ||
TZID:America/Los_Angeles | ||
BEGIN:DAYLIGHT | ||
TZOFFSETFROM:-0800 | ||
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU | ||
TZNAME:PDT | ||
TZOFFSETTO:-0700 | ||
END:DAYLIGHT | ||
BEGIN:STANDARD | ||
TZOFFSETFROM:-0700 | ||
RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU | ||
TZNAME:PST | ||
TZOFFSETTO:-0800 | ||
END:STANDARD | ||
END:VTIMEZONE | ||
PRODID:Swift Calendar | ||
METHOD:PUBLISH | ||
X-PUBLISHED-TTL:PT1H | ||
{% for calendar in site.data.calendar %} | ||
{% for entry in calendar.entries %} | ||
BEGIN:VEVENT | ||
UID:{{ calendar.date | date: "%Y%m%d" }}{{ entry.name }}@swift.org | ||
SUMMARY:{{ entry.name }} | ||
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%S" }} | ||
DTSTART;TZID="America/Los_Angeles":{{ calendar.date | append:" " | append:entry.start | append:" " | append:"-0700" | date: "%Y%m%dT%H%M%S" }} | ||
DESCRIPTION:{{ entry.description }} | ||
URL:{{ entry.url }} | ||
LOCATION:{{ entry.location }} | ||
DURATION:PT{{ entry.duration }} | ||
END:VEVENT | ||
{% endfor %} | ||
{% endfor %} | ||
END:VCALENDAR |
22 changes: 22 additions & 0 deletions
22
assets/javascripts/web-components/components/files/feed.xml
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,22 @@ | ||
--- | ||
layout: none | ||
--- | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
<channel> | ||
<title>{{ "Swift Calendar" | xml_escape }}</title> | ||
<description>{{ "Swift Calendar" | xml_escape }}</description> | ||
<link>https://www.swift.org</link> | ||
<atom:link href="{{ site.url }}/assets/javascripts/swift-web-components/components/files/feed.xml" rel="self" type="application/rss+xml" /> | ||
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate> | ||
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate> | ||
{% for calendar in site.data.calendar %} | ||
{% for entry in calendar.entries %} | ||
<item> | ||
<title>{{ entry.name | xml_escape }}</title> | ||
<description>{{ entry.description | xml_escape }}</description> | ||
</item> | ||
{% endfor %} | ||
{% endfor %} | ||
</channel> | ||
</rss> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
assets/javascripts/web-components/web-components-stencil.esm.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.