23-agenda 37.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
<?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 June 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;
}

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 */
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/06/11-minutes">11 June
2009</a> | Next teleconference: 16th July 2009 (tentative).</p>

<h1>TAG face-to-face meeting, 23-25 June 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="TagStataPictureHiRes.jpg"><img style="margin-left:1cm" src="TagStataPicture.jpg" alt="Picture of the TAG" /></a>

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

		<tr>
		<td colspan="2" style="text-align:center">Agenda</td>
		<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>

			<td rowspan="11">
<ol>
<li><a href="23-minutes.html#item01">Convene & Administration</a></li>
<li><a href="23-minutes.html#item02">W3C Work on APIs</a></li>
<li><a href="23-minutes.html#item03">Language Versioning and HTML</a></li>
<li><a href="23-minutes.html#item04">Web Application State Management</a></li>
<li><a href="23-minutes.html#item05">Javascript Security</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="#APIs">W3C work on Web APIs</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="#versioningHTML">Language Versioning and HTML</a> (session 1 of 2)
			</td>
		</tr>
		<tr>
			<td align="left" valign="top">12:00-13:15</td>
			<td align="left" valign="top">Lunch - with W3C &amp; DIG staff (W3C open area - 5th Floor Gates Tower - 75 mins)</td>
		</tr>
		<tr>
			<td align="left" valign="top">13:15-14:45</td>
			<td align="left" valign="top"><a href="#webAppState">Web Application State Management</a> (session 1 of 2)
			</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="#security">JavaScript Security</a></td>
		</tr>
		<tr>
			<td align="left" valign="top">16:30-17:00</td>
			<td align="left" valign="top"><a href="#admin">TAG Administration</a>: future meetings, etc.</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" >Weds 24th June</td>
		</tr>
		<tr>
		<td colspan="2" style="text-align:center">Agenda</td>
		<td style="text-align:center">Minutes</td>
	  </tr>

		<tr>
			<td align="left" valign="top">09:00-10:15</td>
			<td align="left" valign="top"><a href="#mobile">The Mobile Web</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="8">
<ol>
<li><a href="24-minutes.html#item01">Mobile Web</a></li>
<li><a href="24-minutes.html#item02">Metadata Access and Formats</a></li>
<li><a href="24-minutes.html#item03">Versioning and HTML</a></li>
<li><a href="24-minutes.html#item04">Web Arch for Applications</a></li>
<li><a href="24-minutes.html#item05">tag administration issues</a></li>
</ol>

			</td>

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

		<tr>
			<td align="left" valign="top">10:45-12:00</td>
			<td align="left" valign="top"><a href="#metadata">Metadata access and formats</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:00</td>
			<td align="left" valign="top"><a href="#versioningHTML">Language Versioning and HTML</a> (session 2 of 2)
			</td>
		</tr>
		<tr>
			<td align="left" valign="top">14:00-15:15</td>
			<td align="left" valign="top"><a href="#WebArchApps">Web Architecture for Applications</a>
			</td>
		</tr>

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

		<tr>
			<td align="left" valign="top">16:15-17:00</td>
			<td align="left" valign="top"><a href="#admin">TAG Administration</a>: future meetings, etc.</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 25th June</td>
		</tr>
		<tr>
		<td colspan="2" style="text-align:center">Agenda</td>
		<td style="text-align:center">Minutes</td>
		</tr>

		<tr>
			<td align="left" valign="top">09:00-10:30</td>
			<td align="left" valign="top"><a href="#naming">Naming Schemes</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="7">
<ol>
<li><a href="25-minutes.html#item01">Naming Schemes</a></li>
<li><a href="25-minutes.html#item02">HTTP Semantics</a></li>
<li><a href="25-minutes.html#item03">TAG f2f scheduling</a></li>
<li><a href="25-minutes.html#item04">Tag priorities and future work</a></li>
<li><a href="25-minutes.html#item05">Architecture for Web Applications</a></li>
<li><a href="25-minutes.html#item06">HTML 5 review</a></li>
</ol>
<!-- SEE COMMENT BELOW RE RENDERING. -->

			</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="#AWWSW">HTTP Semantics</a>
			</td>
		</tr>
		<tr>
			<td align="left" valign="top">12:00-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"><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...
			  <!-- JAR noticed that this is not rendered
			  correctly in Firefox, but doesn't know how
			  to fix it. The following is in the worst
			  possible taste. -->
<br/><br/><br/><br/><br/>
</td>
		</tr>

	<!--  - - - - - - - - - - - - - - - - - -   -->
	<!--             Unscheduled topics         -->
	<!--  - - - - - - - - - - - - - - - - - -   -->

		<tr>
			<td  class="date" align="left" valign="top"  colspan="3" ><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 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/06/06-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>Tue 23 June: 09:00 - 17:00<br />
	Wed 24 June: 09:00 - 17:00<br />
	Thurs 25 June: 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/06/11-tagmem-minutes.html">11 June 2008</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>Establish more clearly TAG priorities for coming year</li>
		<li>Set goals and decide next steps for <a href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a> (WebApplicationState-60)
		    and for working draft <a href="http://www.w3.org/TR/2009/WD-hash-in-uri-20090415/">Usage Patterns For Client-Side URI parameters </a></li>
		<li>Decide whether further TAG work on extensibility and versioning will be cost effective, and in particular
		    whether it will likely have positive impact on the development of HTML 5.</li>
		<li>Decide whether the TAG should be working more actively in areas relating to use of the Web with "mobile" devices.</li>
		<li>Decide whether the TAG should begin consideration of architectural issues relating to W3C standardization of 
		APIs used for Web Application development.</li>
		<li>Make progress on other open TAG issues (e.g. metadata, use of URI schemes, security, etc.)</li>
	</ul>
        </li>
	<li>Review F2F Agenda (<a href=".">this document</a>)</li>
     </ul>
     <h3>Preparation:</h3>
     <ul>
       <li><a href="http://www.w3.org/2001/tag/2009/03/05-whiteboard-priorities.txt">Whiteboard summary of proposed TAG priorities</a> from March 2009 TAG F2F.
       </li>
       <li><a href="http://lists.w3.org/Archives/Member/tag/2009May/0081.html">TAG F2F Priorities</a> email from Noah</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.
</p>
<p>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>
</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>Preparation:</h3>
     <ul>
       <li><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>(optional - late addition) <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>

<!--  ************************************* -->
<!--         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>

<!--  ************************************* -->
<!--               Web Application State    -->
<!--  ************************************* -->

<li><a name="webAppState"></a><a href="http://www.w3.org/2001/tag/group/track/issues/60">ISSUE-60</a>: Web Application State Management

     <h3>Session shepherd:</h3>
     <div class="nonlistsection">
     <p>
        T.V. Raman
     </p>
     </div>


     <h3>Background:</h3>
     <ul>
       <li>The TAG has recently issued a 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>Make plans for further work on Client Side URI parameters</li>
      <li>Plan next draft of <a href="http://www.w3.org/TR/hash-in-uri/">Usage Patterns For Client-Side URI parameters </a></li>
     </ul>
     
     <h3>Preparation:</h3>
     <ul>
       <li>First Public Working Draft of <a href="http://www.w3.org/TR/2009/WD-hash-in-uri-20090415/">Usage Patterns For Client-Side URI parameters </a></li>
     </ul>


</li>
<!--  ************************************* -->
<!--           JavaScript Security          -->
<!--  ************************************* -->

<li><a name="security">JavaScript Security</a>
     <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>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>
       <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>Background:</h3>
<ul>
<li>As noted above, we discussed metadata access and formats at the <a href="">March 2009 TAG F2F meeting</a>, and we now have 3 issues open, but
it's not clear that we are making good progress.
</li>
<li>Some TAG members have informed the chair that this area <em>is</em> of interest to them.</li>
</ul>

<h3>Goals:</h3>
<ul>
<li>Take stock of where we are on all of the above, and see what if anything we actually want to do.</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>
     </ul>
     <div class="nonlistsection">
     <p>It has been <a href="">suggested</a> (member-only) that the TAG review but
        not not necessarily take any action on the following drafts:</p>
     </div>
     <ul>
       <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>
     </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>

<!--  ************************************* -->
<!--               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>Goals:</h3>
        <ul>
	   <li>Make sure we are agreed 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">(the 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><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>(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>
<!--  ************************************* -->
<!--             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>Discussion of TAG priorities at the <a href="http://www.w3.org/2001/tag/2009/03/03-agenda.html">March 2009 TAG F2F</a> (see minutes
of all days, as there were several sessions, and also several lists of potential work areas.)</li>
<li><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>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>


</li>

<!--  ************************************* -->
<!--     Web Arch++ Applications            -->
<!--  ************************************* -->

<li><a name="WebArchApps"></a>Web Architecture for Applications

     <h3>Background:</h3>
     <div class="nonlistsection">
     <p>
          At the F2F session on June 23, 2009, the TAG decided to consider the
possibility of a significant enhancement to the  Web Architecture document,
to focus on the Web as an application platform.  This might be in the form
of revisions to the existing Web arch document and/or become a second volume.
     </p>
     <p>A rough outline of a table of contents has been written on a white board:</p>
     <ul>
     <li>Declarative vs. procedural
     </li>
     <li>APIs
     </li>
     <li>Modules and dependencies
     </li>
     <li>Security - trust boundaries
     </li>
     <li>Privacy (including cross-site issues)
     </li>
     <li>Client-side URIs
     </li>
     </ul>
     
     </div>




</li>
<!--  ************************************* -->
<!--              TAG Administration        -->
<!--  ************************************* -->

<li><a name="admin">TAG Administration</a>
<h3>Goals:</h3>
<ul>
<li>Discuss summer telconference schedule</li>
<li>Discuss dates for future F2F meetings</li>
<li>Consider TAG plans for 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><a href="http://www.w3.org/2001/tag/2009/06/summersched.html">Tabulation</a> of TAG member responses on summer availability (member-only).</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>
</ol>







<address>Noah Mendelsohn for TAG<br />
$Revision: 1.42 $ of $Date: 2009/07/31 02:12:01 $</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>