allgroupoverview.html
33 KB
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>All Group Meeting 2003</title>
<style type="text/css">
<!--
div.header { text-align: left }
h1.title { text-align: center }
body { color: black; background-color: white }
.title { text-align: center }
h1, h2, h3 {font-family: sans-serif}
a:hover {color: red}
-->
</style>
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="header" align="left">
<dl>
<dd><a href="http://www.w3.org/"><img alt="W3C" border="0" height="48"
width="72" src="http://www.w3.org/Icons/w3c_home" /></a> <a
href="http://www.w3.org/Member/Meeting/"><img
src="http://www.w3.org/Icons/WWW/meet_48x48" alt="AC Meeting"
border="0" height="28" width="28" /></a></dd>
</dl>
</div>
<h1 class="title" align="center">Technical Plenary and WG Meeting Event<br />
Royal Sonesta Hotel, Cambridge, MA USA</h1>
<h1 class="title" align="center">3 - 7 March 2003</h1>
<hr />
<ul>
<li><strong>REGISTRATION - CLOSES - 26 February 2003 | See <a
href="http://cgi.w3.org/Register/selectUser.pl?_w3c_special=listRegistrants&_w3c_meetingName=TPMar03">registrant
list</a></strong></li>
<li><a href="#logistics">Local Logistics</a>
<ul>
<li><a href="#Venue">Royal Sonesta Hotel</a> <strong><a
href="allgroupoverview/hotelform.html">Reservation Form</a> - Hotel
Discount Rate EXTENDED - EXPIRES - 7 February 2003 (17:00
Eastern)</strong></li>
<li><a href="#TransportationDetails">Transportation</a></li>
<li><a href="#Meals">Meals</a></li>
<li><a href="#connect">Connectivity</a></li>
</ul>
</li>
<li><a href="#Participation">Participation</a></li>
<li><a href="#Schedule">Schedule</a>
<ul>
<li>Monday/Tuesday, 3-4 March - WG/IG Meetings</li>
<li>Wednesday, 5 March - All-day Technical Plenary - <span
style="font-weight: bold"><a
href="http://www.w3.org/2003/03/TechPlenAgenda.html">Agenda</a></span></li>
<li>Wednesday, 5 March - Lunch-time <a href="bof.html">BOF
Tables</a></li>
<li>Wednesday (evening), 5 March <strong>- <span
style="font-weight: normal">Reception (19:00 - 21:00, <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skylines</a>)</span></strong></li>
<li>Thursday/Friday, 6 - 7 March - WG/IG Meetings</li>
</ul>
</li>
<li><a href="#Contacts">Contacts and Program Committee</a></li>
<li><a href="#Group">Appendix: Group Responses</a></li>
<li><a href="/2003/03/tpdial">Teleconference dial-back to meeting
rooms</a></li>
<li><a href="http://www.w3.org/2003/03/TP-participants.html">Participants
list</a></li>
</ul>
<p></p>
<hr />
<h2><a name="logistics" id="logistics">Local Logistics</a></h2>
<h3><a name="Venue" id="Venue">Venue</a> - <a
href="http://www.sonesta.com/boston/">Royal Sonesta Hotel</a>, Cambridge, MA
USA</h3>
<address>
Five Cambridge Parkway <br />
Cambridge, MA 02142 USA<br />
Tel.(main) : +1. 617.806.4200<br />
Tel.(reservation): +1.800.SONESTA (7663782) <br />
Fax : +1.617.806.4232
</address>
<ul>
<li>A block of rooms have been reserved at the Royal Sonesta Hotel at a
discount rate for 7 nights, from <strong>Saturday 1 March <span
style="font-weight: normal">through</span> Saturday 6 March,
2003.</strong></li>
<li><strong><span style="font-weight: bold">Discount
rate</span></strong><span
style="font-weight: normal"></span><strong><span
style="font-weight: normal">(as of 4 October 2002</span><span
style="font-weight: normal">):</span></strong>
<ul>
<li><span style="font-weight: normal"><span
style="font-weight: bold">$140.00</span> (plus 12.75% tax) -- double
or single room</span></li>
</ul>
</li>
<li><span style="font-weight: bold">Discount rate expires: 1 February
2003</span>
<p></p>
</li>
</ul>
<p>Please call the hotel and mention you are part of the "MIT/W3C" group or
fax the completed <a href="allgroupoverview/hotelform.html">reservation
form</a> to: +1.617.806.4232.</p>
<p></p>
<h3><a id="TransportationDetails"
name="TransportationDetails"><strong>Transportation Details</strong></a></h3>
<p><a href="http://www.massport.com/logan/">Boston Logan International
Airport</a> is the closest international airport to the meeting site. The
Royal Sonesta Hotel is located three miles from Logan Airport. The travel
time between the airport and the hotel (meeting site) will vary between 30
minutes to one hour depending on traffic conditions. Taxi are plentiful and
fares will range between $18.00-$28.00. <a
href="http://www.w3.org/2003/01/bostontrans.html">More ground transportation
details</a><br />
</p>
<p>Please Note: There is a major road construction project going on in Boston
called the "Big Dig." For this reason, we recommend taking a taxi or public
transportation rather than renting a car. If you prefer to rent a car, all
major car rental companies have locations at Logan Airport (Avis, Budget,
Hertz, etc.).</p>
<p></p>
<h3><a id="Meals" name="Meals">Meals</a></h3>
Morning coffee and drinks (though no breakfast or morning snacks), lunch, and
afternoon refreshments will be provided all five days in The Grand Ballroom
A&B. Attendees can get their own breakfast at the Gallery Cafe (on the <a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">first
floor of the hotel</a>) or at the<a
href="http://www.cambridgesidegalleria.com/go/deliciousdining.cfm">CambridgeSide
Galleria</a> mall across the street before the meetings start. <br />
<br />
<p><strong>Monday/Tuesday and Thursday/Friday:</strong> 12:00-14:00 - Buffet
Lunch<br />
It will be at the discretion of group Chairs to decide when their groups will
break for lunch, 12:00-13:00 or 13:00 - 14:00 etc.</p>
<p><strong>Wednesday:</strong> Buffet style with <strong><a
href="bof.html">BOF Tables</a></strong></p>
<p>There will be a light reception (there will be light food, but attendees
may want to plan for dinner afterwards) in the <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
rooms</a> from 19:00-21:00.</p>
<p>A sign-up sheet will be posted at the registration desk if you would like
to organize a lunch-time BOF discussion table. Please sign up early; there
may be space limitations.</p>
<h3><a name="connect" id="connect">Connectivity</a></h3>
<p>Wireless connection will be provided in all the meeting rooms. The
connection will be almost exclusively wireless so attendees should plan to
bring wireless cards in order to be connected to the network. There will be
one wired connection in each meeting room as a back-up for the chair. Due to
the contract for connectivity we have negotiated with the Sonesta, each
connection must be through the Sonesta and so absolutely no hubs will be
allowed.</p>
<p>Attendees should bring a 802.11b compliant (aka "WiFi") wireless card.<br
/>
<br />
Note: We do not make specific manufacturer recommendations, however WiFi
cards that are known to have worked fine in the past include the Enterasys
RoamAbout cards, the Orinoco cards, and the Apple Airport cards. There are
other name-brand products that are very probably suitable; be sure up-to-date
drivers are available for your particular operating system. If you have had
your card for more than a couple of years you should check that the firmware
in your card is up-to-date.</p>
<p></p>
<hr />
<h2><a id="Participation" name="Participation">Participation</a></h2>
<ul>
<li>For the Monday/Tuesday and Thursday/Friday WG and IG meetings,
participation is subject to each group's policy. Please contact the WG or
IG Chair for information about participation policy.
<p>Consult the list of <a href="/Member/Mail/">Working Group Chairs</a>
(<em>Member only</em>).</p>
</li>
<li>The Wednesday <a
href="http://www.w3.org/2003/03/TechPlenAgenda.html">Technical Plenary
session</a> is <strong><span style="font-weight: normal">open</span>
<span style="font-weight: normal">to</span> <span
style="font-weight: normal">W3C WG and IG participants.</span><span
style="font-weight: normal">N</span><span
style="font-weight: normal">ote:</span><span
style="font-weight: normal">the discussion during the plenary day will
<span style="font-weight: bold">not</span></span><span
style="font-weight: bold">be considered Member
confidential.</span></strong></li>
</ul>
<h2><a id="Schedule" name="Schedule">Schedule</a></h2>
<p>Meeting rooms have been reserved for Monday, Tuesday, Thursday, and Friday
to accommodate W3C Working Group (WG) and Interest Group (IG) face to face
meetings. <strong>Please note due to space limitations and group sizes, some
groups will not be in the same room each day.</strong></p>
<p>All rooms will be available from 08:00 to 18:00, with registration open
from 08:00-09:00, morning and afternoon coffee breaks and a lunch break
beginning at 12:00. Each group group should provide the exact daily agenda
(start time, end time, break time) to their participants.</p>
<p>Related: <a href="http://www.w3.org/Member/Eventscal.html">W3C Events
Calendar</a> (<em>Member only</em>)</p>
<h3><a id="alloc" name="alloc"><strong>MONDAY/TUESDAY, 3- 4 March 2003 --
schedule</strong></a></h3>
<table border="1" width="90%" summary="Group participation">
<tbody>
<tr>
<th width="33%" align="center"><strong>Group Name</strong> <br />
<span style="font-weight: normal">(can be linked to group agenda
page)</span></th>
<th width="12%" align="center"><strong>Registered Participants<br />
</strong> <span style="font-weight: normal">(linked to
attendee/observer list)</span></th>
<th width="12%" align="center"><strong>Observers</strong></th>
<th width="12%" align="center"><strong>Room name</strong><br />
<span style="font-weight: normal">(subject to change)</span></th>
</tr>
<tr>
<td>CSS</td>
<td style="text-align: center"><a href="0css.html">12</a></td>
<td style="text-align: center">12</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
D</a></td>
</tr>
<tr>
<td>Device Independence (DI) - Tuesday only</td>
<td style="text-align: center"><a href="03di.html">14</a></td>
<td style="text-align: center">17</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
E</a></td>
</tr>
<tr>
<td>Education & Outreach WG (EOWG)</td>
<td style="text-align: center"><a href="03eowg.html">21</a></td>
<td style="text-align: center">7</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">University
B</a></td>
</tr>
<tr>
<td>I18N GEO</td>
<td style="text-align: center"><a href="03i18ngeo.html">7</a></td>
<td style="text-align: center">10</td>
<td>Royal</td>
</tr>
<tr>
<td>Math</td>
<td style="text-align: center"><a href="03math.html">9</a></td>
<td style="text-align: center">7</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
B</a></td>
</tr>
<tr>
<td>Protocols & Formats (PF) - Tuesday only</td>
<td style="text-align: center"><a href="03pf.html">10</a></td>
<td style="text-align: center">7</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">University
A</a></td>
</tr>
<tr>
<td>Voice Browser</td>
<td style="text-align: center"><a href="03vb.html">37</a></td>
<td style="text-align: center">11</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Charles
B</a></td>
</tr>
<tr>
<td>Web Content Accessibility Guidelines (WCAG) - Tuesday only</td>
<td style="text-align: center"><a href="03wcag.html">11</a></td>
<td style="text-align: center">13</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">University
C</a></td>
</tr>
<tr>
<td>Web Ontology (Web Ont) -Tuesday only</td>
<td style="text-align: center"><a href="03webont.html">18</a></td>
<td style="text-align: center">n/a</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Charles
A</a></td>
</tr>
<tr>
<td>Web Services Description (WSD)</td>
<td style="text-align: center"><a href="03wsd.html">29</a></td>
<td style="text-align: center">17</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Somerset</a></td>
</tr>
<tr>
<td>XForms</td>
<td style="text-align: center"><a href="03xforms.html">14</a></td>
<td style="text-align: center">19</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
C</a></td>
</tr>
<tr>
<td>XML Core</td>
<td style="text-align: center"><a href="03xmlcore.html">11</a></td>
<td style="text-align: center">n/a</td>
<td>M: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
E</a><br />
T: suite 956</td>
</tr>
<tr>
<td>XML Query Functions & Operations TF (Monday only)</td>
<td style="text-align: center"><a href="03xqueryfo.html">15</a></td>
<td style="text-align: center">n/a</td>
<td>off-site</td>
</tr>
<tr>
<td>XML Schema</td>
<td style="text-align: center"><a href="03xmlschema.html">19</a></td>
<td style="text-align: center">n/a</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
A</a></td>
</tr>
<tr>
<td>XPath TF (Tuesday only)</td>
<td style="text-align: center"><a href="03xpathtf.html">12</a></td>
<td style="text-align: center">n/a</td>
<td>off-site</td>
</tr>
</tbody>
</table>
<p><span style="font-size: 8pt"><span style="font-size: 12pt">Table updated
25 February 2003; </span><a
href="http://www.w3.org/2003/01/TPMar2003/regByGroup"
style="font-size: 12pt">registrants list by group</a><span
style="font-size: 12pt"> page updated automatically from registration
system.</span></span></p>
<h3>WEDNESDAY, 5 March 2003 - Plenary</h3>
<p>All Plenary presentations will take place at the Royal Sonesta Hotel. W3C
will host a reception in the evening after the plenary session. People are
encouraged to use this opportunity to meet participants from other W3C
groups.</p>
<p>The plenary day will begin at approximately 08:30 and end at approximately
17:30.</p>
<p>An <a href="http://www.w3.org/2003/03/TechPlenAgenda.html">agenda page</a>
is available.</p>
<p></p>
<h3>THURSDAY/FRIDAY, 6 - 7 March 2003 -- Schedule</h3>
<table border="1" width="90%" summary="Group participation">
<tbody>
<tr>
<th width="33%" align="center"><strong>Group Name</strong> <br />
<span style="font-weight: normal">(can be linked to agenda
page)</span></th>
<th width="12%" align="center"><strong>Registered Participants<br />
</strong><span style="font-weight: normal">(linked to
attendee/observer list)</span></th>
<th width="12%" align="center"><strong>Observers</strong></th>
<th width="12%" align="center"><strong>Room name</strong><br />
<span style="font-weight: normal">(subject to change)</span></th>
</tr>
<tr>
<td>Device Independence (DI)</td>
<td style="text-align: center"><a href="03di.html">16</a></td>
<td style="text-align: center">16</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
C</a></td>
</tr>
<tr>
<td>Document Object Model (DOM)</td>
<td style="text-align: center"><a href="03dom.html">8</a></td>
<td style="text-align: center">9</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">University
A</a></td>
</tr>
<tr>
<td>Glossary (Friday only)</td>
<td style="text-align: center">10</td>
<td style="text-align: center">?</td>
<td>Suite 1067</td>
</tr>
<tr>
<td>HTML</td>
<td style="text-align: center"><a href="03html.html">12</a></td>
<td style="text-align: center">12</td>
<td>T: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
D</a><br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
B</a></td>
</tr>
<tr>
<td>I18N Core TF</td>
<td style="text-align: center"><a href="03i18nc.html">4</a></td>
<td style="text-align: center">8</td>
<td>Royal</td>
</tr>
<tr>
<td>Multimodal Interaction (MMI)</td>
<td style="text-align: center"><a href="03MMI.html">50</a></td>
<td style="text-align: center">13</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Parkview</a></td>
</tr>
<tr>
<td>P3PWG</td>
<td style="text-align: center"><a href="03p3p.html">10</a></td>
<td style="text-align: center">4</td>
<td>T: Suite 956 <br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
E</a></td>
</tr>
<tr>
<td>QAWG</td>
<td style="text-align: center"><a href="03qa.html">11</a></td>
<td style="text-align: center">11</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">University
B</a></td>
</tr>
<tr>
<td>SVG</td>
<td style="text-align: center"><a href="03svg.html">21</a></td>
<td style="text-align: center">12</td>
<td>T: <a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Charles
A</a><br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
A</a></td>
</tr>
<tr>
<td><a href="http://www.w3.org/2001/sw/meetings/tech-200303/ ">SW
Architecture</a></td>
<td style="text-align: center"><a href="03swa.html">56</a></td>
<td style="text-align: center">n/a</td>
<td>T: <a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Charles
B</a><br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Riverfront</a></td>
</tr>
<tr>
<td>Timed Text</td>
<td style="text-align: center"><a href="03tt.html">9</a></td>
<td style="text-align: center">14</td>
<td>T: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
E</a><br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
D</a></td>
</tr>
<tr>
<td>User Agent WG (UAWG)</td>
<td style="text-align: center"><a href="03ua.html">9</a></td>
<td style="text-align: center">8</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/lobbyeast.gif">University
C</a></td>
</tr>
<tr>
<td>Web Services Architecture</td>
<td style="text-align: center"><a href="03wsa.html">32</a></td>
<td style="text-align: center">25</td>
<td><a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Somerset</a></td>
</tr>
<tr>
<td>XMLP</td>
<td style="text-align: center"><a
href="http://cgi.w3.org/Register/selectUser.pl?_w3c_special=listRegistrants&_w3c_meetingName=XMLPMarch2003">19</a></td>
<td style="text-align: center">n/a</td>
<td>off-site</td>
</tr>
<tr>
<td>XML Query</td>
<td style="text-align: center"><a href="03xmlquery.html">25</a></td>
<td style="text-align: center">n/a</td>
<td>T: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
A</a> <br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Charles
B</a></td>
</tr>
<tr>
<td>XSL</td>
<td style="text-align: center"><a href="03xsl.html">17</a></td>
<td style="text-align: center">n/a</td>
<td>T: <a
href="http://www.sonesta.com/supplementalImages/boston/secondwest.gif">Skyline
B</a><br />
F: <a
href="http://www.sonesta.com/supplementalImages/boston/secondeast.gif">Charles
A</a></td>
</tr>
</tbody>
</table>
<p><span style="font-size: 8pt"><span style="font-size: 12pt">Table updated
25 February 2003; </span><a
href="http://www.w3.org/2003/01/TPMar2003/regByGroup"
style="font-size: 12pt">registrants list by group</a><span
style="font-size: 12pt"> page updated automatically from registration
system.</span></span></p>
<h2><a id="Contacts" name="Contacts">Contacts and Program Committee</a></h2>
<ul>
<li><strong>Plenary Day Program Committee</strong> <a
href="mailto:steve@w3.org">Steve Bratt</a>, <a
href="mailto:janet@w3.org">Janet Daly</a>, Paul Cotton, David Orchard,
Debbie Dahl, Donald Eastlake, Patrick Ion, Al Gilman, Noah Mendelsohn,
Brian McBride and Steven Pemberton. Please contact the Committee with
questions or suggestions.</li>
<li><strong>Local Host</strong> - <a href="http://www.w3.org">World Wide
Web Consortium</a> - W3C/ MIT site</li>
<li><span style="font-weight: bold">Local Meeting Planners</span> - <a
href="mailto:amy@w3.org">Amy van der Hiel</a> and <a
href="mailto:susan@w3.org">Susan Westhaver</a></li>
<li><strong>Send questions and queries to</strong> <a
href="mailto:w3t-tpregister@w3.org"><strong>tpregister@w3.org</strong></a></li>
</ul>
<p></p>
<hr />
<h2><a id="Group" name="Group">Appendix: Group Responses</a></h2>
<p>These are the results of the <a
href="http://lists.w3.org/Archives/Member/chairs/2002JulSep/0118.html">request
for information</a> (W3C Member only) about participating groups.</p>
<p>(* are those which are not flexible about meeting days, "Meet/Not Meet"
entries in <span style="font-style: italic">italic</span> are those unmet in
the allocation table above)</p>
<table
summary="multi-columns table gathering the input from the W3C WG chairs for the technical plenary"
border="1">
<tbody>
<tr>
<th>Group name</th>
<th>Chair/Contact name</th>
<th>Days preference</th>
<th>Size</th>
<th>Plenary size</th>
<th>Meet with</th>
<th>No overlap</th>
<th>Observers</th>
</tr>
<tr>
<th><a href="http://www.w3.org/Style/Group/">CSS</a></th>
<td>Bert Bos</td>
<td>M/T (also Sunday)</td>
<td>10-12</td>
<td>~6</td>
<td><span style="font-style: italic">DI</span>, VB, SYMM IG</td>
<td>HTML, SVG, <span style="font-style: italic">I18N</span></td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2001/di/Group/">DI</a><em><br />
(Member only)</em></th>
<td>Roger Gimson</td>
<td>Th/F* (also T)</td>
<td>15</td>
<td>?</td>
<td><span style="font-style: italic">WAI-PF</span>, <span
style="font-style: italic">XForms</span>, XHTML, <span
style="font-style: italic">CSS, <span
style="font-style: normal">I18N</span></span></td>
<td>XForms</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/DOM/Group/">DOM</a><em><strong><br />
(Member only)</strong></em></th>
<td>Ray Whitmer</td>
<td>no pref</td>
<td>12</td>
<td>?</td>
<td>.</td>
<td>WSD,<span style="font-style: italic">XMLP</span>, XMLCore</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/WAI/EO/">EOWG</a></th>
<td>Judy Brewer</td>
<td>no pref</td>
<td>18-20</td>
<td>12</td>
<td>PF, <span style="font-style: italic">UA, <span
style="font-style: normal">WCAG,</span> DI, I18N</span></td>
<td>.</td>
<td>w/ chair's permission</td>
</tr>
<tr>
<th>Glossary</th>
<td>Wendy Chisholm</td>
<td>Friday only</td>
<td>10-12</td>
<td>?</td>
<td>?</td>
<td>.</td>
<td>w/ chair's permission</td>
</tr>
<tr>
<th><a href="http://www.w3.org/MarkUp/Group/">HTML</a><em><br />
(Member only)</em></th>
<td>Steven Pemberton</td>
<td>Th/F*</td>
<td>15</td>
<td>20</td>
<td>RDF, Linking. MMI</td>
<td>XForms, <span style="font-style: italic">DI</span></td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/International/Group/">I18N
Core</a><em><br />
(Member only)</em></th>
<td>Martin Dürst</td>
<td>M/T</td>
<td>5-6</td>
<td>5</td>
<td>.</td>
<td><span style="font-style: italic"></span></td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/International/geo/">I18N GEO</a></th>
<td>Richard Ishida</td>
<td>Th/F</td>
<td>5-6</td>
<td>5</td>
<td>.</td>
<td></td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/Math/Group/">Math</a></th>
<td>Patrick Ion</td>
<td>Th/F</td>
<td>12-16</td>
<td>8-12</td>
<td><span style="font-style: italic">SVG</span>,XML, Schema, <span
style="font-style: italic">XSL</span></td>
<td>XSL</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2002/mmi/Group/">MMI</a><strong><em><br
/>
(Member only)</em></strong>
<p><a href="http://www.w3.org/2002/mmi/Group/"><br />
</a></p>
</th>
<td>Debbie Dahl</td>
<td>Th/F</td>
<td>35</td>
<td>20</td>
<td><em><span style="font-style: normal">XHTML</span></em></td>
<td>VBWG</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/WAI/PF/Group/">PF WG</a></th>
<td>Al Gilman</td>
<td>one day T <br />
(or Th, M, F)</td>
<td>8</td>
<td>8</td>
<td><span style="font-style: italic">DI</span> ?</td>
<td><span style="font-style: italic">UA</span><span
style="font-style: italic">(request no overlap DI and MMI</span>)</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/P3P/">P3PWG</a></th>
<td>Lorrie Cranor/Danny Weitzner</td>
<td>Th/F</td>
<td>10</td>
<td>?</td>
<td>.</td>
<td>.</td>
<td>?</td>
</tr>
<tr>
<th><a href="http://www.w3.org/QA/WG/">QA WG</a></th>
<td>Lofton Henderson</td>
<td>T/F*</td>
<td>10-12</td>
<td>8-10</td>
<td>.</td>
<td>.</td>
<td>yes</td>
</tr>
<tr>
<th><span style="text-decoration: line-through">RDF Core</span><br />
(switched to SWArch)</th>
<td style="text-decoration: line-through">Brian McBride</td>
<td style="text-decoration: line-through">no pref</td>
<td style="text-decoration: line-through">15</td>
<td style="text-decoration: line-through">?</td>
<td style="text-decoration: line-through">.</td>
<td style="text-decoration: line-through">WebOnt</td>
<td style="text-decoration: line-through">w/chair's permission</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2001/sw/">SW</a> Arch</th>
<td>Eric Miller</td>
<td>T/F</td>
<td>15</td>
<td>?</td>
<td>.</td>
<td>?</td>
<td>w/chair's permission</td>
</tr>
<tr>
<th><a
href="http://www.w3.org/Graphics/SVG/Group/">SVG</a><strong><em><br />
(Member only</em></strong>)</th>
<td>Chris Lilley/ Dean Jackson</td>
<td>no pref</td>
<td>20</td>
<td>15</td>
<td><span style="font-style: italic">XForms</span></td>
<td>CSS</td>
<td>member only</td>
</tr>
<tr>
<th><a href="http://www.w3.org/AudioVideo/TT/">Timed Text</a></th>
<td>Thierry Michel</td>
<td>Th/F</td>
<td>20</td>
<td>15</td>
<td>.</td>
<td>.</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/WAI/UA/">UA WG</a></th>
<td>Jon Gunderson</td>
<td>Th/F</td>
<td>10-12</td>
<td>~3-4</td>
<td>HTML, QA, WAI ER</td>
<td></td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/Voice/Group/">VB WG</a><em><br />
(Member only</em>)</th>
<td>Jim Larson</td>
<td>M/T</td>
<td>35</td>
<td>20</td>
<td><span style="font-style: italic">DOM</span>, I18N, WAIPF</td>
<td>MMI</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/WAI/GL/">WCAG WG</a></th>
<td>Wendy Chisholm</td>
<td>no pref</td>
<td>10-15</td>
<td>10</td>
<td><span style="font-style: italic">SVG</span>, DI, I18N, WAI</td>
<td>.</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2001/sw/WebOnt/">Web Ont</a></th>
<td>Guus Schreiber (Jim Hendler not attending)</td>
<td>M/T</td>
<td>30</td>
<td>15</td>
<td></td>
<td>RDF Core</td>
<td>no</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2002/ws/arch/">WS Arch</a></th>
<td>Mike Champion/<br />
Jonathan Marsh</td>
<td>Th/F*</td>
<td>25</td>
<td>20</td>
<td>I18N</td>
<td>WSD, XML Core <span style="font-style: italic">DOM</span>, XML
Schema</td>
<td>member only
<p>w/ chair's permission</p>
</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2002/ws/desc/">WS Desc</a></th>
<td>Mike Champion/<br />
Jonathan Marsh</td>
<td>M/T</td>
<td>25</td>
<td>20</td>
<td>WSA</td>
<td>WSA<br />
XMLP, <span style="font-style: italic">XMLSch,</span> XSL, <span
style="font-style: italic">XML Core</span></td>
<td>member only
<p>w/ chair's permission</p>
</td>
</tr>
<tr>
<th><a href="http://www.w3.org/MarkUp/Forms/Group/">XForms</a><em><br />
(Member only)</em></th>
<td>Steven Pemberton</td>
<td>M/T*</td>
<td>15</td>
<td>20</td>
<td>CSS</td>
<td>HTML</td>
<td>yes</td>
</tr>
<tr>
<th><a href="http://www.w3.org/XML/Group/Core">XMLCore</a><em><br />
(Member only)</em></th>
<td>Michael Sperberg-McQueen</td>
<td>M/T*</td>
<td>10</td>
<td>7</td>
<td><span style="font-style: italic">HTML, SVG</span></td>
<td>XQuery, XSL, DOM, WSD</td>
<td>no</td>
</tr>
<tr>
<th><a href="http://www.w3.org/2000/xp/Group/">XMLP</a></th>
<td>Carine Bournez</td>
<td>T/F</td>
<td>15</td>
<td>n/a</td>
<td>.</td>
<td>.</td>
<td>no</td>
</tr>
<tr>
<th><a href="http://www.w3.org/XML/Group/Query">XML Query</a><em><br />
(Member only)</em></th>
<td>Michael Sperberg-McQueen/<br />
Paul Cotton</td>
<td>T/F* (F&O Task Force M)</td>
<td>25</td>
<td>15</td>
<td>XSL (adj. rooms) <span style="font-style: italic">XForms,<span
style="font-style: normal">I18N</span></span></td>
<td>XMLSch, XMLC</td>
<td>no</td>
</tr>
<tr>
<th><a href="http://www.w3.org/XML/Schema">XMLSchema</a></th>
<td>Michael Sperberg-McQueen</td>
<td>M/T*</td>
<td>18</td>
<td>10</td>
<td><em><span style="font-style: normal"></span></em></td>
<td>XQuery, XSL, <span style="font-style: italic">WSA</span></td>
<td>no</td>
</tr>
<tr>
<th><a href="http://www.w3.org/Style/XSL/Group/">XSL</a><br />
(Member only)</th>
<td>Michael Sperberg-McQueen</td>
<td>Th/F* (XPath Task Force T)</td>
<td>15</td>
<td>10</td>
<td>XQuery (adj. rooms), <span style="font-style: italic">XForms,<span
style="font-style: normal">I18N</span></span></td>
<td>XMLSch, XMLC</td>
<td>no</td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" width="90%" summary="Group participation">
<tbody>
<tr>
<th>ERT WG</th>
<td>Wendy Chisholm</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
<tr>
<th>TAG</th>
<td>Ian Jacobs</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
<tr>
<th>WAI CG</th>
<td>Judy Brewer</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
<tr>
<th>WAI IG</th>
<td>Judy Brewer</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
<tr>
<th>XML Linking</th>
<td>Michael Sperberg-McQueen</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
<tr>
<th>XML Plenary IG</th>
<td>Michael Sperberg-McQueen</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
<tr>
<th>XMLP</th>
<td>David Fallside</td>
<td colspan="1"><em>Not meeting</em></td>
</tr>
</tbody>
</table>
<p></p>
<p></p>
<hr />
<address>
Amy van der Hiel<br />
@(#) $Id: Overview.html,v 1.65 2003/05/12 16:50:43 susan Exp $
</address>
</body>
</html>