05-morning-minutes 46.3 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang='en'>
<head>
  <title>TAG Face to Face Meeting -- 5 Nov 2007</title>
  <link type="text/css" rel="STYLESHEET" href="http://www.w3.org/StyleSheets/base.css">
  <link type="text/css" rel="STYLESHEET" href="http://www.w3.org/StyleSheets/public.css">
  <link type="text/css" rel="STYLESHEET" href="http://www.w3.org/2004/02/minutes-style.css">
  <meta content="TAG Face to Face Meeting" name="Title">  
  <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
</head>

<body>
<p><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" alt="W3C" border="0"
height="48" width="72"></a> 

</p>

<h1> - DRAFT - </h1>
<h1>TAG Face to Face Meeting</h1>
<h2>5 Nov 2007</h2>



<p>See also: <a href="http://www.w3.org/2007/11/05-tagmem-irc">IRC log</a></p>

<h2><a name="attendees">Attendees</a></h2>

<div class="intro">
<dl>
<dt>Present</dt>
<dd>Stuart_Williams(SW), Henry_Thompson(HT), Dan_Connolly(DC), Noah_Mendelsohn(NM), David_Orchard(DO), T.V._Raman(TVR), Tim_Berners-Lee(TBL)</dd>
<dt>Regrets</dt>
<dd>Norm</dd>
<dt>Chair</dt>
<dd>Stuart </dd>
<dt>Scribe</dt>
<dd>Rhys</dd>
</dl>
</div>

<h2>Contents</h2>
<ul>
  <li><a href="#agenda">Topics</a>
	<ol>
	<li><a href="#item01">Agenda review</a></li>
<li><a href="#item02">URI extensibility panel</a></li>
<li><a href="#item03">Item 6 - XML Binary binaryXML-30 ISSUE: 30</a></li>
<li><a href="#item04">namespaceDocument-8</a></li>
<li><a href="#item05">XMLVersioning-41</a></li>
<li><a href="#item06">httpRedirections-57 ISSUE-57:</a></li>

	</ol>
  </li>
  <li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr>
<div class="meeting">

<p class='phone'>


</p>

<p class='phone'>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; I'm afraid I wil be late .. I'm on a bu boun d for harvard, t  Mt Aburn cemettery
</p>

</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; bus
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; I thought I the garage woudl look at my car, but they kep it.
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; Hi Stuart,   sorry i am running late.
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; I miht grab a cab if we pass a suitable poit
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; stuart doesn't seem too worried
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; we're trying to scare up Norm too, timbl
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; Did Henry and Noah get there yet?
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; Good
</p>

<p class='irc'>
&lt;<cite>scribe</cite>&gt; Scribe: Rhys
</p>

<p class='irc'>
&lt;<cite>scribe</cite>&gt; ScribeNick: Rhys
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; we had a little tracker gripe session, which went ok, I think.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; try an ETA, timbl?
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; 15 or 40 mins
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; Start witout me
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; agenda review... need norm for ns8 ...
</p>

<h3 id="item01">Agenda review</h3>
<p class='irc'>
&lt;<cite>timbl</cite>&gt; If we stp at Mt Auburn Hospital, I'll hop out and hope they have cabs
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; DanC invites some tag input to <a href="http://www.w3.org/html/wg/nov07">http://www.w3.org/html/wg/nov07</a> , which can be done with whoever is here
</p>

<p class='phone'>
<cite>SW:</cite> need Dave for xmlversioning-41 <br>
... Explains the meeting for this afternoon and that httpRange-14 is topic. 2pm to 4pm
</p>

<p class='phone'>
<cite>HT:</cite> I'll have to timeshare for that
</p>

<p class='phone'>
<cite>SW:</cite> xmlFunctions-34
</p>

<p class='phone'>
<cite>HT:</cite> No new draft
</p>

<p class='phone'>
<cite>SW:</cite> TV has an action against that. Can we have a new due date for that?
</p>

<p class='phone'>
<cite>TVR:</cite> End of november
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; TVR gives end-of-Nov due date for ACTION-25 on T.V. Raman to summarize history of DTD/namespace/mimetype version practice, including XHTML, SOAP, and XSLT.
</p>

<p class='phone'>
<cite>SW:</cite> Updates Action 25
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (tracker RFE: relay updates from the web interface to this channel)
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; DO, DC request some meeting time to discuss the Weds URI based extensibility panel
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; SKW: 1, 3, 6
</p>

<p class='phone'>
<cite>SW:</cite> httpRedirections-57 might be subsumed by this afternoon's meeting and Binary XML
</p>

<h3 id="item02">URI extensibility panel</h3>
<p class='irc'>
&lt;<cite>DanC_</cite>&gt; DO: somebody has requested to participate by video
</p>

<p class='phone'>
<cite>SW:</cite> We should cover agenda items 1, 3, 6 this morning
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; several advise against trying to add video to the mix at this late stage
</p>

<p class='phone'>
<cite>DO:</cite> Describes the latest state of the URI extensibility panel for Wednesday.
</p>

<p class='irc'>
&lt;<cite>Stuart</cite>&gt; Tim... do you know when you're are likely to arrive.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; know... or can you estimate?
</p>

<p class='phone'>
<cite>HT:</cite> There was also a proposal to give Dan some time on HTML
</p>

<h3 id="item03">Item 6 - XML Binary binaryXML-30 ISSUE: 30</h3>
<p class='phone'>
<cite>DO:</cite> The summary of feedback was that I could not tell whether or not they had met the bar they set themselves
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (I think it was: the bar we set)
</p>

<p class='phone'>
<cite>DO:</cite> I even downloaded different JDKs and ran the test harness on my laptop, and did not see anything particularly interesting <br>
... It was easy to get the harness working, by the way
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (yes, always nice when results have been written up to the point that the're reproducible!)
</p>

<p class='phone'>
<cite>DO:</cite> reviews the comments he made in his note to the TAG
</p>

<p class='phone'>
<cite>NM:</cite> Generally like what it says, but it seems like it could be shorter
</p>

<p class='phone'>
<cite>DC:</cite> I thought this too, but when I looked in detail, I couldn't see how
</p>

<p class='phone'>
<cite>NM:</cite> Maybe it just needs a summary at the top <br>
... Some of the comments need to be phrased a little differently.
</p>

<p class='phone'>
<cite>DO:</cite> We can work on that off-line
</p>

<p class='phone'>
<cite>SW:</cite> They produced a lot of data and measurements and seem to have done a good job
</p>

<p class='phone'>
<cite>DC:</cite> The message in Dave's note is an attention getter, and it is out there now. I don't think that redrafting it now is a good use of time
</p>

<p class='phone'>
<cite>SW:</cite> Just on process, should we generally publish drafts on the member list?
</p>

<p class='phone'>
<cite>NM:</cite> It said draft at the top, so I'm less concerned about the fact that it went on the public list
</p>

<p class='phone'>
<cite>HT:</cite> This response follows up the TAG's original concern. We think that EXI will happen, and the question is whether or not W3C needs to try and ensure interoperability <br>
... They have come out with a consensus position, which is that EXI is worth standardising <br>
... My concern has been what this might mean for the future of XML. In the past we've said that we should deal with EXI in the same way as other character encodings. Originally came up in TP 3 years ago <br>
... I originally was persuaded, but more recently have been less happy with this approach. I've looked at other approaches. <br>
... I've looked at the true content-encoding in HTTP. SVG already does this. It describes how to serve compressed SVG. <br>
... But now I don't think either of these is correct. I found 5 approaches in use. <br>
... There are languages with media types. At the other end of the spectrum are general compression techniques, like gzip. These are indicated by content encoding
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (HT is clearly reading from something; he will please mail it to us for the record)
</p>

<p class='phone'>
<cite>HT:</cite> There are general purpose content transport languages, like ASN.1 and JSON. They tend to have little presence in the content type space. <br>
... Then there are audio, video, image etc. containers that have content types, like png, jpeg, mp3, mpeg etc. <br>
... Finally I concluded that application-specific content transfer languages, like PDF, MS word, etc. seem to be the right thing <br>
... PDF seems to have the right model. PDF is to PS and EXI is to XML. <br>
... Neither the char set nor the content type are the right model because the are concerned with character sequences, but this is not the relationship that EXI has <br>
... My feeling is that we should welcome this and bless it. We could say that although what you did is not what you said you were going to do but its still useful.
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; "You have done something different from what soem of us thought you were doing"
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; DanC_, you wanted to say ok, the PDF/postscript analogy makes sense; it suggests a marketing effort for EXI that dominates XML
</p>

<p class='phone'>
<cite>HT:</cite> And as a result, although Dave's analysis is correct, it is not necessarily relevant to the current results <br>
... I conclude that we need a new media type.
</p>

<p class='phone'>
<cite>DC:</cite> The relationship between PDF and PostScript is valid, but will take a marketing effort. PDF displaced PS
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; Noah, you wanted to mention schema-specific encodings.
</p>

<p class='phone'>
<cite>NM:</cite> The EXI proposal had two parts. Certainly the media type covers part of this. But also, there is a schema-aware version. Not convinced that the media type applies to this latter case <br>
... It needs a media type, but that type doesn't encode the XML syntax. This is differnet from the non-schema aware version.
</p>

<p class='phone'>
<cite>SW:</cite> So there are two flavours?
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (indeed, the schema out-of-band stuff has a very odd feel to it.)
</p>

<p class='phone'>
<cite>NM:</cite> Yes, one transfers the entire info set, the other optimises the traffic by not doing that.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; timbl, you wanted to mention it seems  that the EXI working group seems to assume that their solution will be, for reasons other than performance, better than gzip.  So they had to
</p>

<p class='phone'>
<cite>TBL:</cite> Support Henry's analysis. The difference between the two flavours is whether or not it is self describing
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (aha! Zakim lost its marbles.)
</p>

<p class='phone'>
<cite>TBL:</cite> The working group felt that gzip had issues because of memory usage. My impression is that they didn't need to show that they had higher performance.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (why is it good enough to be in the ballpark? I'm lost)
</p>

<p class='phone'>
<cite>TBL:</cite> Would like to see a scatter plot comparing performance with gzip <br>
... We thought they needed to show that there was an improvement in performance or compression, but it seems as though they felt that there were other trade-offs where they could show improvements
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; Noah, I'm confused by your remarks about the schema-informed stuff: "Schema-informed grammars accept all XML documents and fragments regardless of whether and how closely they match the schema. "
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; [from the WD: <a href="http://www.w3.org/TR/2007/WD-exi-20070716/#informedGrammars">http://www.w3.org/TR/2007/WD-exi-20070716/#informedGrammars</a>
</p>

<p class='phone'>
<cite>TVR:</cite> The PDF MIME type let's you hand off the content to a PDF processor. So I think that a MIME type of EXI would be the right thing <br>
... That would allow a processor to decompress the XML. The problem then is to work out who gets to process the results of the decompression
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; ht, you wanted to come back on PDF analogy
</p>

<p class='phone'>
<cite>TVR:</cite> The group decided that they needed something. We run the risk, if we say that they don't need this, that they will create something outside W3C.
</p>

<p class='phone'>
<cite>HT:</cite> Dan pointed out the question of marketing this. I don't think this is any more of a threat to XML than is the semantic web.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (yes, I agree the story-telling tension is similar to the Semantic Web/XML tension.)
</p>

<p class='phone'>
<cite>HT:</cite> Maybe the begining of this is to change the EXI acronym to be (and this isn't my suggestion) the efficient exchange of Infosets
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (ah... so EXI is the modern FASL where XML is the modern s-expr?)
</p>

<p class='phone'>
<cite>HT:</cite> It compresses object models, not character streams. It becomes a machine only syntax. <br>
... The difference is that you don't hand-author postscript. However, people will continue to hand-author XML <br>
... Dan is correct, in that we will need to be careful how we position this. I've concluded that it doesn't threaten conventional pointy bracaket XML <br>
... People have argued that if you want to exchange structured data, you are better to create an OWL schema than an XML schema. <br>
... This might be a similar situation.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; dorchard, you wanted to look at .ps vs .pdf wrt big companies.
</p>

<p class='phone'>
<cite>SW:</cite> Summarising, I sense a possible feeling that we may want a more supportive response. I'd like to test that after draining the queue
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (I'm not ready for a poll yet; I'm still swimming in options)
</p>

<p class='phone'>
<cite>DO:</cite> The problem I have is that they haven't addressed my concerns. I don't know which constituents are being helped or hindered by this. <br>
... The example of gzip being a problem on memory-constrained devices. Will that go away soon, or not? This kind of concern has not been addressed. <br>
... I'm not yet ready to know where I stand on the issue <br>
... The PS vs PDF issue is a good example. There are vendors who have not accepted PDF. Could we be in the same situation with this?
</p>

<p class='phone'>
<cite>HT:</cite> I'm much happier that we have PDF than if we hadn't
</p>

<p class='phone'>
<cite>TBL:</cite> I'd have been happier if PDF had been, for example, in W3C
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (we didn't point out the PDF/ps difference in "the rule of least power?" we should.)
</p>

<p class='phone'>
<cite>TBL:</cite> Sometimes having 2 things can be ok.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; Noah, you wanted to agree with Dan that the branding and marketing of this thing is crucial to understanding its impact
</p>

<p class='irc'>
&lt;<cite>dorchard</cite>&gt; and would we better to have still angle brackets than angle brackets + binary without "big vendor" support
</p>

<p class='phone'>
<cite>NM:</cite> Expectations and positioning for this are crucial. The amount of stuff that would be affecte by this is orders of magnitude more than for postscript
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; ... view source. big.
</p>

<p class='phone'>
<cite>NM:</cite> There has been work on optimised versions of XML from one vendor for three different situations. Suggests that one size does not necessarily fit all <br>
... I haven't seen a demonstration of the proposal being able to fit all the scenarios. <br>
... In the web services world commercially, there is a lot of optimisation actually going on right now that might not addressed by EXI <br>
... Henry pointed out that EXI is likely to happen anyway, so we should put our stamp on it. I'm ok with that as long as its positioned that it may work in some kinds of use cases
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; "they might give you a floppy disk and say 'I did it the new way.'" -- NM
</p>

<p class='phone'>
<cite>NM:</cite> It does affect people's investment, because if people send you this stuff, you have to read it
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (let's get that in our blog ^ )
</p>

<p class='phone'>
<cite>NM:</cite> So the suggested name change is crucial, because it's not XML
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; DanC_, you wanted to test this analogy: s-expr:FASL :: XML:EXI ? and to sympathize with DO's "who is the constituency?" question and to report an initial answer I'm getting: mobile
</p>

<p class='phone'>
<cite>NM:</cite> If it is positioned as another general purpose XML it will be an issue
</p>

<p class='phone'>
<cite>DC:</cite> The constituency is unclear. People have said that mobile was the constituency, but I've not seen evidence. So if we are going to get seriously behind it, we need to understand that.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; timbl, you wanted to protest that HT's suggestion that the sem web - xml relationship is similar ignores a huge diggerence in level
</p>

<p class='phone'>
<cite>NM:</cite> I don't think it solves the majority of use cases, so I would not want to see a big push behind this. If it helps prevent lots of different private compressions, then that's fine but I don't want to promote it until people understand the use cases to which it applies
</p>

<p class='phone'>
<cite>TBL:</cite> The picture that has emerged from Henry is that it is an alternative to XML. What is different is what comes out. Sometimes it is complete, and sometimes it requires context. But it is equivalent to the whole of XML rather than the semantic web <br>
... I can't see the TAG needing to get in the way of this.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (apple plists are headed for sqlite, which is wonderful.)
</p>

<p class='phone'>
<cite>TBL:</cite> The folks involved feel they need it, and as long as they don't misrepresent what it is for. <br>
... Agree about the MIME types
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; dorchard, you wanted to say IT IS XML! and to say 1) it is XML; 2) we wouldn't use it for our application of binary; 3) what about non-mobile cases? and to say 1) it is XML; 2) we
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (sqlite is wonderful. whether going from plists to SQL I'm ambivalent about)
</p>

<p class='phone'>
<cite>DO:</cite> Henry, you said it was not XML, but it is. It's XML infoset. I feel sure it will be marketed as a replacement for XML. The danger is that there will be a tendency to diss XML
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; John Schneider is EXI's example of how your friends can be your worst enemy. . .
</p>

<p class='phone'>
<cite>DO:</cite> Vendors tend to have internal formats used to save having to reparse as material is shipped around internally <br>
... We looked at this and decided that there was no benefit to switching our internal format to EXI.
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; HST has always assumed that Mobile is the main client
</p>

<p class='phone'>
<cite>DO:</cite> Are any of the big vendors going to take this up as a replacement. For example, would Adobe switch, would Nokia build this into their phones?
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; "would nokia build this into their phones?" is a very good question.
</p>

<p class='phone'>
<cite>NM:</cite> We might, but it would probably be for engineering reasons, rather than the interoperability reasons. <br>
... With XML, we do it because of the interoperability. Everyone else does it.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; ht, you wanted to confirm that I don't know whether this will fly for the WG
</p>

<p class='phone'>
<cite>HT:</cite> There is a real question about what the WG thinks it has achieved. I think that the mobile space is the one they've been eyeing. <br>
... We could frame this as a question to the group. We don't think this is a general purpose replacement for XML. It would be dangerous to promote it as a general archival format. There could be a place for this but not as a general purpose replacement for traditional XML
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; raman, you wanted to point out that technical merits are very different from what people will use to market a given position --- I'll once again point to the html vs xhtml
</p>

<p class='phone'>
<cite>DO:</cite> I like the general thrust of what Henry says
</p>

<p class='irc'>
&lt;<cite>dorchard</cite>&gt; I like the points that HT is making, and I do think there is tag agreement on that.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (can you write it down, DO?)
</p>

<p class='phone'>
<cite>TVR:</cite> If there is a strong proponent of EXI then we won't be able to control attempts to market it as the alternative to XML. It could become a marketing buzzword fight
</p>

<p class='irc'>
&lt;<cite>Stuart</cite>&gt; q Rhys
</p>

<p class='phone'>
<cite>RL:</cite> I'm not aware of any pressing issues in the mobile space concerned with a need for new ways of compressing XML content on the way to the device <br>
... Typically, mobile networks are doing compression under the covers anyway.
</p>

<p class='phone'>
<cite>NM:</cite> Are there issues of battery life&gt;
</p>

<p class='phone'>
<cite>RL:</cite> I've not heard that, but maybe I'm not talking to the right people
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; DanC_, you wanted to elaborate on the role of the TAG in the attention marketplace
</p>

<p class='phone'>
<cite>DC:</cite> I'm not sure I heard Raman correctly. Did you say that if it's only a marketing issue we have nothing to say?
</p>

<p class='phone'>
<cite>TVR:</cite> Not quite, just that we might find we don't have influence
</p>

<p class='phone'>
<cite>DC:</cite> I think we can play a role
</p>

<p class='phone'>
<cite>NM:</cite> We can, as the TAG, help W3C position this.
</p>

<p class='phone'>
<cite>DC:</cite> Also TAG members are well respected in the XML world. <br>
... Tim, can you clarify what you said about the process?
</p>

<p class='phone'>
<cite>TBL:</cite> We should not 'prevent' work like this progressing
</p>

<p class='phone'>
<cite>DC:</cite> It is a decision that could be in the TAG space. It's a bet on where we think the technology is heading
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; ("mostly harmless" ;-)
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; ("mostly harmless" is my 2-word summary of NM's suggestion here. works for me.)
</p>

<p class='phone'>
<cite>NM:</cite> I think it should come out, and from W3C, but as an interesting spec that supports some subset of use cases. It's around the edges of the stack, and is there for the people who can take advantage of it. <br>
... We need to help people understand that this is not a replacement for XML and doesn't require everyone to have a deserialiser for EXI
</p>

<p class='phone'>
<cite>SW:</cite> What would the impact of this be on XML
</p>

<p class='irc'>
&lt;<cite>Stuart</cite>&gt; acj dorchard
</p>

<p class='phone'>
<cite>NM:</cite> If it became pervasive it might influence how easy or hard future extensions might be
</p>

<p class='phone'>
<cite>DO:</cite> Overall, there is a stack of XML specifications. Maybe its getting to the stage where its no longer possible to roll out point solutions within the stack, because of interactions
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (good point; EXI could fit into DSIG that way. hmm.)
</p>

<p class='phone'>
<cite>DO:</cite> Maybe EXI is a kind of canonicalisation, in the example of signing XML. <br>
... So EXI might actually help integration like this.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; DanC_, you wanted to think out loud about "mostly harmless"... which suggests closing this issue without further discussion, except perhaps to wish the EXI WG good luck. and to say
</p>

<p class='phone'>
<cite>NM:</cite> So that means that you'd have to freeze the EXI specification to see how well it's going to integrate with the rest of the XML stack
</p>

<p class='phone'>
<cite>DC:</cite> So, a summary of this might be 'mostly harmless'. Dave mentioned EXI and Signature, another approach could be to add a CR criterion to make sure consistency with signature
</p>

<p class='phone'>
<cite>NM:</cite> My understanding is that there is an issue in the space of performance around canonicalisation for signature but that was not even in the EXI use cases
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; dorchard, you wanted to say what should the Technical Architecture Group say on this?
</p>

<p class='phone'>
<cite>DO:</cite> We've brought up a number of issues. I don't want to close this with no action. I think we should take a look at the technical proposal and to see how that affects aspects of the architecture of the web
</p>

<p class='phone'>
<cite>TBL:</cite> Concerned that architecture for canonicalisation for signature may be wrong. The approach is based on worries that the signed version will be disrupted in transmission
</p>

<p class='irc'>
&lt;<cite>dorchard</cite>&gt; I think there's a whole aspect of "binary" that result that is very interesting
</p>

<p class='irc'>
&lt;<cite>dorchard</cite>&gt; Maybe have binary through more levels..
</p>

<p class='phone'>
<cite>TBL:</cite> The other approach is to put the signature outside the document, which might solve the canonicalisation problem
</p>

<p class='phone'>
<cite>NM:</cite> I think the issue might be that you have to touch all the bits.
</p>

<p class='phone'>
<cite>DO:</cite> Part of the problem is associated with extensibility and namespaces.
</p>

<p class='phone'>
<cite>HT:</cite> Actually, the problem is that canonicalisation is underspecified. It's not a performance problem. It has been an interoperability problem. <br>
... Canonicalisation has been trying to serve not only checksum creation, but also to be a way to compare XML documents <br>
... You would think that these would be the same. However, people have concluded that it would be better for a canonicalisation not to be constrained to have to produce well formed XML <br>
... People have suggested that EXI might be a better target. <br>
... Also people have suggested that a better approach might be to design something specifically for producing a byte stream for checksum creation
</p>

<p class='phone'>
<cite>SW:</cite> What should our next aciton be? What do people think.
</p>

<p class='phone'>
<cite>HT:</cite> We need to understand more about where the working group is before we can conclude what the best thing to do would be.
</p>

<p class='phone'>
<cite>SW:</cite> Could we return to this on Friday.
</p>

<a name="action01"></a>
<p class='irc'>
&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> ht to liase with his contact in the EXI working group to get a sense of the group's current feeling [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action01">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action01</a>]
</p>

<p class='irc'>
&lt;<cite>trackbot-ng</cite>&gt; Created ACTION-71 - Liase with his contact in the EXI working group to get a sense of the group's current feeling [on Henry S. Thompson - due 2007-11-12].
</p>

<h3 id="item04">namespaceDocument-8</h3>
<p class='phone'>
<cite>SW:</cite> Henry could you summarise where we are?
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; <a href="http://www.w3.org/2001/tag/doc/nsDocuments/">http://www.w3.org/2001/tag/doc/nsDocuments/</a>
</p>

<p class='phone'>
<cite>HT:</cite> We discussed the draft while we were in Southampton. Feeling that it was almost complete, apart from two editorial notes <br>
... First note: Namespaces are namespace documents, and we can return a representation from the ns URI. Other assertions are found by GRDDL/RDDL <br>
... Another position is that the namespace and the document are completely and fundamentally different and so we should use 303
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; ("217 -- these are not the resources you're looking for" -- SKW)
</p>

<p class='phone'>
<cite>HT:</cite> The third position is that sometimes puns are in everyone's interest and that we will use the same URI for both things
</p>

<p class='phone'>
<cite>TBL:</cite> Agree with Henry that philosophically, the document and the namespace are different, but we are focussing on engineering.
</p>

<p class='phone'>
<cite>HT:</cite> Tim is advocating the pun.
</p>

<p class='phone'>
<cite>TBL:</cite> No, I'm saying that the URI is only the URI of the document.
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; Noah, you wanted to clarify my position on difference between namespace and document
</p>

<p class='phone'>
<cite>HT:</cite> We have a significant collection of published documents that imply that the namespace URI does not reference a document
</p>

<p class='irc'>
&lt;<cite>timbl</cite>&gt; I am not advocating a pun position. I amadvocating the namespace document position, which does not put  any of  the putative sets of names into the ontology.
</p>

<p class='phone'>
<cite>NM:</cite> I believe that a namespace should be used as an information resource. I also believe that there is an ontological difference between this and the namespace
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (this "french press release" story merits a blog article too.)
</p>

<p class='phone'>
<cite>NM:</cite> Consider a press release. I access it and get it in French. I might conclude that the URI is for the press release in French. That might be the case, but it might not. This is the stuff we talked about in the generic resources finding
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; timbl, you wanted to protest that thi style does not apeal to me at all
</p>

<p class='phone'>
<cite>NM:</cite> The namespace URI is similar and we could apply the same approach, so there should be a URI for the generic resource.
</p>

<p class='phone'>
<cite>DC:</cite> Could we use a specific example?
</p>

<p class='phone'>
<cite>TBL:</cite> I want to talk about the namespace question, not the generic resources question. <br>
... We don't have any systems that use the concept of a namespace in their operation
</p>

<p class='phone'>
<cite>NM:</cite> I could create a system today that might want to ask question about the namespace, for example, what is the set of names in the namespaces
</p>

<p class='phone'>
<cite>TBL:</cite> An OWL ontology allows you to get an answer to the question about what names are defined in an ontology. Why do we need another mechanism for namespaces?
</p>

<p class='phone'>
<cite>SW:</cite> There was another use case for namespace documents, concerning other resources associated with the namespace. <br>
... Seems as though there are two use cases here. There seem to be two sorts of characteristics for namespace documents
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; DanC_, you wanted to ask for a specific example; can we talk about the usps example? or would somebody suggest another?
</p>

<p class='phone'>
<cite>DC:</cite> Can we pick an example to work on and walk through it?
</p>

<p class='phone'>
<cite>HT:</cite> Let's try the post office example first.
</p>

<p class='phone'>
<cite>DC:</cite> There is a real ontology, and the namespace URI has a # on the end. The one in the draft does not have that.
</p>

<p class='phone'>
<cite>HT:</cite> So does that mean that the RDDL is off? <br>
... I'm not at all sure now that I want to assert that validation is against this document, its the elements and attributes in the namespace. <br>
... There is an implication that we are using the # vs. bare name when we want to distinguish between the document and the namespace
</p>

<p class='phone'>
<cite>DC:</cite> Yes
</p>

<p class='phone'>
<cite>HT:</cite> But the already published namespaces have the 'wrong' URI on this basis.
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; s/published namespaces/published XML language namespaces, e.g. <a href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</a>,/
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; ht, you wanted to remind us of the difference between a namespace and a language
</p>

<p class='phone'>
<cite>TBL:</cite> The RDF and XML arch are different. In RDF the ns is used to abbreviate the URIs.
</p>

<p class='phone'>
<cite>HT:</cite> It's not namespaces that give meaning to the names that are defined in the namespace, it's the language.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (indeed; it's _languages_ that relate meaning to syntax, as per versioning discussion.)
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (my tiny brain needs it projected)
</p>

<p class='phone'>
<cite>HT:</cite> I think that for a namespace document what you want is references to other documents that contain the defintions for particular language versions, for example
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (I think s/a/b/ needs a / at the end)
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; Noah, you wanted to talk about XML and RDF being differnet
</p>

<p class='phone'>
s/exmple/example/
</p>

<p class='phone'>
<cite>NM:</cite> I don't think we've quite nailed the difference between the way that RDF and XML use namespaces <br>
... XML ns gets you to a pair. RDF namespaces get you an expansion of a URI <br>
... Maybe need to be careful to distinguish the two cases. One possible issue is that one serialisation of RDF is XML <br>
... Maybe we need to answer the questions twice, once for RDF and once for XML. <br>
... The namespace definion from the XML namespaces document.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (I'm sympathetic to NM's suggestion that separate stories for XML and RDF might be worthwhile.)
</p>

<p class='phone'>
<cite>HT:</cite> I propose to take Noah's proposal away and produce a new draft.
</p>

<p class='phone'>
<cite>NM:</cite> Do we have the cart before the horse.
</p>

<p class='phone'>
<cite>HT:</cite> I don't want to boil that ocean in this document. There will be differences in these two cases.
</p>

<p class='phone'>
<cite>NM:</cite> There is a danger that you will tell the engineering story, and gloss over the interesting architectural question in the introduction
</p>

<p class='phone'>
<cite>SW:</cite> Displays the webarch definition of namespace.
</p>

<p class='phone'>
<cite>HT:</cite> We wrote a finding about this.
</p>

<p class='irc'>
&lt;<cite>Noah</cite>&gt; <a href="http://www.w3.org/2001/tag/doc/namespaceState.html">http://www.w3.org/2001/tag/doc/namespaceState.html</a>
</p>

<p class='phone'>
<cite>HT:</cite> Reads out the part of section 1 that covers the two perspectives
</p>

<p class='phone'>
<cite>SW:</cite> The question this answered was if you add an element to a namespace should you use a different URI for it.
</p>

<p class='phone'>
<cite>TBL:</cite> W3C has said that you can choose whether or not to use a new URI if you change a namespace
</p>

<a name="action02"></a>
<p class='irc'>
&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> ht to produce another draft of the namespaces document taking into account the difference between namespace usage in RDF and XML [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action02">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action02</a>]
</p>

<p class='irc'>
&lt;<cite>trackbot-ng</cite>&gt; Created ACTION-72 - Produce another draft of the namespaces document taking into account the difference between namespace usage in RDF and XML [on Henry S. Thompson - due 2007-11-12].
</p>

<p class='phone'>
scribe notes that the due date should be the end of the year.
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; ... to state what those two ways are, and to bless both of them in their appropriate spheres
</p>

<p class='irc'>
&lt;<cite>ht</cite>&gt; So the compromise I have in mind to try is to say that we observe that the relationship between a namespace and namespace document may be understood in one of two ways, which in practice line up pretty well with the RDF and XML usages of namespaces
</p>

<h3 id="item05">XMLVersioning-41</h3>
<p class='phone'>
<cite>DC:</cite> NVDL is becoming increasingly important, so maybe we should do something on Action-16
</p>

<p class='phone'>
<cite>SW:</cite> Action-48: Henry presented an expose of the work on modularisation
</p>

<p class='phone'>
<cite>DO:</cite> I think Henry took an action to talk to schema 1.1 wg
</p>

<p class='irc'>
&lt;<cite>Stuart</cite>&gt; <a href="http://www.w3.org/2001/tag/2007/10/25-minutes">http://www.w3.org/2001/tag/2007/10/25-minutes</a>
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; ACTION-51 is done, then, yes?
</p>

<p class='phone'>
<cite>SW:</cite> There has been feedback on Dave's document from Noah.
</p>

<p class='phone'>
<cite>NM:</cite> There has been feedback from outside the TAG. We need to look at it.
</p>

<p class='phone'>
<cite>DO:</cite> I could incorporate Noah's comments by Friday.
</p>

<p class='phone'>
<cite>SW:</cite> How far did Noah get through the document?
</p>

<p class='phone'>
<cite>NM:</cite> I got through most of the sections where Dave had made the main changes.
</p>

<p class='phone'>
<cite>DC:</cite> I won't be there and would want to be there for this.
</p>

<p class='phone'>
<cite>SW:</cite> We have the room for tomorrow morning.
</p>

<p class='phone'>
Discussion about when to discuss this.
</p>

<p class='phone'>
<cite>SW:</cite> 10:30  tomorrow morning
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; Tue, Nov 6 10:30am for versioning is in my calednar
</p>

<p class='phone'>
<cite>RL:</cite> Have to give regrets for that session, have committments to MWI BP
</p>

<p class='phone'>
<cite>SW:</cite> So we'll come back to this at 10:30 tomorrow.
</p>

<p class='phone'>
Discussion about why there were no actions from the October 25th meeting on the modularisation work that Henry has done
</p>

<p class='phone'>
<cite>HT:</cite> It sounds as though the XHTML 2 WG has the ball on this. I need to discuss this with Steven to judge the level of interest
</p>

<p class='phone'>
<cite>SW:</cite> The modularisation has not been published yet has it?
</p>

<p class='phone'>
<cite>HT:</cite> No, because I'm not sure what form it shoud be in.
</p>

<a name="action03"></a>
<p class='irc'>
&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> ht to contact the XHTML 2 WG about the fact that the TAG has been experimenting with modularisation [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action03">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action03</a>]
</p>

<p class='irc'>
&lt;<cite>trackbot-ng</cite>&gt; Created ACTION-73 - Contact the XHTML 2 WG about the fact that the TAG has been experimenting with modularisation [on Henry S. Thompson - due 2007-11-12].
</p>

<h3 id="item06">httpRedirections-57 ISSUE-57:</h3>
<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (I'm happy for this subgroup to start, provided (a) Alan is among the leads/chairs, and (b) TimBL can recruit another TAG member to participate. I'm not available, as much as I'd love to play.)
</p>

<p class='phone'>
<cite>TBL:</cite> Maybe we should document what HTTP does, to try and provide a crisper definition for the semweb community. <br>
... The HTTP-bis group is starting up to document behaviour. Also some people would like to reinstate the link header <br>
... Could be dangers of incompatibility if we had different groups working in this area.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (-1 XG; XGs are for stuff that doesn't involve staff coordination.)
</p>

<p class='phone'>
<cite>TBL:</cite> Would be good to discuss an appropriate way forward. Perhaps we could coopt people. Might be done in the sem web activity, perhaps as an XG or in the interest group.
</p>

<p class='phone'>
<cite>SW:</cite> What is their main interest?
</p>

<p class='phone'>
<cite>TBL:</cite> In terms of the interpretation of response messages, the only thing that could be used to infer interesting information is the response code. <br>
... telling the story that for a given method the response contains particular things that can be used in specific ways for RDF <br>
... There will be things that apply to multiple methods
</p>

<p class='phone'>
<cite>SW:</cite> Do you see this as as document of some kind?
</p>

<p class='phone'>
<cite>TBL:</cite> Depends on where it is done. Could end up being a note for a WG or a TAG finding.
</p>

<p class='phone'>
<cite>SW:</cite> So would that be something normative <br>
... The impression I get from sem web is that they are looking for something with normative force.
</p>

<p class='phone'>
<cite>TBL:</cite> I'm a bit sceptical about basing any description on an ontology. I suspect that we'll end up explaining most of it in English <br>
... Also interesting that 303 was introduced for POST
</p>

<p class='irc'>
&lt;<cite>Zakim</cite>&gt; DanC_, you wanted to re-iterate that WAI ERT has work in this area, and to note my own work in the area <a href="http://dig.csail.mit.edu/breadcrumbs/node/178">http://dig.csail.mit.edu/breadcrumbs/node/178</a>
</p>

<p class='phone'>
<cite>NM:</cite> Sometimes, Roy has noted a draft update to HTTP. Is there something coming
</p>

<p class='phone'>
<cite>DC:</cite> I've been modelling HTTP in RDF for a long time. Long term interest, but I don't have time to participate
</p>

<p class='phone'>
Discussion about what the forum for work on this sort of thing should be
</p>

<p class='phone'>
<cite>TBL:</cite> How far did you get modelling this (HTTP caching)
</p>

<p class='phone'>
<cite>DC:</cite> I wrote a talk on this. Shows a formal definition in Larch for the caching model
</p>

<p class='irc'>
&lt;<cite>Stuart</cite>&gt; <a href="http://www.w3.org/Protocols/HTTP/1.1/rfc2616bis/issues/#i70">http://www.w3.org/Protocols/HTTP/1.1/rfc2616bis/issues/#i70</a>
</p>

<p class='phone'>
<cite>SW:</cite> Suggestion from Dan about leadership and some activity.
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (I'm willing to take an action to talk to jonathan reese (sp?) about this)
</p>

<p class='phone'>
<cite>TBL:</cite> Were the tech and society domain decide to pursue this, who else in the TAG would be interested in this?
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; (toe-in-the-water from SKW works for me)
</p>

<p class='phone'>
<cite>SW:</cite> I would be interested in theory, but have to check commitments
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; trackbot-ng, status
</p>

<p class='phone'>
<cite>NM:</cite> I'm wondering about this, but I'd have a lot to learn and I'm not convinced about the overall benefit
</p>

<a name="action04"></a>
<p class='irc'>
&lt;<cite>DanC_</cite>&gt; <strong>ACTION:</strong> Stuart to explore TAG liason role to Subgroup to handle semantics of HTTP etc [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action04">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action04</a>]
</p>

<p class='irc'>
&lt;<cite>DanC_</cite>&gt; ppht
</p>

<a name="action05"></a>
<p class='irc'>
&lt;<cite>DanC_</cite>&gt; <strong>ACTION:</strong> Stuart explore TAG liason role to Subgroup to handle semantics of HTTP etc [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action05">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action05</a>]
</p>

<p class='irc'>
&lt;<cite>trackbot-ng</cite>&gt; Created ACTION-74 - Explore TAG liason role to Subgroup to handle semantics of HTTP etc [on Stuart Williams - due 2007-11-12].
</p>


</div>
<h2><a name="ActionSummary">Summary of Action Items</a></h2>
<!-- Action Items -->
<strong>[NEW]</strong> <strong>ACTION:</strong> ht to contact the XHTML 2 WG about the fact that the TAG has been experimenting with modularisation [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action03">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action03</a>] <br />
<strong>[NEW]</strong> <strong>ACTION:</strong> ht to liase with his contact in the EXI working group to get a sense of the group's current feeling [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action01">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action01</a>] <br />
<strong>[NEW]</strong> <strong>ACTION:</strong> ht to produce another draft of the namespaces document taking into account the difference between namespace usage in RDF and XML [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action02">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action02</a>] <br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Stuart explore TAG liason role to Subgroup to handle semantics of HTTP etc [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action05">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action05</a>] <br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Stuart to explore TAG liason role to Subgroup to handle semantics of HTTP etc [recorded in <a href="http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action04">http://www.w3.org/2001/tag/2007/11/05-morning-minutes.html#action04</a>] <br />
&nbsp;<br />


[End of minutes] <br>
<hr>

<address>
  Minutes formatted by David Booth's 
  <a href="http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm">scribe.perl</a> version 1.128 (<a href="http://dev.w3.org/cvsweb/2002/scribe/">CVS log</a>)<br>
  $Date: 2007/11/05 21:54:57 $ 
</address>
<div class="diagnostics">

</div>
</body>
</html>