-
Notifications
You must be signed in to change notification settings - Fork 11
/
agenda.html
277 lines (270 loc) · 10.4 KB
/
agenda.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
---
permalink: /agenda
title: Workshop Agenda
description: >-
Daily agenda for
the W3C/OGC Joint Workshop Series on Maps for the Web, September & October 2020.
layout: default
---
{% include relBase.html %}
<div class="info">
<p>
Workshop particpants are invited to join the
<a href="https://gitter.im/Maps4HTML/W3C-OGC-Workshop-Maps-For-Web">
workshop gitter chat</a> to exchange information with other participants,
and the program committee. You'll need either a GitHub, GitLab or Twitter
account to join.
</p>
</div>
<p>
The workshop series consists of scheduled video conference sessions
(presentations, panel discussions, and in-depth breakout discussions)
and asynchronous written discussion.
</p>
<p>
The video conference sessions are grouped into
blocks of 2 hours per day,
and scheduled at different times each day to accomodate all time zones.
<a href="https://www.w3.org/2002/09/wbs/1/maps2020/">Registered participants</a>
will receive an email with links to the video conference sessions.
Videos of the workshop presentations and panels
will be posted to the discussion forum.
Participants can watch at their own schedule
and leave written contributions.
</p>
<p>
Breakout topics (45 minutes to 1 hour each) are scheduled
following many of the main daily sessions,
using the same video conference format.
These sessions will allow smaller groups of interested workshop participants
to hack on a technology or get a deeper understanding of a topic.
Facilitators will start with a demo or tutorial of their project,
and then open the discussion for questions and suggestions.
</p>
<div class="info">
<p>
Due to risks associated with global travel and the spread COVID-19,
the Maps for the Web workshop series in 2020 was online only,
using a distributed, asynchronous model to encourage in-depth participation
regardless of time zones.
</p>
</div>
<!--
<p>
See the <a href="#tips">instructions for participants</a>, below,
to help prepare for an effective workshop.
</p>
-->
<article class="agenda">
<h2 id="schedule">Schedule</h2>
{% for day in site.data.agenda %}
<div class="schedule-header">
<h3 id="day-{{ forloop.index }}">{{ day.title }}:
<time class="schedule-time{% if day.video %} past-event{% endif %}"
datetime="{{ day.start }}">{{ day.start | date: "%Y-%m-%d %H:%M" }}UTC</time>
</h3>
{% if day.video %}
<a class="schedule-video-link" href="{{ day.video }}">
Watch recording<span class="visually-hidden"> of {{ day.title }} sessions</span>
</a>
{% endif %}
{% if day.captions %}
<a class="schedule-captions-link" href="{{ day.captions }}">
View Captions<span class="visually-hidden"> of {{ day.title }} sessions</span>
</a>
{% endif %}
</div>
<ol class="schedule">
{% for item in day.agenda %}
<li class="schedule-item">
<details open>
<summary>
<span class="summary-wrapper">
<span class="schedule-item-title">
{% if item.link %}
<a href="{{ item.link }}">{{ item.title }}</a>
{% else %}
{{ item.title }}
{% endif %}
</span>
<span class="schedule-item-type type-{{ item.type }}">
<span class="type">{{ item.type }}</span>
<span class="duration">{{ item.duration }}</span>
</span>
</summary>
{% if item.details %}
<dl class="schedule-item-details">
{% for detail in item.details %}
{% for detail_item in detail %}
<dt>{{ detail_item[0] }}</dt>
{% if detail_item[0] == 'Talks' %}
{% for talk in detail_item[1] %}
<dd>
{% if talk.recording %}
<a href="{{ talk.recording }}" id="{{ talk.title | handle }}">{{ talk.title }}</a>
{% else %}
<span id="{{ talk.title | slugify }}">{{ talk.title }}</span>
{% endif %}
<span class="author schedule-talk-info">{% include participant-link.html participant=talk.author %}</span>
<ul class="schedule-item-actions">
{% if talk.link %}
<li><a aria-describedby="{{ talk.title | slugify }}" class="schedule-item-action" href="{{ talk.link }}">{{ talk.linktype }}</a></li>
{% endif %}
{% for format in talk.slides %}
<li><a aria-describedby="{{ talk.title | slugify }}" class="schedule-item-action" href="{{ format }}">{% unless format contains 'https://www.w3.org/2020/maps/' %}Link to{% else %}{{ format | split: '.' | last | upcase }}{% endunless %} Slides</a></li>
{% endfor %}
{% if talk.discourse %}
<li><a aria-describedby="{{ talk.title | slugify }}" class="schedule-item-action" href="{{ talk.discourse }}">Discussion</a></li>
{% endif %}
</ul>
</dd>
{% endfor %}
{% elsif detail_item[0] == 'Panelists' %}
{% for panelist in detail_item[1] %}
<dd>{% include participant-link.html participant=panelist %}</dd>
{% endfor %}
{% else %}
{% for description in detail_item[1] %}
<dd>{{ description }}</dd>
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
</dl>
{% endif %}
</details>
</li>
{% endfor %}
</ol>
{% endfor %}
<p>
Discussion will continue online through the month of October,
in the hopes of gaining wide input towards a consensus on key issues.
In late October, moderators will post final calls for consensus,
summarizing the conclusions of each discussion.
These summaries will then be integrated into a workshop report.
</p>
<script>;(function(){
let timeElements = document.querySelectorAll(".schedule-time");
let date = Intl.DateTimeFormat ?
(new Intl.DateTimeFormat("en",
{
year: "numeric",
month: "short",
day: "numeric",
weekday: "long"
} )) :
{format: (function(date) {return date.toDateString() })};
let time = Intl.DateTimeFormat ?
(new Intl.DateTimeFormat(undefined,
{
hour: "numeric",
minute: "numeric",
timeZoneName: "short"
} )) :
{format: (function(date) {return date.toTimeString() })};
for (let i=0; i<timeElements.length; i++) {
let timeElement = timeElements[i];
let ts = new Date(timeElement.dateTime || timeElement.getAttribute("datetime"));
let oldText = timeElement.innerHTML;
timeElement.innerHTML =
'<span class="date">' + date.format(ts) + '</span>' +
'<span class="time"> @ ' + time.format(ts) + '</span>' +
'<span class="utc">(' + oldText + ')</span>';
}
})();
</script>
</article>
<h2 id="tips">
Instructions for participants
</h2>
<p>
The workshop series focuses on topics raised by participants in expressions of interest and position statements.
Each topic will be introduced by one or more short (or lightning) talks, or an expert panel,
and is then discussed among participants in the forums.
The goal of each workshop discussion is not to resolve all technical issues of the topic,
but to determine its relevance and priority to standardization.
</p>
<h3 id="session-formats">
Session Formats
</h3>
<dl class="format">
<dt class="schedule-item-type type-presentations" id="presentations">
presentations
</dt>
<dd>
<p>
Presentations are grouped by theme,
to introduce topics for discussion.
Talks are short (<15 minutes each)
and focused on introducing specific work or proposals.
</p>
<p>
If time is available during the live video conference,
some questions and discussion may follow the talk.
Further questions and comments are encouraged in the online discussion.
</p>
</dd>
<dt class="schedule-item-type type-panel" id="panel">
panel
</dt>
<dd>
<p>
Moderated panels provide an opportunity
for more free-ranging discussion on a theme.
Speakers are selected in advance by the program committee;
an assigned moderator will introduce the speakers and coordinate the discussion.
</p>
<p>
The panel discussions are only the start:
the topics they introduce will be the start of open discussion online,
where all workshop participants are encouraged
to exchange ideas, assess priorities,
and identify possible standardization actions.
The moderator will be tasked with keeping the discussion on topic,
and identifying areas of consensus for the final workshop report.
</p>
</dd>
<dt class="schedule-item-type type-breakout" id="breakout">
breakout
</dt>
<dt class="schedule-item-type type-hack" id="hack">
hack
</dt>
<dd>
<p>
These sessions will support more collaborative discussion
by smaller groups.
Breakout sessions will cover more specific technical topics
that didn't fit into the main workshop schedule.
Hack sessions will welcome new collaborators to a software or data project,
as discussed in the <a href="{{ relBase }}/call-for-participation#hack-day-proposals">call for participation</a>.
</p>
<p>
The specific format will depend on the topic and goals of the session,
but could include a mix of video presentations, live chat, and written discussion.
Regardless of format,
each group is expected to provide a written summary of their session.
</p>
</dd>
</dl>
<h3 id="minutes">
Maintaining records
</h3>
<p>
All session organizers are expected to create records
of what was discussed,
what conclusions or consensus was reached,
and any major areas of discussion or concern.
</p>
<p>
Breakout session organizers will be able to use the W3C's
IRC server and meeting-management bots.
See <a href="https://www.w3.org/wiki/IRC">tips on IRC at W3C</a>.
</p>
<h3 id="suggested-reading">Suggested Reading</h3>
<p>
If you can, please review the
<a href="{{ relBase }}/supporting-material">participant position statements and other background material</a>
before the workshops.
</p>