├── README.md └── w3c.json /README.md: -------------------------------------------------------------------------------- 1 | # W3C Calendar 2 | 3 | A calendaring tool is now available for the W3C community. 4 | 5 | This Web application has different components: 6 | - [All groups](https://www.w3.org/groups) have a new "Calendar" tab displaying upcoming meetings related to them. 7 | - All users have a [personal calendar](https://www.w3.org/users/myprofile/calendar) listing all meetings they are 8 | invited to. 9 | - Chairs and Team contacts can schedule meetings, recurring or not. 10 | - Events and calendars can be exported as ICS files and subscribed to from third-party calendaring clients. 11 | - Group participants and other invited people are notified by email of new meetings and scheduling changes. This can be 12 | opted out from [your calendar preferences](https://www.w3.org/users/myprofile/calendar/preferences). 13 | 14 | Most of the information provided when creating or editing events will be public, except for joining instructions which 15 | are restricted to W3C Member organizations, group participants and other invited individuals. 16 | 17 | Further hints may be found in the W3C Guide section [Organizing a distributed meeting](https://www.w3.org/Guide/meetings/organize.html#calendar). 18 | 19 | Should you find any issues with this application or have comments, feel free to 20 | [open new GH issues](https://github.com/w3c/calendar/issues). 21 | 22 | For reference, some examples: 23 | - [Calendar - EPUB 3 Working Group](https://www.w3.org/groups/wg/epub/calendar) 24 | - [Event details - Devices and Sensors WG - 2021 Q2 virtual meeting - Sensors](https://www.w3.org/events/meetings/25801de1-caf6-434c-b20c-6ed1819cbe90) 25 | - [Event creation form](https://www.w3.org/events/meetings/new) *(restricted to W3C Chairs and Staff)* 26 | - [Your personal calendar](https://www.w3.org/users/myprofile/calendar) 27 | -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": 122803, 3 | "contacts": ["jean-gui"], 4 | "repo-type": "tool" 5 | } 6 | --------------------------------------------------------------------------------