06-agenda 63.1 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 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
<?xml version="1.0" encoding="UTF-8"?>
<!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">
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>W3C TAG meeting 6-8 June 2011 in Cambridge, MA, USA</title>
  <link href="http://www.w3.org/StyleSheets/base.css" rel="stylesheet"
  type="text/css" />
  <!--  ************************************* -->
  <!--              Inline CSS                -->
  <!--                                        -->
  <!--      Maybe someday move to stylesheet  -->
  <!--      but for now having this stand     -->
  <!--      on its own as a single file       -->
  <!--      seems better.                     -->
  <!--  ************************************* -->
  <style type="text/css">

@media print {
body {
  font-size:11px;
}

dl div.frontmatter {
     font-size:11px;
}

h2#issuetable {
page-break-before: always
}

}

@media screen {
div.frontmatter {
     font-size:medium;
}
}

/* Used to create red warning that draft is not ready for review */
 .warning { color:red; font-size:130%;
            font-weight:bold; }

/* used during process of preparing the agenda to mark 
   items in to do lists that have been done, and
   for which time slots have been scheduled */
.done {text-decoration:line-through}
.sched {color:green}
.needswork {color:fuchsia}

.bold {font-weight:bold;}

/* Front matter */

div.frontmatter {
    margin-left:.35cm;
    margin-right:.35cm;
    font-size:medium;
    font-weight:normal;
}


/* topic separators */
h2 {
    background:#eeeeee;
    border:solid;
    border-width:1px;
    margin-left:.1cm;
/*     width:12cm; */
    padding:.3em;
    padding-left:.3cm;
    margin-top:1.5em;
    margin-bottom:.6em;
    margin-right:.2cm;
}

div.nonlistsection {
    margin-left:.35cm;
    margin-right:.35cm;
    font-size:medium;
    font-weight:normal;
}

ol li div.nonlistsection {
    margin-left:.35cm;
    margin-right:.35cm;
    font-size:76.9%;
    font-weight:normal;
}

/* nested lists for agenda items */

ol {
    font-size:140%;
    font-weight:bold;
    margin-right:.35cm;
}

/* undo the large font and bold for ols nested in individual items */
ol li ul li ol {
    font-size: 100%;
    font-weight:normal;
}

ol li {
    margin-top:1em;
}

ol li a[href] { font-weight:normal; font-size:90%;
     }

ol li ul li a[href] {  font-size:100%;
     }

ol li ul li {
    margin-top:0em;
}

ol li ul, div.itemtext {
    margin-top:.5em;
    font-size:76.9%;
    font-weight:normal;
}


ol li ul li ul {
    margin-top:0;
    font-size:90%;
}

/* Styles for right pane links to minutes here */
table ol {
    font-size:100%;
    font-weight:bold;
}

table ol li {
    margin-top:.5em;
}
    


/* H3 is used for subheadings within numbered ol agenda list items */
ol h3  {
    font-size:80%;
    margin-bottom:0;
    margin-left:0.25cm;
    margin-top:.5em;
}


table.agendatable {
/*    width:12cm; */
    margin-left:1cm;
    margin-right:1cm;
    margin-top:1em;
}

table.agendatable ol li {
    font-weight:normal
}

td {padding:4px}
td.date {padding-left:.2em;
         background:#bebebe;
         }

td ul  {
      margin-top:.2em;
      margin-bottom:.5em;
}

/* ******************************************** */
/*         STYLES FOR ISSUE LIST TABLE          */
/* ******************************************** */

table.issuetable {
   margin-left:.35cm;
   margin-bottom:2em;
   margin-top:.5em;
   margin-right:.5cm;
}

table.issuetable td, table.issuetable th {
   padding:3px;
   vertical-align:bottom;
   text-align:left;
 }
table.issuetable th {
   font-weight:bold;
}

 .calendarTimeHeading {font-weight:bold}
 .rightalign {text-align:right;}
 .centeralign {text-align:center;}


/* ******************************************** */
/*         STYLES FOR REQUIRED READING          */
/* ******************************************** */

.requiredreading {color:red;}

</style>
</head>

<!--  ************************************* -->
<!--            Body - Frontmatter          -->
<!--  ************************************* -->
<body>
<p><a href="http://www.w3.org/">W3C</a> | <a
href="http://www.w3.org/2001/tag/">TAG</a></p>

<h1>W3C TAG meeting 6-8 June 2011 in Cambridge, MA, USA</h1>

<!--  ************************************* -->
<!--           Work in progress warning     -->
<!--  ************************************* -->

<!--
<p class="warning">WORK IN PROGRESS DRAFT</p>
<p class="warning">PRELIMINARY - FOR TAG REVIEW</p>
-->




<!--  ************************************* -->
<!--           DRAFT  Warning               -->
<!--  ************************************* -->




<!--  ************************************* -->
<!--           Preliminary warning          -->
<!--  ************************************* -->
<!--
<p class="warning">PRELIMINARY VERSION</p>
-->


<!--  ************************************* -->
<!--      Minutes Review Copy Warning       -->
<!--  ************************************* -->

<!--
<p class="warning">FINAL AGENDA &amp; DRAFT MINUTES FOR TAG REVIEW</p>
-->

<!--  ************************************* -->
<!--                Picture                 -->
<!--  ************************************* -->

<a href="TAGJune2011.jpg"><img style="margin-left:1cm" src="TAGJune2011_900Wide.jpg" alt="Picture of the TAG" /></a>


<p style="margin-left:1cm;width:900px; text-align:center">Back row: Noah Mendelsohn, Dan Appelquist, Henry Thompson, Larry Masinter, Ashok Malhotra, Jonathan Rees<br />Front row: Jeni Tennison, Tim Berners-Lee, Yves Lafon</p>

<div class="frontmatter">
<p>Nearby: <a href="http://www.w3.org/2001/tag/group/track/issues">issues
list</a> - <a href="http://www.w3.org/2001/tag/findings">findings</a> - <a
href="http://lists.w3.org/Archives/Public/www-tag/">www-tag archive</a> - <a
href="http://lists.w3.org/Archives/Member/tag/">tag archive</a> - Actions: (<a
href="http://www.w3.org/2001/tag/group/track/actions/open">open</a>, <a
href="http://www.w3.org/2001/tag/group/track/actions/pendingreview">pending
review</a>)

<a
href="http://www.w3.org/2001/tag/2011/02/08-f2f-localarrangements.html">logistics</a></p>

<p>Online table of: <a href="http://www.w3.org/2001/tag/2011/06/F2FScribing.html">scribing assignments</a></p>
</div>



<!--  ************************************* -->
<!--            Agenda summary table        -->
<!--  ************************************* -->

<h2 id="Agenda">Agenda Summary</h2>
<table class="agendatable" border="1" cellpadding="1" cellspacing="1">
  <tbody>
    <!--  - - - - - - - - - - - - - - - - - -   -->
    <!--             Monday                    -->
    <!--  - - - - - - - - - - - - - - - - - -   -->
    <tr>
      <!-- NOTE: ALL THE DAILY COLSPANS MUST GO FROM 2 TO 3 WHEN MINUTES ARE ADDED -->
      <td class="date calendarTimeHeading" align="left" valign="top"
      colspan="3">Monday 6 June</td>
    </tr>
    <tr>
      <td colspan="2" style="text-align:center">Agenda</td>
      <!-- EDIT FOR MINUTES: UNCOMMENT THE FOLLOWING LINE -->
      <td style="text-align:center">Minutes</td>

    </tr>
    <tr>
      <td align="left" valign="top">08:30-9:00</td>
      <td align="left" valign="top">Arrive &amp;
        Set up. Please have your computers and network connections set up
        for a prompt start at 9AM. Doors to the 8th floor may or may not
        be open prior to 8:30 &#8212; if they are, you are welcome to set up earlier.
      </td>
      <!--EDIT FOR MINUTES:  FOLLOWING TD SHOULD BE EDITED WHEN MINUTES
                                                                                                                                                                       ARE ADDED.  THE SAMPLES BELOW ARE RETAINED FROM MARCH FOR REFERENCE.                                                                                                                                                                       NOTE THAT ROWSPAN MUST MATCH NUMBER OF ITEMS IN THE AGENDA SECTION -->
      <td rowspan="10">
	<ol>
<li><a href="./06-minutes.html#item01">Agenda review</a></li>
<li><a href="./06-minutes.html#item02">Meeting with Jeff Jaffe</a></li>
<li><a href="./06-minutes.html#item03">ISSUE-60 (webApplicationState-60): Web
Applications: Client-side state</a></li>



<li><a href="./06-minutes.html#item0x">Buffer bloat and Web architecture</a></li>
<li><a href="./06-minutes.html#item04">ISSUE-60 (webApplicationState-60): 
		      Web Applications: Client-side state (continued)</a></li>
<li><a href="./06-minutes.html#item05">Administration</a></li>
	</ol>
      </td>
<!-- COMMENTS SHOULD END HERE WHEN IN AGENDA MODE -->
    </tr>
    <tr>
      <td align="left" valign="top">09:00-09:15</td>
          <!--  ************************************* -->
          <!--                 Convene                -->
          <!--  ************************************* -->
      <td align="left" valign="top"><ul>
          <li><a href="#Convene">Convene, review agenda</a></li>

        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">9:15-10:00</td>
      <td align="left" valign="top">
             <ul>
          <li>Meeting with W3C CEO Jeff Jaffe</li>
	     </ul>
       </td>
    </tr>
    <tr>
      <td align="left" valign="top">10:00-10:15</td>
      <td align="left" valign="top">Break (15 mins)</td>
    </tr>
    <tr>
      <td align="left" valign="top">10:15-noon</td>
      <td align="left" valign="top">
             <ul>
          <li><a href="#clientState">Web Applications: Client-side state</a></li>
	     </ul>
       </td>
    </tr>
    <tr>
      <td align="left" valign="top">12:00-14:00</td>
      <td align="left" valign="top">
       <ul>
          <li>Lunch with Jim Gettys: <a href="#bufferbloat">Presentation and discussion on Internet Buffer Bloat</a></li>
       </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">14:00-14:45</td>
      <td align="left" valign="top"><ul>
    	       <li><a href="#webAppStorage">Web Applications: Client-side Storage</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">14:45-15:15</td>
      <td align="left" valign="top">Break (30 mins)</td>
    </tr>
    <tr>
      <td align="left" valign="top">15:15-16:15</td>
      <td align="left" valign="top"><ul>
          <li><a href="#apis">Web Applications: Design of APIs for Web Applications (minimization)</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">16:15-17:00</td>
      <td align="left" valign="top"><ul>
          <li><a href="#Admin">Administration</a></li>
      </ul>
      </td>
    </tr>
    <!--  - - - - - - - - - - - - - - - - - -   -->
    <!--             Tuesday                  -->
    <!--  - - - - - - - - - - - - - - - - - -   -->
    <tr>
      <!-- NOTE: ALL THE DAILY COLSPANS MUST GO FROM 2 TO 3 WHEN MINUTES ARE ADDED! -->
      <td class="date calendarTimeHeading" align="left" valign="top"
      colspan="3">Tuesday 7 June</td>
    </tr>
    <tr>
      <td colspan="2" style="text-align:center">Agenda</td>
      <!-- EDIT FOR MINUTES: UNCOMMENT THE FOLLOWING LINE -->
      <td style="text-align:center">Minutes</td>
    </tr> 
    <tr>
      <td align="left" valign="top">09:00-10:15</td>
      <td align="left" valign="top"><ul>
          <li><a href="#mimefrag">Web Applications: Fragment ID Semantics and MIME Types</a></li>
        </ul>
      </td>
      <td rowspan="8">
      <ol>
      <li><a href="./07-minutes.html#item01">Fragment ID Semantics</a></li>
      <li><a href="./07-minutes.html#item05">IAB-TAG meeting</a></li>
      <li><a href="./07-minutes.html#item02">Restarting session on Fragment IDs</a></li>
      <li><a href="./07-minutes.html#item03">URI Definition Discovery; Metadata
      Architecture</a></li>
      </ol>
</td>
    </tr>
   <tr>
      <td align="left" valign="top">10:15-10:30</td>
      <td align="left" valign="top">Break &amp; setup for IAB call (15 mins -- please be back promptly for 10:30 start)</td>
    </tr>
    <tr>
      <td align="left" valign="top">10:30-noon</td>
      <td align="left" valign="top"><ul>
          <li><a href="#iab">Joint session with Internet Architecture Board</a></li>           
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">noon-13:30</td>
      <td align="left" valign="top">Lunch (90 mins)</td>
    </tr>
    <tr>
      <td align="left" valign="top">13:30-15:00</td>
      <td align="left" valign="top"><ul>
          <li><a href="#priorities">TAG Priorities for 2011</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">15:00-15:20</td>
      <td align="left" valign="top"><ul>
          <li>Break (30 mins)</li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">15:30-17:00</td>
      <td align="left" valign="top"><ul>
          <li><a href="#metadata">URI Definition Discovery; Metadata Architecture</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">17:30</td>
      <td align="left" valign="top"><ul>
          <li>Leave for dinner at Tim's</li>
        </ul>
      </td>
    </tr>


    <!--  - - - - - - - - - - - - - - - - - -   -->
    <!--             Wednesday                  -->
    <!--  - - - - - - - - - - - - - - - - - -   -->
    <tr>
      <!-- NOTE: ALL THE DAILY COLSPANS MUST GO FROM 2 TO 3 WHEN MINUTES ARE ADDED! -->
      <td class="date calendarTimeHeading" align="left" valign="top"
      colspan="3">Wednesday 8 June</td>
    </tr>
    <tr>
      <td colspan="2" style="text-align:center">Agenda</td>
<!-- When doing the minutes, uncomment the following line -->
      <td style="text-align:center">Minutes</td>
    </tr>
    <tr>
      <td align="left" valign="top">09:00-10:00</td>
      <td align="left" valign="top"><ul>
          <li><a href="#linkcopyright">Can publication of hyperlinks cause copyright infringment?</a></li>
        </ul>
      </td>
      <td rowspan="10">
      <ol>
	<li><a href="./08-minutes.html#item01">ISSUE-25 (deepLinking-25): Can publication of hyperlinks cause copyright infringment?</a></li>
<li><a href="./08-minutes.html#item02">API minimization</a></li>
<li><a href="./08-minutes.html#item03">ISSUE-60 (webApplicationState-60): Web Applications: Client-side Storage</a></li>
<li><a href="./08-minutes.html#item04">TAG Priorities for 2011</a></li>
<li><a href="./08-minutes.html#item05">Administration</a></li>
<li><a href="./08-minutes.html#item06">HTML5 Review</a></li>
<li><a href="./08-minutes.html#item07">Next steps on Issue-57</a></li>
      </ol>
</td>

    </tr>
    <tr>
      <td align="left" valign="top">10:00-10:30</td>
      <td align="left" valign="top"><ul>
          <li><a href="#persistence">Persistent references</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">10:30-10:50</td>
      <td align="left" valign="top">Break (20 mins)</td>



    </tr>
    <tr>
      <td align="left" valign="top">10:50-noon</td>
      <td align="left" valign="top"><ul>
          <li><a href="#htmlxml">HTML-XML-Divergence-67: HTML / XML Unification</a> (with Norm Walsh?)</li>
          <li><a href="#htmlreview">HTML5 Last Call</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td align="left" valign="top">noon-13:00</td>
      <td align="left" valign="top">Lunch (60 mins)</td>
    </tr>


    <tr>
      <td>13:00-14:00</td>
      <td><ul>
          <li><a href="#privacy">Privacy</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td>14:00-14:30</td>
      <td><ul>
          <li><a href="#security">Web Applications: Security</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td>14:30-15:15</td>
      <td><ul>
          <li><a href="#rfc3023iri">RFC 3023bis and IRI</a></li>
        </ul>
      </td>
    </tr>
    <tr>
      <td>15:30-15:45</td>
      <td>break (15 minutes)</td>
    </tr>
    <tr>
      <td>15:45-16:30</td>
      <td><ul>
          <li><a href="#actions">Action item review</a></li>
	  <li>Any other business</li>

        </ul>
      </td>
    </tr>
    <!--  - - - - - - - - - - - - - - - - - -   -->
    <!--             Unscheduled topics         -->
    <!--  - - - - - - - - - - - - - - - - - -   -->

<!--  UNCOMMENT TO GET UNSCHEDULED TOPICS

<tr>
  <td  style="color:red" class="date" align="left" valign="top"  colspan="2" ><span class="calendarTimeHeading">Unscheduled topics</span>
  <br />
There are some other topics we may decide to discuss in the free time slots.
Suggested discussion goals and preparation materials are available in the section linked below.</td> 
</tr>
                                                                                                            		
<tr>  <td align="left" valign="top"></td> 
<td align="left" valign="top"><a style="color:red" href="#unscheduled">Unscheduled topics</a>
</td>
</tr>
 -->
  </tbody>
</table>
<!--
<div class="nonlistsection">
<p>Note that preparation is also encouraged for some items for which <a href="#unscheduled">fixed time slots have not been allocated</a>.
We may or may not decide to discuss some or all of these, presumably in the sessions not yet scheduled.</p>
</div>
-->

<!--  ************************************* -->
<!--                 Logistics              -->
<!--  ************************************* -->

<h2 id="Logistics">Logistics</h2>

<div class="nonlistsection">

<dl>
  <dt><strong>Venue</strong></dt>
    <dd>MIT, Stata Center, 8th Floor Reading Room<br />
      32 Vassar Street<br />
      Cambidge, MA 02139</dd>
</dl>

<p>See <a href="http://www.w3.org/2001/tag/2011/06/06-f2f-localarrangements.html">logistics</a>
for further details.</p>

<p></p>
</div>
<!-- nonlistsection -->

<h2 id="prep">Preparation</h2>
<p>See "(required reading)" annotations in agenda items below.</p>


<h2 id="agendaDetails">Agenda Details</h2>



<ol>
  <!-- Individual agenda items are marked up as li within the ol -->
  <!-- Nested lists can be used (though CSS for nested ol isn't in place yet -->
  <!-- for nested headings on sub-lists like "goals", use h3 -->
  <!--  ************************************* -->
  <!--                 Convene                -->
  <!--  ************************************* -->
  <li><a name="Convene">Convene</a>, review agenda 
        <ul>
	  <li>Scribes: TAG members are encouraged to sign up for scribing by using CVS to edit <a href="http://www.w3.org/2001/tag/2011/06/F2FScribing.html">scribing assignments table</a>, or by emailing the chair</li>
	  <li>Roll call</li>
	  <li>Approve minutes of teleconferences:
	     <ul>
	       <li><a href="http://www.w3.org/2001/tag/2011/05/26-minutes">26 May 2011</a></li>
	     </ul>
	     
	  </li>
          <li>F2F Main Goals: 
	  <ul>
            <li>Commit to 2011 deliverables</li>
            <li>Prepare client-side state finding for publication (unless
	        we decide there's too much more to do on #! and/or RDFa use
		of fragids</li>
	    <li>Align TAG product pages and assignments with actual TAG deliverables and priorities</li>

            <li style="color:red">More: TBD</li>
	  </ul>
        </li>
          
    </ul>
  </li>

  <!--  ************************************* -->
  <!--        TAG Priorities                  -->
  <!--  ************************************* -->
  <li><a name="priorities" id="priorities">TAG Priorities for 2011</a>
<ul>
<li>Goals:
<ul>
   <li>Identify key success criteria for TAG's work in 2011</li>
   <li>Fill out missing <a href="http://www.w3.org/2001/tag/products/">TAG product pages</a>, and a grid showing assignment of TAG members to products. By doing this, we will
       produce a clearer plan for the content, form, and expected date of TAG deliverables to achieve those goals.</li>
</ul>

</li>
<li>Background (these mainly relate to Web Applications, but our discussion or priorities will not be limited to Web Apps):
<ul>
      <li>TAG Product Pages linked from <a href="http://www.w3.org/2001/tag/products/">List of TAG Product Pages</a> (the chair hopes to add to these
          between now and the start of the F2F)</li>
      <li><a href="http://www.w3.org/2001/tag/products/ProductAssignments.pdf">TAG member assignments grid</a> (very preliminary &#8212 source <a href="http://www.w3.org/2001/tag/products/ProductAssignments.xls">.xls</a> )</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/434">ACTION-434</a>: on - Daniel Appelquist - Prepare discussion of structure of what we want to do about web apps architecture... - Due: 2010-10-18 - CLOSED</li>
      <li>May 2010 notes from DanA on ACTION-434: <a href="http://www.w3.org/2001/tag/2010/05/web-apps-notes.html">Web Application Architecture</a> (these were prepared for the June 2010 F2F)</li>
      <li>Email thread beginning with: <a href="http://lists.w3.org/Archives/Public/www-tag/2010Oct/0061.html">Re: ACTION-434: Some notes on organizing discussion on WebApps architecture</a></li>
      <li>Email from Larry Masinter: <a href="http://lists.w3.org/Archives/Public/www-tag/2010Oct/0030.html">progress on web applications architecture: a few thoughts</a></li>

      <li><a href="http://www.w3.org/2001/tag/group/track/actions/499">ACTION-499</a>: on - Noah Mendelsohn - Prepare product description page for work on IETF presentation. - Due: 2011-03-01 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/522">ACTION-522</a>: on - Noah Mendelsohn - Build Tracker product page for HTML/XML Unification - Due: 2011-05-17 - PENDING REVIEW</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/523">ACTION-523</a>: on - Ashok Malhotra - (with help from Noah) build good product page for client storage finding, identifying top questions to be answered on client side storage - Due: 2011-04-05 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/526">ACTION-526</a>: on - Noah Mendelsohn - Do first draft product stuff for MIME and related core web mechanisms - Due: 2011-05-17 - PENDING REVIEW</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/528">ACTION-528</a>: on - Henry Thompson - Create and get consensus on a product page and tracker product page for persistence of names - Due: 2011-05-16 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/529">ACTION-529</a>: on - Noah Mendelsohn - Schedule telcon discussion of a potential TAG product relating to offline applications and packaged Web - Due: 2011-02-17 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/554">ACTION-554</a>: on - Noah Mendelsohn - Formulate product page for TAG work on security including John Kemp security draft Due: 2011-05-24 - Due: 2011-05-31 - OPEN</li>
  


</ul>
</li>

</ul>

  </li>

 
<!--  ************************************* -->
<!--         Client-side State              -->
<!--  ************************************* -->

<li>
<a href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a> (<a id="clientState">webApplicationState-60</a>): Web Applications: Client-side state
<ul>
  <li>Goals:
      <ul>
         <li>Prepare for publication of a TAG finding on Identifying Application State</li>
         <li>Review the <a href="http://www.w3.org/2001/tag/doc/IdentifyingApplicationState-20110515.html">15 May 2011 Draft of Identifying Application State</a>. Ashok's  <a href="http://lists.w3.org/Archives/Public/www-tag/2011May/0076.html">announcement email</a> indicates that changes are in sections 3, 4, 5 &amp; 6. (the entire draft is required reading)</li>
      </ul>
      
  </li>
  <li>Background:
    <ul>
       <li><a href="http://www.w3.org/2001/tag/doc/IdentifyingApplicationState-20110515.html">15 May 2011 Draft of Identifying Application State</a> (required reading). Supercedes: <a href="http://www.w3.org/2001/tag/2011/03/HashInURI-20110331.html">31 March 2011 Draft of Repurposing the Hash Sign for the New Web</a></li>
       <li><a href="http://www.w3.org/2001/tag/2011/04/28-minutes#item05">Discussion of client-side state on 28 April 2011</a></li>
       <li><a href="http://www.w3.org/2001/tag/2011/02/08-minutes#item04">8 Feb 2011 F2F discussion</a> of client-side state draft</li>
       <li><a href="http://www.jenitennison.com/blog/node/154">Jeni Tennison's blog post on #!</a></li>
       <li>Noah Mendelsohn's blog post <a href="http://blog.arcanedomain.com/2011/03/identifying-documents-in-web-applications/">Documents in applications</a></li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/533">ACTION-533</a>: on - Noah Mendelsohn - Schedule TAG discussion of #! (check with Yves) [self-assigne] - Due: 2011-04-05 - CLOSED</li>


    <li><a href="http://www.w3.org/2001/tag/group/track/actions/481">ACTION-481</a>: on - Ashok Malhotra - Update client-side state document with help from Raman - Due: 2011-05-10 - OPEN</li> 
   <li><a href="http://www.w3.org/2001/tag/group/track/actions/508">ACTION-508</a>: on - Larry Masinter - Draft proposed bug report against HTML5 media type registration regarding interpretation of fragid in HTML-based AJAX apps - Due: 2011-04-19 - OPEN</li>

    
    </ul>
    
  </li>


</ul>
</li>
 
  <!--  ************************************* -->
  <!--          Buffer Bloat                  -->
  <!--  ************************************* -->

<li>
<a id="bufferbloat">Internet "Buffer Bloat"</a> 
<ul>
<li>Goals:
<ul>
<li>Hear a presentation from HTTP 1.1 co-editor Jim Gettys on "buffer bloat", and on the possible
need to reconsider the design of HTTP</li>
</ul>

</li>

<li>Background:
<ul>
<li>TCP/IP flow control depends on packets being dropped when networks congest &#8212; unfortunately, many routers, OS's etc. are buffering excessively rather than dropping packets, resulting in latencies of up to .5 seconds, blocking not just the stream in question, but other "real time" traffic such as Skype, DNS resolution, etc.</li>
<li>Jim believes that HTTP as currently designed does not use the lower levels of the TCP/IP stack effectively, and is contributing to the problem. He believes that
a significant redesign may be desirable.</li> 
<li>Jim's <a href="http://mirrors.bufferbloat.net/Talks/PragueIETF/">IETF Prague Presentation on Buffer Bloat</a> (required reading - multiple formats avaialble) </li>
</ul>
</li>

</ul>

</li>


 
  <!--  ************************************* -->
  <!--       Web Application Storage          -->
  <!--  ************************************* -->


<li>
<a
      href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a> (<a  id="webAppStorage">webApplicationState-60</a>): Web Applications: Client-side Storage
<ul>
  <li>Goals:
      <ul>
         <li>Decide whether we're serious about moving on <a href="http://www.w3.org/2001/tag/group/track/actions/475">ACTION-475</a>: on - Ashok Malhotra - Write finding on client-side storage, DanA to review - Due: 2011-05-24 - OPEN</li>
	 <li>Discuss <a href="http://www.w3.org/2001/tag/2011/05/ClientSideStorageRev2.pdf">Slides from Ashok to be presented at this F2F</a></li>
         <li>Get organized for further work in this area. What are specific goals in terms of questions to be answered for the community, dates and deliverables?  TAG "Product page" needed?
</li>
         <li>Currently tracking under <a href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a>, which is the same one we're using for more transient client-side state.  Is ISSUE-60 appropriate for both?</li>
      </ul>
      
  </li>

  <li>Background:
    <ul>
            <li>Required reading: <a href="http://www.w3.org/2001/tag/2011/05/ClientSideStorageRev2.pdf">Slides from Ashok to be presented at this F2F</a> (<a href="http://lists.w3.org/Archives/Member/tag/2011May/0038.html">announcement email</a>)</li>
	    <li>From <a href="http://www.w3.org/2001/tag/2011/02/10-minutes#item03">discussion of storage at Feb 2011 F2F:</a>

<div style="margin-left:1cm">
<p style="padding:0cm; margin-top:0cm; margin-bottom:0cm"><cite>NM:</cite> Assuming this is a separate
document, what are the top three questions it will answer for the
community?</p>
<p  style="padding:0cm; margin-top:0cm; margin-bottom:0cm"><cite>AM:</cite> Give me three weeks</p>
<p style="padding:0cm; margin-top:0cm; margin-bottom:0cm"><cite>NM:</cite> OK, let's suspend judgement on
the long-term future of this work until we see your response</p>
</div>


	    </li>

             <li>Ashok' slides from Feb 2011 F2F  "Client-Side Storage" (<a href="http://www.w3.org/2001/tag/2011/02/ClientSideStorage.ppt">ppt</a>, <a href="http://www.w3.org/2001/tag/2011/02/ClientSideStorage.pdf">pdf</a>)</li>
             <li>Required reading: <a href="http://www.w3.org/2001/tag/2010/09/ClientSideStorage.html">Client-side Storage </a>: this version was prepared for the October 2010 F2F</li>
             <li><a href="http://www.w3.org/2001/tag/group/track/actions/475">ACTION-475</a>: on - Ashok Malhotra - Write finding on client-side storage, DanA to review - Due: 2011-05-24 - OPEN</li>
             <li><a href="http://www.w3.org/2001/tag/group/track/actions/482">ACTION-482</a>: on - Ashok Malhotra - Write a draft on client-side storage with help from DanA Due: 2010-11-30 - Due: 2010-10-27 - CLOSED -- it was noted that this action was redundant with ACTION-475</li>

    
    </ul>
    
  </li>


</ul>
</li>



  <!--  ************************************* -->
  <!--          API Design                    -->
  <!--  ************************************* -->

<li>
<a href="http://www.w3.org/2001/tag/group/track/products/7">Web Applications</a>: <a id="apis" name="apis">Design of APIs for Web Applications (minimization)</a> 
<ul>
<li>Goals:
<ul>
<li>Review <a href="http://www.w3.org/2001/tag/doc/APIMinimization-20100605.html">Data Minimization in Web APIs: Draft TAG Finding 05 June 2011</a> a new draft from Dan on API minmization, promised for 3 June 2011</span> (not required reading, due to late arrival)</li>
<li>Decide whether the TAG wants to produce a Finding on Design of APIs for Web Applications</li>
</ul>

</li>
<li>Background:
<ul>
<li><a href="http://www.w3.org/2001/tag/doc/APIMinimization-20100605.html">Data Minimization in Web APIs: Draft TAG Finding 05 June 2011</a> </li>
<li>Brief <a href="http://www.w3.org/2001/tag/2011/05/12-minutes.html#item04">discussion on 12 May 2011</a></li>
<li><a href="http://www.w3.org/2001/tag/2011/02/08-minutes#item01">Discussion at Feb 2011 TAG F2F</a></li>
<li><a href="http://www.w3.org/2001/tag/group/track/actions/514">ACTION-514</a>: on - Daniel Appelquist - Draft finding on API minimization Due: 2011-02-01 - Due: 2011-01-27 - OPEN</li>
<li>From previous F2F: <a href="http://www.w3.org/2001/tag/2010/10/WebappsAPIDesignNotes.html">Dan Appelquist writeup on API Design</a> - (<a href="http://lists.w3.org/Archives/Public/www-tag/2010Oct/0104.html">announcement email</a>)</li>
<li><a href="http://www.w3.org/2001/tag/group/track/actions/461">ACTION-461</a>: on - Daniel Appelquist - Draft "finding" on Web Apps API design - Due: 2010-12-31 - CLOSED</li>
</ul>
</li>

</ul>

</li>



<!--  ************************************* -->
<!--        MIME Types and Fragids          -->
<!--  ************************************* -->

<li>
<a href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a> (<a id="mimefrag">webApplicationState-60</a>): Web Applications: Fragment ID Semantics and MIME Types
<ul>
  <li>Goals:
      <ul>
        
	<li>make decision on direction we take on RDFa Core (<a href="http://www.w3.org/2001/tag/group/track/actions/509">ACTION-509</a>)</li>
	<li>agree text for MIME and the Web draft on fragids (<a href="http://www.w3.org/2001/tag/group/track/actions/543">ACTION-543</a>)</li>
	<li>make decision (again) on direction we take on 3023bis (application/xml)</li>
	<li>identify other actions to resolve fragid issues</li>

      </ul>
      
  </li>

  <li>Background:
    <ul>
       <li><a href="http://lists.w3.org/Archives/Public/www-tag/2011May/0089.html">E-mail from Jeni Tennison</a> suggesting an agenda and reading for this session (Jeni's note is itself required reading)</li>
       <li>Current specifications
         <ul>
	 <li>Pertinent section of <a href="http://tools.ietf.org/html/rfc3986#page-24">RFC 3986</a> (required reading)</li>
	 <li>Pertinent sections of AWWW (<a href="http://www.w3.org/TR/2004/REC-webarch-20041215/#fragid">Fragment identifiers</a>, <a href="http://www.w3.org/TR/2004/REC-webarch-20041215/#internet-media-type">Representation Types and Internet Media Types</a>) (required reading)</li>
	 </ul>
	 
       </li>
       <li>Other reading (not required - from Jeni's e-mail)
<pre>
 a. New XML mime type definition
    - 3023bis [DRAFT]
        <a href="http://www.w3.org/2006/02/son-of-3023/draft-murata-kohn-lilley-xml-04.html#frag">http://www.w3.org/2006/02/son-of-3023/draft-murata-kohn-lilley-xml-04.html#frag</a>
    - XPointer framework
        <a href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/">http://www.w3.org/TR/2003/REC-xptr-framework-20030325/</a>

 b. Hashbangs
   - HTML mime type definition
       <a href="http://www.rfc-editor.org/rfc/rfc2854.txt">http://www.rfc-editor.org/rfc/rfc2854.txt</a>
   - XHTML mime type definition
       <a href="http://www.rfc-editor.org/rfc/rfc3236.txt">http://www.rfc-editor.org/rfc/rfc3236.txt</a>

 c. Images and video
   - media type fragments [DRAFT]
       <a href="http://www.w3.org/TR/2011/WD-media-frags-20110317/">http://www.w3.org/TR/2011/WD-media-frags-20110317/</a>
   - SVG mime type definition [DRAFT?]
       <a href="http://www.imc.org/ietf-xml-mime/mail-archive/msg01153.html">http://www.imc.org/ietf-xml-mime/mail-archive/msg01153.html</a>

 d. Semantic web
   - application/rdf+xml mime type definition
       <a href="http://www.ietf.org/rfc/rfc3870.txt">http://www.ietf.org/rfc/rfc3870.txt</a>
   - RDFa core
       <a href="http://www.w3.org/TR/2011/WD-rdfa-core-20110331/">http://www.w3.org/TR/2011/WD-rdfa-core-20110331/</a>
   - Turtle [to be updated by RDF WG]
       <a href="http://www.iana.org/assignments/media-types/text/turtle">http://www.iana.org/assignments/media-types/text/turtle</a>
   - N3 [submission]
       <a href="http://www.w3.org/TeamSubmission/2011/SUBM-n3-20110328/#sec-mediaReg">http://www.w3.org/TeamSubmission/2011/SUBM-n3-20110328/#sec-mediaReg</a>
   - N-triples
       <a href="http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/#ntriples">http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/#ntriples</a>
   - Manchester OWL Syntax [NOTE]
       <a href="http://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/#Appendix:_Internet_Media_Type.2C_File_Extension_and_Macintosh_File_Type">http://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/#Appendix:_Internet_Media_Type.2C_File_Extension_and_Macintosh_File_Type</a>
</pre>	   
       </li>


       <li><a href="http://www.w3.org/2001/tag/group/track/actions/553">ACTION-553</a>: on - Jeni Tennison - With Jonathan to prepare F2F discussion of fragids including #!, RDFa, 3023bis, etc. - Due: 2011-05-19 - OPEN</li>
       <li><a href="http://www.w3.org/2001/tag/2011/03/10-minutes.html#item04">10 March 2011 discussion of #! URIs</a></li>
       <li>See also related <a href="#clientState">agenda item on client-side state at this F2F</a></li>
       <li><a href="http://www.w3.org/2001/tag/2011/04/28-minutes#item05">Discussion of client-side state on 28 April 2011</a></li>
       <li><a href="http://www.jenitennison.com/blog/node/154">Jeni Tennison's blog post on #!</a></li>
       <li>Noah Mendelsohn's blog post <a href="http://blog.arcanedomain.com/2011/03/identifying-documents-in-web-applications/">Documents in applications</a></li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/481">ACTION-481</a>: on - Ashok Malhotra - Update client-side state document with help from Raman - Due: 2011-05-10 - OPEN</li> 
   <li><a href="http://www.w3.org/2001/tag/group/track/actions/508">ACTION-508</a>: on - Larry Masinter - Draft proposed bug report against HTML5 media type registration regarding interpretation of fragid in HTML-based AJAX apps - Due: 2011-04-19 - OPEN</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/533">ACTION-533</a>: on - Noah Mendelsohn - Schedule TAG discussion of #! (check with Yves) [self-assigne] - Due: 2011-04-05 - CLOSED</li>

    
    </ul>
    
  </li>


</ul>
</li>


  <!--  ***************************************  -->
  <!--       Teleconference with IAB             -->
  <!--  ***************************************  -->


<li>Product: <a href="http://www.w3.org/2001/tag/group/track/products/9">Coordination with IAB/IETF on architecture of web applications</a>: <a id="iab" >Joint session with Internet Architecture Board</a>

  <ul>
  <li>Goal:
     <ul>
       <li>Discuss technical topics of mutual interest with the Internet
           Architecture Board</li>
     </ul>
     
  </li>

  <li>Background:
    <ul>
      <li>Please see <a href="http://lists.w3.org/Archives/Public/www-tag/2011Jun/0012.html">draft agenda</a> for IAB/TAG discussions</li>
      <li>TAG panel participation at IETF meeting in Prague (<a href="http://www.w3.org/2001/tag/doc/IAB_Prague_2011_slides.html">slides</a>, <a href="http://www.w3.org/2001/tag/2011/04/14-minutes.html#item04">TAG post facto discussion</a>)</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/549">ACTION-549</a>: on - Larry Masinter - (with help from Henry and Yves) make proposals for topics to be pursued with IAB - Due: 2011-06-02 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/460">ACTION-460</a>: on - Daniel Appelquist - Coordinate with IAB regarding next steps on privacy policy - Due: 2011-05-24 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/497">ACTION-497</a>: on - Larry Masinter - Prepare us for a teleconference with IETF-IAB on possible prague IETF presentation. - Due: 2010-12-21 - CLOSED</li>

    </ul>
   </li>
 </ul>
  

</li>


  <!--  ************************************* -->
  <!--                Metadata                -->
  <!--  ************************************* -->

  <li><a href="http://www.w3.org/2001/tag/group/track/issues/57">ISSUE-57</a> (HttpRedirections-57), <a href="http://www.w3.org/2001/tag/group/track/issues/63">ISSUE-63</a> (metadataArchitecture-63) and <a href="http://www.w3.org/2001/tag/group/track/issues/14">ISSUE-14</a> (HttpRange-14) : <a name="metadata" id="metadata">URI Definition Discovery; Metadata Architecture</a>
    <ul>
       <li>Goals:
         <ul>
	 <li>Review two new drafts prepared by Jonathan</li>
	 <li>Continue work toward a finding on metadata architecture</li>
	  </ul>
       </li>
       <li>Background:
         <ul>
	   <li><a href="http://odontomachus.wordpress.com/2011/02/21/the-place-of-metadata/">A diagram from Jonathan</a></li>
	   <li><a href="http://www.w3.org/2001/tag/awwsw/ir/20110517/">Information Resources and Web Metadata: Editor's Draft 17 May 2011</a> by Jonathan Rees (<a href="http://lists.w3.org/Archives/Public/www-tag/2011May/0040.html">announcement email</a>) &#8212; required reading</li>
	   <li><a href="http://www.w3.org/2001/tag/awwsw/issue57/20110531/">Providing and discovering definitions of URIs: Editor's Draft 31 May 2011</a> by Jonathan Rees (<a href="http://lists.w3.org/Archives/Public/www-tag/2011May/0088.html">announcement email</a>  &#8212; required reading</li>
	   <li><a href="http://www.w3.org/wiki/HttpRange14Webography">Wiki page on httpRange014</a> (optional reading)</li>
           <li>See also: <a href="http://www.w3.org/2001/tag/group/track/actions/201">ACTION-201</a>: on - Jonathan Rees - Report on status of AWWSW discussions - Due: 2011-05-23 - OPEN</li>
           <li>See also: <a href="http://www.w3.org/2001/tag/group/track/actions/282">ACTION-282</a>: on - Jonathan Rees - Draft a finding on metadata architecture. - Due: 2011-05-23 - OPEN</li>
           <li>See also: <a href="http://www.w3.org/2001/tag/group/track/actions/413">ACTION-413</a>: on - Dan Connolly - Suggest a path thru some logic terminology that might speed up httpSemantics discussions - Due: 2010-05-07 - CLOSED</li>
         </ul>
       </li>
    </ul>
  </li>



  <!--  ************************************* -->
  <!--      Persistence of References         -->
  <!--  ************************************* -->
  <li><a href="http://www.w3.org/2001/tag/group/track/issues/50">ISSUE-50</a> (URNsAndRegistries-50): <a name="persistence" id="persistence">Persistent references</a>

<ul>
  <li>Goals:
    <ul>
      <li>Determine next steps for this line of work</li>
    </ul>
  </li>

 <li>Background:
      <ul>
        <li><a href="http://lists.w3.org/Archives/Public/www-tag/2011Jun/0009.html"
	     >Jonathan requests opportunity for F2F discussion and
	      lists potential discussion topics</a>
	</li>
        <li>Suggested readings from Jonathan Rees:
<ul>
<li>geo: URI scheme<br />
    <a href="http://geouri.org/about/">http://geouri.org/about/</a><br />
    <a href="http://tools.ietf.org/rfc/rfc5870">http://tools.ietf.org/rfc/rfc5870</a>
</li>
<li>ORCID<br />
    <a href="http://www.orcid.org/">http://www.orcid.org/</a>
</li>
<li>Datacite<br />
    <a href="http://www.datacite.org/whatdowedo">http://www.datacite.org/whatdowedo</a>
</li>
<li>DOI Foundation<br />
    <a href="http://www.doi.org/handbook_2000/governance.html">http://www.doi.org/handbook_2000/governance.html</a>
</li>
<li>duri:<br />
  <a href="http://tools.ietf.org/html/draft-masinter-dated-uri-08">http://tools.ietf.org/html/draft-masinter-dated-uri-08</a><br />
</li>
<li>WebCite<br />
    <a href="http://webcitation.org/">http://webcitation.org/</a>
</li>
<li>P2P DNS<br />
  <a href="http://p2pdns.baywords.com/2010/11/30/hello-world/#comments">http://p2pdns.baywords.com/2010/11/30/hello-world/#comments</a><br />
</li>
<li>Namecoin<br />
    <a href="https://github.com/vinced/namecoin/blob/master/FAQ.md">https://github.com/vinced/namecoin/blob/master/FAQ.md</a>
</li>
<li>W3C URI persistence policy<br />
    <a href="http://www.w3.org/Consortium/Persistence.html">http://www.w3.org/Consortium/Persistence.html</a>
</li>
<li>Vocabulary Hosting: A Modest Proposal<br />
    <a href="http://www.ibiblio.org/hhalpin/homepage/papers">http://www.ibiblio.org/hhalpin/homepage/papers</a>
</li>
<li> Nicholas et al., A Policy Checklist for Enabling Persistence of Identifiers, D-Lib 2009<br />
    <a href="http://www.dlib.org/dlib/january09/nicholas/01nicholas.html">http://www.dlib.org/dlib/january09/nicholas/01nicholas.html</a>
</li>
<li> Masinter, A system for long-term document preservation, IS&T Archiving 2006<br />
    <a href="http://larry.masinter.net/0603-archiving.pdf">http://larry.masinter.net/0603-archiving.pdf</a></li>

</ul>


        </li>
        <li><a href="http://www.w3.org/2001/tag/group/track/actions/477">ACTION-477</a>: on - Henry Thompson - Organize meeting on persistence of domains - Due: 2011-05-16 - OPEN</li>
        <li><a href="http://www.w3.org/2001/tag/group/track/actions/478">ACTION-478</a>: on - Jonathan Rees - Prepare a second draft of a finding on persistence of references, to be based on decision tree from Oct. 2010 F2F - Due: 2011-05-23 - OPEN</li>
        <li>Closed actions and previous discussion:
        <ul>
	<li><a href="http://www.w3.org/2001/tag/2011/02/09-minutes#item06">Discussion at Feb. 2011 F2F</a></li>
        <li><a href="http://www.w3.org/2001/tag/group/track/actions/444">ACTION-444</a>: on - Jonathan Rees - Draft a white paper on link persistence - Due: 2010-10-11 - CLOSED</li>
	<li><a href="http://www.w3.org/2001/tag/group/track/actions/414">ACTION-414</a>: on - Henry S. Thompson - Prepare a draft agenda, including goals and means, for a proposed afternoon session with invited guests, and circulate for discussion prior to a decision, on the subject of addressing the persistence of domain names - Due: 2010-06-01 - CLOSED</li>
	<li><a href="http://www.w3.org/2001/tag/2010/06/07-minutes.html#item04">June 2010 F2F discussion of domain name persistence</a>; <a href="http://www.w3.org/2001/tag/2010/10/20-minutes#item01">October 2010 F2F discussion of domain name persistence</a></li>
       </ul>
      </li>
     </ul>
 </li>
</ul>
</li>


<!--  ************************************* -->
<!--      Linking & copyright infringement  -->
<!--  ************************************* -->


<li>
<a href="http://www.w3.org/2001/tag/group/track/issues/25">ISSUE-25</a> (<a id="linkcopyright">deepLinking-25</a>): Can publication of hyperlinks cause copyright infringment?
<ul>
  <li>Goals:
      <ul>
         <li>Discuss latest version of <a href="http://www.w3.org/2001/tag/doc/publishingAndLinkingOnTheWeb-2011-05-28">Publishing and linking on the Web: Draft TAG Finding 28 May 2011</a> </li>
	 <li>Decide next steps regarding TAG work on copyright and deep linking</li>
      </ul>
      
  </li>
  <li>Background:
    <ul>
       <li><a href="http://www.w3.org/2001/tag/doc/publishingAndLinkingOnTheWeb-2011-05-28">Publishing and linking on the Web: Draft TAG Finding 28 May 2011</a> (required reading)</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/541">ACTION-541</a>: on - Jeni Tennison - Helped by DKA to produce a first draft of terminology about (deep-)linking etc. - Due: 2011-05-24 - OPEN</li>
       <li><a href="http://www.w3.org/2001/tag/2011/04/28-minutes#item07">Discussion on 28 April 2011</a>, <a href="http://www.w3.org/2001/tag/2011/03/17-minutes#item04">17 March 2011</a>, <a href="http://www.w3.org/2001/tag/2011/03/31-minutes#item03">31 March 2011</a>, and <a href="file:///C:/Noah/Web/TAG/CVS/WWW/2001/tag/2011/04/14-minutes.html#item05">14 April 2011</a> of "Copyright and Deep Linking"</li>
       <li>Tim Berners-Lee <a href="http://lists.w3.org/Archives/Public/www-tag/2011Mar/0044.html">alerts the TAG</a> to US legal case in which a Mr. Brian
       McCarthy has been accused of copyright infringement resulting
       from his (alleged) publication of links to copyrighted
       material.  (See also long ensuing email thread.)
       (<a href="http://act.demandprogress.org/sign/dhscomplaint/">Criminal complaint</a>)
       </li>

       <li><a href="http://lists.w3.org/Archives/Public/www-tag/2011Mar/0102.html"
           >Suggestion to write a technical document on linking and
             copying (Jonathan)</a></li>

       <li><a href="http://www.w3.org/2001/tag/2010/12/02-minutes.html#item01"
	   >Discussion with Thinh Nguyen at 3 Dec 2010 TAG telcon</a></li>
    
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/505">ACTION-505</a>: on - Daniel Appelquist - Start a document wrt issue-25 - Due: 2011-03-01 - CLOSED</li>

    </ul>
    
  </li>


</ul>
</li>



  <!--  ************************************* -->
  <!--          HTML LAST CALL                -->
  <!--  ************************************* -->

<li>
<a href="http://www.w3.org/2001/tag/group/track/products/6">HTML5 Review</a>: <a id="htmlreview">HTML5 Last Call</a> 
<ul>
<li>Goals:
<ul>
<li>Establish TAG plan for responding to <a href="http://www.w3.org/2011/05/html5lc-pr.html.en">HTML5 Last Call</a> (is there a better link for the last call?)</li>
</ul>

</li>

<li>Background:
<ul>
<li>Note from Noah to HTML WG chairs <a href="http://lists.w3.org/Archives/Public/www-tag/2011Jun/0000.html">questioning non-normative status of</a> the <a href="http://www.w3.org/TR/2011/WD-html5-20110525/author/">HTML5 Edition for Web Authors</a></li>
<li>The HTML working group has issued a <a href="http://www.w3.org/2011/05/html5lc-pr.html.en">press release</a> inviting
comments from the public.</li>
<li>The last call period runs through 3 August 2011</li>
<li>On 12 May 2011, <a href="http://www.w3.org/2011/05/html5lc-pr.html.en">Henry Thompson and Dan Appelquist agreed to
review selected items</a>, but we probably need more coverage
from other TAG members if possible.</li>
<li>Note that <a href="http://www.w3.org/TR/2011/WD-html-polyglot-20110525/">Polyglot Markup: HTML-Compatible XHTML Documents</a> is part of the Last Call, and is
pertinent to the <a href="#htmlxml">HTML / XML Unification agenda item</a>.</li>
<li><a href="http://lists.w3.org/Archives/Public/public-iri/2011May/0026.html">public-iri mailing list discussion of IRI handling and RFC 3987 in HTML5</a> (<a href="http://lists.w3.org/Archives/Public/www-tag/2011May/0077.html">heads up email from Noah</a>)</li>

</ul>
</li>

</ul>

</li>


  <!--  ************************************* -->
  <!--           HTML / XML Unification       -->
  <!--  ************************************* -->
  <li><a href="http://www.w3.org/2001/tag/group/track/issues/67">ISSUE-67</a> (HTML-XML-Divergence-67): <a name="htmlxml" id="htmlxml">HTML / XML Unification</a>
  <ul>
   <li>Norm Walsh may join us for this session, probably by phone.</li>
   <li>Goals:
       <ul>
       <li>Review <a href="http://www.w3.org/2010/html-xml/snapshot/report.html">HTML/XML Task Force Report - 22 March 2011 Editor's Draft</a> (required reading)</li>
       <li>Decide whether further effort is required by the TAG 
           regarding HTML / XML Unification at this time &#8212; consider closing <a href="http://www.w3.org/2001/tag/group/track/actions/437">ACTION-437</a> </li>
       </ul>
       
   </li>
   <li>Background:
    <ul>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/437">ACTION-437</a>: on - Tim Berners-Lee - Create a task force on XML / HTML convergence - Due: 2011-06-01 - OPEN</li>
      <li>Norm Walsh is chairing a group under the TAG's auspices (<a href="http://lists.w3.org/Archives/Public/public-html-xml/">mailing list</a>)</li>
      <li>See also:
        <ul>
      <li><a href="http://www.w3.org/TR/2011/WD-html-polyglot-20110525/">Polyglot Markup: HTML-Compatible XHTML Documents</a> (part of HTML5 Last Call)</li>
      <li><a href="http://lists.w3.org/Archives/Member/w3c-ac-forum/2010AprJun/0073.html">Note from T.V. Raman</a> (3 May 2010)</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/433">ACTION-433</a>: on - Tim Berners-Lee - Help Tim get in touch with staff etc. re XML/HTML unification - Due: 2010-05-28 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/427">ACTION-427</a>: on - John Kemp - Read 4 distributed extensibility proposals and summarize them w.r.t. proposals TAG has discussed to date - Due: 2010-11-01 - CLOSED</li>
      <li>Discussion on 7 June 2010 F2F: <a href="">"TAG recommends the formation of a task force to drive the reunification of XML and HTML"</a></li>
      <li><a href="http://www.w3.org/2002/09/wbs/40318/issue-41-objection-poll/results">September/October 2010 HMTL WG poll on distributed extensibility</a></li>
      <li><a href="http://lists.w3.org/Archives/Public/www-tag/2010Oct/0034.html">TAG endorses "like SVG" extension mechanism for HTML5</a></li>
     </ul>
     </li>
    </ul>
   </li>
  </ul>
  </li>

  <!--  ************************************* -->
  <!--            Privacy                     -->
  <!--  ************************************* -->

<li>
<a
      href="http://www.w3.org/2001/tag/group/track/actions/545">ACTION-545</a>: <a id="privacy">Privacy</a>
<ul>
  <li>Note: Ashok Malhotra has agreed to lead this session</li>
  <li>Goals:
      <ul>
         <li>Review the <a href="http://www.w3.org/2011/track-privacy/report">Report of the W3C Workshop on Web Tracking and User Privacy </a> (required reading)</li>
      <li>We will focus primarily, but not exclusively on "Do Not Track" proposals </li>
      <li>Decide how the TAG will engage in privacy-related work for the remainder of 2011</li>
      </ul>
      
  </li>
  <li>Background:
    <ul>
    <li><a href="http://www.w3.org/2011/track-privacy/report">Report of the W3C Workshop on Web Tracking and User Privacy </a> (required reading)</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/460">ACTION-460</a>: on - Daniel Appelquist - Coordinate with IAB regarding next steps on privacy policy - Due: 2011-05-24 - OPEN</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/550">ACTION-550</a>: on - Daniel Appelquist - With help from Noah to plan TAG work on privacy, leading to session at F2F, next step is contact with TLR - Due: 2011-05-12 - OPEN</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/507">ACTION-507</a>: on - Daniel Appelquist - With Noah to suggest next steps for TAG on privacy - Due: 2011-05-03 - CLOSED</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/545">ACTION-545</a>: on - Ashok Malhotra - Report to TAG, after privacy workshop, regarding architecture issue on privacy and especially degree to which use cases beyond those addressed by "Do Not Track" need attention - Due: 2011-05-03 - CLOSED</li>
    <li>Earlier background:
    <ul>
    <li>IETF/W3C Privacy workshop was held at MIT 8-98 December 2011.  "Action Items" for W3C were proposed. See: <a href="http://lists.w3.org/Archives/Public/www-tag/2010Dec/att-0061/ActionItems_Workshop.pdf">Action items</a> (PDF - may need rotating) collected at IETF/W3C Privacy Workshop wrapup</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/264">ACTION-264</a>: on - Ashok Malhotra - Draft agenda item for upcoming telcon discussion of geolocation and privacy - Due: 2009-08-04 - CLOSED</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/290">ACTION-290</a>: on - Noah Mendelsohn - Write to Geolocation WG saying "we have concern that the spec does not say enough user privacy" - Due: 2009-07-30 - CLOSED</li>
    <li><a href="http://www.w3.org/2001/tag/group/track/actions/408">ACTION-408</a>: on - Daniel Appelquist - Look into next steps on a workshop around device APIs, privacy etc. with tlr - Due: 2010-03-31 - CLOSED</li>

    <li><a href="http://www.w3.org/2001/tag/group/track/actions/506">ACTION-506</a>: on - Noah Mendelsohn - Noah to bring proposed W3C Actions on Privacy before the TAG - TLR to report back to IETF - Due: 2011-01-11 - CLOSED</li> 
    <li>Papers from earlier IETF/W3C workshop on privacy were at <a href="http://www.iab.org/about/workshops/privacy/Privacy_Workshop_Papers.zip">http://www.iab.org/about/workshops/privacy/Privacy_Workshop_Papers.zip</a> but that link appears not to work any more (<a href="http://www.w3.org/2001/tag/group/track/actions/490">ACTION-490</a>: on - Noah Mendelsohn - Noah and others(?) going to privacy workshop to report back to the TAG? - Due: 2010-12-21 - CLOSED) (<a href="http://www.w3.org/2001/tag/group/track/actions/506">ACTION-506</a>: on - Noah Mendelsohn - Noah to bring proposed W3C Actions on Privacy before the TAG - TLR to report back to IETF - Due: 2011-01-11 - CLOSED)</li>
    </ul>
    </li>
   
   </ul> 
  </li>



</ul>
</li>



  <!--  ************************************* -->
  <!--           Web Applications: Security   -->
  <!--  ************************************* -->
  <li><a name="security" id="security">Web Applications</a>: Security 
    <ul>
      <li>Goals:
      <ul>
        <li><em>This will be a brief, and mostly non-technical(!) discussion of how the TAG can engage on security issues now that John Kemp is no longer a memeber</em></li>
      </ul>
      </li>
      <li>Background:
      <ul>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/515">ACTION-515</a>: on - Larry Masinter - (as trackbot proxy for John) who will publish http://www.w3.org/2001/tag/2011/02/security-web.html, slightly cleaned up, with help from Noah and Larry - Due: 2011-04-12 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/344">ACTION-344</a>: on - Jonathan Rees - Alert TAG chair when CORS and/or UMP goes to LC to trigger security review - Due: 2011-05-23 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/516">ACTION-516</a>: on - Noah Mendelsohn - Talk with Thomas Roessler about organizing W3C architecture work on security - Due: 2011-05-17 - PENDING REVIEW</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/341">ACTION-341</a>: on - Yves Lafon - Follow up with Thomas about security review activities for HTML5 - Due: 2011-05-10 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/554">ACTION-554</a>: on - Noah Mendelsohn - Formulate product page for TAG work on security including John Kemp security draft Due: 2011-05-24 - Due: 2011-05-31 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/417">ACTION-417</a>: on - John Kemp - Frame section 7, security - Due: 2011-01-25 - CLOSED</li>
      <li>See also:
           <ul>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/33">ACTION-33</a>: on - Henry S. Thompson - revise naming challenges story in response to Dec 2008 F2F discussion - Due: 2011-06-06 - OPEN</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/280">ACTION-280</a>: on - Dan Connolly - (with John K) to enumerate some CSRF scenarios discussed in Jun in Cambridge - Due: 2010-10-11 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/340">ACTION-340</a>: on - John Kemp - summarize recent discussion around XHR and UMP - Due: 2010-06-04 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/412">ACTION-412</a>: on - Dan Connolly - Try the clarification question, blog item, or wiki approach to metadata-in-uris vs CSRF - Due: 2010-06-07 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/435">ACTION-435</a>: on - Jonathan Rees - Consult Tyler Close regarding UMP-informed web storage vulnerability analysis - Due: 2010-06-22 - CLOSED</li>
      <li><a href="http://www.w3.org/2001/tag/2010/06/01-cross-domain.html">CORS, UMP and XHR</a> by John Kemp (required reading for previous F2F)</li>
      <li>John Kemp's <a href="http://www.w3.org/2001/tag/2011/02/security-web.html">note framing a security section for the architecture of Web Applications</a></li>

	   </ul>
	   
      </li>
      </ul>
      </li>
    </ul>
  </li>



<!--  ************************************* -->
<!--       3023 bis and IRIbis              -->
<!--  ************************************* -->


<li>
<a id="rfc3023iri"></a>RFC 3023bis and IRI
<ul>
  <li>Goals:
      <ul>
         <li>Discuss coordination of technical issues relating to emerging drafts for RFC 3023bis and IRI</li>
         <li>Decide whether TAG should be actively involved in resolving any of these issues</li>
      </ul>
      
  </li>
  <li>Background:
    <ul>
       <li>Henry <a href="http://lists.w3.org/Archives/Public/www-tag/2011Jun/0005.html">provides details of issues to be considered</a>. The following is adapted from Henry's note:
          <ul>
	  <li><a href="http://www.w3.org/2006/02/son-of-3023/latest.html">RFC 3023bis</a> and fragment identifiers -- We discussed this a year
    ago (<a href="http://www.w3.org/2001/tag/2010/06/9-minutes.html#item03">minutes</a>) and came to a conclusion, which Noah took to <a href="http://www.w3.org/2001/tag/group/track/actions/441">ACTION-441</a> to
    convey to the 3023 editors.  There was <a href="http://www.w3.org/2001/tag/group/track/actions/449">substantial pushback</a>.
    Jonathan <a href="http://www.w3.org/2001/tag/group/track/actions/476">reported on our further discussion</a> to the 3023 editors,
    setting out a number of alternative ways forward.  Chris
    Lilley <a href="http://lists.w3.org/Archives/Public/www-tag/2010Nov/0095.html">replied</a> stating a preference for option 2.

    But nothing has happened. . .  Time to put a TAG push behind a new
    draft of 3023bis?</li>
	  <li> 3023bis and Processor Profiles -- The XML Processing Model WG has produced a
    <a href="http://www.w3.org/TR/2011/WD-xml-proc-profiles-20110412/">Last Call WD for XML Processing Profiles</a>.  Would 3023bis be
    the <em>architecturally</em> correct place to connect this to XML itself?
</li>
	  <li>IRIbis and HTML5 'URIs' -- The HTML WG has removed all reference
   to 3987bis, but the IRI WG is exploring ways to get back in (the following is quoted from <a href="http://lists.w3.org/Archives/Public/public-iri/2011May/0026.html">http://lists.w3.org/Archives/Public/public-iri/2011May/0026.html</a>):
<pre>
      "In March 2011, the W3C's HTML WG made a decision to close
       ISSUE-56 when the parties involved could not come to agreement
       on aligning HTML5 with the IRI WG's revisions to RFC 3987:

      "http://lists.w3.org/Archives/Public/public-html/2011Mar/0404.html

      "That decision effectively removed the HTML5 specification's
       dependency on rfc3987bis.  It appears that this was done so
       that the HTML5 specification could define how to translate
       input strings contained in text/html documents into URIs.

       . . .

      "However, our understanding is that ISSUE-56 can be reopened if
       new information emerges, such as "IETF completing production of
       a document suitable as a formal reference".  And of course as
       chairs of the IRI WG we would like to deliver such a document."
</pre>
</li>
	  </ul>
	  

</li>
    <li><a href="http://lists.w3.org/Archives/Public/www-tag/2011Jun/0007.html">Paul Grosso notes:</a> Also related to IRIbis is the XML Core desire to be able to reference it normatively from the XML and related specs for the definition of LEIRIs as recorded at <a href="http://lists.w3.org/Archives/Public/public-xml-core-wg/2011Mar/0022">http://lists.w3.org/Archives/Public/public-xml-core-wg/2011Mar/0022</a>
 among other places.
</li>
    </ul>
    
  </li>


</ul>
</li>



  <!--  ************************************* -->
  <!--                 Administrative         -->
  <!--  ************************************* -->
  <li><a name="Admin" id="Admin">Administration</a>: 
    <ul>
      <li>Welcome Jeni</li>
      <li>TAG Summer Schedule</li>

      <li>Future TAG F2F meetings
          <ul>
	      <li>UK: Sept. 2011
                <ul>
		   <li>Confirm 13-15 Sept 2011 in the UK as previously agreed?</li>
		   <li>London or Edinburgh: we've had 
		       specific requests for both</li>
		</ul>
		
	      </li>
	      <li>Early heads up: TPAC in Santa Clara, 31 Oct. - 4 Nov. 2011</li>
	      <li>Plan a late fall/early-winter meeting? In the US?</li>
	  </ul>
	  
      </li>
      <li>Group photo (we have new membership)</li>
    </ul>
  </li>


  <!--  ************************************* -->
  <!--        Open Issue  Review              -->
  <!--  ************************************* -->
<!--
  <li style="color:red"><a name="issues"
    id="issues">Open issue review:</a> 
    <ul>
      <li>Goal: review our list of <a href="http://www.w3.org/2001/tag/group/track/issues/open">open issues</a> &#8212; look especially for issues that are open but dormant decide to assign resource/close/leave as background activity. </li>

    </ul>

  </li>
-->

  <!--  ************************************* -->
  <!--               Action Item Review       -->
  <!--  ************************************* -->
  <li><a name="actions"
    id="actions">Action item review:</a> 
    <ul>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/pendingreview">Pending review actions</a> in <a href="http://www.w3.org/2001/tag/group/track/">Tracker</a></li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/overdue">Overdue actions</a> in <a href="http://www.w3.org/2001/tag/group/track/">Tracker</a></li>
      <li><a href="http://www.w3.org/2001/tag/group/track/actions/open">Open actions</a> in <a href="http://www.w3.org/2001/tag/group/track/">Tracker</a></li>
    </ul>

  </li>



</ol>
<hr />
<address>
  Noah Mendelsohn for the TAG<br />
  <small>$Revision: 1.37 $ of $Date: 2011/06/27 15:38:30 $</small> 
</address>
<p>
&nbsp;&nbsp;&nbsp;    <a href="http://validator.w3.org/check?uri=referer">
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" width="88" height="31" /></a>

&nbsp;&nbsp;&nbsp;
    <a href="http://jigsaw.w3.org/css-validator/check/referer">

        <img style="border: 0pt none ; width: 88px; height: 31px;" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" />
    </a>
       
</p>
</body>
</html>