Schedule.html 42.9 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 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://www.w3.org/2003/g/data-view
  http://microformats.org/wiki/hcalendar-profile">
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>TPAC 2008: Schedule and Groups</title>
  <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
  <link rel="stylesheet" href="print.css" type="text/css" media="print" />
  <link rel="transformation"
  href="http://www.w3.org/2002/12/cal/glean-hcal.xsl" />
</head>

<body>

<div id="page">
<h1><span class="title summary">World Wide Web Consortium<br />
TPAC 2008:</span> <span class="baseline">W3C Technical Plenary / Advisory
Committee Meetings Week</span> <span class="baseline">20 - 24 October
2008</span> </h1>
</div>

<div id="navigation">
<ul>
  <li><a href="http://www.w3.org">Home</a></li>
  <li><a href="/2008/10/TPAC/Overview.html">TPAC2008</a></li>
  <li class="here"><a href="/2008/10/TPAC/Schedule.html">TPAC
  Schedule</a></li>
  <li><a href="/2008/10/TPAC/TPDay-Agenda.html">TP Agenda</a></li>
  <li><a href="/2008/10/TPAC/AC-agenda.html">AC Agenda
    <small>[Member]</small></a></li>
  <li><a href="/Member/Meeting/">Past AC Meetings
  <small>[Member]</small></a></li>
  <li><a href="/Consortium/meetings">About W3C Meetings</a></li>
</ul>
</div>

<div id="main">
<h2>Schedule (based on chairs questionnaire <a
href="http://www.w3.org/2002/09/wbs/34786/TPAC2008/results">results</a>)</h2>

<h5 class="local-navigation"><a href="#Sun">Sunday</a> (CSS Group) | <a
href="#Mon">Monday</a> (<a href="#L12382">Groups</a>) | <a
href="#Tues">Tuesday</a> (<a href="#L12944">Groups</a>) | <a
href="#Wed">Wednesday</a> (Technical Plenary) | <a href="#Thurs">Thursday</a>
(<a href="#L13691">Groups</a>+AC) | <a href="#Fri">Friday</a> (<a
href="#L14228">Groups</a>) </h5>

<h3 id="Sun">Sunday 19 October<br />
09:00 -18:00<br />
CSS Group Meeting</h3>

<p>The CSS WG meeting is open to the CSS WG participants (<a
href="http://www.w3.org/2002/09/wbs/35125/TPAC2008/">registration</a>). No
observers are allowed on that day (observers will be allowed, with the
Chair's agreement, at the CSS WG meetings of Monday and Tuesday). Lunch will
be available for the CSS WG participants only that have registered for the
meeting.</p>

<p>Groups who have arranged for teleconference facilities may use the
<a href="http://www.w3.org/1998/12/bridge/dial/tp-200810.html">TP2008
dialout page</a> to have Zakim call the speakerphone in the meeting room.</p>

<table>
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-19T08:30:00+02:00">08:30</abbr>-<abbr class="dtend" title="2008-10-19T09:00:00+02:00">09:00</abbr></th>
      <td class="description"><strong class="summary">Registration</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-19T10:30:00+02:00">10:30</abbr>-<abbr class="dtend" title="2008-10-19T11:30:00+02:00">11:30</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-19T12:00:00+02:00">12:00</abbr>-<abbr class="dtend" title="2008-10-19T14:00:00+02:00">14:00</abbr></th>
      <td class="description"><strong class="summary">Lunch - Restaurant le Féréol</strong> </td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-19T15:00:00+02:00">15:00</abbr>-<abbr class="dtend" title="2008-10-19T16:00:00+02:00">16:00</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break</strong></td>
    </tr>
  </tbody>
</table>

<div class="room">

<table class="room">
  <thead>
    <tr>
      <th>Room</th>
      <th><span title="Capacity of the room">Cap.</span></th>
      <th>Group Name (acronym)<br />
        Contact</th>
      <th>Confidentiality<br />
        Observer policy</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>Azur</th>
      <td>30</td>
      <td><strong>Cascading Style Sheets (CSS)</strong><br />
        Daniel Glazman/Peter Linss &rarr; <a href="/Style/Group/2008/Mandelieu">agenda</a></td>
      <td>Not Member confidential<br />
        No observers allowed</td>
    </tr>
  </tbody>
</table>
</div>
<hr />

<h3 id="Mon">Monday 20 October<br />
08:30 -18:00<br />
All Group Meetings</h3>

<p>The All Goup Meetings are open only to W3C Interest and Working Group
participants, Incubator Groups, AC representatives, Chairs, AB, TAG, Offices
staff and W3C Team (<a
href="http://www.w3.org/2002/09/wbs/35125/TPAC2008/">registration</a>).
Special permissions for guests not included in the groups described above
must have been arranged beforehand with the Group Chair.</p>

<p>Groups who have arranged for teleconference facilities may use the
<a href="http://www.w3.org/1998/12/bridge/dial/tp-200810.html">TP2008 dialout page</a>
to have Zakim call the speakerphone in the meeting room.</p>

<table id="L12382">
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-20T08:00:00+02:00">08:00</abbr><abbr class="dtend" title="2008-10-20T18:00:00+02:00"></abbr></th>
      <td class="description"><strong class="summary">Registration</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-20T08:30:00+02:00">08:30</abbr>-<abbr class="dtend" title="2008-10-20T18:00:00+02:00">18:00</abbr></th>
      <td class="description"><strong class="summary">All Group Meetings</strong> - See the table below for
        groups/locations</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-20T10:30:00+02:00">10:30</abbr>-<abbr class="dtend" title="2008-10-20T11:30:00+02:00">11:30</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-20T12:00:00+02:00">12:00</abbr>-<abbr class="dtend" title="2008-10-20T14:00:00+02:00">14:00</abbr></th>
      <td class="description"><strong class="summary">Lunch - Restaurant le Féréol</strong> Lunch will be in
        two shifts: 12-1pm and 1-2pm (Meeting Planners will coordinate w/
        Group Chairs.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-20T15:00:00+02:00">15:00</abbr>-<abbr class="dtend" title="2008-10-20T16:00:00+02:00">16:00</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong>
        <strong></strong>(To allow for flexibility in group meeting
        schedules, food and beverages will be available for one hour, and
        groups are welcome to take their break at any point during this
      time.)</td>
    </tr>
  </tbody>
</table>

<div class="room">

<table class="room">
  <thead>
    <tr>
      <th>Room</th>
      <th><span title="Capacity of the room">Cap.</span></th>
      <th>Group Name (acronym)<br />
        Contact</th>
      <th>Confidentiality<br />
        Observer policy</th>
      <td></td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>Azur</th>
      <td>35</td>
      <td><strong>Cascading Style Sheets WG (CSS)</strong><br />
        Daniel Glazman/Peter Linss &rarr; <a href="/Style/Group/2008/Mandelieu">agenda</a></td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>8</th>
      <td>19</td>
      <td><strong>Common Web Language - EI XG (CWL-EI)</strong><br />
        Hiroshi Uchida</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>1</th>
      <td>19</td>
      <td><strong>Efficient XML Interchange WG (EXI)</strong><br />
        Michael Cokus</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>3</th>
      <td>19</td>
      <td><strong>Forms WG</strong><br />
        John Boyer</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>5</th>
      <td>19</td>
      <td><strong>Internationalization Core WG (I18N) </strong><br />
        Addison Phillips</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Iles C</th>
      <td>35</td>
      <td><strong>Media Fragments WG</strong><br />
        Philippe Le Hégaret </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera A</th>
      <td>50</td>
      <td><strong>Mobile Web Best Practices WG (MWBP)</strong><br />
        Dominique Hazaël-Massieux </td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>138</th>
      <td>19</td>
      <td><strong>Multimodal Interaction WG (MMI)<br />
        </strong> Deborah Dahl</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Esterel</th>
      <td>25</td>
      <td><strong>Protocols and Format WG (PF)</strong><br />
        Al Gilman/Michael Cooper</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera B</th>
      <td>50</td>
      <td><strong>Semantic Web Health Care and Life Sciences IG (SWHCLS)
        </strong><br />
        Susie Stephens </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera C</th>
      <td>50</td>
      <td><strong>Semantic Web IG (SWIG)</strong><br />
        Ivan Herman</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>9</th>
      <td>19</td>
      <td><strong>Synchronized Multimedia WG (SYMM)</strong> <br />
        Thierry Michel</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Conseil</th>
      <td>16</td>
      <td><strong>Technical Architecture Group (TAG) - Morning</strong><br />
        Stuart Williams</td>
      <td><strong>No Observers allowed</strong><br />
        (the proceedings will be made public later)<br />
      </td>
      <td></td>
    </tr>
    <tr>
      <th>136</th>
      <td>19</td>
      <td><strong>User Agent Accessibility Guidelines WG (UAAG)</strong><br />
        Jim Allan</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Iles A</th>
      <td>35</td>
      <td><strong>Web Applications WG - Group 1 (Formerly WAF WG)</strong><br
        />
        Art Barstow</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Iles B</th>
      <td>35</td>
      <td><strong>Web Applications WG - Group 2 (Formerly Web API
        WG)</strong><br />
        Charles McCathieNevile</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>6</th>
      <td>19</td>
      <td><strong>XML Security WG (XML Sec)</strong><br />
        Frederick Hirsch</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>7</th>
      <td>19</td>
      <td><strong>XSL WG</strong><br />
        Sharon Adler</td>
      <td><strong>Member confidential<br />
        No Observers allowed</strong></td>
      <td></td>
    </tr>
    <!--
                                                                                                    <tr>
                                                                                                          <th>Exec 11</th>
                                                                                                          <td>15</td>
                                                                                                          <td><strong>@@</strong><br />
                                                                                                            @@</td>
                                                                                                          <td><strong>@</strong><br />
                                                                                                            <strong>@</strong> </td>
                                                                                                          <td></td>
                                                                                                        </tr>
                                                                                                    -->
  </tbody>
</table>
</div>
<hr />

<h3 id="Tues">Tuesday 21 October<br />
08:30-18:00<br />
All Group Meetings</h3>

<p>The All Goup Meetings are open only to W3C Interest and Working Group
participants, Incubator Groups, AC representatives, Chairs, AB, TAG, Offices
staff and W3C Team (<a
href="http://www.w3.org/2002/09/wbs/35125/TPAC2008/">registration</a>).
Special permissions for guests not included in the groups described above
must have been arranged beforehand with the Group Chair.</p>

<p>Groups who have arranged for teleconference facilities may use the
<a href="http://www.w3.org/1998/12/bridge/dial/tp-200810.html">TP2008
dialout page</a>
to have Zakim call the speakerphone in the meeting room.</p>

<table id="L12944">
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T08:00:00+02:00">08:00</abbr><abbr class="dtend" title="2008-10-21T18:00:00+02:00"></abbr></th>
      <td class="description"><strong class="summary">Registration </strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T08:30:00+02:00">08:30</abbr>-<abbr class="dtend" title="2008-10-21T18:00:00+02:00">18:00</abbr></th>
      <td class="description"><strong class="summary">All Group Meetings</strong> - See the table below for
        groups/locations</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T10:30:00+02:00">10:30</abbr>-<abbr class="dtend" title="2008-10-21T11:30:00+02:00">11:30</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T12:00:00+02:00">12:00</abbr>-<abbr class="dtend" title="2008-10-21T14:00:00+02:00">14:00</abbr></th>
      <td class="description"><strong class="summary">Lunch - Restaurant le Féréol</strong><br />
        Lunch will be in two shifts, 12-1pm and 1-2pm, (Meeting Planners will
        coordinate w/ Group Chairs.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T15:00:00+02:00">15:00</abbr>-<abbr class="dtend" title="2008-10-21T16:00:00+02:00">16:00</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
  </tbody>
</table>

<div class="room">

<table class="room">
  <thead>
    <tr>
      <th>Room</th>
      <th><span title="Capacity of the room">Cap.</span></th>
      <th>Group Name (acronym)<br />
        Contact</th>
      <th>Confidentiality<br />
        Observer policy</th>
      <td></td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>Conseil</th>
      <td>16</td>
      <td><strong>Advisory Board (AB)</strong><br />
        Steve Zilles</td>
      <td><strong>Member confidential</strong><br />
        <strong>No Observers allowed</strong><br />
      </td>
      <td></td>
    </tr>
    <tr>
      <th>Azur</th>
      <td>35</td>
      <td><strong>Cascading Style Sheets WG (CSS)</strong><br />
        Daniel Glazman/Peter Linss &rarr; <a href="/Style/Group/2008/Mandelieu">agenda</a></td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>1</th>
      <td>19</td>
      <td><strong>Efficient XML Interchange WG (EXI)</strong><br />
        Michael Cokus</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>3</th>
      <td>19</td>
      <td><strong>Forms WG</strong><br />
        John Boyer</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>5</th>
      <td>19</td>
      <td><strong>Internationalization Core WG (I18N) </strong><br />
        Addison Phillips</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>8</th>
      <td>19</td>
      <td><strong>Japanese Layout Taskforce (JLTF) </strong><br />
        Felix Sasaki</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Iles C</th>
      <td>35</td>
      <td><strong>Media Fragments WG</strong><br />
        Philippe Le Hégaret </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera A</th>
      <td>50</td>
      <td><strong>Mobile Web Best Practices WG (MWBP)</strong><br />
        Dominique Hazaël-Massieux </td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>9</th>
      <td>19</td>
      <td><strong>Model-based UI XG (Moved to Friday Afternoon)</strong> <br />
        Dave Raggett</td>
      <td><strong></strong>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>138</th>
      <td>19</td>
      <td><strong>Multimodal Interaction WG (MMI)<br />
        </strong> Deborah Dahl</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Esterel</th>
      <td>25</td>
      <td><strong>Protocols and Format WG (PF)</strong><br />
        Al Gilman/Michael Cooper</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera B</th>
      <td>50</td>
      <td><strong>Semantic Web Health Care and Life Sciences IG (SWHCLS)
        </strong><br />
        Susie Stephens </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera C</th>
      <td>50</td>
      <td><strong>Semantic Web IG (SWIG)</strong><br />
        Ivan Herman</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <!--
                                        <tr>
                                          <th>Exec 3</th>
                                          <td>18</td>
                                          <td><strong>group</strong><br />
                                            contact name </td>
                                          <td><strong>confid</strong><br />
                                            Observers?</td>
                                          <td></td>
                                        </tr>
                                    -->
    <tr>
      <th>136</th>
      <td>19</td>
      <td><strong>User Agent Accessibility Guidelines WG (UAAG)</strong><br />
        Jim Allan</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Iles A</th>
      <td>35</td>
      <td><strong>Web Applications WG - Group 1 (Formerly WAF WG)</strong><br
        />
        Art Barstow</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Iles B</th>
      <td>35</td>
      <td><strong>Web Applications WG - Group 2 (Formerly Web API
        WG)</strong><br />
        Charles McCathieNevile</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>6</th>
      <td>19</td>
      <td><strong>XML Security WG (XML Sec)</strong><br />
        Frederick Hirsch</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>7</th>
      <td>19</td>
      <td><strong>XSL WG</strong><br />
        Sharon Adler</td>
      <td><strong>Member confidential<br />
        No Observers allowed</strong></td>
      <td></td>
    </tr>
    <!--
                                                                                                    <tr>
                                                                                                          <th>Exec 11</th>
                                                                                                          <td>15</td>
                                                                                                          <td><strong>@@</strong><br />
                                                                                                            @@</td>
                                                                                                          <td><strong>@</strong><br />
                                                                                                            <strong>@</strong> </td>
                                                                                                          <td></td>
                                                                                                        </tr>
                                                                                                    -->
  </tbody>
</table>
</div>
<hr />

<h3 id="day011">Tuesday Evening, 21 October<br />
19:00-22:00<br />
Advisory Committee Opening talk and Advisory Committee Dinner</h3>

<p>The meeting and dinner are only open to Advisory Committee
representatives, Chairs, AB, TAG, Offices staff and Team. The AC meeting will
be considered Member confidential.</p>

<table>
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T18:45:00+02:00">18:45</abbr>-<abbr class="dtend" title="2008-10-21T19:30:00+02:00">19:30</abbr></th>
      <td class="description"><strong class="summary">Refreshments - Riviera C</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T19:30:00+02:00">19:30</abbr>-<abbr class="dtend" title="2008-10-21T20:00:00+02:00">20:00</abbr></th>
      <td class="description"><strong class="summary">AC Opening Talk</strong> - <a href="AC-Agenda.html">AC
        Meeting agenda</a> [draft] (Member-only) <strong>- Riviera
      C</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-21T20:00:00+02:00">20:00</abbr>-<abbr class="dtend" title="2008-10-21T21:45:00+02:00">21:45</abbr></th>
      <td class="description"><strong class="summary">AC Dinner - Restaurant Le Féréol</strong></td>
    </tr>
  </tbody>
</table>
<hr />

<h3 id="Wed">Wednesday, 22 October<br />
08:45-22:00<br />
Technical Plenary Day<br />
+ Reception</h3>

<p>The Technical Plenary Day and Reception are open to W3C Interest and
Working Group participants, Incubator Groups, Advisory Committee
representatives, Group Chairs, AB, TAG, Offices staff, Team, Invited Guests,
and Invited Press.</p>

<table>
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-22T08:00:00+02:00">08:00</abbr><abbr class="dtend" title="2008-10-22T18:00:00+02:00"></abbr></th>
      <td class="description"><strong class="summary">Registration</strong> </td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-22T08:45:00+02:00">08:45</abbr>-<abbr class="dtend" title="2008-10-22T18:15:00+02:00">18:15</abbr></th>
      <td class="description"><strong class="summary">Meeting</strong> - <a href="TPDay-Agenda.html">Technical
        Plenary Day Agenda</a> [draft] - <strong>Riviera A,
      B, C</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-22T12:00:00+02:00">12:00</abbr>-<abbr class="dtend" title="2008-10-22T13:30:00+02:00">13:30</abbr></th>
      <td class="description"><strong class="summary">Lunch - </strong><strong>Restaurant le Féréol</strong>
      </td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-22T19:00:00+02:00">19:00</abbr>-<abbr class="dtend" title="2008-10-22T22:00:00+02:00">22:00</abbr></th>
      <td class="description"><strong class="summary">Reception -</strong> <strong>Iles</strong></td>
    </tr>
  </tbody>
</table>
<hr />

<h3 id="Thurs">Thursday, 23 October<br />
13:30-18:00<br />
Advisory Committee Meeting</h3>

<p>In order to avoid groups having to meet on Saturday, the Advisory
Committee meeting will take place in parallel with groups on Thursday
afternoon. AC meeting participants who are also in groups meeting on Thursday
PM should, if possible, coordinate with their Groups to be absent, and
arrange their group meeting schedule to minimize the difficulties due to
their absence.</p>

<p>The Advisory Committee meeting is open only to Advisory Committee
representatives, Chairs, AB, TAG, Offices staff and Team. The AC meeting will
be considered Member confidential.</p>

<table>
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T08:00:00+02:00">08:00</abbr>-<abbr class="dtend" title="2008-10-23T13:30:00+02:00">13:30</abbr></th>
      <td class="description"><strong class="summary">Registration</strong> (To make registration a smoother and
        quicker process, Advisory Committee representatives, Chairs, AB, TAG,
        Offices staff and Team, are welcome to register as early as 08:00.)
      </td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T13:30:00+02:00">13:30</abbr>-<abbr class="dtend" title="2008-10-23T18:00:00+02:00">18:00</abbr></th>
      <td class="description"><strong class="summary">AC meeting</strong> - <a href="AC-Agenda.html">AC Meeting
        agenda</a> [draft] (Member-only) <strong>- Iles A, B, C</strong></td>
    </tr>
  </tbody>
</table>

<h3>Thursday 23 October<br />
08:30-18:00<br />
All Group Meetings</h3>

<p>The All Goup Meetings are open only to W3C Interest and Working Group
participants, Incubator Groups, AC representatives, Chairs, AB, TAG, Offices
staff and W3C Team (<a
href="http://www.w3.org/2002/09/wbs/35125/TPAC2008/">registration</a>).
Special permissions for guests not included in the groups described above
must have been arranged beforehand with the Group Chair.</p>

<p>Groups who have arranged for teleconference facilities may use the
<a href="http://www.w3.org/1998/12/bridge/dial/tp-200810.html">TP2008
dialout page</a>
to have Zakim call the speakerphone in the meeting room.</p>

<table id="L13691">
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T08:00:00+02:00">08:00</abbr><abbr class="dtend" title="2008-10-23T18:00:00+02:00"></abbr></th>
      <td class="description"><strong class="summary">Registration</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T08:30:00+02:00">08:30</abbr>-<abbr class="dtend" title="2008-10-23T18:00:00+02:00">18:00</abbr></th>
      <td class="description"><strong class="summary">All Group Meetings</strong> - See the table below for
        groups/locations</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T10:30:00+02:00">10:30</abbr>-<abbr class="dtend" title="2008-10-23T11:30:00+02:00">11:30</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T12:00:00+02:00">12:00</abbr>-<abbr class="dtend" title="2008-10-23T14:00:00+02:00">14:00</abbr></th>
      <td class="description"><strong class="summary">Lunch - Restaurant le Féréol</strong> Lunch will be in
        two shifts: 12-1pm and 1-2pm (Meeting Planners will coordinate w/
        Group Chairs.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-23T15:00:00+02:00">15:00</abbr>-<abbr class="dtend" title="2008-10-23T16:00:00+02:00">16:00</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
  </tbody>
</table>

<div class="room">

<table class="room">
  <thead>
    <tr>
      <th>Room</th>
      <th><span title="Capacity of the room">Cap.</span></th>
      <th>Group Name (acronym)<br />
        Contact</th>
      <th>Confidentiality<br />
        Observer policy</th>
      <td></td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>Iles A</th>
      <td>35</td>
      <td><strong>AC Meeting set up</strong> </td>
      <td></td>
      <td></td>
    </tr>
    <tr>
      <th>Iles B</th>
      <td>35</td>
      <td><strong>AC Meeting set up</strong> </td>
      <td><br />
      </td>
      <td></td>
    </tr>
    <tr>
      <th>Iles C</th>
      <td>35</td>
      <td><strong>AC Meeting set up</strong> </td>
      <td></td>
      <td></td>
    </tr>
    <tr>
      <th>Conseil</th>
      <td>16</td>
      <td><strong>Advisory Board (AB) - morning</strong><br />
        Steve Zilles</td>
      <td><strong>Member confidential</strong><br />
        <strong>No Observers allowed</strong></td>
      <td></td>
    </tr>
    <tr>
      <th>138</th>
      <td>19</td>
      <td><strong>Authoring Tools Accessibility Guidelines WG (ATAG)</strong>
        <br />
        Jeanne Spellman</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>136</th>
      <td>19</td>
      <td><strong>Education and Outreach WG (EO)</strong><br />
        Shawn Henry</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Esterel</th>
      <td>25</td>
      <td><strong>eGovernment IG </strong><br />
        Jose Manuel Alonso</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>9</th>
      <td>19</td>
      <td><strong>Embedded OpenType WG (EOT)</strong><br />
        Bert Bos &rarr; <a href="/Fonts/Misc/Mandelieu-2008">agenda</a></td>
      <td><strong>Member confidential</strong><br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera C</th>
      <td>50</td>
      <td><strong>HTML WG</strong><br />
        Dan Connolly</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>8</th>
      <td>19</td>
      <td><strong>Math WG </strong><br />
        Patrick D F Ion </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Azur</th>
      <td>35</td>
      <td><strong>Media Annotations WG</strong><br />
        Philippe Le Hégaret</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera B</th>
      <td>50</td>
      <td><strong>OWL WG</strong><br />
        Alan Ruttenberg </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>10</th>
      <td>19</td>
      <td><strong>Policy Languages IG (PLING)</strong><br />
        Renato Ianella/Rigo Wenning</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>135</th>
      <td>19</td>
      <td><strong>Protocol for Web Description Resources WG (POWDER)
        </strong><br />
        Phil Archer</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>7</th>
      <td>19</td>
      <td><strong>Scalable Vector Graphics (SVG)</strong><br />
        Erik Dahlström</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera A</th>
      <td>50</td>
      <td><strong>Ubiquitous Web Application WG (UbiWeb)</strong><br />
        Dave Raggett </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>1</th>
      <td>19</td>
      <td><strong>Voice Browser WG (VB)<br />
        </strong> Jim Larson</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>5</th>
      <td>19</td>
      <td><strong>Web Security Context WG (WSC)</strong><br />
        Mary Ellen Zurko</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>3</th>
      <td>19</td>
      <td><strong>XHTML2 WG </strong><br />
        Steven Pemberton</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>6</th>
      <td>19</td>
      <td><strong>XML Processing Model WG (XML PM)</strong><br />
        Henry Thompson</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
  </tbody>
</table>
</div>
<hr />

<h3 id="Fri">Friday 24 October<br />
08:30-18:00<br />
All Group Meetings</h3>

<p>The All Goup Meetings are open only to W3C Interest and Working Group
participants, Incubator Groups, AC representatives, Chairs, AB, TAG, Offices
staff and W3C Team (<a
href="http://www.w3.org/2002/09/wbs/35125/TPAC2008/">registration</a>).
Special permissions for guests not included in the groups described above
must have been arranged beforehand with the Group Chair .</p>

<p>Groups who have arranged for teleconference facilities may use the
<a href="http://www.w3.org/1998/12/bridge/dial/tp-200810.html">TP2008
dialout page</a>
to have Zakim call the speakerphone in the meeting room.</p>

<table id="L14228">
  <tbody>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-24T08:00:00+02:00">08:00</abbr><abbr class="dtend" title="2008-10-24T18:00:00+02:00"></abbr></th>
      <td class="description"><strong class="summary">Registration</strong></td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-24T08:30:00+02:00">08:30</abbr>-<abbr class="dtend" title="2008-10-24T18:00:00+02:00">18:00</abbr></th>
      <td class="description"><strong class="summary">All Group Meetings</strong> - See the table below for
        groups and locations</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-24T10:30:00+02:00">10:30</abbr>-<abbr class="dtend" title="2008-10-24T11:30:00+02:00">11:30</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-24T12:00:00+02:00">12:00</abbr>-<abbr class="dtend" title="2008-10-24T14:00:00+02:00">14:00</abbr></th>
      <td class="description"><strong class="summary">Lunch - Restaurant le Féréol</strong> Lunch will be in
        two shifts, 12-1pm and 1-2pm (Meeting Planners will coordinate w/
        Group Chairs.)</td>
    </tr>
    <tr class="vevent">
      <th><abbr class="dtstart" title="2008-10-24T15:00:00+02:00">15:00</abbr>-<abbr class="dtend" title="2008-10-24T16:00:00+02:00">16:00</abbr></th>
      <td class="description"><strong class="summary">Refreshment Break - Lobby, Agora</strong> (To allow for
        flexibility in group meeting schedules, food and beverages will be
        available for one hour, and groups are welcome to take their break at
        any point during this time.)</td>
    </tr>
  </tbody>
</table>

<div class="room">

<table class="room">
  <thead>
    <tr>
      <th>Room</th>
      <th><span title="Capacity of the room">Cap.</span></th>
      <th>Group Name (acronym)<br />
        Contact</th>
      <th>Confidentiality<br />
        Observer policy</th>
      <td></td>
    </tr>
  </thead>
  <tbody>
    <!--
                                                             <tr>
                                                                  <th>Iles C</th>
                                                                  <td>35</td>
                                                                  <td><strong>AC Meeting set up</strong> </td>
                                                                  <td></td>
                                                                  <td></td>
                                                                </tr>
                                                            -->
    <tr>
      <th>138</th>
      <td>19</td>
      <td><strong>Authoring Tools Accessibility Guidelines WG (ATAG)</strong>
        <br />
        Jeanne Spellman</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>136</th>
      <td>19</td>
      <td><strong>Education and Outreach WG (EO)</strong><br />
        Shawn Henry</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Esterel</th>
      <td>25</td>
      <td><strong>eGovernment IG </strong><br />
        Jose Manuel Alonso</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>9</th>
      <td>19</td>
      <td><strong>Embedded OpenType WG (EOT)</strong><br />
        Bert Bos &rarr; <a href="/Fonts/Misc/Mandelieu-2008">agenda</a></td>
      <td><strong>Member confidential</strong><br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>11</th>
      <td>19</td>
      <td><strong>Emotion ML Incubator Group</strong><br />
        Marc Schröder </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera C</th>
      <td>50</td>
      <td><strong>HTML WG</strong><br />
        Dan Connolly</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>8</th>
      <td>19</td>
      <td><strong>Math WG </strong><br />
        Patrick D F Ion </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Azur</th>
      <td>35</td>
      <td><strong>Media Annotations WG</strong><br />
        Philippe Le Hégaret</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>Conseil</th>
      <td>16</td>
      <td><strong>Mobile Web For Social Development IG (MW4D) -
        Morning</strong><br />
        Stéphane Boyera</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera B</th>
      <td>50</td>
      <td><strong>OWL WG</strong><br />
        Alan Ruttenberg </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>10</th>
      <td>19</td>
      <td><strong>Policy Languages IG (PLING)</strong><br />
        Renato Ianella/Rigo Wenning</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>2</th>
      <td>19</td>
      <td><strong>Product Modelling XG (W3PM)</strong><br />
        Michel Böhms </td>
      <td>Not Member confidential<br />
        Observers allowed<br />
      </td>
      <td></td>
    </tr>
    <tr>
      <th>135</th>
      <td>19</td>
      <td><strong>Protocol for Web Description Resources WG (POWDER)
        </strong><br />
        Phil Archer</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>7</th>
      <td>19</td>
      <td><strong>Scalable Vector Graphics (SVG)</strong><br />
        Erik Dahlström</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Conseil</th>
      <td>16</td>
      <td><strong>Technical Architecture Group (TAG) - Afternoon</strong><br
        />
        Stuart Williams</td>
      <td><strong>No Observers allowed</strong><br />
        (the proceedings will be made public later)</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera A</th>
      <td>50</td>
      <td><strong>Ubiquitous Web Application WG (UbiWeb)</strong><br />
        Dave Raggett </td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>Riviera A</th>
      <td>19</td>
      <td><strong>Model-based UI XG (Afternoon)</strong> <br />
        Dave Raggett</td>
      <td><strong></strong>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
    <tr>
      <th>1</th>
      <td>19</td>
      <td><strong>Voice Browser WG (VB)<br />
        </strong> Jim Larson</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>5</th>
      <td>19</td>
      <td><strong>Web Security Context WG (WSC)</strong><br />
        Mary Ellen Zurko</td>
      <td><strong>Member confidential</strong><br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>3</th>
      <td>19</td>
      <td><strong>XHTML2 WG </strong><br />
        Steven Pemberton</td>
      <td>Not Member confidential<br />
        Observers allowed </td>
      <td></td>
    </tr>
    <tr>
      <th>6</th>
      <td>19</td>
      <td><strong>XML Processing Model WG (XML PM)</strong><br />
        Henry Thompson</td>
      <td>Not Member confidential<br />
        Observers allowed</td>
      <td></td>
    </tr>
  </tbody>
</table>
</div>
<hr />

<p>Related: <a href="/Member/Eventscal.html">W3C Events Calendar</a>
(<em>Member-only</em>)</p>
<!-- end content -->
<!-- footer beg -->

<div id="footer">
<address>
  Created 22 May 2008 by: <span class="vcard"><a class="url fn"
  href="mailto:alex@w3.org">Alexandra Lavirotte</a>, W3C/ERCIM, with many
  thanks to Bert Bos for his help<br />
  </span><small>Last update $Date: 2008/10/24 08:36:33 $ by $Author: swick $</small> 
</address>
</div>
<!-- footer end -->
</div>
<!-- </div> -->
</body>
</html>