-
Notifications
You must be signed in to change notification settings - Fork 12
Add a calendar for open community calls. #222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
400c551
70339bd
2c7b43c
3df35e5
afa470d
7f82e09
443a4d9
7d2f9f4
ac50abe
9702892
0079fbe
9d54a71
7709d70
0cdec76
c99d145
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| BEGIN:VCALENDAR | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The ics format lacks support for comments :-( |
||
| VERSION:2.0 | ||
| PRODID:-//Kroxylicious Community Call//Event Feed 1.0//EN | ||
| CALSCALE:GREGORIAN | ||
| METHOD:PUBLISH | ||
| X-WR-CALNAME:Kroxylicious Community Call | ||
| X-WR-TIMEZONE:UTC | ||
| BEGIN:VEVENT | ||
| UID:morning-series@kroxylicious.io | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm using UK-centric notions of morning and eventing, since those are compatible with the meetings being in UTC. |
||
| DTSTAMP:20260326T100000Z | ||
| DTSTART:20260326T080000Z | ||
| DTEND:20260326T084500Z | ||
| RRULE:FREQ=WEEKLY;INTERVAL=4;BYDAY=TH | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Both the events in the calendar repeat every 4 weeks. You have to include the |
||
| EXDATE:20261231T080000Z | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This shows how we can exclude some events from the series. |
||
| SUMMARY:Kroxylicious Community Call | ||
| DESCRIPTION:This is the UK morning slot of our bi-weekly rotation.\n | ||
|
tombentley marked this conversation as resolved.
Outdated
|
||
| Click to join: | ||
| https://meet.jit.si/moderated/87697d32deaa8cbd8b3b96e1 | ||
| bbb8aef920c240112935c2d4742c3b1b38a34588 \n | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Physical lines need to be <72 chars. A logical line can be split over multiple physical lines, and I think WS at the start of a physical line is ignored. |
||
| URL:https://meet.jit.si/moderated/87697d32deaa8cbd8b3b96e1 | ||
| bbb8aef920c240112935c2d4742c3b1b38a34588 | ||
|
Comment on lines
+20
to
+21
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Splitting the URL is a bit 🤮 , but doing so gets rid of a warning from the validator. |
||
| LOCATION:https://meet.jit.si/moderated/87697d32deaa8cbd8b3b96e1 | ||
| bbb8aef920c240112935c2d4742c3b1b38a34588 | ||
| END:VEVENT | ||
| BEGIN:VEVENT | ||
| UID:evening-series@kroxylicious.io | ||
| DTSTAMP:20260311T100000Z | ||
| DTSTART:20260311T200000Z | ||
| DTEND:20260311T204500Z | ||
| RRULE:FREQ=WEEKLY;INTERVAL=4;BYDAY=WE | ||
| SUMMARY:Kroxylicious Community Call | ||
| DESCRIPTION:This is the UK evening slot of our bi-weekly rotation.\n | ||
| Click to join: | ||
| https://meet.jit.si/moderated/87697d32deaa8cbd8b3b96e1 | ||
| bbb8aef920c240112935c2d4742c3b1b38a34588 \n | ||
| URL:https://meet.jit.si/moderated/87697d32deaa8cbd8b3b96e1 | ||
| bbb8aef920c240112935c2d4742c3b1b38a34588 | ||
| LOCATION:https://meet.jit.si/moderated/87697d32deaa8cbd8b3b96e1 | ||
| bbb8aef920c240112935c2d4742c3b1b38a34588 | ||
| END:VEVENT | ||
| END:VCALENDAR | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| --- | ||
| layout: default | ||
| title: Community call | ||
| --- | ||
| <link href='https://cdn.jsdelivr.net/npm/fullcalendar@6.1.10/index.global.min.css' rel='stylesheet' /> | ||
| <script src='https://cdn.jsdelivr.net/npm/fullcalendar@6.1.10/index.global.min.js'></script> | ||
| <script src='https://cdn.jsdelivr.net/npm/ical.js@1.5.0/build/ical.min.js'></script> | ||
| <script src='https://cdn.jsdelivr.net/npm/@fullcalendar/icalendar@6.1.10/index.global.min.js'></script> | ||
| <script src='https://cdn.jsdelivr.net/npm/@fullcalendar/list@6.1.10/index.global.min.js'></script> | ||
| <script src='https://cdn.jsdelivr.net/npm/@fullcalendar/bootstrap5@6.1.10/index.global.min.js'></script> | ||
|
|
||
|
|
||
| <div class="row align-items-start justify-content-center my-5"> | ||
| <div class="col-lg-3 mb-5" role="complementary" aria-labelledby="page-title"> | ||
| <div class="card shadow px-2 mx-2"> | ||
| <div class="card-body"> | ||
| <h1 id="page-title" class="fs-3">{{ page.title }}</h1> | ||
| <p>Sometimes it's just easier to talk face-to-face. | ||
| We have a virtual meeting every two weeks that's open to anyone to come along.</p> | ||
| <p>The time alternates to try to accomodate people from different parts of the world, | ||
| so check the next-but-one if the next meeting is in the middle of your night.</p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="col-lg-6" role="main"> | ||
| <div> | ||
| <p>We're using <a href="https://meet.jit.si/">Jitsi</a>, a free and open source video conferencing service. | ||
| You don't need an account to join. | ||
| </p> | ||
| <div class="alert alert-warning" role="alert"> | ||
| <h4 class="alert-heading">Meetings are public (and recorded!)</h4> | ||
| <p>Meetings are recorded and shared on our youtube channel.</p> | ||
| </div> | ||
| <p>If your browser knows about your calendar app you should be able to subscribe in your calendar app by clicking the button below.</p> | ||
| <div><a href="webcal://{{ site.hostname }}/join-us/community-call/community-call.ics" class="btn btn-primary">Subscribe</a></div> | ||
|
tombentley marked this conversation as resolved.
Outdated
|
||
| </div> | ||
| <div> | ||
| <h2>Upcoming events</h2> | ||
| <div>Times are shown in your browser's local timezone, <span id="tz-display"></span>.</div> | ||
| <div id="calendar"/> | ||
| </div> | ||
| </div> | ||
| <script> | ||
| document.addEventListener('DOMContentLoaded', function() { | ||
| const userTimeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; | ||
| document.getElementById('tz-display').textContent = userTimeZone; | ||
|
|
||
| var calendarEl = document.getElementById('calendar'); | ||
| var calendar = new FullCalendar.Calendar(calendarEl, { | ||
| initialView: 'listMonth', | ||
| // This tells the calendar where to find your "Source of Truth" | ||
| events: { | ||
| url: 'community-call.ics', | ||
| format: 'ics' | ||
| }, | ||
| themeSystem: 'bootstrap5' | ||
| }); | ||
| calendar.render(); | ||
| }); | ||
| </script> | ||
Uh oh!
There was an error while loading. Please reload this page.