23-agenda 50.5 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
<?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>TAG F2F, 23-25 September 2009</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; }

.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;
}

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;}

</style>
</head>


<!--  ************************************* -->
<!--            Body - Frontmatter          -->
<!--  ************************************* -->

<body>

<p><a href="http://www.w3.org/">W3C</a> | <a
	href="http://www.w3.org/2001/tag/">TAG</a> |  Previous teleconference: <a
	href="http://www.w3.org/2001/tag/2009/09/10-tagmem-minutes">10 September
2009</a> | Next teleconference: 1 October 2009 (tentative).</p>

<h1>TAG face-to-face meeting, 23-25 September 2009 &#8212; MIT Stata Center, Cambridge, MA, USA</h1>

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

<!--
<p class="warning">WORK IN PROGRESS DRAFT - NOT READY FOR PUBLIC REVIEW</p>
-->


<!--  ************************************* -->
<!--           Preliminary warning          -->
<!--  ************************************* -->

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



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

<a href="http://www.w3.org/2001/tag/2009/09/TagGroupCropped.jpg"><img style="margin-left:1cm" src="http://www.w3.org/2001/tag/2009/09/TagGroupCroppedSmall.jpg" alt="Picture of the TAG" /></a>


<p style="margin-left:1cm;">Dan Connolly, Ashok Malhotra, Tim Berners-Lee, Larry Masinter, Henry Thompson, Jonathan Rees, John Kemp, Noah Mendelsohn</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>)</p>

<p><span class="bold">Regrets:</span> T.V. Raman will be participating by
phone from the West Coast, and will be available only for afternoon sessions; Jonathan Rees is at risk for afternoon of 23 Sept (Wed); John Kemp may miss one day (see minutes of 10 Sept).
</p></div>

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


<h2 id="Agenda">Agenda Summary</h2>



<!-- dummy comment to keep Firefox happy -->
<table class="agendatable" border="1" cellpadding="1" cellspacing="1">
	<tbody>
	<!--  - - - - - - - - - - - - - - - - - -   -->
	<!--             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" >Wed 23rd September</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:00-9:00</td>
			<td align="left" valign="top"><span style="font-weight:bold">Arrive &amp; Set up</span>
			<br />
			The meeting room will be available.  Please have your
			computers and network connections set up for a
			prompt start at 9AM.
			<br />
			</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="23-minutes.html#item01">Convene, Review Agenda</a></li>
<li><a href="23-minutes.html#item02">HTML, collecting issues</a></li>
<li><a href="23-minutes.html#item03">references to versioned specifications (HTML
5 review topic #15)</a></li>
<li><a href="23-minutes.html#item04">Architecture of Web Applications</a></li>
<li><a href="23-minutes.html#item05">HTML issue collection, cont</a></li>
<li><a href="23-minutes.html#item06">document conformance vs. user agent
conformance requirements (#13)</a></li>
<li><a href="23-minutes.html#item07">discussion of work on webapis</a></li>
<li><a href="23-minutes.html#item08">wrap up for the day (agenda review)</a></li>

</ol>

			</td>

		</tr>
		<tr>
			<td align="left" valign="top">09:00-9:15</td>
			<td align="left" valign="top"><a href="#Convene">Convene</a>
			<br />
			Appoint Scribes, Review F2F Logistics, etc
			<br />
			</td>
		</tr>
		<tr>
			<td align="left" valign="top">09:15-9:30</td>
			<td align="left" valign="top"><a href="#F2FReview">Review F2F Goals and Agenda</a>
			</td>
		</tr>
		<tr>
			<td align="left" valign="top">9:30-10:30</td>
			<td align="left" valign="top"><a href="#html">HTML</a></td>
		</tr>
		<tr>
			<td align="left" valign="top">10:30-10:45</td>
			<td align="left" valign="top">Break (15 mins)</td>
		</tr>
		<tr>
			<td align="left" valign="top">10:45-12:00</td>
			<td align="left" valign="top"><a href="#html">HTML</a></td>
		</tr>
		<tr>
			<td align="left" valign="top">12:00-13:15</td>
			<td align="left" valign="top">Lunch - 75 mins</td>
		</tr>
		<tr>
			<td align="left" valign="top">13:15-14:45</td>
			<td align="left" valign="top"><a href="#webapps">Web Application Architecture (session 1)</a></td>
		</tr>
		<tr>
			<td align="left" valign="top">14:45-15:00</td>
			<td align="left" valign="top">Break (15 mins)</td>
		</tr>
		<tr>
			<td align="left" valign="top">15:00-16:30</td>
			<td align="left" valign="top"><a href="#APIs">W3C Work on Web APIs</a></td>
		</tr>

	<!--  - - - - - - - - - - - - - - - - - -   -->
	<!--             Thursday                   -->
	<!--  - - - - - - - - - - - - - - - - - -   -->
		<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" >Thurs 24th September</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:00</td>
			<td align="left" valign="top"><a href="#metadata">Metadata</a></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="24-minutes.html#item01">Metadata</a></li>
<li><a href="24-minutes.html#item03">Content-type sniffing</a></li>
<li><a href="24-minutes.html#item04">Web Application Architecture</a></li>
<li><a href="24-minutes.html#item05">Naming Schemes</a></li>


</ol>

			</td>
		</tr>
		<tr>
			<td align="left" valign="top">10:00-10:30</td>
			<td align="left" valign="top"><a href="#sniffing">Content-type Sniffing</a>  &#8212; w/Lisa Dusseault and Mark Nottingham (30 mins)</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-12:30</td>
			<td align="left" valign="top"><a href="#sniffing">Content-type Sniffing</a> (1hr 40 mins)</td>
		</tr>
		<tr>
			<td align="left" valign="top">12:30-13:45</td>
			<td align="left" valign="top">Lunch (75 mins)</td>
		</tr>
		<tr>
			<td align="left" valign="top">13:45-14:30</td>
			<td align="left" valign="top"><a href="#webapps">Web Application Architecture (session 2)</a></td>
		</tr>
		<tr>
			<td align="left" valign="top">14:30-15:30</td>
			<td align="left" valign="top"><a href="#naming">Naming Schemes</a></td>
		</tr>

		<tr>
			<td align="left" valign="top">15:30-15:45</td>
			<td align="left" valign="top">Break (15 mins)
			</td>
		</tr>

		<tr>
			<td align="left" valign="top">15:45-16:15</td>
			<td align="left" valign="top"><a href="#admin">TAG Administration</a></td>
		</tr>

		<tr>
			<td align="left" valign="top">16:15-17:00</td>
			<td align="left" valign="top"><a href="#html">HTML</a></td>
		</tr>


	<!--  - - - - - - - - - - - - - - - - - -   -->
	<!--             Friday                     -->
	<!--  - - - - - - - - - - - - - - - - - -   -->

		<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" >Fri 25th September</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:30</td>
			<td align="left" valign="top">To be scheduled for Friday: Javascript Security;  TPAC Session on Decentralized Extensibility; HTML - including Larry's request to consider URIs</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="7">
<ol>
<li><a href="25-minutes.html#item01">HTML Issues</a></li>
<li><a href="25-minutes.html#item02">HTML</a></li>
<li><a href="25-minutes.html#item03">HTML Data Facilities</a></li>
<li><a href="25-minutes.html#item04">TAG admin (TPAC logistics, future meetings)</a></li>
<li><a href="25-minutes.html#item05">TAG priorities</a></li>
<li><a href="25-minutes.html#item06">HTML issue: text/html mime type</a></li>
<li><a href="25-minutes.html#item07">Geolocation/Geopriv</a></li>


</ol>

			</td>

		</tr>

		<tr>
			<td align="left" valign="top">10:30-10:45</td>
			<td align="left" valign="top">Break (15 mins)</td>
		</tr>

		<tr>
			<td align="left" valign="top">10:45-12:00</td>
			<td align="left" valign="top">TBD</td>
		</tr>
		<tr>
			<td align="left" valign="top">12:00-13:30</td>
			<td align="left" valign="top">Lunch (75 mins)</td>
		</tr>

		<tr>
			<td align="left" valign="top">13:30-15:00</td>
			<td align="left" valign="top"><a href="#TAGPriorities">TAG Priorities</a></td>
		</tr>
		<tr>
			<td align="left" valign="top">16:00-17:00</td>
			<td align="left" valign="top">...those who are not traveling may wish to stay for informal discussion...</td>
		</tr>

	<!--  - - - - - - - - - - - - - - - - - -   -->
	<!--             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">
<p>(there is also a separate <a href="http://www.w3.org/2001/tag/2009/09/09-f2f-local-arrangements.html">logistics</a>
page)</p>
<dl>
	<dt><strong>Venue</strong></dt>

<dd>MIT, Stata Center<br />
32 Vassar Street<br />
Cambidge, MA 02139
</dd>

	<dt style="margin-top:1em"><strong>Schedule:</strong></dt>
	<dd>Wed 23 September: 09:00 - 17:00<br />
	Thurs 24 September: 09:00 - 17:00<br />
	Fri 25 September: 09:00 - 16:00</dd>
</dl>

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

<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>
<h3>Goals:</h3>

<ul>
<li>Appoint scribes</li>
<li>Review F2F logistics</li>
<li>Approve minutes of telconferences
<ul>
<li><a href="http://www.w3.org/2001/tag/2009/09/10-tagmem-minutes.html">Minutes of 10 Sept</a></li>
</ul>

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

<!--  ************************************* -->
<!--                 F2F Review             -->
<!--  ************************************* -->


<li><a name="F2FReview">Review F2F Goals and Agenda</a>
<h3>Session shepherd:</h3>
<div class="nonlistsection">
<p>
Noah Mendelsohn
</p>
</div>


<h3>Session goals:</h3>
<ul>
	<li>Review F2F Goals

	<ul>
	        <li>Discuss the HTML 5 working drafts, and make plan for providing feedback to the working group</li>
		<li>Make progress on the Architecture of the Web of Applications</li>
		<li>Discuss issues relating to metadata on the Web</li>
		<li>Discuss TAG participation in the <a href="http://www.w3.org/2009/11/TPAC/overview.html">November W3C Technical Plenary and AC Meeting (TPAC)</a>  (<a href="http://www.w3.org/2009/11/TPAC/PlenaryAgenda">Draft Plenary Day Agenda</a>)</li>
		<li>Make progress on selected other issues (URNsAndRegistries, etc.)</li>
	</ul>
        </li>
	<li>Review F2F Agenda (<a href="">this document</a>). Questions:
		  <ul>
		    <li>Do we want a separate session on <a href="#security">JavaScript security?</a></li>
		    <li>Do we want a separate session on WebSockets?  It's currently scheduled under <a href="#APIs">W3C Work on Web APIs</a>. </li>
		  </ul>
		</li>
         
     </ul>
     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/2009/06/25-minutes.html#item04">June 2009 F2F discussion of TAG priorities and future work</a> including:
           <ul>
	   <li><a href="http://www.w3.org/2001/tag/2009/06/TagPriorities.txt">Note with outline of priorities</a> &#8212;  these were collected at the wrapup session in June, and have some cross-references to then-current actions.</li>
	   <li><a href="http://www.w3.org/2001/tag/2009/06/webAppsTOC.html">Proposed Table of Contents for TAG work on Web Architecture for Web Applications</a> &#8212; these also were prepared at the June F2F; <a href="http://www.w3.org/2001/tag/2009/09/webAppsTOC-20090921">revised version</a> for discussion at this F2F per <a href="http://www.w3.org/2001/tag/group/track/actions/284">ACTION-284</a>).</li> 
	   </ul>
	   
       </li>
           <li>(older) <a href="http://www.w3.org/2001/tag/2009/03/05-whiteboard-priorities.txt"> list of 6 proposed TAG priorities</a> &#8212;  recorded from whiteboard and flip charts at March 2009 TAG F2F</li>
     </ul>

</li>

<!--  ************************************* -->
<!--      HTML 5 AND TagSoupIntegration     -->
<!--  ************************************* -->

<li><a href="http://www.w3.org/2001/tag/group/track/issues/20">ISSUE-54</a> <a name="html">HTML</a>

<h3>Goals:</h3>
  <ul>
    <li>Decide how the TAG can best contribute to the success of HTML 5 and related technologies</li>
    <li>Discuss specific technical and editorial issues with the <a href="http://dev.w3.org/html5/spec/Overview.html">HTML 5 working draft</a></li>
    <li>Assign responsibilities for preparing feedback (if any) to HTML working group</li>
    <li>Decide whether the TAG wishes to review <a href="http://lists.w3.org/Archives/Public/public-html-comments/2009Jun/0016.html">Ian Hickson's experimental draft of an HTML 5 authoring specification</a></li>
    <li>Discuss possible TAG support of HTML discussions at the <a href="http://www.w3.org/2009/11/TPAC/overview.html">November W3C Technical Plenary and AC Meeting (TPAC)</a> (<a href="http://www.w3.org/2009/11/TPAC/PlenaryAgenda">Draft Plenary Day Agenda</a>)</li>
  </ul>

<h3>Background:</h3>
  <ul>
    <li>HTML WG chairs report (informally) that HTML working group may try to go to Last Call in autumn, 2009</li>
    <li>W3C announcement (July 2009): <a href="http://www.w3.org/News/2009#item119">XHTML 2 Working Group Expected to Stop Work End of 2009, W3C to Increase Resources on HTML 5</a></li>
		 <li>TAG chair <a href="http://lists.w3.org/Archives/Public/www-tag/2009Sep/0002.html">call for TAG members to itemize potential issues with HTML 5 drafts</a></li>
            <li><a href="http://lists.w3.org/Archives/Member/tag/2009Jul/0026.html">Division of labour for TAG reading the HTML 5 draft specification</a> that we <a href="http://www.w3.org/2001/tag/2009/07/23-minutes#item03">agreed to</a> on July 23</li>
		 <li>Ian Hickson <a href=" http://lists.w3.org/Archives/Public/public-html-comments/2009Jun/0016.html">announces</a>
		     availability of initial drafts of HTML 5 authoring specifications.  This is, in part, in response to a <a href="http://lists.w3.org/Archives/Public/public-html-comments/2008Oct/0003.html">suggestion</a> made by Noah in October 2008, shortly after the HTML/TAG joint working group meeting
at the Mandelieu Technical Plenary.
		      </li>
  </ul>

<h3>Preparation:</h3>
  <ul>
		 <li>Noah's <a href="http://www.w3.org/2001/tag/2009/09/TagHTMLIssues.html">preliminary list of potential issues for consideration</a> (late addition to agenda - <a href="http://lists.w3.org/Archives/Public/www-tag/2009Sep/0010.html">email</a>) </li>
		 <li><a href="http://lists.w3.org/Archives/Public/www-tag/2009Sep/0009.html">Ashok's list of potential issues for consideration</a></li>
		 <li><a href="http://lists.w3.org/Archives/Public/www-tag/2009Sep/0012.html">John Kemp's list of potential issues for consideration</a></li>
		 <li>Henry Thompson's <a href="http://lists.w3.org/Archives/Public/www-tag/2009Sep/0015.html">raw notes through end of Section 2.4</a></li>
		 <li>Minutes of recent discussions on <a href="http://www.w3.org/2001/tag/2009/09/03-minutes#item01">3 September 2009</a> and <a href="http://www.w3.org/2001/tag/2009/09/10-tagmem-minutes#item05">10 September 2009</a></li>
                 <li><a href="http://lists.w3.org/Archives/Public/public-html-comments/2009Jun/0016.html">Ian Hickson's experimental draft of an HTML 5 authoring specification</a> (please skim this &#8212; we'll decide at the meeting whether to review it more thoroughly)</li>


  </ul>

</li>

<!--  ************************************* -->
<!--        Architrecture of Web Apps       -->
<!--  ************************************* -->

<li><a name="webapps">Architecture of Web Applications</a>

     <h3>Session shepherd:</h3>
     <div class="nonlistsection">
     <p>
        Noah Mendelsohn (or maybe Jonathan?)
     </p>
     </div>


     <h3>Background:</h3>
     <ul>
       <li>The TAG agreed at the June 2009 F2F that Architecture of Web Applications would be a key focus area for the TAG.</li>
       <li><a href="http://www.w3.org/2001/tag/2009/06/webAppsTOC.html">Proposed Table of Contents for TAG work on Web Architecture for Web Applications</a>.</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/284">ACTION-284</a> on Jonathan: Flesh out the Web Application [<a href="http://www.w3.org/2001/tag/2009/06/webAppsTOC.html">http://www.w3.org/2001/tag/2009/06/webAppsTOC.html</a>] outline with as many sentences as he can - now due 15 Sept 2009</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a>: Web Application State Management</li>
       <li>First Public Working Draft titled <a href="http://www.w3.org/TR/2009/WD-hash-in-uri-20090415/">Usage Patterns For Client-Side URI parameters </a></li>
     </ul>


<h3>Session goals:</h3>
     <ul>
      <li>Decide what the TAG wants to do regarding Architecture of Web Applications (pursue individual issues,
          work toward new volume of AWWW, etc.)</li>
      <li>Technical discussion of selected issues from the "Table of Contents" (note that some, like APIs, are
          explicitly scheduled in this agenda, but we may decide to discuss others as well)</li>
     </ul>
     
     <h3>Preparation:</h3>
     <ul>
       <li>Proposed Table of Contents for TAG work on Web Architecture for Web Applications: <a href="http://www.w3.org/2001/tag/2009/06/webAppsTOC.html">June version</a>; <a href="http://www.w3.org/2001/tag/2009/09/webAppsTOC-20090921">revised version prepared by Jonathan for discussion at this F2F</a> (per <a href="http://www.w3.org/2001/tag/group/track/actions/284">ACTION-284</a>).</li>     
</ul>
</li>




<!--  ************************************* -->
<!--               Web APIs                 -->
<!--  ************************************* -->

<li><a name="APIs">W3C Work on Web APIs</a>

<h3>Session shepherds:</h3>
<div class="nonlistsection">
<p>
Ashok Malhotra, John Kemp
</p>
</div>


<h3>Background:</h3>
<div class="nonlistsection">
<p>
Traditionally, most of the W3C's Recommendations have focused on data formats
such as HTML, identification  mechanisms such as URI's, etc.
With the rise of AJAX, JavaScript and similar APIs have become an increasingly
important aspect of content and application development for the Web, and W3C
is considering at least one 
<a href="http://lists.w3.org/Archives/Public/public-new-work/2009May/0000.html">proposal</a> to charter work on the standardization of such APIs.
The TAG has also had some informal discussionts (see thread starting with <a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0053.html">email from Thomas Roessler</a>) of Geolocation APIs and the Geopriv work.</p>
<p>
The TAG <a href="http://www.w3.org/2001/tag/2009/06/23-minutes.html#item02">discussed issues relating to APIs</a> at it's June 2009 F2F;  this will be a followup to tha tdiscussion.
</p>
</div>
<h3>Session goals:</h3>
     <ul>
      <li>Discuss technical and architectural issues relating to Web APIs.</li>
      <li>Decide:
         <ul>
	   <li>Whether there are technical issues relating to APIs
	       that merit ongoing consideration by the TAG</li>
	   <li>Decide whether the TAG should play a role in
	       helping the W3C to decide whether to undertake work
	       in this area, and/or how to structure charters for such work</li>
	   <li>Consider privacy and security issues relating to Javascript APIs that
	       give access to the user's location.</li>
	 </ul>
	 
      </li>
     </ul>
     
     <h3>Open Actions relating to this topic</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/273">ACTION-273</a>: (on Ashok) Carry forward framing issues around Archicture of APIs, with help from JK and LM.</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/295">ACTION-295</a>: (on Dan) Monitor geolocation response to IETF GEOPRIV comments on last call and report to the TAG - Due: 2009-09-10</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/300">ACTION-300</a> (on John) Prepare draft on device APIs - Due: 2009-09-15</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/301">ACTION-301</a> (on John) Review websocket protocol/api motivation and brief TAG at Sep ftf - Due: 2009-09-15</li>
     </ul>
     

     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/group/track/actions/273">ACTION-273</a>: (on Ashok) Carry forward framing issues around Archicture of APIs, with help from JK and LM.</li>
       <li>In conjunction with <a href="http://www.w3.org/2001/tag/group/track/actions/300">ACTION-300</a>, John Kemp has prepared a draft <a href="http://www.w3.org/2001/tag/2009/09/apis-on-the-web.html">apis-on-the-web</a>.</li>
       <li>In conjunction with <a href="http://www.w3.org/2001/tag/group/track/actions/301">ACTION-301</a>, John Kemp has prepared <a href="http://jkemp.net/tag/hybi.html">a briefing on the WebSocket protocol and API</a> (should this be in a different session?).</li>
       <li>(older - prepared for June F2F) <a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/att-0085/W3C_and_APIs.htm">W3C and APIs </a> from Larry Masinter and Ashok Malhotra (<a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0085.html">announcement email</a>)</li>
       <li>Email <a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0053.html">geolocation update</a> from Thomas Roessler.</li>
       <li><a href="http://dev.w3.org/html5/spec/Overview.html#the-2d-context">Proposed HTML 5 2D graphics context</a> for use with the <a href="http://dev.w3.org/html5/spec/Overview.html#the-canvas-element">canvas element</a></li>
     </ul>

</li>



<!--  ************************************* -->
<!--           JavaScript Security          -->
<!--  ************************************* -->

<li><a name="security">JavaScript Security</a>
<p>This topic is currently not scheduled, but it seems important and fits under the umbrella
of "Architecture of Web Applications".  I will leave this here and poll the TAG on whether to schedule it.  In the meantime, the following agenda text is carried forward from the June F2F agenda. [Noah]</p>     <h3>Session shepherd:</h3>
     <div class="nonlistsection">
     <p>
        Jonathan Rees
     </p>
     </div>


<h3>Background:</h3>

     <ul>
     <li>The TAG recently <a
href="http://www.w3.org/2001/tag/2009/05/28-minutes.html#item06">discussed</a>
JavaScript technologies such as <a
href="http://code.google.com/p/google-caja/">Caja</a>, which apply
capability-based sandboxing techniques to JavaScript.
The goal is to support the "safe" execution of untrusted JavaScript
code in a Web page.
</li>
     <li>The chair does not believe that we currently have an open
issue that would provide for continued work in this area.</li>
     <li><a href="http://www.w3.org/2001/tag/group/track/actions/274">ACTION-274</a>:
 See if I can reconstruct a discussion with tlr where present course
and speed will lead to GET-based links becoming regarded as unsafe -
on Dan Connolly.  This is marked PENDING REVIEW, and it appears that
no followup on unsafe GET is planned.</li>

     </ul>


<h3>Session goals:</h3>
     <ul>
      <li>Clarify significant use cases for safe execution of
untrusted code in Web pages (I.e. remind ourselves why we care).</li>
      <li>Further educate the TAG regarding technical work and
standardization efforts relating to safe execution of untrusted
          code in Web pages.</li>
      <li>Decide whether the TAG has a continued interest in working
in this area, and if so, with what goals.</li>
      <li>Open an issue and assign a shepherd, if appropriate.</li>
     </ul>

     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/doc/resource-protection/20090615"
       		    >Resource protection</a> (Jonathan's F2F preparation notes)</li>
       <li>Paragraph on "Chattiness" in
		    <a href="http://lists.w3.org/Archives/Public/public-webapps/2009AprJun/0643.html"
		    >Mark Nottingham's review of CORS</a></li>
       <li><a href="http://waterken.sourceforge.net/recent.html#id12"
		    >Origin isn't</a> (Tyler Close blog post)</li>
       <li><a href="http://lists.w3.org/Archives/Public/ietf-http-wg/2009JanMar/0037.html"
                    >Re: The HTTP Origin Header
(draft-abarth-origin)</a> (Roy Fielding email)</li>
       <li>(optional, longish)
           <a href="http://waterken.sourceforge.net/aclsdont/current.pdf"
		    >ACLs don't</a> (paper by Tyler Close)</li>
       <li>(optional, long) <a
href="http://www.w3.org/TR/2009/WD-cors-20090317/">Cross-origin resource sharing</a> W3C working draft</li>
		 
     </ul>

</li>
<!--  ************************************* -->
<!--            Mobile Web                  -->
<!--  ************************************* -->

<!--
<li><a name="mobile">Mobile Web</a>
     <h3>Session shepherd:</h3>
     <div class="nonlistsection">
     <p>
         John Kemp
     </p>
     </div>


<h3>Background:</h3>
<ul>
<li>John Kemp has offered to give us an overview of important issue relating to the Mobile Web, based on his 10 years of experience
working in that area.
</li>
</ul>

<h3>Goals:</h3>
<ul>
<li>Get better informed about the Mobile Web, related architectural challenges</li>
<li>Decide whether the TAG wants to undertake work relating specifically to the Mobile Web.  If so, open issues, assign shepherds, and agree on next steps as appropriate.</li>
</ul>
     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/doc/mobile-web-2009-06-18.html">Mobile Phones, the good, the bad and the ugly</a></li>
     </ul>

</li>
-->

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

<li><a name="metadata">Metadata Access and Formats</a>
     <h3>Session shepherds:</h3>
     <div class="nonlistsection">
     <p>
        Ashok Malhotra (metadata access), Jonathan Rees (metadata formats and ontologies)
     </p>
     </div>


<h3>Background:</h3>
<ul>
<li>We agreed <a href="http://www.w3.org/2001/tag/2009/06/25-minutes.html#item04">at the June F2F</a> that <a href="http://www.w3.org/2001/tag/2009/06/TagPriorities.txt">we would make Metadata one of our three main focus areas</a> for the TAG.
</li>
</ul>

<h3>TAG Issues relating to this discussion:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/57">ISSUE-57</a> (HttpRedirections-57) The use of HTTP Redirection &#8212; shepherd: Jonathan Rees</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/62">ISSUE-62</a> (UniformAccessToMetadata-62)  &#8212; shepherd: Ashok Malhotra (this issue was "split" from issue-57 at the <a href="">March 2009 TAG F2F meeting</a>.)</li> 
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/20">ISSUE-63</a> (MetadataFramework-63) Metadata on the web: representations and ontologies? &#8212; shepherd: Larry Masinter (<a href="http://www.w3.org/2001/tag/group/track/actions/254">ACTION-254</a> calls for Larry to announce creation of this issue on www-tag.)</li>
     </ul>
     
<h3>TAG Issues Actions to this discussion:</h3>
<ul>
<li><a href="http://www.w3.org/2001/tag/group/track/actions/278">ACTION-278</a> (on Jonathan)  Draft changes to 2.7 of Metadata in URIs to 
cover the "Google Calendar" case,  Due: 2009-09-30 (after F2F)</li>
<li><a href="http://www.w3.org/2001/tag/group/track/actions/281">ACTION-281</a> (on Ashok) open Keep an eye on progress of link header draft, 
report to TAG, warn us of problems (ISSUE-62) Ashok Malhotra Due: 
2009-08-01</li>
<li><a href="http://www.w3.org/2001/tag/group/track/actions/282">ACTION-282</a> Jonathan Rees to draft a finding on metadata architecture. 
-- due 2009-08-31 -- CLOSED</li>
</ul>


<h3>Goals:</h3>
<ul>
<li>Technical discussion of issues relating to metadata.</li>
<li>Decide TAG next steps on metadata.</li>
</ul>

     <h3>Preparation (Metadata access):</h3>
     <ul>
       <li><a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0060.html">Jonathan Rees e-mail discussing LRDD</a></li>
       <li> <a href="http://tools.ietf.org/html/draft-hammer-discovery-03">http://tools.ietf.org/html/draft-hammer-discovery-03</a> </li>
      <li> <a href="http://tools.ietf.org/html/draft-nottingham-site-meta-01">http://tools.ietf.org/html/draft-nottingham-site-meta-01</a> </li>
      <li> <a href="http://tools.ietf.org/html/draft-nottingham-http-link-header-05">http://tools.ietf.org/html/draft-nottingham-http-link-header-05</a> </li>
      <li>(optional &#8212; late submission) Steven Rowat asks that the TAG consider his email with <a href="http://lists.w3.org/Archives/Public/www-tag/2009Sep/0055.html">Ten Use-Cases of Individual Content Authors Requiring Rights/Commerce Metadata: success in HTML4; HTML5; and CCN</a>; this is to
some degree a plea to consider the positive characteristics of <a href="http://www.parc.com/work/focus-area/networking/">content-centric networks</a> (<a href="http://www.youtube.com/watch?v=gqGEMQveoqg&amp;feature=PlayList&amp;p=68A083F6EAFEFE01&amp;index=29">Van Jacobson video</a>).</li>
     </ul>
     <h3>Preparation (Metadata formats):</h3>
     <ul>
       <li><a href="http://lists.w3.org/Archives/Member/tag/2009Jun/0043.html">Email from Ashok</a> (member only) outlining perceived interests and concerns of
       various TAG members.  <a href="http://lists.w3.org/Archives/Member/tag/2009Jun/0044.html">Response</a> from Raman. (The chair suggests that copies of this correspondence be moved
       to the TAG's public www-tag@w3.org archive.) </li>
     </ul>

</li>

<li><a name="sniffing">Content-type Sniffing</a>
     <h3>Session shepherd:</h3>
     <div class="nonlistsection">
     <p>
         Dan Connolly (unconfirmed)
     </p>
     </div>

	<ul>
	        <li>Background:
		  <ul>
		    <li>Lisa Dusseault and Mark Nottingham will be joining us by phone</li>
		    <li>TAG Finding <a href="http://www.w3.org/2001/tag/doc/mime-respect-20060412">Authoritative Metadata</a> (12 April 2006)</li>
		    <li>Dan Connolly <a href="http://lists.w3.org/Archives/Public/www-tag/2009Feb/0233.html">suggests</a> that we discuss the draft <a href="http://ietfreport.isoc.org/idref/draft-abarth-mime-sniff/">Content-Type Processing Model</a>, by Ian Hickson and Adam Barth;  the draft proposes interoperable rules for Content-type "sniffing" in browsers.  Note that the draft acknowledges at one point that it is in "... willful violation of the HTTP specification.  [<a href="http://www.ietf.org/rfc/rfc2616.txt">RFC2616</a>]".
		    </li>
		    <li>13 August 2009 TAG telectonference <a href="http://www.w3.org/2001/tag/2009/08/13-minutes.html#item02">Discussion on issue contentTypeOverride-24</a></li>
		    <li><a href="http://www.w3.org/2001/tag/group/track/actions/257">ACTION-257</a> on Noah Mendelsohn: Schedule TAG to revisit progress in IETF/HTML liaison on content sniffing (invite Mark Not or Lisa D?) - PENDING REVIEW</li>
		    <li><a href="http://www.w3.org/2001/tag/group/track/actions/261">ACTION-261</a> on Larry Masinter: Followup with Mark Nottingham and Lisa D. regarding Adam Barth's sniffing draft - CLOSED</li>
		  </ul>
		</li>
		<li>Background (older):

		    <ul>
		    <li>16 April 2009 TAG teleconference <a href="http://www.w3.org/2001/tag/2009/04/16-tagmem-minutes#item05">discussion of content type override</a> and the Internet Draft cited above.  We agreed to pick up discussion on a telcon within the next few weeks.</li>
		    <li><a href="http://lists.w3.org/Archives/Public/www-tag/2009Apr/0020.html">Larry Masinter email</a> pointing to <a href="http://lists.w3.org/Archives/Public/www-tag/2009Apr/0020.html">Minutes from the IETF/HTML liaison meeting in March</a>, including discussion of content sniffing.</li>

		    </ul>
		    
		</li>
	        <li>Goals:
		  <ul>
		    <li>Discuss issues of shared interest between IETF and W3C relating to Content-type sniffing</li>
		    <li>Consider possible need for revisions to TAG Finding <a href="http://www.w3.org/2001/tag/doc/mime-respect">Authoritative Metadata</a></li>
		        

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

<!--  ************************************* -->
<!--               Naming Schemes           -->
<!--  ************************************* -->

<li><a name="naming">Naming Schemes</a>
     <h3>Session shepherd:</h3>
     <div class="nonlistsection">
     <p>
         Henry Thompson
     </p>
     </div>


     <h3>TAG Issues relating to this discussion:</h3>
        <ul>
           <li><a href="http://www.w3.org/2001/tag/group/track/issues/50">ISSUE-50</a> (URNsAndRegistries-50): URIs, URNs, "location independent" naming systems and associated registries for naming on the Web - shepherd: Henry Thompson</li>
	   <li>May also be related to <a href="http://www.w3.org/2001/tag/group/track/issues/49">ISSUE-49</a> (schemeProtocols-49): Relationship of URI schemes to protocols and operations - no shepherd assigned</li>
	</ul>

     <h3>TAG Actions relating to this discussion:</h3>
        <ul>
           <li><a href="http://www.w3.org/2001/tag/group/track/actions/33">ISSUE-33</a> revise naming challenges story in response to Dec 2008 F2F discussion</li>
	</ul>

     <h3>Goals:</h3>
        <ul>
	   <li>Make sure we agree on target audience, success criteria, etc. for this work.</li>
	   <li>Review the new Dirk and Nadia draft</li>
	   <li>Consider whether this work should be better coordinated with, e.g., <a href="http://www.w3.org/2001/tag/group/track/issues/49">ISSUE-49</a>.</li>
	   <li>Decide on next steps.</li>
	</ul>

      <h3>Preparation:</h3>
        <ul>
	   <li>June 2009 draft of <a href="http://www.w3.org/2001/tag/doc/namingSchemes.html">Dirk and Nadia design a naming scheme</a> <span style="color:red">(a new draft is promised within the next few days &#8212; this agenda will be updated with a pointer to the new copy when available)</span>
	</li>
	<li>(older - optional) <a href="http://lists.w3.org/Archives/Member/tag/2009Jun/0030.html">John Kemp email</a> (member-only) pointing to <a href="http://dev.w3.org/2006/waf/widgets-uri/">Widget URIs Editor's Draft</a></li>
	<li>(older - optional) <a href="http://www.w3.org/TR/2009/WD-widgets-uri-20090618/">Widgets 1.0: URI Scheme</a> W3C First Public Working Draft 18 June 2009</li>
	</ul>
</li>




<!--  ************************************* -->
<!--            HTTP Semantics (AWWSW)      -->
<!--  ************************************* -->
<!--
<li><a name="AWWSW">HTTP Semantics (AWWSW)</a>
     <h3>Session shepherd:</h3>

     <div class="nonlistsection">
     <p>
          Jonathan Rees
     </p>
     </div>


<h3>Background:</h3>
<ul>
<li>Jonathan Rees has been participating in the regular
teleconferences of a group
attempting to more formally relate HTTP to RDF (<a
href="http://lists.w3.org/Archives/Public/public-awwsw/">email
archives</a>).
This work was started, at least informally, under the auspices of the TAG.

</li>
<li>Recently, discussions have focused on (a) clarifying and relating
conflicting
  notions of "information resource" and (b) considering what
  HTTP interactions say about resources independent of httpRange-14.
Some questions have arisen, and the TAG's input may be helpful in
resolving them.</li>
</ul>

<h3>Goals:</h3>
<ul>
<li>Send agreed TAG comments on <a href="http://tools.ietf.org/html/draft-ietf-httpbis-p2-semantics-06#page-24">the HTTPbis section on 303 responses</a> (see <a href="http://lists.w3.org/Archives/Member/tag/2009Jun/0035.html">email from Henry</a> suggesting we do this).</li>
<li>Hear a <a href="http://lists.w3.org/Archives/Public/public-awwsw/2009Jun/0064.html"
>summary</a> from Jonathan of progress that's been made, and questions that have arisen.</li>
<li>Provide guidance on use cases and goals of an HTTP ontology.</li>
<li>Review the nature of the TAG's relationship to AWWSW, and adjust it
  if needed.</li>

<li>Review <a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0056.html"
		     >Jonathan's review of HTTPbis's treatment of GET+303</a>.</li>
<li>Determine next steps for
<a href="http://www.w3.org/2001/tag/group/track/issues/57"
            >ISSUE-57</a>.</li>
</ul>

     <h3>Preparation:</h3>
     <ul>
       <li>

		  <a href="http://lists.w3.org/Archives/Public/public-awwsw/2009Jun/0064.html"
		     >AWWSW status report</a>
       </li>

       <li>
		  <a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0057.html"
            >Summary of current state of HttpRedirections-57</a>
       </li>

       <li>
		  <a href="http://lists.w3.org/Archives/Public/www-tag/2009Jun/0056.html"
		     >Comments on proposed GET+303 text in HTTPbis</a>

       </li>

     </ul>

</li>
-->

<!--  ************************************* -->
<!--         Language versioning and HTML   -->
<!--  ************************************* -->

<!--
<li><a name="versioningHTML">Language Versioning and HTML</a>
<h3>Session shepherds:</h3>
<div class="nonlistsection">
<p>
Jonathan Rees, Larry Masinter
</p>
</div>


<h3>Background:</h3>
<div class="nonlistsection">
<p>
The TAG has for years studied the means used to evolve document and programming languages, and techniques for maximizing interoperability as languages evolve.
We have also considered the structure and evolution of HTML in particular,
including the tradeoffs between "tag soup" and XHTML views of robustness and error handling.
This session is scheduled because some TAG members have recently proposed that
we may be able to apply our analyses of language versioning to HTML in particular.
</p>
</div>
<h3>TAG Issues relating to this discussion:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/20">ISSUE-20</a> (errorHandling-20) What should specifications say about error handling?  &#8212; shepherd: Henry Thompson</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/33">ISSUE-33</a> (mixedUIXMLNamespace-33) Composability for user interface-oriented XML namespaces  &#8212; no shepherd</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/20">ISSUE-41</a> (LanguageVersioning-41) What are good practices for designing extensible languages and for handling versioning? &#8212; shepherd: Larry Masinter</li>
       <li><a href="http://www.w3.org/2001/tag/group/track/issues/20">ISSUE-54</a> (TagSoupIntegration-54) Tag soup integration &#8212; shepherd: Henry Thompson</li>
     </ul>
     

     <h3>Session goals (both sessions):</h3>
     <ul>
      <li>Decide whether further work on versioning by the TAG is likely to have a constructive effect on 
          HTML in particular</li>
      <li>Consider, as a framework, the <a href="http://w3.org/2001/tag/doc/versioning-html/versioning-html-20090611.html">draft</a> prepared by Larry Masinter and Jonathan Rees</li>
      <li>Decide which issue(s) we will use to track this work, and ensure that shepherds have been identified.</li>
     </ul>

     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://w3.org/2001/tag/doc/versioning-html/versioning-html-20090611.html">Architectural Considerations for Language Versioning for the Web</a> (Note from Larry Masinter and Jonathan Rees)</li>
     </ul>

     
</li>

-->



<!--  ************************************* -->
<!--             TAG PRIORITIES             -->
<!--  ************************************* -->

<li><a name="TAGPriorities">TAG Priorities</a>
<h3>Session shepherd:</h3>
<div class="nonlistsection">
<p>
Noah Mendelsohn
</p>
</div>


<h3>Background:</h3>
<ul>
  <li>TAG agreed at June 2009 F2F to establish three key priorities for the TAG:
      <ol>
        <li>HTML</li>
        <li>Architecture of Web Applications</li>
        <li>Metadata</li>
      </ol>
     We also agreed that we would continue to work on some other issues, but with lower priority.  

  </li>
  <li>(older) <a href="http://www.w3.org/2001/tag/2009/03/05-whiteboard-priorities.txt">Summary of potential priority work areas</a> gathered on flip
charts at the end of the March F2F</li>

  <li>(older)Emails from the chair:
   <ul>
   <li><a href="http://lists.w3.org/Archives/Public/www-tag/2009Mar/0138.html">summary of materials relating to TAG priorities</a>
   </li>
   <li><a href="http://lists.w3.org/Archives/Public/www-tag/2009Mar/0139.html">request</a> that the next round of discussions of goals and priorities be done using email (<a href="http://lists.w3.org/Archives/Public/www-tag/2009Apr/0029.html">response from Tim</a>).
   </li>
   </ul>
 </li>
</ul>

     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/2009/06/25-minutes.html#item04">June 2009 F2F discussion of TAG priorities and future work</a> including:
           <ul>
	   <li><a href="http://www.w3.org/2001/tag/2009/06/TagPriorities.txt">Note with outline of priorities</a> &#8212;  these were collected at the wrapup session in June, and have some cross-references to then-current actions.</li>
	   <li><a href="http://www.w3.org/2001/tag/2009/06/webAppsTOC.html">Proposed Table of Contents for TAG work on Web Architecture for Web Applications</a> &#8212; these also were prepared at the June F2F.  (See also <a href="http://www.w3.org/2001/tag/group/track/actions/284">ACTION-284</a> on Jonathan: Flesh out the Web Application [<a href="http://www.w3.org/2001/tag/2009/06/webAppsTOC.html">http://www.w3.org/2001/tag/2009/06/webAppsTOC.html</a>] outline with as many sentences as he can - now due 15 Sept 2009)</li>
	   </ul>
	   
       </li>
           <li>(older) <a href="http://www.w3.org/2001/tag/2009/03/05-whiteboard-priorities.txt"> list of 6 proposed TAG priorities</a> &#8212;  recorded from whiteboard and flip charts at March 2009 TAG F2F</li>
     </ul>


</li>

<!--  ************************************* -->
<!--              TAG Administration        -->
<!--  ************************************* -->

<li><a name="admin">TAG Administration</a>
<h3>Goals:</h3>
<ul>
<li>Discuss dates for future F2F meetings</li>
<li>Consider logistics of TAG particiation in the <a href="http://www.w3.org/2009/11/TPAC/overview.html">November W3C Technical Plenary and AC Meeting (TPAC)</a></li>
<li>Discuss summer teleconference scheduling</li>
</ul>

<h3>Background:</h3>
<ul>
  <li>Future TAG meetings already scheduled:
    <ul>
      <li>2-6 November 2006 @ <a href="http://www.w3.org/2009/11/TPAC/">W3C Technical Plenary</a>, Santa Clara, CA.  Note regrets from:
      <ul>
      <li>John Kemp</li>
      <li>Jonathan Rees</li>
      </ul>
      </li>
      <li>8-10 December 2009 @ MIT (Per <a href="http://www.w3.org/2001/tag/2009/06/25-minutes.html#item03">resolution of 25 June 2009</a> - note that Raman and John Kemp have confirmed the acceptability of this date, though Raman is unsure he'll attend).</li>
      <li>Suggestion that we co-locate TAG meeting with IETF meeting in Anaheim, 21-26 March 2010 (<a href="http://lists.w3.org/Archives/Member/tag/2009Jul/0044.html">email from Larry</a> and <a href="http://lists.w3.org/Archives/Member/tag/2009Jul/0044.html">response from Noah</a> &#8212; both W3C member-only).  <a href="http://www.w3.org/2001/tag/2009/08/06-minutes.html#item03">Discussed briefly</a> on 6 August 2009.</li>
    </ul>
  </li>
  <li>Note that the spring meeting would traditionally be after new members have been elected.  TAG members whose
      terms end in January 2010 are:
      <ul>
	 <li>Ashok Malhotra</li>
         <li>Noah Mendelsohn (co-chair &#8212; appointed)</li>
	 <li>Jonathan Rees (appointed)</li>
	 <li>Henry Thompson</li>
      </ul>
      
  </li>
</ul>
</li>


<!--  ************************************* -->
<!--          Unscheduled Items             -->
<!--  ************************************* -->

<!--
<li id="unscheduled">Unscheduled items

<div class="nonlistsection">
<p>
No specific discussion time is allocated to the following, but we may choose to discuss these in some of the free time slots.
</p>
</div>
<ul>
<li>ACTION-265 Work with Larry, Henry to frame technical issues relating to the vairous overlapping specs. about URIs, IRIs and encoding on the wire - on Dan Connolly - Due 19 June 2009</li>
<li>ACTION-264 Draft agenda item for upcoming telcon discussion of geolocation and privacy - on Ashok Malhotra - Due 3 June 2009</li>
<li style="color:red">Sniffing - see actions 257 (Noah) &amp; 264 (Larry)</li> 
</ul>
</li>
-->

<!-- End of master list of numbered agenda items -->
</ol>







<address>Noah Mendelsohn for TAG<br />
$Revision: 1.28 $ of $Date: 2010/01/06 22:24:53 $</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" height="31" width="88" /></a>

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