14-16-minutes.html 163 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862
<?xml version="1.0" encoding="iso-8859-1"?>
<!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=iso-8859-1" />
  <title>TAG face-to-face meeting, 14-16 June 2005</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 name="generator" content="amaya 9.1.4, see http://www.w3.org/Amaya/"
  />
<style type="text/css">
   blockquote { border-left: double; padding-left: 1em; font-style: italic; text-align: justify }
   address { text-align: right }
</style>
</head>

<body>
<div class="nav"><a href="../../../../">W3C</a> - <a href="../../">TAG</a></div>
<h1>Minutes of TAG face-to-face meeting, 14-16 June 2005, Cambridge, MA,
USA</h1>

<div style="text-align:center">
<a href="#jun14am">Tue 14 Jun AM</a>,
<a href="#jun14pm">PM</a> /
<a href="#jun15am">Wed 15 Jun AM</a>,
<a href="#jun15pm">PM</a> /
<a href="#jun16am">Thu 16 Jun AM</a>,
<a href="#jun16pm">PM</a>
</div>

<p>See also: <a href="http://www.w3.org/2005/06/14-tagmem-irc">IRC log 14
Jun</a>, <a href="http://www.w3.org/2005/06/15-tagmem-irc">15 Jun</a>, <a
href="http://www.w3.org/2005/06/16-tagmem-irc">16 Jun</a></p>

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

<div class="intro">
<dl>
  <dt>Present</dt>
    <dd>Tim_Berners-Lee, Dan_Connolly, Roy_Fielding, Noah_Mendeloshn,
      Vincent_Quint, Ed_Rice, Henry_Thompson, Norm_Walsh,
      Dave_Orchard_(as_indicated_by_phone)</dd>
  <dt>Regrets</dt>
    <dd>(none)</dd>
  <dt>Chair</dt>
    <dd>Vincent Quint</dd>
  <dt>Scribe</dt>
    <dd>timbl, noah, ht, DanC, Roy, Ed, Henry, Norm</dd>
</dl>

<p><img alt="TAG f2f meeting, MIT, 16 June 2005" src="TAGf2f-16Jun.JPG" /></p>
</div>

<h2>Contents</h2>
<ul>
  <li><a href="14-agenda.html">Topics</a>
    <ol>
      <li><a href="#item01">Admin: Roll call;  Who scribes when? form of the minutes</a></li>
      <li><a href="#item03">approving minutes of previous telcon</a></li>
      <li><a href="#item04">Schedule next telcon</a></li>
      <li><a href="#item05">Agenda review</a></li>
      <li><a href="#item06">Upcoming F2F Scheduling</a></li>
      <li><a href="#item07">Summer vacation plans</a></li>
      <li><a href="#item08">Document management</a></li>
      <li><a href="#item09">Goals and Plans for Future Tag work</a></li>
      <li><a href="#item024">TAG Directions (continued)</a></li>
      <li><a href="#item033">namespaceDocument-8 esp XPath F&amp;O namespace
        doc</a></li>
      <li><a href="#item014">TAG Directions (continued)</a></li>
      <li><a href="#item025">Security</a></li>
      <li><a href="#item013">schemeProtocols-49</a></li>
      <li><a href="#item023">httpRange-14</a></li>
      <li><a href="#item012">Agenda review</a></li>
      <li><a href="#item022">Architecture of the Semantic Web</a></li>
      <li><a href="#item032">namespaceDocument-8</a></li>
      <li><a href="#item021">fn:escape-uri</a></li>
      <li><a href="#item031">abstractComponentRefs-37</a></li>
      <li><a href="#item061">WS Description and "safety"</a></li>
    </ol>
  </li>
  <li><a href="#ActionSummary">Summary of Action Items</a></li>
</ul>
<hr />

<div class="meeting">
<h2 id="jun14am">Tue 14 Jun 2005 -- morning</h2>
<dl>
<dt>Scribe</dt>
<dd>noah</dd>
</dl>

<h3 id="item01">Admin: Roll call; Who scribes when? form of the minutes</h3>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; +Norm</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; Norm has arrived in Stata601</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; ndw offers for Tue am</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; ER for Wed PM</p>

<p class="irc">&lt;<cite>scribe</cite>&gt; scribe: timbl</p>

<p class="phone"><cite>Ed:</cite> Wed pm</p>

<p class="phone"><cite>HT:</cite> Thu am</p>

<p class="phone"><cite>RF:</cite> Thu pm</p>

<p class="phone"><cite>NM:</cite> Tue pm</p>

<p class="phone">Norm and Henry will duck out for a 10 minutes at 11:00 ET
tomorrow.</p>

<p class="phone"><cite>Switch:</cite> Now we have Ed Wed am, Norm Wed pm</p>

<p class="phone">The minute takers should take responsibility for the end
product.</p>

<p class="phone">Changes to scribing: Noah offers to do Tim's work, starting
now</p>

<p class="irc">&lt;<cite>noah</cite>&gt; scribe: noah</p>

<p class="irc">&lt;<cite>scribe</cite>&gt; scribenick: noah</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Dan this afternoon</p>

<p class="phone">Date: 14 June 2005</p>

<h3 id="item03">approving minutes of previous telcon</h3>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; <a
href="http://www.w3.org/2005/05/31-tagmem-minutes.html">31 May minutes</a></p>

<p class="phone"><strong class="resolution"><a name="RESOLUTION"
id="RESOLUTION">RESOLUTION</a>: approve minutes of 31 May minutes at <a
href="http://www.w3.org/2005/05/31-tagmem-minutes.html">http://www.w3.org/2005/05/31-tagmem-minutes.html</a></strong></p>

<h3 id="item04">Schedule next telcon</h3>

<p class="phone"><cite>VQ:</cite> Should we have another telcon on 21
June?</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Regrets for 21st.</p>

<p class="phone"><cite>TBL:</cite> Regrets for 21st</p>

<p class="phone"><cite>NM:</cite> Regrets for 21st, at W3C Schema futures
meeting.</p>

<p class="phone"><cite>VQ:</cite> for now, the meeting is on</p>

<p class="phone"><strong class="resolution"><a name="RESOLUTION3"
id="RESOLUTION3">RESOLUTION</a>: Vincent will chair on June 21; regrets DC, TBL, NM.</strong></p>

<h3 id="item05">Agenda review</h3>

<ul>
<li><a
href="http://www.w3.org/2001/tag/2005/06/14-agenda.html">agenda 14-16 Jun</a></li>
</ul>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; "DC: Acked to discuss 1) RDDL,
the XQuery namespaces, Schema Component Designators and
abstractComponentRefs-37/WSDL"</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; -- <a
href="http://www.w3.org/2005/05/10-tagmem-minutes.html#item04">http://www.w3.org/2005/05/10-tagmem-minutes.html#item04</a></p>

<p class="irc">&lt;<cite>timbl</cite>&gt; When do we expect Dave to call
in?</p>

<p class="phone"><cite>VQ:</cite> Our main goal for this meeting is to figure
out our goals and strategies leading to, say, 2006 <br />
.... propose to discuss tag directions every morning at this meeting?</p>

<p class="phone"><cite>DC:</cite> is all morning too much time?</p>

<p class="phone"><cite>NM:</cite> Rest of our time is flexible, can we just
adapt.</p>

<p class="phone"><cite>TBL:</cite> Dave should be there, especially for
discussing web services arch?</p>

<p class="phone"><cite>HT:</cite> Should spend at least this morning, and
should do round robin.</p>

<p class="phone"><cite>VQ:</cite> OK, for today we'll do it all morning, then
see where we stand. <br />
.... Is 8:30 OK for Wed &amp; Thurs?</p>

<p class="phone"><cite>TBL:</cite> may not make 8:30, but start without me</p>

<p class="phone"><cite>NM:</cite> Suggest we start 8:30 and do issues of
minor interest until Tim shows at 9.</p>

<p class="phone"><cite>VQ:</cite> As to rest of agenda, I've listed some
other issues and findings to be considered. Got these by reviewing prev
telcon minutes. I missed the one Dan wanted to raise.</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Apr/0028.html">XSL/XML
Query functions and operators namespace document Norman Walsh (Tuesday, 5
April)</a></p>

<p class="irc">&lt;<cite>Norm</cite>&gt; QT F&amp;O Namespace document: <a
href="http://www.w3.org/2005/04/xpath-functions/">http://www.w3.org/2005/04/xpath-functions/</a></p>

<p class="phone"><cite>DC:</cite> My concerns cross several of these. I want
to review the namespace document for the XQuery stuff (<a
href="http://www.w3.org/2005/04/xpath-functions/)">http://www.w3.org/2005/04/xpath-functions/).</a>
That relates to namespaceDocument-8, abstractComponentRefs-37, and possibly
some others. This is not a new issue, but relates to several existing.</p>

<p class="phone"><cite>HT:</cite> I would like to talk more about security
issues later.</p>

<p class="phone"><cite>NM:</cite> Note that I sent a draft on
schemeProtocols-49. See <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0024.html">http://lists.w3.org/Archives/Public/www-tag/2005Jun/0024.html</a>
and <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0025.html">http://lists..w3.org/Archives/Public/www-tag/2005Jun/0025.html</a>
. Read it before our discussions of that issue if you have a chance.</p>

<h3 id="item06">Upcoming F2F Scheduling</h3>

<p class="phone"><cite>VQ:</cite> Current schedule is for 20-22 September in
Edinburgh, Scotland</p>

<p class="phone"><cite>HT:</cite> We may be invited to dinner Tues night,
please let me know if any spouses are likely to attend. <br />
.... OK, I'll assume 9 +/- 2. That uncertainty is no problem. <br />
.... Bed crunch shouldn't be too bad then, as festival has ended.</p>

<p><a name="action01" id="action01"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Henry
Thompson to send F2F logistics to Vincent for meeting page [recorded in <a
href="http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46">http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46</a>]</p>

<p class="phone"><cite>VQ:</cite> there is an AC meeting in Montreal <br />
.... Tech plenary will be in late Feb, early March, probably on riviera.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; will do</p>

<p class="phone"><cite>NM:</cite> What if we do tech plenary to meet other
groups, and then split difference to do late fall?</p>

<p class="phone"><cite>HT:</cite> Right, which puts us at the AC meeting in
Montreal late November.</p>

<p class="phone"><cite>VQ:</cite> Dates of AC are Nov. 29 - Dec. 1 in
Montreal <br />
.... Who will go in Montreal. Many positive responses. Dave O. says he cannot
travel that entire week.</p>

<p class="phone"><cite>HT:</cite> What about week before. Uh... US
Thanksgiving.</p>

<p class="phone"><cite>DO:</cite> Proceed without me. I'll be in
Edinburgh.</p>

<p class="phone"><cite>HT:</cite> What about Mon Tues week after XML 2005.</p>

<p class="phone">NW and HT: Doesn't work.</p>

<p class="phone"><cite>TBL:</cite> more travel this fall is tough.</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; Could do nov 29, Dec 2 TAG
meeting.</p>

<p class="phone"><cite>NM:</cite> Tim, is there any way to line this up with
the AC meeting for you?</p>

<p class="phone"><cite>HT:</cite> Uh...won't there be a team meeting Friday
after the AC?</p>

<p class="phone"><cite>TBL:</cite> Actually, somewhat unclear.</p>

<p class="phone"><cite>Various:</cite> What about 5th and 6th December?</p>

<p class="phone"><cite>TBL:</cite> Where?</p>

<p class="phone"><cite>HT:</cite> Kansas City?</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; considering 5-6 Dec... Montreal
... or Cambridge...</p>

<p class="phone"><cite>Various:</cite> What about Cambridge?</p>

<p class="phone"><cite>DO:</cite> What about straddling AC?</p>

<p class="phone"><cite>NW:</cite> Rather not.</p>

<p class="phone"><cite>VQ:</cite> What about 5&amp;6 here?</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; (yes, there's a w3c team day Fri
2 Dec. 99%odds. planning in the works)</p>

<p class="phone"><cite>VQ:</cite> Dave O., can you make that?</p>

<p class="phone"><cite>DO:</cite> scribe perceives a mumble from Dave that
sounds like a yes..</p>

<p class="phone"><strong class="resolution"><a name="RESOLUTION1"
id="RESOLUTION1">RESOLUTION</a>: We will have a TAG meeting for 2 days in
Cambridge hosted by W3C 5-6 December 2005</strong></p>

<p class="phone"><strong class="resolution"><a name="RESOLUTION2"
id="RESOLUTION2">RESOLUTION</a>: We will have a TAG meeting in conjunction
with the Feb/March 2006 Tech. Plenary in France, exact dates TBD.</strong></p>

<h3 id="item07">Summer vacation plans</h3>

<p class="phone"><cite>VQ:</cite> I have to decide my summer vacation dates.
<br />
.... Propose not to be involved first 3 weeks of August.</p>

<p class="phone">We spend some time proving that for every week over the
summer, at least one person is missing.</p>

<p class="phone">As VQ erases vacation calendar from the whiteboard, VQ
requests that TAG members send email copies to him</p>

<p class="phone">Tim and Noah, as well as others, will miss some in July.</p>

<p class="phone"><cite>Proposal:</cite> we will have calls through 19th of
July, then take a break with next call being 23rd of August.</p>

<h3 id="item08">Document management</h3>

<p class="phone">From the agenda: "Should we revise the way we maintain the
issues list and pending actions?"</p>

<p class="phone"><cite>VQ:</cite> Should I be doing more about document
management? <br />
.... Norm is tracking errata?</p>

<p class="phone"><cite>NW:</cite> Right, but a bit behind. Will find time to
do an errata doc soon.</p>

<p class="phone"><cite>VQ:</cite> OK, action is continuing. <br />
.... We also have the public list public-webarch-comments@w3.org Mail
Archives <br />
.... are we monitoring sufficiently?</p>

<p class="phone">DC &amp; NW: yes, we are.</p>

<p class="phone"><cite>VQ:</cite> We also have the findings list. Noah has
sent a new draft..</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; NM's new finding: <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/att-0024/schemeProtocols.html">http://lists..w3.org/Archives/Public/www-tag/2005Jun/att-0024/schemeProtocols.html</a></p>

<p class="phone">Actually, the stable link should be: <a
href="http://www.w3.org/2001/tag/doc/SchemeProtocols.html">http://www.w3.org/2001/tag/doc/SchemeProtocols.html</a></p>

<p class="phone">I just fixed it. Was broken over the weekend due to messing
up the checkin of png's.</p>

<p class="phone">Some discussion of whether to put drafts on the findings
list or only approved.</p>

<p class="phone"><cite>DC:</cite> OK either way as long as it's clear, but I
don't need unapproved there.</p>

<p class="phone"><cite>VQ:</cite> I'll keep them straight.</p>

<p><a name="action02" id="action02"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Vincent
to add draft finding on schemeProtocols-49 to findings page (link is <a
href="http://www.w3.org/2001/tag/doc/SchemeProtocols.html)">http://www.w3.org/2001/tag/doc/SchemeProtocols.html)</a>
[recorded in <a
href="http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46">http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46</a>]</p>

<p class="phone"><cite>VQ:</cite> any more logistics</p>

<p class="phone">??: any more discussion where to put minutes?</p>

<p class="phone"><cite>HT:</cite> I'll let it go?</p>

<p class="phone"><cite>NM:</cite> I recall that there was a strong push that
something stable be linkable by the time the next agenda goes out. So, we're
deciding that anything stable is OK?</p>

<p class="phone"><cite>Various:</cite> right.</p>

<p class="phone"><cite>TBL:</cite> Well, uh stuff in email attachments isn't
easily fixed,</p>

<p class="phone"><cite>Various:</cite> right, and that takes us into the
discussion that we're not reopening, so we won't.</p>

<h3 id="item09">Goals and Plans for Future Tag work</h3>

<p class="phone"><cite>VQ:</cite> we've had various inputs from various
people on this <br />
.... one question is, what do we plan to produce as documents? <br />
.... that said, I propose we first discuss long term directions, then the
right documents to produce <br />
.... First document was Noah's</p>

<p class="phone"><cite>NM:</cite> No, actually first was from Tim: <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Apr/0054.html">http://lists.w3.org/Archives/Public/www-tag/2005Apr/0054.html</a></p>

<p class="phone"><cite>TBL:</cite> My feelings unchanged since writing the
note. <br />
.... WebArch doc seems to have been effective. The form worked well. <br />
.... let us discuss both the core findings and the rationale behind them <br
/>
.... therefore, prefer to grow the scope, while working in the same general
framework and style <br />
.... semantic web and web services seem to be the two major scopes to
consider <br />
.... could look for other high priority issues as well, but mainly looking
for high priority ones. Probably things like httpRange-14 are best seen in
the context of the larger architectural issues. <br />
.... somewhat tricky...in the first phase we claimed to have topic experts in
the room, that may be less true as we move into semantic web and web
services. In those cases we serve more as journalists. <br />
.... there has been a lot of formal work done on sem web, but could be better
integrated and tied into Web arch itself. <br />
.... on web services, the last effort at architecture, didn't gel. Some
concern that the folks who drive web services haven't put in place enough
clean architecture for us to help crystalize.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; TBL: If we were to work on WS arch,
we would not be documenting retrospectively but doing design work, it
seems.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; TBL: ... And it isn't design work
which we should be doing.</p>

<p class="phone"><cite>HT:</cite> We started on web arch 10 years after the
web, sem web would be 5 years, arguably on web services it isn't; there yet.
<br />
.... we do better when there is an established body of practice. The current
experts don't always give you clean answers.</p>

<p class="phone"><cite>ER:</cite> But in my experience, that's exactly where
we could make a contribution.</p>

<p class="phone"><cite>TBL:</cite> doesn't ws-i do that?</p>

<p class="phone"><cite>ER:</cite> does architecture follow?</p>

<p class="phone"><cite>DC:</cite> W3C looks better looking back. <br />
.... we don't want to be saying "stop, or I'll say stop again"</p>

<p class="phone"><cite>TBL:</cite> sometimes W3C needs to do design, but not
TAG <br />
.... TAG designs mainly at the level of doing glue to cover things that don't
line up</p>

<p class="phone"><cite>NM:</cite> I think our main responsibility to Sem Web
and Web services should be to (a) make sure they use the core mechanisms of
the Web itself appropriately and (b) in doing that, see whether they teach us
more about what we need to document about the Web architecture itself.</p>

<p class="phone"><cite>DO:</cite> Web Services does indeed deviate from core
web architecture more than Sem Web. For example, the first versions of SOAP
didn't do HTTP Get. <br />
.... Clearly Web Services doesn't use the RESTful mechanisms of uniform
interfaces. <br />
.... now with WSA we see lack of use of Web Arch primarily for creating
asynchronous stateful services. <br />
.... service will have stateful instance, and you'll want to have async
interactions with that. Client doesn't know much about state, except for need
to echo things. <br />
.... there is very little reuse of REST <br />
.... note that cookies are widely used on the web for stateful things. We can
learn some messages from those. <br />
.... we've not necessarily made it easy. SOAP Response hasn't been well
adopted. Maybe if the web were more friendly to stateful interaction, WS
would have an easier time leveraging the Web.</p>

<p class="phone"><cite>DC:</cite> Henry asks "who are our customers"? <br />
.... history is, we were started to answer questions about whether W3C
workgroups were or were not using Web Architecture well. <br />
.... what we wrote is what everyone in every WG ought to know. <br />
.... I'm not convinced we can impact the web master community.</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; timbl, you wanted to agree that Web
Services are fundamentally different architecture - a remote operations
architecture, not an information space architecture. These are distinct</p>

<p class="phone"><cite>TBL:</cite> agree with David, Web Architecture is
different architecture from REST. <br />
.... our scope is what happens in W3C. Originally was information space, but
now there's more overlap, e.g. between web and email than there was
before.</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; noah, you wanted to say that we may
need to be a bit more careful about the layering of our use of the term Web.
Is the Web really only REST, or is REST just the most widely</p>

<p class="phone"><cite>TBL:</cite> I therefore think it's reasonable to consider WS
arch if we want to because w3c does that</p>

<p class="irc">&lt;<cite>scribe</cite>&gt; scribe: ht</p>

<p class="phone"><cite>NM:</cite> Return to the note I wrote:</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/att-0001/Priorities2005.html">http://lists.w3.org/Archives/Public/www-tag/2005Jun/att-0001/Priorities2005.html</a></p>

<p class="phone"><cite>NM:</cite> Remember the W3C slogan "Lead the Web to
its full potential"? <br />
.... WebArch1 covered much of the foundations of that, the Web as it was say
5 years ago when most of the foundations were new and cool <br />
.... Going forward we should be looking at what the web needs to achieve
continue to achieve its potential. <br />
.... Even wrt the information space, we can see that at the moment
that new 
requirements may be emerging (e.g. rise of P2P).
<br />
.... Some time ago at the tech plenary, I tried to make the case that we
would do well to think of the web in terms of layers. So, if we move beyond
HTTP to p2p, for example, then we can expect the URI layer of the web to be
used,</p>

<p class="phone">(the scribe takes the liberty of mentioning that the
following list of layers comes from <a
href="http://www.w3.org/2003/Talks/techplen-ws/w3cplenaryhowmanywebs2.htm">http://www.w3.org/2003/Talks/techplen-ws/w3cplenaryhowmanywebs2.htm</a>,
even though that URI wasn't mentioned until later in our discussions.)</p>

<p class="phone"><cite>NM:</cite> ------------------- <br />
.... 1) Names of things <br />
.... 2) Schemes that are deployed that you can use with names (all of them)
<br />
.... 3) RESTful schemes <br />
.... 4) Widely deployed media types <br />
.... ------------------- <br />
.... So saying "the Web is (only) REST" is to take a significant and
potentially limiting step. Indeed, AWWW comes close to making such a leap in
talking without qualification about the exchange of representations, which is
pretty closely tied to HTTP and REST. <br />
.... We can use the word 'Web' for a particular level of that layering, but
that has consequences: we need to get agreement on terminology for the
various layers. <br />
.... Over time, do we really want to limit the Web's information space to
that which is best exposed in a "RESTful" manner or can we bring more of e.g.
Web Services into the information space</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; ht, you wanted to ask where "The W
W W" starts and ends</p>

<p class="irc">&lt;<cite>noah</cite>&gt; scribe: noah</p>

<p class="phone"><cite>HT:</cite> people are confused about distinction
between Internet and Web,who invented which, etc. <br />
.... the stuff we call the Web is what is layered on one of the protocols in
particular, I.e. HTTP</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; (hmm... this lecture Henry is
talking about is interesting... IEEE, IETF, W3C / ethernet, Internet, Web ...
I'm very interested in how people learn about these technologies)</p>

<p class="phone"><cite>HT:</cite> in private discussion, Noah tried to
convince me that Web was bigger and embraced everything that could be linked
through URIs <br />
.... reading the Arch document, doesn't tell you where not to go. <br />
.... how should I know when I'm not on the Web and whether I think the Web
Arch doc should apply?</p>

<p class="phone"><cite>TBL:</cite> we found the question am I on the Web not
helpful. We did find: "is this document helpful?" to be a more useful
question. <br />
.... I thought Noah was splitting hairs, but then I understood his peer to
peer example.</p>

<p class="phone"><cite>NM:</cite> I'm actually trying to draw parallel
between things like P2P and Sem web. Both of them get great value from being
integrated into what we know as traditional web. Each stretches the web in
new directions. Sem web because it names things not connected to computers,
P2P because it deals in new types of content and security.</p>

<p class="phone"><cite>TBL:</cite> Anyone claiming web is HTTP-only?</p>

<p class="phone"><cite>Noah:</cite> I thought maybe Henry.</p>

<p class="phone"><cite>HT:</cite> Statefulness is important. Security is
important. In particular, having your identity established makes a big
difference.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Noah, <a
href="http://www.w3.org/DesignIssues/diagrams/URI-space.png">http://www.w3.org/DesignIssues/diagrams/URI-space.png</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; The Web has never been HTTP-only
(started with FTP and Gopher, added HTTP and WAIS, ...)</p>

<p class="phone"><cite>HT:</cite> for example, I get something different from
W3C retrievals than you do, because I'm served by the European server.</p>

<p class="phone"><cite>DC:</cite> why is that a problem, it's the same
resource?</p>

<p class="phone"><cite>HT:</cite> True in principle, but in practice the
system breaks; the mirroring is imperfect, and so the experience is
effectively dependent on the Web's notion of one's identity.</p>

<p class="phone"><cite>NM:</cite> I think Henry's point is that many things
in practice depend on the system knowing who you are and where you are</p>

<p class="phone"><cite>HT:</cite> Google, in particular, tailors results
based on partition of IP space. Cookies are another example. <br />
.... Most commercial sites give you a very different experience according to
your cookies, and thus in a sense identities. <br />
.... I tried to convince Google that Web would sort of survive if something
like Google disappeared. They felt it was "constitutive" of what the web
is.</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; +1 to HT's point that Google is
part of the architecture from the user experience</p>

<p class="phone"><cite>HT:</cite> note that which URI you get redirected to
from google.com depends on (your IP address? something not covered in Web
Arch)</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; (hmm... I could replay the whole
"commonname" discussion in the TAG context, I guess, re one of HT's points
about search engines)</p>

<p class="phone"><cite>HT:</cite> partially connected and disconnected are
also important. What about push (see RIM Blackberry)</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; (what does RIM do different?
gee... I don't even know)</p>

<p class="phone"><cite>ER:</cite> are you also going toward mobile web?</p>

<p class="phone"><cite>HT:</cite> yes, that too.</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_mtg, you wanted to offer to
project and edit an outline and to realize that the long tirade I
occasionally give on how broken authentication in the web is might be
relevant</p>

<p class="phone"><cite>DC:</cite> I had offered to edit outline, looks like
won't happen before lunch. <br />
.... I have a document from long ago about web forms and having
authentication and a logout button using MD5. They said the would do it in
next version. Hasn't happened. <br />
.... there are limits on who can deploy authenticated services because of
limits on number of passwords users will maintain. <br />
.... as alternative, small sites are using clear text passwords, sometimes
with HTTP due to inability to afford compute power for doing HTTPS. <br />
.... I think digest authentication is much better than clear text pwds. <br />
.... Nobody can deploy new security technology.</p>

<p class="phone"><cite>TBL:</cite> Do browsers do it?</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; dorchard, you wanted to mention Web
service "info space type" things not on the web</p>

<p class="phone"><cite>DO:</cite> we've drifted away from Web Services. Liked
what Noah said about relationship to parallel architectures like P2P,
Gnutella, BitTorrent. Some very significant architectures are being deployed
that don't use Web technology. Maybe XRI as well.</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; <a
href="http://www.w3.org/Submission/1999/03/">User Agent Authentication Forms
Submission. Lawrence and Leach 1999</a></p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; <a
href="http://www.w3.org/TR/1999/NOTE-authentform-19990203">User Agent
Authentication Forms Feb 1999</a></p>

<p class="phone"><cite>DO:</cite> On Web Services side, consider WS Resource
Framework. Describes generic operations, you can get, put, etc. content of
these resources. They use WS-Notification to allow publish/subscribe for
state changes. <br />
.... these are note computational, they are information resources. But even
in these constrained cases, they still don't use HTTP protocol fully. Don't
use HTTP GET. Still do SOAP messages over HTTP post. Want to be able to use
WSA End Point References. <br />
.... I did a proposal at their first meeting to show how to offer these on
the web. Why not use a binding that binds down to HTTP Get? They said: good
ideas, but we're (Oasis-based team) aren't the ones to do it.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST is intrigued by the apparent
difference between tunneling and transfer. . .</p>

<p class="phone"><cite>DO:</cite> XMLP could do it, but that workgroup seems
to be going into maintenance mode.</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; describing HTTP in WSDL is kind
of a cool idea, but nobody seems to be interested to do much with it.</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; noah, you wanted to say we are
oversimplifying security story</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; when is the break?</p>

<p class="irc">&lt;<cite>DanC_mtg</cite>&gt; (quite, Noah, SSL is shared-key
authentication, and public-key is the way to go for signature-workflow
stuff)</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_mtg, you wanted to ask when
lunch is</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST agrees that state and side-effect
are worthy of further discussion, for sure</p>

<p class="irc">&lt;<cite>Vincent</cite>&gt; Lunch break</p>

<p class="irc">&lt;<cite>Vincent</cite>&gt; We reconvene at 1:00 pm Eastern
time</p>

<p class="phone"><cite>NM:</cite> Tried (and largely failed) to convince Tim
and others that one difference about Web Services is that more interactions
are secured, and that more have state-changing effects at the resource owner.
Therefore, Noah claims, the particular value that comes from GET in the web
architecture is somewhat less significant. Whatever the other pros and cons
of Web Services arch, it seems better targeted to these
application-to-application secure scenarios.</p>

<p class="phone"><cite>VQ:</cite> Breaking for lunch.</p>

<h2 id="jun14pm">Tue 14 Jun 2005 -- afternoon</h2>
<dl>
  <dt>Scribe</dt>
    <dd>DanC</dd>
</dl>

<h3 id="item024">TAG Directions (continued)</h3>

<p class="phone"><cite>VQ:</cite> let's go around and get some input from
each on priorities...</p>

<p class="phone"><cite>ER:</cite> webarch doc is incomplete without semantic
web and web services. let's spend some time on that. And let's solve
httpRange-14 this week</p>

<p class="phone"><cite>DC:</cite> the "languages and namespaces" bullet from
<a href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0028.html">HT's msg</a> seems important to me; namespaceDocument-8 and such. none of the
higher level goals seems all that attractive</p>

<p class="phone"><cite>TimBL:</cite> ... semantic web and web services ...
[missed?]</p>

<p class="phone"><cite>NDW:</cite> looking at the issues list, I saw 5ish
that are related to URIs. Nailing that cluster seems worthwhile</p>

<p class="phone"><cite>RF:</cite> no particular issues to "grind"... would
like to see more "how the semantic web affects Web architecture". Would like
to see more about what Web services efforts aim to achieve. [?] <br />
... would not want to tell them what to do, though.</p>

<p class="phone"><cite>NM:</cite> (1) to see that the information space
continues to grow and thrive</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; rejoining...</p>

<p class="phone">+Stata601</p>

<p class="irc">&lt;<cite>ht</cite>&gt; dave, can you hear us?</p>

<p class="phone"><cite>scribe:</cite> [missed 2 and 3?] <br />
... want to be sure there's an architecture that all the parts share</p>

<p class="phone">(timbl seems to be composing a table on the whiteboard)</p>

<p class="phone"><cite>HT:</cite> the issues of state, side-effect, and
context seem important. <br />
... and that connects to user identity/authentication <br />
... httpRange-14 ... I still can't see how that's orthogonal to secondary
resources. <br />
... languages and namespaces, as DanC mentioned <br />
... I think we owe the XML community a look at "the entity problem" <br />
... should there be a way of doing what entities do? i.e. refer to large
complicated things with small simple names?</p>

<p class="phone"><cite>DO:</cite> I'd like to see the web figure out how to
give more things URIs... <br />
... if that means dealing with stateful services, then very well... <br />
... if that stretches "REST", then very well <br />
... let's continue to pay attention to architecture properties, e.g.
statefulness, [missed?] <br />
... and extensibility and versioning</p>

<p class="phone"><cite>VQ:</cite> not sure we need to define the architecture
of web services... <br />
... more interested in extending/specializing the present web archtiecture in
a way that's useful for web services and semantic web... <br />
... it's important to take into account new user interaction mechanisms
[?]... peer-to-peer, streaming... integrate those with web architecture</p>

<p class="phone">(I think I have a copy of the list timbl put on the
whiteboard in an outliner; can send XHTML version on request)</p>

<p class="phone">(timbl's list has grown some arrows; no longer fits in a
hierarchical outline. imagine that ;-)</p>

<p class="phone">(hmm... if WG members are our customers, I wonder about a
WBS "what do you want the TAG to do?" survey, seeded by something like this
list)</p>

<p class="phone"><cite>VQ:</cite> so we have a long list now... of course we
need to narrow it down... <br />
... keep in mind that our most visible products are REC-track documents</p>

<p class="irc">&lt;<cite>noah</cite>&gt; A rather messy export of my slides
on Web layering seems to be at: <a
href="http://www.w3.org/2003/Talks/techplen-ws/w3cplenaryhowmanywebs2.htm">http://www.w3.org/2003/Talks/techplen-ws/w3cplenaryhowmanywebs2.htm</a></p>

<p class="irc">&lt;<cite>noah</cite>&gt; Will look for cleaner formats.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/DesignIssues/diagrams/URI-space.png">http://www.w3.org/DesignIssues/diagrams/URI-space.png</a> <br />
<img src="http://www.w3.org/DesignIssues/diagrams/URI-space.png" alt="a diagram of URI space" />
</p>

<p class="phone"><cite>HT:</cite> re URI-space.png , I'm surprised to see the
whole semantic web inside [which?]</p>

<p class="phone">(HT and TBL discuss httpRange-14 a bit in the context of
URI-space.png )</p>

<p class="phone"><cite>NM:</cite> ... that's one of the reasons we should[?]
talk about resources that have URIs but no GET/PUT/POST ...</p>

<p class="phone"><cite>DC:</cite> I'd like to remove "XML entities"</p>

<p class="phone"><cite>HT:</cite> then who?</p>

<p class="phone"><cite>NDW:</cite> XML Core</p>

<p class="phone"><cite>DC:</cite> +1 <br />
... how does this go beyond XML spec into web architecture?</p>

<p class="phone"><cite>HT:</cite> let me think about that a bit</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; Dan's list has "~5 issues NDW
found", for the record, I was thinking of IRIEverywhere-27, metadataInURI-31,
abstractComponentRefs-37, rdfURIMeaning-39, URIGoodPractice-40,
DerivedResources-43, endPointRefs-47, and URNsAndRegistries-50</p>

<p class="phone"><cite>NM:</cite> Ajax changes what a web page is, especially
if you do it wrong; google seems to be pretty careful... <br />
... this "mint me a URI for the current state" design seems good...</p>

<p class="phone"><cite>TimBL:</cite> note IE allowed javascript to change the
address bar; security issue</p>

<p class="phone"><cite>NM:</cite> something goes bad when content goes into
executable "run the program and see what it produces" formats rather than
declarative</p>

<p class="phone"><cite>DC:</cite> quite; the Principle of Least Power is
important and underdocumented</p>

<p class="phone"><cite>VQ:</cite> note new work starting in Web
Applications... how do we relate?</p>

<p class="phone"><cite>TBL:</cite> where there's a WG on something, let's let
them do it... <br />
... but let's be sure they know about the Principle of Least Power</p>

<p class="phone"><cite>NM:</cite> (1) within W3C, yes, the TAG can help the
Web Apps work stay declarative etc, but (2) there's stuff going on outside
W3C</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://www.w3.org/DesignIssues/Principles.html">http://www.w3.org/DesignIssues/Principles.html</a>
for Principle of Least Power</p>

<p class="phone"><cite>HT:</cite> how about putting web services and semantic
web under URIs? i.e. perhaps TAG's job is to say how URIs relate to those
two</p>

<p class="phone">(DC tries it in the outliner)</p>

<p class="phone"><cite>DO:</cite> [missed the gist of it]</p>

<p class="phone"><cite>NM:</cite> misunderstandings between this group and
web services practitioners are perhaps not clarified by sticking web services
under URIs... <br />
... one argument I've heard against using URIs is that network effects don't
apply; nobody else needs to refer to this thing, for similar reasons that we
don't routinely use URIs for "that 3rd http header field"</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; DO: much of Web and Web service
development is around stateful resources that have a secondary resource
identifier, which can be identified by just URIs+ frag-ids, but are also
often identified by cookies or WS-A EPRs.</p>

<p class="phone"><cite>DO:</cite> one of the arguments I've heard for
WS-Addressing endpoint references is that it works like cookies: "echo this
back to me so that I can dispatch on it"</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; URIpath?</p>

<p class="phone"><cite>DO:</cite> and dispatching based on qnames in XML
trees is easier than dispatching on URIs . [?]</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; DO: I wonder whether we need that
URI query langauge for getting stuff out of a URI.</p>

<p class="phone">(in what way is it OK that they're not counting on reuse,
timbl?)</p>

<p class="phone"><cite>DC:</cite> the cases where you don't design for reuse
is generally not the Web, though, is it?</p>

<p class="phone"><cite>TimBL:</cite> right; this isn't the web. This is Web
Services, an alternative architecture.</p>

<p class="phone">(scribe hears lots of endpointRefs-NN discussion, but
doesn't have the energy to capture much of it until/unless it's more clearly
in order)</p>

<p class="phone"><cite>DC:</cite> put Security 1st? we'd become very popular
and unpopular... and it's at least as much QA as architecture; in many cases,
the specs are there but not (well) implemented</p>

<p class="phone"><cite>NDW:</cite> let's not. that'll take all the energy
we've got and then some</p>

<p class="phone"><cite>ER:</cite> [forgot/missed?]</p>

<p class="phone"><cite>HT:</cite> it should be in [that diagram?] but it's
not. why not? [?]</p>

<p class="phone"><cite>TBL:</cite> ... passwords in the clear ...</p>

<p class="phone"><cite>HT:</cite> Rigo was quite clear that browsers don't do
XML signature; if they did, the world would be a better place</p>

<p class="phone"><cite>TBL:</cite> with webarch v1, we didn't say "here's the
web architecture; it's complete." we just elaborated on some places where
mistakes had been made often, and where issues had come up a lot. and it was
worth doing.</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_mtg, you wanted to note the
value of diagrams</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; ht, you wanted to ask if we're
confident that security will layer cleanly everywhere</p>

<p class="phone"><cite>HT:</cite> "if the web worked well, layering security
on top would be straightforward; here are the top 6 [say] reasons why it
isn't."</p>

<p class="phone"><cite>ER:</cite> I know lots of people that use the web
*less* today because of the security issues that have come up</p>

<p class="phone"><cite>TBL:</cite> we haven't talked much about the impact on
security of the difference between safe documents and unsafe docs, i.e.
programs</p>

<p class="phone"><cite>HT:</cite> ... on how XSLT is
turing-complete/unsafe...</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; I think Henry's point was the
ability of XSLT to write to local disk, not its turing completness</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST persists in believing there's a
signficant difference between Denial of Service (which follows from Turing
completeness) and other forms of attack with concrete/permanent consequences
(e.g. writing to local disk)</p>

<p class="phone"><cite>TBL:</cite> dynamic HTML should have been a separate
MIME type. The MIME type registration for HTML should have said "don't
execute anything that looks likes a program in here"</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_mtg, you wanted to ask how
whether anybody thinks they can get timbl to *not* talk about security all
the time in TAG meetings 1/2 ;-)</p>

<p class="phone">On the assumption that httpRange-14 is done before we begin
new TAG directions, httpRange-14 is removed from this list.</p>

<p class="phone">(I'm willing to act hopeful)</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; Do we need to talk about XCAP? <a
href="http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-07.txt">http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-07.txt</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST has recently started browsing
apache logs, and was surprised at just how many of the entries are of the
form "GET /scripts/..%c0%2f../winnt/sy</p>

<p class="irc">&lt;<cite>ht</cite>&gt; stem32/cmd.exe?/c+dir HTTP/1.0"</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; rootkits for windows (looking for
known IIS holes)</p>

<p class="phone"><cite>TBL:</cite> on versioning/extensibility, I want to
make sure we get Semantic Web [part of it?] done 1st</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; NM: Lots of people are up to thir
necks in XML, and now need to solve the versionaing problems very
desparately</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Tim: RDF has solved a set of those
problems -- not all. But understanding them is important befroe we try to
talk about veriosning in general.</p>

<p class="phone"><cite>HT:</cite> based on your suggestion, Dan, I looked up
the OWL versioning support; it's very limited.</p>

<p class="phone"><cite>DanC:</cite> no, I mean just RDF itself solves a lot
of versioning problems</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; <a
href="http://www.pacificspirit.com/Authoring/Compatibility/OWLRDFExtensibility.html">http://www.pacificspirit.com/Authoring/Compatibility/OWLRDFExtensibility.html</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; Roy: That looks like yet another entry
in the list which includes RFC3622 and geoprivacy and . . . -- see <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Mar/0081.html">http://lists.w3.org/Archives/Public/www-tag/2005Mar/0081.html</a>
wrt URNsAndRegistries-50</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.rtsp.org/2004/drafts/draft06/draft-ietf-mmusic-rfc2326bis-06.txt">http://www.rtsp.org/2004/drafts/draft06/draft-ietf-mmusic-rfc2326bis-06.txt</a></p>

<p class="phone"><cite>DanC:</cite> there are these .torrent files, no
bittorrent clients don't use a new URI scheme. it's a huge QA issues that
it's impractical to deploy new URI schemes.</p>

<p class="phone"><cite>NM:</cite> right... so is it a feature that deploying
new URI schemes is hard? after all, we said you should think twice before
making new ones</p>

<p class="phone">cf schemeProtocols-49</p>

<p class="phone"><cite>HT:</cite> ah... this RTSP thing
draft-ietf-mmusic-rfc2326bis-06.txt is interesting</p>

<p class="phone"><cite>RF:</cite> though it's sort of a variant of HTTP</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.bittorrent.com/protocol.html">http://www.bittorrent.com/protocol.html</a></p>

<h3 id="item033">namespaceDocument-8 esp XPath F&amp;O namespace doc</h3>

<p class="irc">&lt;<cite>Norm</cite>&gt; The URI for F&amp;O namespace
document: <a
href="http://www.w3.org/2005/04/xpath-functions/">http://www.w3.org/2005/04/xpath-functions/</a></p>

<p class="phone">the www-tag discussion started with <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Apr/0028.html">http://lists.w3.org/Archives/Public/www-tag/2005Apr/0028.html</a></p>

<p class="phone"><a
href="http://www.w3.org/2005/04/xpath-functions/#matches">http://www.w3.org/2005/04/xpath-functions/#matches</a></p>

<p class="phone"><a
href="http://www.w3.org/2005/04/xpath-functions/#string">http://www.w3.org/2005/04/xpath-functions/#string</a></p>

<p class="phone"><cite>DC:</cite> if we do an HTTP GET, we get text/html ,
and if we look in that spec, we'll discover that this is an anchor <br />
... but if we look in the XQuery spec, it says that's a function.</p>

<p class="phone"><cite>NDW:</cite> yes.</p>

<p class="phone"><cite>DC:</cite> both?</p>

<p class="phone"><cite>NDW:</cite> yes.</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; Tim: 1: THis is an achor 2: This is a
Function 3: It's a function but the system gave you an anchor cos you are a
person 4: Oops</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://cgi.w3.org/cgi-bin/headers?auth=on&amp;url=http://www.w3.org/2005/04/xpath-functions/">http://cgi.w3.org/cgi-bin/headers?auth=on&amp;url=http://www.w3.org/2005/04/xpath-functions/</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST thinks pushing on the question of
RDDL semantics is a useful way to go</p>

<p class="phone"><cite>NM:</cite> maybe this document should use a different
media type... say for RDDL... so that the anchors work out. If we just use a
different media type, which doesn't have much subtyping, we lose the fact
that it's HTML, and some browsers don't know they can render it, etc.</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; 1: this is an HTML page 2: This is a
book 3: This is a book but the system gave you an HTML page because you are a
browser 4 oops....</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2001/XMLSchema.html">http://www.w3.org/2001/XMLSchema.html</a></p>

<p class="phone">esp</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; _____________</p>

<blockquote>
<pre>
 &lt;rddl:resource id="xmlschema"
xlink:title="XML Schema schema document" xlink:role="<a
href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</a>"
xlink:arcrole="<a
href="http://www.rddl.org/purposes#schema-validation">http://www.rddl.org/purposes#schema-validation</a>"
xlink:href="XMLSchema.xsd"&gt;

 &lt;div class="resource"&gt;

 &lt;h2&gt;XML Schema&lt;/h2&gt;

 &lt;p&gt;An &lt;a
href="XMLSchema.xsd"&gt;XML Schema schema document&lt;/a&gt; for XML
Schema
 schema documents. This corresponds
to &lt;a href="<a
href="http://www.w3.org/TR/2004/PER-xmlschema-1-20040318/#normative-schemaSchema">http://www.w3.org/TR/2004/PER-xmlschema-1-20040318/#normative-schemaSchema</a>"&gt;the
version published in the Proposed Edited
 Recommendation&lt;/a&gt; revision
of XML Schema.&lt;/p&gt;
 &lt;/div&gt;
 &lt;/rddl:resource&gt;
</pre>
</blockquote>

<p class="irc">&lt;<cite>timbl</cite>&gt; ________________</p>

<p class="phone">(hmmm... shouldn't a properly configured validator client
ask for and get the variant in .xsd format to begin with?)</p>

<p class="phone">HT asks about <a
href="http://www.w3.org/2001/XMLSchema#xmlschema">http://www.w3.org/2001/XMLSchema#xmlschema</a></p>

<p class="phone">or maybe <a
href="http://www.w3.org/2001/XMLSchema.html#xmlschema">http://www.w3.org/2001/XMLSchema.html#xmlschema</a>
; I'm not sure</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; TimB: 5. This is an element (which is
a repr of a function)</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; Henry: 2[whose representation is [this
element you just retrieved]]</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; Norm: The # refers to a function</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; Henry: The machine gets to an acher
which is an element of the rddl name space.</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Quoting from RFC 3986:</p>
<blockquote>
<p> The fragment identifier component of
a URI allows indirect identification of a secondary
resource by reference to a primary resource and additional identifying
information. The identified secondary resource may be some
portion or subset of the primary resource, some view on
representations of the primary resource, or some other resource defined or
described by those representations. A fragment identifier component is
indicated by the presence of a number sign ("#") character and
terminated by the end of the URI.</p>
<pre>
 fragment = *( pchar / "/" / "?" )
</pre>

<p> The semantics of a fragment
identifier are defined by the set of representations that might result
from a retrieval action on the primary resource. The fragment's
format and resolution is therefore dependent on the media type
[RFC2046] of a potentially retrieved representation, even though such a
retrieval is only performed if the URI is dereferenced. If no such
representation exists, then the semantics of the fragment are
considered unknown and are effectively unconstrained. Fragment identifier
semantics are independent of the URI scheme and thus cannot be
redefined by scheme specifications.</p>
</blockquote>

<p class="irc">&lt;<cite>Ed</cite>&gt; Ed thinks Noah is onto something..</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; ht: because of the element, delegated
by the html spec</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; je suis retourner</p>

<p class="irc">&lt;<cite>ht</cite>&gt; We'll call asap</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST wonders what the text/html media
type registration actually _says_</p>

<p class="irc">&lt;<cite>noah</cite>&gt;</p>

<blockquote>
<p> For documents labeled as
'text/html', [RFC2854] specified that the
 fragment identifier designates the
correspondingly named element,
 these were identified by either a
unique id attribute or a name
 attribute for some elements. For
documents described with the
 application/xhtml+xml media type,
fragment identifiers share the same syntax and semantics with other XML
documents, see [XMLMIME], section 5.
</p>
<address> <a
href="http://www.rfc-editor.org/rfc/rfc3236.txt">rfc3236</a>
</address>
</blockquote>

<p class="phone">(I can't find this bit about frag interpretation in the
XHTML spec)</p>

<p class="irc">&lt;<cite>noah</cite>&gt; The above is, I think, the media
type registration for application/xhtml+xml. It is by the way explaining what
rfc2854 has said about text/html. I'm claiming the latter says there is a
precedent for anchors sometimes referring to elements.</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; level</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; concept -&gt; function</p>

<p class="phone">following one's nose from the IANA registry, for text/html,
you get to <a
href="http://www.rfc-editor.org/rfc/rfc2854.txt">http://www.rfc-editor.org/rfc/rfc2854.txt</a></p>

<p class="irc">&lt;<cite>Ed</cite>&gt; Anchor [] -&gt; [] Hypertext</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Yes Dan, and that says "For
documents labeled as text/html, the fragment identifier</p>

<p class="irc">&lt;<cite>noah</cite>&gt; designates the correspondingly named
element;"</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; element dom ('&lt; ... id="htm"&gt;')
info set</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; bits = 0011001000011011001 binary
stream</p>

<p class="phone">section 3 Fragment Identifiers of RFC2854 says "For
documents labeled as text/html, the fragment identifier designates the
correspondingly named element"</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; timbl, you wanted to try Roy's
model as a stack</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2005/06/13-tag123.html">http://www.w3.org/2005/06/13-tag123.html</a></p>
<iframe width="90%" height="50%" src="http://www.w3.org/2005/06/13-tag123.html">
Semantic Levels table
</iframe>

<p class="irc">&lt;<cite>dorchard</cite>&gt;
level-&gt;Concept-&gt;Anchor-&gt;element-&gt;Bits ?</p>

<p class="irc">&lt;<cite>ht</cite>&gt; yes</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; XInclude is defined as an infoset
transformation; it's at level 3</p>

<p class="phone">I think ...xsd#type(foo) is not to short but too long; it
should be ...xsd#foo</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_mtg, you wanted to ask about
crossing levels... suppose I want to make RDF statements about the hypertext
document, e.g. revision control stuff ala cvs blame</p>

<p class="phone">hmm... isn't a type one of the components in a schema? ah...
I guess not. hmm.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; We have type definition schema
components</p>

<p class="irc">&lt;<cite>ht</cite>&gt; anything else is sloppy talk</p>

<p class="phone">Hmm... when I brought this namespace doc up, I pretty much
expected to go down all these holes... for a little bit, I thought we
actually got somewhere. Now I'm not so sure we haven't just re-played this
conversation for the N-hundredth time. I'm surely no more sure about what to
*do* in the case of the XQuery F&amp;O namespace doc.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; DanC, give me a simple n3 version of a
statement about Tim's car, e.g. that it is Tim's car, please</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; I have at least one technical
question about the F&amp;O namespace doc too that's not at all
philosophical</p>

<p class="phone">{ :tcar :owner :tim }.</p>

<p class="phone">or just { tcar owner tim}</p>

<p class="irc">&lt;<cite>ht</cite>&gt; with URIs? possible?</p>

<p class="irc">&lt;<cite>ht</cite>&gt; all three of those are URIs?</p>

<p class="phone">yes, they're all URI references, which stand for URIs w.r.t.
the relevant base</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Larry Masinter, c. 1976: "A program is
not its listing"</p>

<p class="phone">TimBL and RF just lit up in agreement about something...</p>

<p class="phone"><cite>scribe:</cite> something about pointing up between
levels</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; are we moving to a new topic?</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; Hard to tell.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; "Hard cases make bad law"</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; I hear versioning is going to join our
discussion shortly :)</p>

<p class="irc">&lt;<cite>ht</cite>&gt; yup</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; lol</p>

<p class="phone">(hmm... we agreed to stop at 5pm earlier.)</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; How about versioning of
range-14?</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; Can we ignore some _known_ 14s
instead?</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; how about versionable levels of
14?</p>

<p class="phone">somewhat tentatively PROPOSED: to address httpRange-14 by
noting a few different levels... a URI can refer to a high-level thing, and
"point" to something at a lower level, e.g. an anchor or an element</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; s/or an element</p>

<p class="phone"><cite>scribe:</cite> and to say that yes, content
negotiation between .html and .rdf works</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; and mixed namespace stuff works.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; My stab at saying this is that there
are two relations we care about: identification, which relates URIs to things
(was 'resources'), and 'pointing', which relates URIs to anchors</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; A URI can *identify* a thing, and
also "point to" an anchor.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; "points to" is the answer to "how
should I represntat this to a user who has followed a hypertext link"?</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST just wants a gloss on 'anchor' --
is it fair to say that if I have (a representation of) an information
resource, and its media type, I will know what the set of possible anchors
is?</p>

<p class="phone">oops... "refer to" was a mistake; I should have said: a URI
can identify a high-level thing...</p>

<p class="phone"><cite>NM:</cite> let's please do continue to work on
examples of these</p>

<p class="phone">(is <a
href="http://www.w3.org/2005/06/13-tag123.html">http://www.w3.org/2005/06/13-tag123.html</a>
already referred to? if not, it is now)</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; A subset of information resources
have non-trivial anchors.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; ... beyond the anchor which is the
whole resource</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; If ...#tcar is Tim's car and
...#tcar can be an anchor (which is part of a document) and if all documents
trivially have an anchor that is the whole document, then ...ncar (no hash)
is Norm's car and ...ncar has a representation.</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; Yes?</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; But not before dinner :-)</p>

<p class="irc">&lt;<cite>ht</cite>&gt; So is it fair to say that w/o a media
type, there is only one anchor per information resource</p>

<p class="irc">&lt;<cite>ht</cite>&gt; where does that leave RDF. . .</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Oh bother, said Pooh</p>

<p></p>
<h2  id="jun15am">Wed 15 Jun 2005 -- morning</h2>
<dl>
  <dt>Scribe</dt>
    <dd>Ed</dd>
</dl>

<h3 id="item014">TAG Directions (continued)</h3>

<iframe width="80%" height="50%" src=
"http://lists.w3.org/Archives/Public/www-archive/2005Jun/att-0007/tag-directions.html">
<em><a href="http://lists.w3.org/Archives/Public/www-archive/2005Jun/att-0007/tag-directions.html">outline</a></em>
</iframe>

<p class="phone"><cite>Vincent:</cite> What do we do with this list?</p>

<p class="phone">- it helps us do our work</p>

<p class="phone">-or-</p>

<p class="phone">- it may also be the outline of a document we need to
publish.</p>

<p class="phone"><cite>Vincent:</cite> This is a 12 month issues list.</p>

<p class="phone"><cite>Ed:</cite> Should we try and reduce the list?</p>

<p class="phone"><cite>TB:</cite> this should be a live document, and we
should review periodically.</p>

<p class="phone"><cite>Noah:</cite> Pick 3-5 to start with, we may need to
narrow down to 2-3.</p>

<p class="phone"><cite>TBL:</cite> Healthy for us to have more than one
thread.</p>

<p class="phone"><cite>Vincent:</cite> This list is a guideline for our work,
we need to go through this and set priorities. Pick a few 2,3 or 4 to work on
over the next few months.</p>

<p class="phone">Vote was taken to prioritize list... outcome was;</p>

<p class="phone">top items selected were ;</p>

<p class="phone">1) Web applications</p>

<p class="phone">2) Security</p>

<p class="phone">3) Semantic Web</p>

<p class="phone">http-Range-14 is assume to remain the 'urgent' priority</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; Ed: lots of people have
javascript turned off... maybe 18% of the visitors to HP web sites</p>

<p class="phone"><cite>Henry:</cite> solving issues such as Javascript
interop and SVG native in browsers should also be considered.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; TimBL: Why do people hold their noses
wrt the DOM?</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST: Trying to do a
language-independent API led to bad APIs for each of the language-specific
binding</p>

<p class="phone"><cite>TBL:</cite> W3C as a working group could help produce
a lot more tests around DOM.</p>

<p class="phone">W3C needs to be involved in the release of browswers in
order to make this work. We havent been involved in the past.</p>

<p class="phone"><cite>Noah:</cite> There is a real trap in not getting in
touch with our customers/vendors to find out where they're trying to take
this stuff.</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; E4X example: <a
href="http://weblog.infoworld.com/udell/2004/09/29.html">http://weblog.infoworld.com/udell/2004/09/29.html</a></p>

<p class="phone"><cite>HT:</cite> seems to me that I feel like there is an
opportunity to do it another way, other than fixing java script.</p>

<p class="phone">HT/Dan: if we could get the browser creators to sign-up for
fixing the interop problem, there would be a large benefit.</p>

<p class="phone"><cite>Vincent:</cite> On web applications the group doesnt
exist yet and even the charter doesnt exist yet.</p>

<p class="phone">If we can comment on the charter and make sure it address
what we feel is important.</p>

<p class="phone">Once the group starts we can give input on the issues with
the team. Helping them start without producing something signficant ourselves
(work through the wg)</p>

<p class="phone"><cite>Vicnent:</cite> Other topics we can do in the
short-term?</p>

<p class="phone"><cite>Dan:</cite> Should we be involved with the web apps
charter?</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.cairographics.org/xr_ols2003/">http://www.cairographics.org/xr_ols2003/</a></p>

<p><a name="action013" id="action013"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Dan to
get web applications charter and share it with the TAG for review. [recorded
in <a
href="http://www.w3.org/2005/06/15-tagmem-minutes.html#action01">http://www.w3.org/2005/06/15-tagmem-minutes.html#action01</a>]</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST finds the E4X example
underwhelming -- like XQuery, but with idiosyncratic syntax</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.mozilla.org/projects/xul/">http://www.mozilla.org/projects/xul/</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; Avalon: <a
href="http://winfx.msdn.microsoft.com/library/en-us/wcp_conceptual/winfx/port_tech_wcp.asp">http://winfx.msdn.microsoft.com/library/en-us/wcp_conceptual/winfx/port_tech_wcp.asp</a></p>

<p class="phone"><cite>Noah:</cite> We need to look for things that stress
web architecture</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; I'd like to hear from Zeldman (
<a href="http://www.zeldman.com/">http://www.zeldman.com/</a> ) on javascript
interoperability and webapps</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://javascript.weblogsinc.com/entry/1234000893027332/">http://javascript.weblogsinc.com/entry/1234000893027332/</a></p>

<p class="phone"><cite>Vincent:</cite> We are also looking at moving from
Procedural to declarative languages</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; Haystack: <a
href="http://haystack.lcs.mit.edu/">http://haystack.lcs.mit.edu/</a></p>

<p class="phone"><cite>TBL:</cite> Lots of people have reversable xslt
processes.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Brendan Eich on "Remixable
Applications": <a
href="http://javascript.weblogsinc.com/entry/1234000720046078">http://javascript.weblogsinc.com/entry/1234000720046078</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; 'Remixable applications' turns out to
mean Greasemonkey</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://greasemonkey.mozdev.org/">http://greasemonkey.mozdev.org/</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; Adenine: <a
href="http://haystack.lcs.mit.edu/papers/sow2002-adenine.pdf">http://haystack.lcs.mit.edu/papers/sow2002-adenine.pdf</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; NM: Flash was less of a threat because
it was typically only a part of a page, google could still get you there, but
that's changing</p>

<p class="irc">&lt;<cite>ht</cite>&gt; ... We're seeing pages which are 100%
flash, so nothing to get ahold off -- Avalon same deal</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; TRAMP: <a
href="http://www.aaronsw.com/2002/tramp">http://www.aaronsw.com/2002/tramp</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; dave, we'll dial in</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; thx!</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; the 3 that emerged as popular
were: security, Web Apps, Semantic Web</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; others that got some votes...
Side effects, user identity, state, context</p>

<p><a name="action024" id="action024"></a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <strong>ACTION:</strong> VQ to
invite Dean to a TAG teleconference [recorded in <a
href="http://www.w3.org/2005/06/15-tagmem-minutes.html#action02">http://www.w3.org/2005/06/15-tagmem-minutes.html#action02</a>]</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; timezone challenges noted</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DO: note the new mailing list on
web description formats; seems relevant to web apps</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/public-web-http-desc/">http://lists.w3.org/Archives/Public/public-web-http-desc/</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DO: these description formats
are, for example, for the Amazon search service; URI encoding conventions,
etc.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (I'm kinda mystified by this; I
thought WSDL was supposed to do this stuff)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; NDW: our webapps discussion was
more about gmail, google maps... client-side dynamic stuff</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DO: hmm... the more stuff that's
done in turing-complete formats, the lest you can do with declarative stuff
[er... something like that]</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: exactly. [The Principle of
Least Power] I think the TAG hasn't written this down the way we should</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; NM: have you seen all these
services layered on google maps? cheap gas and all...</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Mark Nottingham's intro use cases for
web description (HST still not really getting what the subject matter is . .
.): <a
href="http://www.mnot.net/blog/2004/06/14/desc_usecases">http://www.mnot.net/blog/2004/06/14/desc_usecases</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; --- break for :15, after which
resume with security</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; I've collected a list of web
descriptions <a
href="http://www.pacificspirit.com/Authoring/REST/">http://www.pacificspirit.com/Authoring/REST/</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; we asymtotically resume, a
semi-spontaneous security discussion having broken out during the break</p>

<h3 id="item025">Security</h3>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.faqs.org/rfcs/rfc2617.html">RFC 2617 - HTTP Authentication: Basic and Digest Access Authentication</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: state of the art in auth is:
forms + cookies.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ... the security properties are
just like HTTP basic, but the UI for HTTP basic is that crappy little dialog
with (a) no trademark logo, and (b) no "if you forgot your password..."
stuff</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: digest authenticaion has
better security properties, but has the UI problem</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ... the 1999 submission that
suggested mixing digest auth with forms is still a good idea, IMO</p>

<p class="phone"><cite>TBL:</cite> The virus problem is software on your pc
that you didnt realize you asked for.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: another security issue is
that with basic auth, the server doesn't store the password, but only an
encrypted form of it. But with md5, it has to store the password</p>

<p class="phone"><cite>ht:</cite> you only want as much identification as you
want/need.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; RF: yes, that's a bug in the MD5
spec that, 2 months into the development, the authors said there was "too
much deployment to make such a change". argh!</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://www.identityblog.com/">http://www.identityblog.com/</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: so shared-secret auth could
be a lot better</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: then there's assymetric-key
symmetric key... that's deployed for SSL certs...</p>

<p class="phone"><cite>ht:</cite> the security problem would get better by
solving the identiy issue.</p>

<p class="phone"><cite>Dan:</cite> lets work hard to stamp out passwords in
the clear</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://www.identityblog.com/stories/2004/12/09/thelaws.html">http://www.identityblog.com/stories/2004/12/09/thelaws.html</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: if we could just do those 2
things, that would be good: (1) avoid passwords in the clear, (2) don't use
turing-complete formats unless you have to</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.securityfocus.com/infocus/1688">http://www.securityfocus.com/infocus/1688</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.securityfocus.com/infocus/1691">http://www.securityfocus.com/infocus/1691</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ... lots of brainstorming, not
well-recorded ...</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Public key crypto, phishing,....</p>

<p class="phone"><cite>discussion:</cite> Should we update the web arch or
add additional books to volumne 2.</p>

<p class="phone"><cite>Noah:</cite> Findings is a good way to start
collecting these things, we can later determine if it rises to the level to
update the arch.</p>

<p class="phone"><cite>Dan:</cite> See
www.w3.org/DesignIssues/Principles.html</p>

<p class="irc">&lt;<cite>noah</cite>&gt; First draft of minutes from
yesterday morning have been posted at: <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0031.html">http://lists.w3.org/Archives/Public/www-tag/2005Jun/0031.html</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/DesignIssues/Principles.html#PLP">http://www.w3.org/DesignIssues/Principles.html#PLP</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; I will review PLP.</p>

<p><a name="action033" id="action033"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Roy and
Norm to review <a
href="http://www.w3.org/DesignIssues/Principles.html#PLP">http://www.w3.org/DesignIssues/Principles.html#PLP</a>
[recorded in <a
href="http://www.w3.org/2005/06/15-tagmem-minutes.html#action03">http://www.w3.org/2005/06/15-tagmem-minutes.html#action03</a>]</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://ai.eecs.umich.edu/cogarch2/prop/declarative-procedural.html">http://ai.eecs.umich.edu/cogarch2/prop/declarative-procedural.html</a></p>

<p><a name="action042" id="action042"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Dan to
write a report on the state of the art authentication in the web. [recorded
in <a
href="http://www.w3.org/2005/06/15-tagmem-minutes.html#action04">http://www.w3.org/2005/06/15-tagmem-minutes.html#action04</a>]</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; "A Report on the Sorry State of
Authentication in the Web"</p>

<p class="phone">Dan notes this is as much a recruiting document to help
solicit input from additional experts in the area.</p>

<p class="phone"><cite>TBL:</cite> Need to inform users and users and those
who write browsers <br />
... suggests TAG should make suggestions, address bar and Icon changes to
denote links/security. <br />
... some actions in Browser should not be allowed. For example, hover over
link should show the true link at the bottom of the browser and the browser
should not allow for it to be over-ridden.</p>

<p class="phone"><cite>Dan:</cite> The first time the software structure cam
to his mind was with MP3. Real networks and Microsoft have a little battle
over who's software gets to run.</p>

<p class="phone">Dan the two keep over-writing the registry as to who the top
of the heap is.</p>

<p class="phone"><cite>TBL:</cite> Registry for MIME type 1 <br />
... Bug over riding DLLs use by other people.</p>

<p class="phone"><cite>discssion:</cite> Microsoft issues with DLL's</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (does this meeting have time to
explain to me how .Net purports to address "dll hell"? it has something to do
with assemblies, but I don't grok as deeply as I'd like)</p>

<p class="phone"><cite>TBL:</cite> Auditing. Its both a symptem of auditing
the problem as well as.. <br />
... We should put on our list, the voice browser security note. <br />
... have the javascript security policies been reviewed? eg "a script can
only open a TCP connection to the site from whence it came"</p>

<p class="phone"><cite>HT:</cite> its difficult to apply style sheets to java
script pages.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: I think browsers only run
XSLT stylesheets from the same site that the document came from</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; TBL: so the community has bought
into security-by-domain</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (good question, HT, what about
the grid?)</p>

<p class="phone"><cite>TBL:</cite> If your picking up a style sheet and it
wasnt constraigned and then you referred back to a local copy but when you do
an actual HHTP referance to that there is a forward.</p>

<p class="phone">(or an alias)</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Regarding TBL's question as to
whether JavaScript policies have been reviewed: I just checked with Sam Ruby,
who was secretary for ECMAScript standardization effort. To has knowledge,
that effort was scoped to the language only: no formal standardization of
DOM, security models, etc.</p>

<p class="phone">Some plug-ins are trusted (like PDF) where others are less
trusted because they are scripting languages which are executed locally (such
as flash).</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; [NEWS] Macromedia Flash Plugin Can
Read Local Files</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.derkeiler.com/Mailing-Lists/Securiteam/2002-08/0030.html">http://www.derkeiler.com/Mailing-Lists/Securiteam/2002-08/0030.html</a></p>

<p class="phone"><cite>HT:</cite> A point for discussion. The UK funding
bodies are particularly concernced about the grid, the semantic web, and the
web. Are there technical architectural issues around remote servies?</p>

<p class="phone"><cite>Vincent:</cite> We conclude our discussion on
security. There is certainly interaction between the grid, ws and the web in
general. <br />
... We have addressed with some success authentication/passwords and
principles of least power</p>

<p class="irc">&lt;<cite>noah</cite>&gt; A question arose before about Flash
data access.</p>

<p class="irc">&lt;<cite>noah</cite>&gt; From the macromedia site: <a
href="http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14213">http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_14213</a></p>

<p><a name="action052" id="action052"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Dan to
draft "Dont use passwords in the clear" [recorded in <a
href="http://www.w3.org/2005/06/15-tagmem-minutes.html#action05">http://www.w3.org/2005/06/15-tagmem-minutes.html#action05</a>]</p>

<p class="irc">&lt;<cite>noah</cite>&gt; "For security reasons, a Macromedia
Flash movie playing in a web browser is not allowed to access data that
resides outside the exact web domain from which the SWF originated.</p>

<p class="irc">&lt;<cite>noah</cite>&gt; As an enhancement to Macromedia
Flash Player 7, domains must be identical for data to be read. With this
change a sub-domain can no longer read data from a parent domain and vice
versa."</p>

<p class="irc">&lt;<cite>noah</cite>&gt; While this doesn't explicitly
discuss access to local files, it leads me to believe that Flash does indeed
do what one would expect: I.e. to run in a different mode when a .SWF file is
launched through the web vs. when run locally. This all seems quite similar
to Java.</p>

<p class="phone">We will save Semantic web for tomorrow</p>

<p class="phone">After lunch we'll address 49</p>

<p class="phone">break for lunch resume at 1:15</p>

<p class="irc">&lt;<cite>noah</cite>&gt; BTW: Looking back at that "Flash can
read local files" report, it was clearly listed as a bug.</p>

<p>Outline after discussion:</p>

<iframe width="80%" height="50%" src=
"http://lists.w3.org/Archives/Public/www-archive/2005Jun/att-0010/tag-directions.html">
<em><a href="http://lists.w3.org/Archives/Public/www-archive/2005Jun/att-0010/tag-directions.html">outline</a></em>
</iframe>

<h2 id="jun15pm">Wed 15 Jun 2005 -- afternoon</h2>
<dl>
  <dt>Scribe</dt>
    <dd>Norm</dd>
</dl>

<h3 id="item013">schemeProtocols-49</h3>

<p class="phone">Noah has produced a draft finding</p>

<p class="irc">&lt;<cite>noah</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0024.html">http://lists.w3.org/Archives/Public/www-tag/2005Jun/0024.html</a></p>

<p class="irc">&lt;<cite>noah</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0025.html">http://lists.w3.org/Archives/Public/www-tag/2005Jun/0025.html</a></p>

<p class="irc">&lt;<cite>noah</cite>&gt; Actual draft is at <a
href="http://www.w3.org/2001/tag/doc/SchemeProtocols.html">http://www.w3.org/2001/tag/doc/SchemeProtocols.html</a></p>

<p class="phone"><cite>NM:</cite> Not polished even as a first draft, but
useful for determining if it's going in the right direction <br />
.... Motivated in part by P2P and streaming. Vague sense that the kind of
content that flows over http isn't the only kind of content that might
exist.. <br />
.... So what are the right ways to go beyond or leverage http? <br />
.... Review can be divided into two aspects: first, is there anything that's
factually wrong? <br />
.... Second aspect: is it beginning to tell a story that the TAG wants to
tell</p>

<p class="phone"><cite>DO:</cite> wonders what the motivation/problem is that
this finding addresses.</p>

<p class="phone"><cite>NM:</cite> Impression is that for example, some P2P
protocols are integrating better into the web than others. <br />
.... For streaming, does it make sense to have lots of new protocols, or does
it make sense to get a document with a particular media type <br />
.... We've never really clearly said, other than looking back, what are the
guidelines for creating new protocols that you might need. And what are the
other things that you might need to know that aren't in AWWW</p>

<p class="phone"><cite>DC:</cite> It would suit my taste better if you'd
talked about P2P or streaming <br />
.... right up front</p>

<p class="phone"><cite>NM:</cite> That's meant to be in 3rd para of the
preface</p>

<p class="phone"><cite>HT:</cite> Section 4 maybe belongs in an appendix, but
as far as the questions you are going to answer, I don't need to know this
stuff about gateways <br />
.... How to get an FTP URI with the HTTP protocol isn't on the shortest path
to the goal</p>

<p class="phone"><cite>VQ:</cite> The correspondence between the two
protocols is valuable. <br />
.... The gateway itself isn't very interesting, but the equivalence between
the operations (or sequence of operations) may introduce the issue of
inventing new protocols when others are already available</p>

<p class="phone"><cite>NM:</cite> One bit of advice: consider similarity to
the operations available in other protocols <br />
.... Because http allows you to carry an HTTP URI, you can do this gateway
without having to invent a new URI <br />
.... Another bit of advice: ok, if you're going to build a p2p protocol, you
might want to make it easy to carry other people's URIs around</p>

<p class="phone"><cite>DC:</cite> Do you have anything you feel is a short
summary (one or two sentences)</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to point out a
few comments about misleading bits, and to express a lack of motivation. a
story is traditional, by now.</p>

<p class="phone"><cite>NM:</cite> I think the one I just mentioned might be
one <br />
.... last paragraph before ednote in Chapter 4</p>

<p class="phone"><cite>DC:</cite> "Protocols designed to be ... such URI
names"</p>

<p class="phone"><cite>NM:</cite> And in section 3 <br />
.... The second paragraph</p>

<p class="phone">NM/DC disagree about the practice of 404ing namespace
URIs</p>

<p class="phone"><cite>NM:</cite> Creating a scope in a language should be a
lightweight thing to do.</p>

<p class="phone"><cite>DC:</cite> This paragraph is terribly misleading.</p>

<p class="phone"><cite>NM:</cite> I'd be happy to say the "should provide
servers" part a little more strongly <br />
.... What is there that keeps me Noah at IBM from naming my URIs with someone
else's DNS? <br />
.... I'm writing it down here.</p>

<p class="phone"><cite>DC:</cite> I think that's already covered</p>

<p class="phone"><cite>NM:</cite> I was trying to say that you never want to
preclude someone from doing the right thing which is to actually deploy</p>

<p class="phone"><cite>DC:</cite> It still feels like obscure cases</p>

<p class="phone"><cite>NM:</cite> To me it's important to say where the rules
come from. <br />
.... It's a deep architectural question about what it means to mint URIs that
don't have servers</p>

<p class="phone"><cite>DC:</cite> The part about not using someone else's DNS
is in the URI Ownership section of AWWW</p>

<p class="phone"><cite>NM:</cite> The larger way to look at this is a way of
building things from first principles <br />
.... Then you can look at the problems: how to get P2P on the web, what to do
with streaming media</p>

<p class="phone"><cite>DC:</cite> Maybe it'll work better in later drafts <br
/>
.... I don't have an overall sense</p>

<p class="phone"><cite>RF:</cite> For me it's still backwards, you don't
select URIs based on protocols or vice-versa <br />
.... There exist resources in the universe and there are methods of accessing
them. To a certain extent, the methods cause them to be named. One way to
achieve that is to map a URI scheme, simply an identifier, to the methods <br
/>
.... A client looks up a scheme name and passes it to a handler. The handler
can then do...basically anything</p>

<p class="phone"><cite>NM:</cite> I'm trying to nail down what guidance we
give to developers about hot to do that handler</p>

<p class="phone"><cite>RF:</cite> If you write the document such that it
reflects the way things actually occur...</p>

<p class="phone">Scribe lost details</p>

<p class="phone"><cite>RF:</cite> You have to go from the approach of the
client: what does it do with the list of scheme names? It has a default
handler, that handler is going to perform a set of procedures for doing
operations <br />
.... And then you look at the responsibilities of the handler at this point.
What does it have to do</p>

<p class="phone"><cite>NM:</cite> Where is the nature of the default
defined</p>

<p class="phone">Some discussion here about origin servers and authoritative
requests</p>

<p class="phone"><cite>RF:</cite> It's what the server currently represents
as the representation of that resource</p>

<p class="phone"><cite>NM:</cite> I thought the architecture said if you
really got a 200 back from the origin server, you are authorized to say that
that was a representation of that resource <br />
.... That it was in some sense what that URI was naming</p>

<p class="phone"><cite>RF:</cite> No. If I give you an ID for a social
security number and you use that to get RF's tax records, does that give you
my tax records or a document with current information about my taxes, ...</p>

<p class="phone"><cite>HT:</cite> What it gives you is an authoritative
representation of that resource at that time</p>

<p class="phone"><cite>NM:</cite> So there's no way that I could say that
that's a representation of another resource (as opposed to the real one) <br
/>
.... Not all URI schemes work that way is my impression. The UUID scheme
doesn't say a lot about authoritative representations</p>

<p class="phone"><cite>RF:</cite> Not all schemes are grounded in
representations (or protocols) <br />
.... When I say there's an http information space, it doesn't depend on the
version of the http protocol</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; ht, you wanted to ask about the
reality of this ftp-over-http example</p>

<p class="phone"><cite>HT:</cite> Is this ftp-over-http example really
important <br />
.... Stipulate that it's all true, does it have any interest in practice <br
/>
.... Are there any such gateways in the universe and are they actually
used</p>

<p class="phone">RF/DC: oh yeah</p>

<p class="phone"><cite>DC:</cite> The servers come out of the box configured
to be origin servers</p>

<p class="phone"><cite>HT:</cite> Point me to a server that does work as a
proxy server</p>

<p class="phone"><cite>RF:</cite> It's used in almost every large corporation
as an intranet/extranet buffer <br />
.... The reason you can't see this from the outside world is that they have
been configured *not* to look like proxy servers</p>

<p class="phone"><cite>DC:</cite> Almost all the APIs have variables you can
set to do this</p>

<p class="phone"><cite>NM:</cite> Part of the reason I brought this up was
because the architecture allows it we ought to describe it <br />
.... But really the question is, should I give an http: scheme name to
something that's actually in bittorrent</p>

<p class="phone"><cite>TBL:</cite> The rules are written through the
evolution of the architecture <br />
.... When you look at whether your going to make a bittorrent scheme or
support bittorrent with http URIs, you're making some tradeoffs</p>

<p class="phone"><cite>NM:</cite> I didn't mean to set down rules, I meant to
explore what the tradeoffs are</p>

<p class="phone"><cite>DC:</cite> I wouldn't talk about one protocol fitting
in another, I'd talk about accessing representations <br />
.... You have to motivate generality, and you've only done that about
representations</p>

<p class="phone"><cite>DO:</cite> I wanted to comment on defaulting. That's
not written down but everyone uses it. The operation you use is also
defaulted. Using http: doesn't imply doing a get.</p>

<p class="phone"><cite>NM:</cite> I disagree with the second</p>

<p class="phone"><cite>HT:</cite> It's interesting to note that linkcheck
does HEADS not GETs</p>

<p class="phone"><cite>NM:</cite> I agree with Henry. The reason GET is a
default is because browsing is the most common thing we do. But for any of
them, we could have an application with different defaults <br />
.... If I was handed a 'qrs:' scheme, where would I get started? The scheme
should be registered at IANA. For some of those schemes, the scheme documents
would be a lot like the document for http.</p>

<p class="phone"><cite>RF:</cite> Each specification defines what it knows
about the universe, it doesn't define the whole universe and then itself <br
/>
.... Good practice moving forward is to separate the scheme specification and
the protocols <br />
.... The scheme specification should point to a set of protocols (e.g., http
and https). And should also describe the set of procedures that are used to
map from identifiers in that scheme space to resources available via that
protocol or set of protocols <br />
.... The resources "just are". These are the associated set of access
mechanisms.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (not sure they "just are")</p>

<p class="phone"><cite>DO:</cite> The other thing that I was going to suggest
was that in the Arch Document there have often been stories. It would be good
to have a story here with P2P or streaming.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; +1 tell us a story, uncle
Noah</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to suggest 2
or 3 things: (1) if (but *not* only if) you get a 200 on port 80, you have a
representation of <a href="http:/">http://...</a> (2) the Internet community
has delegated</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Social relationships involved in
the relation between a URI and a representation are of quite different for
for different protocols. Eg it takes technology AND social agreement to make
HTTP 200 responses definitive, but the concepts of trust are very different.
The protocols used to be the master thing, until the scheme had been used for
naming a lot of things -- now the protocol is secondary and can be upgraded,
preserving the scheme.</p>

<p class="phone"><cite>TBL:</cite> You can be held accountable for http:
200's because there are social relationships behind the servers and DNS, etc.
<br />
.... It's possible that within the life of the TAG, it'll be necessary to
introduce a P2P version of http <br />
.... But that may come with caveats <br />
.... You may need a button on your browser that says you want the definitive
version (for your home banking)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0032.html">comments
on SchemeProtocols.html , transcribed from my paper copy</a></p>

<p class="phone"><cite>TBL:</cite> The trust may be very different. We'll end
up morphing the trust situation in a very positive way or a very negative
way.</p>

<p class="phone"><cite>NM:</cite> The metapoint I'm trying to raise that just
perhaps the story you just told is an important story that's not well
articulated <br />
.... What I wanted to do in heading off into this space is to tell stories
like this</p>

<p class="phone">Note to scribe: what RF said above about http: and https:
may not have been what he meant to say</p>

<p class="phone">NM drifts towards httpRange-14</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; I missed it</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; ht, you wanted to parallel this
with the streaming media/rtps story</p>

<p class="phone"><cite>HT:</cite> What Roy is calling the http: information
space has the defining property that it has the DNS+hierarchy naming
structure. The information space that define the http information space are
about an organization of a relationship between identifiers and the resources
they identify. This is completely independent of the protocol.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; a suggestion: the http scheme is
an agreement that there's a space of information resources, where one part of
the name identifies a party, usually a domain owner, who gets to say the
relationship between those names and representations that correspond to
them</p>

<p class="phone"><cite>HT:</cite> That's an interesting perspective. What I'm
concerned about is the question, "if that's true, it's very strongly at odds
with the naive users perspective which is that http is about what we call
representations" <br />
.... retracts that statement for the moment :-)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (re noah's question, I care in
the case of representation access, but the case of operations in general is
too academic; please pay one story before we spend the time to answer. 1/2
;-)</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to ask that we
go thru the bittorrent case</p>

<p class="phone"><cite>NM:</cite> Do people believe that the operations come
with the scheme or the protocoll.</p>

<p class="phone"><cite>DC:</cite> That's not a small question,that's an
enormous question</p>

<p class="phone">Answer not obvious.</p>

<p class="phone"><cite>DC:</cite> Let's do daap: first (Digital Audio Access
Protocol)</p>

<p class="phone">Apparently it is *exactly* the same as http 1.1.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; "The Digital Audio Access
Protocol, or DAAP, is used by Apple's iTunes 4.0 digital audio player to
share music across a network or the Internet. It provides capability not only
to stream audio from one computer to another, but also to list the host's
playlists so that they can be accessed remotely." -- <a
href="http://daap.sourceforge.net/">http://daap.sourceforge.net/</a></p>

<p class="phone"><cite>DC:</cite> They came up with a different scheme so
that they could get injected into the software deployment story</p>

<p class="phone">The Mac dispatches on scheme name</p>

<p class="phone"><cite>TBL:</cite> They forked http and added a few bits</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://daap.sourceforge.net/docs/index.html">http://daap.sourceforge.net/docs/index.html</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (I was looking at <a
href="http://them.ws/post/775/what_is_daap__">http://them.ws/post/775/what_is_daap__</a>
)</p>

<p class="phone"><cite>VQ:</cite> Maybe bittorrent is a better example</p>

<p class="phone"><cite>DC:</cite> Anyway, daap seems like a way not to do it
<br />
.... Nice story: My kid wrote a nice story, it gets insanely popular and
automatically switches to bittorent so the load on my server only goes up a
little bit</p>

<p class="phone"><cite>HT:</cite> I find a URI for your kids story, I click
on it, the browser waits a few seconds and says, gee this sucks, aborts that,
and initiates a bittorrent request</p>

<p class="phone"><cite>DC:</cite> bittorrent isn't the same as gnutella, it
isn't entirely peer-to-peer</p>

<p class="phone"><cite>DO:</cite> There's one tracker per-distributed
resource</p>

<p class="phone"><cite>DC:</cite> I'm the guy who has to publish the seed</p>

<p class="phone"><cite>HT:</cite> You may have to do something and then my
client has to automatically try to use bittorrent</p>

<p class="phone">Scribe may have missed a bit</p>

<p class="phone"><cite>TBL:</cite> Speculative design of a fallback system:
Dan's server when it hits a certain load it automatically sends back a
response that tells the client to switch to bittorrent</p>

<p class="phone"><cite>DC:</cite> I think Henry's design is fundamentally
better because the other way I have to satisfy a TCP request from my server
<br />
.... I'd put a .torrent file on my server that would have the address of the
tracker and some starting servers. <br />
.... The bittorrent protocol has been upgrade to be trackerless</p>

<p class="phone"><cite>HT:</cite> My question is what *I* do.</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.bittorrent.com/protocol.html">http://www.bittorrent.com/protocol.html</a></p>

<p class="irc">&lt;<cite>noah</cite>&gt; News article on trackerless
BitTorrent: <a
href="http://www.betanews.com/article/BitTorrent_Creator_Opens_Online_Search/1117065427">http://www.betanews.com/article/BitTorrent_Creator_Opens_Online_Search/1117065427</a></p>

<p class="phone"><cite>DC:</cite> In http, the *publisher* gets to say what
the right answer is. In this other world, the social conventions are totally
different. It becomes the world that gets to say what the representation
is</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; more general... <a
href="http://www.bittorrent.com/introduction.html">http://www.bittorrent.com/introduction.html</a></p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://joi.ito.com/archives/2005/05/20/bittorrent_goes_trackerless.html">http://joi.ito.com/archives/2005/05/20/bittorrent_goes_trackerless.html</a></p>

<p class="phone"><cite>DO:</cite> A lot of people don't use google, they use
bittorrent sites that do a better job of searching bittorrent files. <br />
.... And they provide comments</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; "While it is called trackerless, in
practice it makes every client a lightweight tracker. A clever protocol,
based on a Kademlia distributed hash table or "DHT", allows clients to
efficiently store and retrieve contact information for peers in a
torrent."</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Quote was from <a
href="http://www.bittorrent.com/trackerless.html">http://www.bittorrent.com/trackerless.html</a></p>

<p class="phone"><cite>HT:</cite> We're morphing this question into a P2P
version of access to the HTTP information space</p>

<p class="phone"><cite>ER:</cite> It does, it's just a really bad idea</p>

<p class="phone">Some discussion of IPR, aborted</p>

<p class="phone"><cite>TBL:</cite> trackerless bittorrent has a distributed
hash table in it <br />
.... If we replace http with a not-DNS hierarchy system then we'll end up
with a different social system. <br />
.... When you use http, you trust the publisher, when you use bittorrent, you
trust the other users running bittorrent</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; But you can do a checksum or sig
check on the downloaded result, and use trusted parties or trusteed links
(links with keys or hashes in them)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (in the case of "file on an http
server gets really popular; let's switch to bittorrent" all the clients are
going to have to do a round-trip to the origin server to get the md5 and some
bittorrent coordinates, unless we mix in quite a bit more stuff)</p>

<p class="phone"><cite>NM:</cite> One question is how do you get new modes of
delivery (such as P2P) for things named with http: URIs</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST is/was trying to push on the
question of the possibility of giving access to the http information space
using a (collection of) transport protocols which are not HTTP or anything
close to it</p>

<p class="phone"><cite>NM:</cite> One of the things that's likely to result
from that has to do with DNS names. The social understanding of what your
likely to get changes in interesting ways.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; DanC+HST combine to ask: can we
provide the "quite a bit more stuff" in a way which preserves the social
properties of the information space</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to point out
that the reason for continuing to use http: names is not just that timbl
wants to Rule The World, but that preserving links is valuable to society</p>

<p class="phone"><cite>DC:</cite> The value of the network is the web of
names. Keeping the same names preserves the value of the web.</p>

<p class="phone"><cite>NM:</cite> I think the reasons why we want to use http
names is worth writing down</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; "BitTorrent is a protocol for
distributing files.. It identifies content by URL and is designed to
integrate seamlessly with the web. Its advantage over plain HTTP is that when
multiple downloads of the same file happen concurrently, the downloaders
upload to each other, making it possible for the file source to support very
large numbers of downloaders with only a modest increase in its load." -- <a
href="http://www.bittorrent.com/protocol.html">http://www.bittorrent.com/protocol.html</a></p>

<p class="phone"><cite>VQ:</cite> Noah will incorporate comments into the
draft. <br />
.... Should we link it as a finding in progress</p>

<p class="phone">General agreement</p>

<p><a name="action012" id="action012"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> VQ to
make a link from the findings-in-progress page</p>

<p><a name="action023" id="action023"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> NM to
produce a new draft</p>

<p class="phone">DO departs</p>

<h3 id="item023">httpRange-14</h3>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; lots of discussion... HT put a
picture up  with a couple URIs... <img src="http://www.ltg.ed.ac.uk/~ht/webpropernames/img2.png" alt="Eiffel tower diagram" /></p>

<p class="phone">Representations vary over time; people can make different
assertions about what a representation means</p>

<p class="phone">With the '#', there's a whole different architecture
(involving mime types)</p>

<p class="phone"><cite>RF:</cite> When people use URIs, they aren't
necessarily using it in an identification relationship <br />
.... They are using it in a "more information" relationship <br />
.... In &lt;a href="<a
href="http://www.paris.org/Monuments/Eiffel/">http://www.paris.org/Monuments/Eiffel/</a>"&gt;Eiffel
Towe&lt;/a&gt;, the URI is not for identification, it's a pointer to
something that gives more information about the tower. <br />
.... Indirectly, it identifies the tower</p>

<p class="phone">If I replaced that with an SVG image source, a human being
reading the page will reach the same conclusion (that it's the depicted real
tower)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; the "nobody uses http uris for
anything but documents" is an "at your own risk" sort of conclusion, not one
that you can turn around ala "if it's not a web page, it can't have a
hashless http URI"</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.httpsniffer.com/http/100304.htm">http://www.httpsniffer.com/http/100304.htm</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; <a
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.4">http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.4</a></p>

<p class="irc">&lt;<cite>Roy</cite>&gt; 303 See Other: <a
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.4">http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.4</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (in preparation for straw poll,
I'm swapping in SWBPDWG's request <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Mar/0101.html">http://lists.w3.org/Archives/Public/www-tag/2005Mar/0101.html</a>
)</p>

<p class="phone">By induction, the world is used to thinking http: URIs are
documents, so they must be documents</p>

<p class="phone">By induction, the world is used to thinking that '#' in an
http: URI is a pointer into the document, so they must be pointers into the
document</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; my head hurts.. but I think I'm taking
Tim's side on this. We need to make a clear distinction.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; . <a
href="http://web.resource.org/cc/Reproduction">http://web.resource.org/cc/Reproduction</a></p>

<p class="phone">In the picture yesterday we had two levels distinguishing
"identifies" and "points to" where RDF defines "identifies" but doesn't
define "points to" very well and HTTP defines "points to" but doesn't define
"identifies" very well</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; In semantic web its important to know
if your referencing a document vs an object.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://www.httpsniffer.com/http/100303.htm">http://www.httpsniffer.com/http/100303.htm</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3">http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; infoRes axiom, the lesser: { ?R
a http:OK200; http:about ?X } =&gt; { ?X a webarch:InformationResource }.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; where an HTTP GET /path to
host.example is http:about &lt;<a
href="http://host.example/path&gt;">http://host.example/path&gt;</a></p>

<p class="phone"><cite>RF:</cite> Proposal: If an http resource responds to
GET (a) with a 200 OK, then it is an information resource, (b) with 303 See
Other, then it could be *any* resource, and (c) with any 4xx error, then ...
?</p>

<p class="phone">Seems to garner a modicum of support</p>

<p class="phone"><cite>NDW:</cite> I could sign off on that compromise</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; what 2xx or 3xx response codes
identify non-information resources?</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; the common architecture
position: "points to" and "denotes" agree on URIs without hashes.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2005/06/13-tag123.html">http://www.w3.org/2005/06/13-tag123.html</a></p>

<p class="phone">The proposal is that 2xx identify information resources; 3xx
say "see other" so they could be anything</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; dorchard, a 303 response doesn't
give any constraints about whether the resource is an information resource or
not</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ... per the RF proposal</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; My proposal is that we provide advice
to the community that they may mint "http" URIs for any resource provided
that they follow this simple rule for the sake of removing ambiguity:</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; a) If an "http" resource responds to
a GET request with a 2xx response, then the resource identified by that URI
is an information resource;</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; b) If an "http" resource responds to
a GET request with a 303 (See Other) response, then the resource identified
by that URI could be any resource;</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; c) If an "http" resource responds to
a GET request with a 4xx (error) response, then ... ?</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; This proposal enables people to name
arbitrary resources using the "http" namespace without any dependence on
fragment vs non-fragment URIs</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (Henry, I wonder what impact
this should have, if any, on the XPointer registry)</p>

<p class="irc">&lt;<cite>Roy</cite>&gt; ... and reducing ambiguity appearing
on the Semantic Web by folks misusing the non-information resource's URI to
identify the information content returned by redirected request</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (I'd prefer myTripLog#tower ,
rather than myTrip#tower , to be clear that the stuff before the # is a
document)</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; (what if its a portal and myTripLog#
is a program which generates the result you get at myTripLog#tower)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (myTripLog might be supported by
a program, but it's not a program. it's a document)</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Httprange-14: the issue is "TBL's
argument the HTTP URIs (without "#") should be understood as referring to
documents, not cars."</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; so RESOLVED.</p>

<p class="phone">Unanimity</p>

<p><a name="action032" id="action032"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> RF to
declare victory and move on</p>

<p></p>

<h2 id="jun16am">Thu 16 Jun 2005 -- morning</h2>
<dl>
  <dt>Scribe</dt>
    <dd>Henry</dd>
</dl>

<h3 id="item012">Agenda review</h3>

<p class="phone">[see above]</p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> All to
send vacation info to Vincent [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action01">http://www.w3.org/2005/06/16-tagmem-minutes.html#action01</a>]</p>

<p><a name="action022" id="action022"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> Minute
takers to get minutes to Vincent by Monday 20 July [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action02">http://www.w3.org/2005/06/16-tagmem-minutes.html#action02</a>]</p>

<p class="phone">Norm will be chair <em>pro tem</em> after Vincent leaves
this afternoon</p>

<h3 id="item022">Architecture of the Semantic Web</h3>

<p class="phone"><cite>VQ:</cite> Extending our work to the Semantic Web. .
.</p>

<p class="phone">Looking for steps to make progress</p>

<p class="phone"><cite>TBL:</cite> Trying to identify the primary hooks we're
hanging the SW on, writing them up and connecting things to existing
WebArch<br />
... Lots of discussion of philosophy in the SW community, some tensions
particularly with the folk from the KR and logic communities, but those
tensions have been easing<br />
... The existing documents are not easy to work with as they stand<br />
... We can try to pull out some principles, write some stories<br />
... Try to explain the SW in a way that hasn't been done before -- make the
connection between SW and OFW<br />
... For newcomers from an academic perspective, for example</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/2000/10/swap/Primer">Primer: Getting into RDF &amp;
Semantic Web using N3</a></p>

<p class="phone"><cite>TBL:</cite> There is a standalone, non-XML, intro to
the SW -- interested to get review of this from relative newcomers</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2000/10/swap/Primer">http://www.w3.org/2000/10/swap/Primer</a></p>

<p><a name="action031" id="action031"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> HST, VQ
to review the primer [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action03">http://www.w3.org/2005/06/16-tagmem-minutes.html#action03</a>]</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2000/10/swap/doc/">http://www.w3.org/2000/10/swap/doc/</a></p>

<p class="phone"><cite>TBL:</cite> Would like three reviewers for the first
page, and at least one for the whole tutorial<br />
... It's in various forms. . .</p>

<p><a name="action041" id="action041"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> TBL
revise <a
href="http://www.w3.org/DesignIssues/HTTP-URI.html">http://www.w3.org/DesignIssues/HTTP-URI.html</a>
[recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action04">http://www.w3.org/2005/06/16-tagmem-minutes.html#action04</a>]</p>

<p class="phone"><cite>TBL:</cite> Most recent SW talk has become more
software engineering orientated. . .</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Noah notes that <a
href="http://www.w3.org/DesignIssues/HTTP-URI.html">http://www.w3.org/DesignIssues/HTTP-URI.html</a>
comes pretty close to bearing on the questions he (Noah) asked yesterday
regarding the relationship of schemes and protocols</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2005/Talks/0517-boit-tbl/">http://www.w3.org/2005/Talks/0517-boit-tbl/</a></p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Talk to bio-IT conference with some
software engineering pictures</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to note 2
principles of RDF that I think our audience should know about: (1) taking
"use URIs" all the way (and not stopping at qnames) for reusability (2)</p>

<p class="phone"><cite>DanC:</cite> Frustrated at people reinventing RDF --
at least do it well<br />
... Given any RDF document, any subset of the triples there stand on their
own<br />
... Adding triples never hurts</p>

<p class="phone"><cite>NM:</cite> Can't I add a negation of a triple -- that
can't be ignorable</p>

<p class="phone"><cite>HST:</cite> Negation requires re-ification, I
believe<br />
... Stopping at qnames means what?</p>

<p class="phone"><cite>DanC:</cite> E.g. schemas, lots of things have QNames,
but knowing a QName is not enough to be able to point to something
unequivocably</p>

<p class="phone"><cite>TBL:</cite> [diagram on whiteboard] Standards-based
bus -- raw RDF, GRDDL-derived RDF, RDF queries. . .</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (I suppose one could refer to "
that XML Schema type whose namespace name is X and whose localname is N"...
I'm not sure if that approach has been exhaustively tried)</p>

<p class="phone"><cite>TBL:</cite> triple-stores, RDBs exposed as XML or RDF,
XMLDBs, all projecting RDF on to the bus</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (norm, have you heard of ,timbl?
)</p>

<p class="phone"><cite>TBL:</cite> Apps bit on top of the bus -- browsers,
aggregators, inference engines<br />
... Both data sources and apps may need 'adapters' to convert to/from RDF</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; ht, you wanted to project a logic
story and ask for parallels</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (I've been wondering if the TAG
should take a 20 minute course in model theory)</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/2005/Talks/0517-boit-tbl/">http://www.w3.org/2005/Talks/0517-boit-tbl/</a>#[18]
and floowing slides have bits of this</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; HT gives a <a
href="http://www.ltg.ed.ac.uk/~ht/logic_tut.html">4-slide presentation on
traditional definition of a logic</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; TBL asks if shannon:information
has been connected to frege:model-theory</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; HT replies with a reference to
Dretske, Fred I. <em>Knowledge and the Flow of Information</em>. as cited
from <a
href="http://www.press.uchicago.edu/cgi-bin/hfs.cgi/00/14537.ctl">http://www.press.uchicago.edu/cgi-bin/hfs.cgi/00/14537.ctl</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; a nearby article nominated by
google is <a
href="http://www.ils.unc.edu/~losee/b5/book5.html">http://www.ils.unc.edu/~losee/b5/book5.html</a></p>

<p class="phone"><cite>TBL:</cite> Example of communication as reduction in
uncertainty [= entropy?] by conveying information</p>

<p><a name="action051" id="action051"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> HST to
recommend intro to Dretske thought [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action05">http://www.w3.org/2005/06/16-tagmem-minutes.html#action05</a>]</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC asks HT whether "A Discipline
Independent Definition of Information" has the relevant info; HT is unable to
confirm</p>

<p class="phone"><cite>TBL:</cite> People working with different subsets of a
patchwork of information in an unbounded set<br />
... Each agent can take care of the local consistency of the information it
is working with</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (I think the nearest point on
the TAG agenda at this point of the discussion is <a
href="http://www.w3.org/2001/tag/issues.html#rdfURIMeaning-39">http://www.w3.org/2001/tag/issues.html#rdfURIMeaning-39</a>
)</p>

<p class="phone"><cite>TBL:</cite> Using URIs as individuals in more than one
logic<br />
... The logics share the RDF sentential form, but some of them diverge after
that.</p>

<p class="phone"><cite>NM:</cite> People are making statements (in different
logics) which all use URIs<br />
... Sentential forms are out there, in bits of Prolog, DescriptionLogic, .. .
.<br />
... Problem is combining these</p>

<p class="phone"><cite>HST:</cite> Not quite -- RDF triples are independent
of all those -- they are what they are</p>

<p class="phone"><cite>TBL:</cite> Architectural rule: To understand a
triple, take the predicate, look it up on the web, if the result is english,
then at least <em>you</em> know what it means<br />
... If you find an OWL class, your computer may be able to do things</p>

<p class="phone"><cite>NM:</cite> Lots of triples out there, for some subset
of them, I'll be able to reason about them in a useful way, maybe because
they are all using OWL-defined predicate<br />
... But if some are like that, and some are defined e.g. in French, combining
them isn't going to work very well<br />
... That's a problem in practice, but not in principle. . .<br />
... What about the prolog approach?</p>

<p class="phone"><cite>DC:</cite> { :timbl :carowner :xyzzy } --- look up
:carowner, find ...[scribe coulnd't keep up]<br />
... The unit of meaning on the web is a document</p>

<p class="phone"><cite>NM:</cite> In practice, then, the same triples in one
document may have a different impact than the same triples divided over
several documents</p>

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

<p class="phone"><cite>TBL:</cite> Philosophers think they've gone beyond
this, believe they exhausted the rigid meaning approach in favour of some
kind of meaning-as-use approach<br />
... So they think the SW story is too simple and are a bit dismissive</p>

<p class="phone"><cite>NM:</cite> Squishy</p>

<p class="phone"><cite>TBL:</cite> Semantic web is going to be very
un-squishy -- if you send a particular XDI message, the tags have a very firm
pre-negotiated meaning</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; DC: rdfURIMeaning-39 is on our
issues list because... when you look up :carowner, you'll find a document
that says, e.g. carowner is a property, and it's a subproperty of
uniform-commercial-code:owner, etc. But what if that defining document also
says "and Reagan is a great president"; does use of :carowner involve assent
to that statement as well? The extreme other position is: no... I can use any
URI I like to mean whatever meaning I like, irrespective of what infromation
its owner publishes</p>

<p class="phone"><cite>TBL:</cite> In RDF, all you need is the pre-negotiated
meaning about the RDF framework, you can look up the predicates<br />
... What we need for the arch doc is an answer to the question of what you're
committing yourself to when you send someone an RDF document<br />
... When you chase the predicate links, you eventually converge on a small
number of meta-ontologies<br />
... Not of course the same when you chase the subject and object URIs<br />
... So what's a best practice in this area. . .?</p>

<p class="phone"><cite>VQ:</cite> Useful intro/overview of the space<br />
... What do we do next, beyond looking at the tutorial<br />
... Should we use the tutorial as a starting point for the architecture?</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; Norm, you wanted to suggest that
what we really need are the Dirk and Nadia stories</p>

<p class="phone"><cite>TBL:</cite> No, I think it's not directly in the
architectural direction</p>

<p class="phone"><cite>NDW:</cite> I regularly get pushback from e.g. people
in Sun as to what the value of all this is and why it's worth the overhead --
a good Dirk&amp;Nadia story or two is really needed to address this</p>

<p class="phone"><cite>NM:</cite> How much of this is really within the TAG's
remit. . .</p>

<p class="phone"><cite>DC:</cite> Let's tell stories that connect SW to
issues on our issues list</p>

<p class="phone"><cite>NM:</cite> SW interesting because/when it connects to
the Web as a whole -- e.g. httpRange-14<br />
... Comfort level goes way up in that case<br />
... How do we connect the world of logic to the world of the Web</p>

<p class="phone"><cite>HST:</cite> Otherwise it's not obvious how SW connects
to our customers, as identified as the W3C WGs</p>

<p class="phone"><cite>DC:</cite> ATOM isn't our WG, but they sure need this
help -- they've reinvented RDF several times!</p>

<p class="phone"><cite>NDW:</cite> ATOM has cut most of that loose -- they
also could have done much of it with RDF, but they didn't believe it was
usable in practice</p>

<p class="phone"><cite>TBL:</cite> The perceived problems are not just
practicality, but also XML RDF syntax</p>

<p class="phone"><cite>HST:</cite> Not our problem, c.f. XML and entities</p>

<p class="phone"><cite>NM:</cite> Well, if we thought it was so important
that it was going to break the web<br />
... then it would be our remit</p>

<p class="phone"><cite>VQ:</cite> Agreement that we need some stories,
particularly if they make the connection</p>

<p class="phone"><cite>DC:</cite> Tension between the SW architecture and the
XML architecture<br />
... How to know when to solve your problems by manipulating XML with the XML
tools, vs. using the SW arch<br />
... There's a whole XPath-based application development worldview outthere,
with hardware accelerators and so on</p>

<p class="phone"><cite>HST:</cite> And Norm and I want to get the XML
Processing working group going, because we think processing XML as XML is
good and needs a standard</p>

<p class="phone"><cite>DC:</cite> So that view competes seriously with the
RDF architecture</p>

<p class="phone"><cite>TBL:</cite> And AJAX competes also</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; TBL: building XML support into your
programming language competes with building RDF support into your language</p>

<p class="phone"><cite>DC:</cite> Is XML Proc WG going to look at XDuce and
things like that?</p>

<p class="phone"><cite>HST:</cite> No. Document level, not lower, is way to
get consensus quickly, lots of existing specs/tools at that levels</p>

<p class="phone"><cite>TBL:</cite> Dirk has some RDF triples, Nadia adds
some, doesn't get in Dirk's way</p>

<p class="phone"><cite>HST:</cite> I want a story about a problem solved<br />
... It's where the people who have problems with the perceived impracticality
of RDF processing hit the buffers</p>

<p class="phone"><cite>NDW:</cite> Paul and Paula example, phonebook rules</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; The core of the story is that I have
two address book entries for Paul and Paula because they have different work
phone numbers. I use RDF inference to avoid having to duplicate the home
phone numbers in each record.</p>

<p class="phone">TBL list from whiteboard: Stories: Versioning; Looking up
predicates; Data merge; Ontology link; Inference (phonebook)</p>

<p class="phone"><cite>DC:</cite> NDW did View Source on his website, showing
that he imported 27 different RDF sources and used them</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; The URI for the data Dan is
referring to is <a
href="http://norman.walsh.name/knows/norman.walsh.name.rdf">http://norman.walsh.name/knows/norman.walsh.name.rdf</a></p>

<p class="phone"><cite>DC:</cite> No way you could do that in vernacular XML
w/o writing code</p>

<p class="phone">TAG looks at <a
href="http://norman.walsh.name/knows/norman.walsh.name.rdf">http://norman.walsh.name/knows/norman.walsh.name.rdf</a></p>

<p class="phone"><cite>scribe:</cite> which aggregates a lot of information
from different sources</p>

<p class="phone"><cite>TBL:</cite> HST, how can you combine XML information
from many namespaces</p>

<p class="phone"><cite>HST:</cite> Just do it, combine the docs under a
common root</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; DC: But then common references are
not evident</p>

<p class="phone"><cite>DC:</cite> But you can't cross refer from one part to
another</p>

<p class="phone"><cite>HST:</cite> Show me an example of that in Norm's
doct</p>

<p class="phone"><cite>NDW:</cite> look at e.g. <a
href="http://norman.walsh.name/1998/04/images/canaldish">http://norman.walsh.name/1998/04/images/canaldish</a></p>

<p class="phone"><cite>NM:</cite> Purchase order example. . .<br />
... Schemas are just a tool, to help people build systems<br />
... Versioning work is directed at handling the common cases of language
evolution, finding what the mechanisms system builders want, [introduces
'person' example, including the addition in version N of a country code
element]</p>

<p class="phone"><cite>TBL:</cite> When the computer hits the unexpected
code, it doesn't know what it is</p>

<p class="phone"><cite>NM:</cite> Schema allows some hooks via annotation,
but doesn't guarantee that different parties will agree the annotation's
meaning</p>

<p class="phone"><cite>TBL:</cite> RDF hasn't done much in the direction of
required/desired/notallowed kinds of meta-information about predicates</p>

<p class="phone"><cite>NM:</cite> XML focus is historically on syntax, does
that ccode goes at the end of the element or the beginning<br />
... RDF has less emphasis on ordering</p>

<p class="phone"><cite>NDW:</cite> RDF does versioning easily for what it
does, but doesn't help much if at all with versioning XML languages</p>

<p class="phone"><cite>TBL:</cite> yes -- RDF versioning is much easier</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; NDW discovers that x can be
redirected to a#b . HT asks: what if I'm looking up x#q ?</p>

<p class="phone"><cite>HST:</cite> I understood DC to say that RDF 'solved
the versioning' problem for XML, which I think Norm was disputing, but I
guess DC meant it 'dissolved' the versioning problem, that is, by moving to
RDF you avoid most of XML's versioning problems</p>

<p class="phone">DC, TBL: the latter, pretty much</p>

<p class="phone"><cite>VQ:</cite> A few minutes to wrap up SW ways forward,
then turn to other issues</p>

<p class="phone">HST would like to hear more from NDW wrt how the two
applications of RDF he uses . . . by email</p>

<p class="phone">[break], at end of which David Orchard joins via 'phone</p>

<h3 id="item032">namespaceDocument-8</h3>

<p class="irc">&lt;<cite>Ed</cite>&gt; <a
href="http://www.w3.org/2001/tag/issues.html#namespaceDocument-8">http://www.w3.org/2001/tag/issues.html#namespaceDocument-8</a></p>

<p class="phone"><cite>NDW:</cite> Problems with taking RDDL forward -- some
problems encountered:<br />
... 1) XHTML modularisation is needed to be more blessed</p>

<p class="phone"><cite>NDW:</cite> 2) There's a two-URI problem ;</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; looking back at <a
href="http://www.w3.org/2005/04/05-tagmem-minutes.html#action03">http://www.w3.org/2005/04/05-tagmem-minutes.html#action03</a></p>

<p class="phone"><cite>NDW:</cite> 3) CMSMCQ alleges that RDDL commits some
kind of tag abuse</p>

<p class="phone"><cite>DanC:</cite> What feedback about GRDDL/RDDL?</p>

<p class="phone"><cite>HST:</cite> I recall that my problem with the GRDDL
idea is the necessity to run XSLT to get my schema document</p>

<p class="phone"><cite>DanC:</cite> you can hard-code that too</p>

<p class="phone"><cite>NDW:</cite> Regarding (2) above, what I meant was that
in the RDDL document you have to include the same URI twice, once for humans
and once for machines, which is a) tedious and b) liable to error/abuse</p>

<p class="phone"><cite>NM:</cite> Is that an architectural problem?</p>

<p class="phone"><cite>NDW:</cite> No, just not good document design -- the
architectural question is introducing the level of indirection we need to get
to all different kinds of things: Schema, DTD, human doc't, RELAX NG schema,
....</p>

<p class="phone"><cite>HST:</cite> A good-enough solution, no competitors</p>

<p class="phone"><cite>DC:</cite> Is status of current RDDL spec. good
enough?</p>

<p class="phone"><cite>NDW:</cite> AC said no</p>

<p class="phone"><cite>NM:</cite> As written, it says it's about e.g.
namespace documents, not specifically only namespace documents<br />
... If we were to make it a REC, we would need to specify this, yes?</p>

<p class="phone"><cite>NDW:</cite> Don't say 'only', just 'start there'</p>

<p class="phone"><cite>DC:</cite> Don't imply you should use this, just you
may if you want to do the indirection</p>

<p class="phone"><cite>NM:</cite> So the use cases can all be namespaces, but
no restriction to that</p>

<p class="phone"><cite>HST:</cite> So do we send RDDL to the XML Core WG ?</p>

<p class="phone">[all] No</p>

<p class="phone"><cite>DC:</cite> Start a WG</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; maybe an XG?</p>

<p class="phone"><cite>NDW:</cite> Schema WG<br />
... Maybe if we asked the AC to create a WG to do this, they would agree it's
OK</p>

<p class="phone"><cite>NM:</cite> If we recommend a WG we get in process
trouble vis a vis what we said about binary XML</p>

<p class="phone">[not well-minuted passage about routes to make RDDL a
REC]</p>

<p class="phone"><cite>TBL:</cite> Wants not just the RDDL syntax, but also a
semantics, i.e. a GRDDL stylesheet and an ontology for what it produces</p>

<p class="phone"><cite>HST:</cite> syntax is there, stylesheet is there (see
<a
href="http://www.rddl.org/rddl2rdf.xsl">http://www.rddl.org/rddl2rdf.xsl</a>),
all we need is the ontology</p>

<p class="phone"><cite>NM:</cite> Prefer specs not to talk about processing,
if possible</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; RDDL natures: <a
href="http://www.rddl.org/natures/">http://www.rddl.org/natures/</a> and
purposes: <a
href="http://www.rddl.org/purposes/">http://www.rddl.org/purposes/</a></p>

<p class="phone"><cite>DC:</cite> HST would you be happy if RDDL didn't have
the relation you needed?</p>

<p class="phone"><cite>HST:</cite> Sure, The Schema WG would mint one<br />
... The RDDL REC better allow for that</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; right, norm, how much of those
lists should go in the REC?</p>

<p class="phone"><cite>NDW:</cite> Yes, I have to do that for functions for
F&amp;O</p>

<p class="phone"><cite>TBL:</cite> We need to look at RDFA before reaching a
resolution</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; I'm happy with both of those lists,
in their entirety, being in the REC. And add some more if you want. Like RDF
properties, I get to mint more.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.formsplayer.com/notes/rdf-a.html">http://www.formsplayer.com/notes/rdf-a.html</a></p>

<p class="phone"><cite>DC:</cite> RDFA is the HTML WG's attempt at the
general problem which RDDL is a specific instance of</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (they have the same level of
generality, as far as I can tell)</p>

<p class="phone"><cite>NM:</cite> Attributes for adding RDF to arbitrary
HTML<br />
... Argh, uses QNames in content</p>

<p class="phone">TBL, HST: Sometimes that's the best solution . . .</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; <a
href="http://www.w3.org/MarkUp/2004/rdf-a">http://www.w3.org/MarkUp/2004/rdf-a</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/TR/2005/WD-xhtml2-20050527/mod-metaAttributes.html#s_metaAttributesmodule">http://www.w3.org/TR/2005/WD-xhtml2-20050527/mod-metaAttributes.html#s_metaAttributesmodule</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; NDW: ew... qnames in content</p>

<p class="phone"><cite>TBL:</cite> Instead of rddl:resource or GRDDL, just
use RDF-A, maybe?</p>

<p class="phone"><cite>DC:</cite> The news people use this technology, they
really like the QName thing</p>

<p class="phone"><cite>HST:</cite> I still like the simple solution for the
bounded problem</p>

<p class="phone"><cite>DC:</cite> What is the scope of a RDDL REC</p>

<p class="phone"><cite>NM:</cite> 1) Just namespace docs, just these N
properties;<br />
... 2) Just namespace docs, these N properties for sure, more later ad
lib.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ("here's the RDDL property"
hmm... the space of RDDL properties is the same as the space of RDF
properties, yes?")</p>

<p class="phone"><cite>NM:</cite> 3) Anything about anything</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (hmm... the odd thing about web
architecture is perhaps that a traditional architecture allows you to
determine whether a new machine is or is not an IBM360, but the #1 principle
of web architecture is that there's only one web. (even though it's fractal,
and there are independent webs in intranets and such, perhaps))</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Break for lunch</p>

<h2 id="jun16pm">Thu 16 Jun 2005 -- afternoon</h2>
<dl>
  <dt>Scribe</dt>
    <dd>Roy</dd>
</dl>

<h3 id="item011">namespaceDocument-8 (cont.)</h3>

<p class="phone"><cite>DC:</cite> should we place namespaceDocument-8 in the
"some day" pile?</p>

<p class="phone"><cite>NW:</cite> lots of people are deploying RDDL. It seems
we should either say that is okay or that they are treading on unsafe
waters.</p>

<p class="phone"><cite>TBL:</cite> much more inclined to pursue GRDDL than
RDDL</p>

<p class="phone"><cite>VQ:</cite> is this something we can do in the short
term?</p>

<p class="phone"><cite>DC:</cite> sure</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; The solution that looks appealing
is:</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; 1. Define an ontology for this
problem</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; 2. Explain how rddl:purpose exposes
that ontology</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; 3. Write a GRDDL stylesheet with a
well-known URI that literally instantiates an instance of that ontology when
applied to rddl:purpose elements</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; 4. So if you get a rddl 1.0
document, you can do it with GRDDL or by recognizing the URI of the
stylesheet. If you get something else and apply its GRDDL and you get that
ontology, you can use that too</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (re part 1, the only term I know
of that's used in practice is the one XSV uses to find schema documents)</p>

<p class="phone"><cite>VQ:</cite> there is nothing about RDF-A there ...</p>

<p><a name="action011" id="action011"></a></p>

<p class="irc">&lt;<cite>Norm</cite>&gt; <strong>ACTION:</strong> Norm to
write something like this up and send it to www-tag to see if it gets popular
support [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action01">http://www.w3.org/2005/06/16-tagmem-minutes.html#action01</a>]</p>

<p class="phone"><cite>DC:</cite> step one and three apply to RDF</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (VQ thought it didn't say RDF
anywhere; I was clarifying that "ontology" brings in RDF)</p>

<p class="phone"><cite>VQ:</cite> I suggest we move on</p>

<p><a name="action021" id="action021"></a></p>

<p class="irc">&lt;<cite>Norm</cite>&gt; <strong>ACTION:</strong> VQ to
update the open action list; this action subsumes Norm's outstanding action
to post something about GRDDL/RDDL to the list [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action02">http://www.w3.org/2005/06/16-tagmem-minutes.html#action02</a>]</p>

<h3 id="item021">fn:escape-uri</h3>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/2001/tag/2005/03/action-summary.html">http://www.w3.org/2001/tag/2005/03/action-summary.html</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Apr/att-0068/April122005.html#action01">http://lists.w3.org/Archives/Public/www-tag/2005Apr/att-0068/April122005.html#action01</a></p>

<p class="phone"><cite>DC:</cite> [looking for example]</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; One is idempotent and irreversible,
the other is reversible.</p>

<p class="phone"><cite>TBL:</cite> mixing two different functions under a
single name -- one is idempotent and the other is reversible</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/TR/2005/WD-xpath-functions-20050404/#func-escape-uri">http://www.w3.org/TR/2005/WD-xpath-functions-20050404/#func-escape-uri</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (invertible is more traditional
than reversible, but close enough)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; i("my file name") =
"my%20file%20name"</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; The reversible one takes a string
and produced a path segment.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; encode("my file name") =
"my%20file%20name"</p>

<p class="phone"><cite>DC:</cite> this function allows arbitrary data to be
included to produce a URI path segment</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; fn:escape-uri ("<a
href="http://www.example.com/~b">http://www.example.com/~b</a>ébé",
false()) returns "<a
href="http://www.example.com/~b%C3%A9b%C3%A9">http://www.example.com/~b%C3%A9b%C3%A9</a>"</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; uriSafe("htpp://foo/~bar") = ...
%7E</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; ..</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; critically: urisafe(urisafe(x))
= x</p>

<p class="phone"><cite>DC:</cite> the second example takes an entire IRI and
encodes only the unsafe characters</p>

<p class="phone"><cite>RF:</cite> what about iri2uri?</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; a2c</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; clean(clean(x)) = x</p>

<p class="irc">&lt;<cite>ht</cite>&gt; kool!</p>

<p class="phone"><cite>TBL:</cite> I propose clean</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; encodeForURI(foo)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; xxlify</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; &amp;ify</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; encode-as-uri()</p>

<p class="phone"><cite>RF:</cite> percent-encode and clean-uri</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; percent-two-fice-ify</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; percent-encode-uri presumably</p>

<p class="phone"><cite>TBL:</cite> what namespace are these?</p>

<p class="phone"><cite>all:</cite> schema functions and operators</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; encode-as-uripath() and
clean-uri()</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; encode-as-uri() and
clean-uri()</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; encode-for-uri() and
clean-uri()</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; encode-for-uri()</p>

<p class="phone"><cite>DC:</cite> who gets tell the working group? NOT IT</p>

<p class="phone"><cite>RF:</cite> not it</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; <a
href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=1243">http://www.w3.org/Bugs/Public/show_bug.cgi?id=1243</a></p>

<p><a name="action03" id="action03"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> TimBL to
respond to the XQuery WG regarding better split of function into two names
[recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action03">http://www.w3.org/2005/06/16-tagmem-minutes.html#action03</a>]</p>

<p class="phone"><cite>VQ:</cite> anything else on this topic?</p>

<p class="phone"><cite>TBL:</cite> I see that existing bug report has been
resolved... do we need a new bug report?</p>

<p class="phone"><cite>all:</cite> yes, a new bug report is in order</p>

<p class="irc">&lt;<cite>Vincent</cite>&gt; Dave, do you plan to join us
shortly?</p>

<p class="phone">[break for 5 minutes]</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; yes I do.</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; I'll call in when you get
back..</p>

<p class="phone">we are back but have not restarted yet</p>

<p class="irc">&lt;<cite>Vincent</cite>&gt; DO: then we will address
XMLversioning-41 and abstractComponentRefs-37</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Run against random strings ten
characters long, the</p>

<p class="irc">&lt;<cite>ht</cite>&gt; grammar accepts about 0.7% of them,
about 70 in 10000</p>

<p class="irc">&lt;<cite>ht</cite>&gt; trials.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Run against longer strings (30
characters), the</p>

<p class="irc">&lt;<cite>ht</cite>&gt; percentage falls somewhat: fewer than
10 in 10000</p>

<p class="irc">&lt;<cite>ht</cite>&gt; trials.</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; I do have a 10 minute appt at
2pm est 11am pst with a painter.</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; Perhaps convene once I get
back?</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; very interested in 41 and
37...</p>

<p class="irc">&lt;<cite>noah</cite>&gt; On a different subject, but just so
it gets into the minutes, I have updated <a
href="http://www.w3.org/2001/tag/doc/SchemeProtocols.html">http://www.w3.org/2001/tag/doc/SchemeProtocols.html</a>
to point to the newly published <a
href="http://ietfreport.isoc.org/all-ids/draft-hansen-2717bis-2718bis-uri-guidelines-04.txt">http://ietfreport.isoc.org/all-ids/draft-hansen-2717bis-2718bis-uri-guidelines-04.txt</a></p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; back in 10..</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=1243">[F&amp;O]
fn:escape-uri needs to be invertible in the true() case; take out the %
exception</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; base URI issue is launched at <a
href="http://lists.w3.org/Archives/Public/www-tag/2005Apr/0077">http://lists.w3.org/Archives/Public/www-tag/2005Apr/0077</a></p>

<p class="irc">&lt;<cite>timbl</cite>&gt; _______________</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; The design of escape-uri has a flaw
in that it hides within one function two quite different ones. It should be
split into two functions corresponding to different values of the
escape-reserved flag. Possible names are as follows:</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; encode-for-uri() takes any unicode
string and returns a string which can be used as a path segment in a URI.
This function is reversible, and NOT idempotent. (Definition of the inverse
function would clearly be a good idea). Its semantics are those of your
function with the second argument set to TRUE.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; clean-uri() takes a unicode string
which may contain URI syntax but (like e.g. IRI) contains invalid URI
characters. Without disturbing the URI punctuation, it encodes non-URI
characters so that the result is a valid [part of a] URI in ascii. Its
semantics are those of your function with the second argument set to
FALSE.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; _____________________</p>

<p class="irc">&lt;<cite>Ed</cite>&gt; Ed +1</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; +1</p>

<p class="irc">&lt;<cite>noah</cite>&gt; +1</p>

<p class="irc">&lt;<cite>Vincent</cite>&gt; +1</p>

<p class="phone"><cite>RF:</cite> +1</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; so RESOLVED.</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; +1</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; recorded as bug 1502</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=1502">http://www.w3.org/Bugs/Public/show_bug.cgi?id=1502</a></p>

<h3 id="item031">abstractComponentRefs-37</h3>

<p class="phone"><a
href="http://www.w3.org/2001/tag/issues.html#abstractComponentRefs-37">http://www.w3.org/2001/tag/issues.html#abstractComponentRefs-37</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (re-checking pending actions <a
href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=1243">http://www.w3.org/Bugs/Public/show_bug.cgi?id=1243</a>
)</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; <a
href="http://lists.w3.org/Archives/Public/www-tag/2003Jun/0054.html">http://lists.w3.org/Archives/Public/www-tag/2003Jun/0054.html</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; "HT: prepare
abstractComponentRefs materials for ftf discussion (with help from DanC)"</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; is DONE, IMO</p>

<p class="irc">&lt;<cite>ht</cite>&gt; <a
href="http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/">http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/</a></p>

<p class="phone"><cite>HT:</cite> worth noting that the above is a new draft
proposing xpointer schemes for this purpose</p>

<p class="phone"><cite>RF:</cite> for the record, the examples in (<a
href="http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/#section-example)">http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/#section-example)</a>
show how ugly this can be</p>

<p class="phone"><cite>DC:</cite> [shows diagram showing a reference from an
OWL diagram that wants to indicate the range of a function by pointing to a
schema type definition, using a URI for that type as described by an xsd
document]</p>

<p class="irc">&lt;<cite>dorchard</cite>&gt; back.</p>

<p class="phone"><cite>RF:</cite> calling now</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; will do...</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; HT: I think I'm on the same side
as Dan on this, in that I think #xyz should short for a big long
lhs#xpointer(...) as long as it's unambiguous, i.e. that there's only one big
long xpointer() thing that has a referent</p>

<p class="irc">&lt;<cite>ht</cite>&gt; The problems the Schema WG has with
this are, at least:</p>

<p class="irc">&lt;<cite>ht</cite>&gt; 1) What NS do I look in?</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; HT was responding to a question
I asked about the case of ...people#xmlns(...people, p)xscd(p:minorAge)</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to correct
myself: RDDL spec as-is is *almost* OK; it doesn't have a clear, normative
mapping to RDF yet and to ask for a special-case in case the lhs, before</p>

<p class="irc">&lt;<cite>ht</cite>&gt; 2) Do I only look at simple types, or
at all nameables?</p>

<p class="irc">&lt;<cite>ht</cite>&gt; 3) What is the default for mapping
from left-hand-side (before the #) to schema, in which to look for the named
thing</p>

<p class="phone">[large discussion about whether the component identifier's
LHS (before the number sign) is supposed to be the schema's namespace URI or
the URI of a schema document]</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to point out a
relation to rdfURIMeaning-39</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (hmm... HT says he has proposed
a "language definition document" for composing schemas; I wonder if that's
actually novel w.r.t. what's already available)</p>

<p class="phone">DC and TBL: the schema-URI should be the namespace URI of
the schema -- the owner of that URI is responsible for maintaining the
relationship between that URI and its representations (schema documents) --
some schemas will change over time and the owner knows whether they should
retain the same URI or mint a new one for the new namespace [? scribe is
interpreting]</p>

<p class="phone"><cite>DC:</cite> over time, community will only tolerate
changes within the scope of the original namespace, leading to global
consensus (or global change to a more stable URI)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (namespaces are *just like other
resources* in this respect. when you update your essay, you can do it
in-place or in a new place)</p>

<p class="phone"><cite>TBL:</cite> different groups place different
constraints on what content can be changed without requiring a different name
to reflect that change <br />
... HTML makes changes with the intention of staying within the same
namespace, whereas others require each behavioral change to require a new
namespace version.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST poses two examples: What is the
name of the 'p' element in HTML4.1 strict?</p>

<p class="irc">&lt;<cite>ht</cite>&gt; What is the name of the 'output'
element in XSLT 2.0?</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; answer: W3C hasn't minted such a
name, henry</p>

<p class="phone"><cite>DO:</cite> How does a publisher indicate versions
within a single namespace?</p>

<p><em>We concluded <a href="#item04">scheduling of next teleconference</a> at this point.</em></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; what I want names for is: every
doodad in every target namespace</p>

<p class="phone"><cite>NM:</cite> What do we want to name? Does it match what
schema WG is trying to specify? If not, how do we go from here?</p>

<p class="phone"><cite>DC:</cite> why is schema any different from other
documents? Front Page of the NY Times changes frequently; the U.S.
Constitution changes less often.</p>

<p class="irc">&lt;<cite>ht</cite>&gt; HST: One week the type definition
called 'banana' accepts integers between 3 and 18, the next week it accept
dates between 2 and 22 February 1931</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; ht, you wanted to talk about a core
xscd requirement</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; Norm, you wanted to push on the
xhtml schema case</p>

<p class="irc">&lt;<cite>ht</cite>&gt; So I think I'm brought back to the
language definition business, and it gets _much_ richer</p>

<p class="irc">&lt;<cite>ht</cite>&gt; The language 'document' has to tell me
what the kinds and names of instances of the kinds are, and each version
within the language has to tell you where to find the definitions of each
name which they actually _do_ define</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ack</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to ask if
there are hints from the study of the rigid designator problem and the
variable/value and the resource/representation situation, recalling</p>

<p class="irc">&lt;<cite>ht</cite>&gt; NM: Introduces the example of XPath
cost of using a new namespace for every change to any element in your
schema</p>

<p class="phone"><a
href="http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/#section-example">http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/#section-example</a></p>

<p class="irc">&lt;<cite>ht</cite>&gt; NM, HST: We are hearing that a {
namespace, localname, kind } triple is what would serve the SW's needs, even
if it's not what the Schema WG needs for many of its own requirements</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; no, dorchard , I don't think
schema components mostly have names</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; oops; misunderstood the
question</p>

<p class="irc">&lt;<cite>ht</cite>&gt; Doesn't it matter that namespace -&gt;
schema is not 1-to-1?</p>

<p class="irc">&lt;<cite>Norm</cite>&gt; When timbl finishes or 10 minutes
from now whichever comes first</p>

<p class="phone"><cite>NM:</cite> there are two different perspectives on
naming -- one is to name the concept by way of the namespace, two is to name
a component within a specific schema document</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; break thru xx:10</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (hmm... how far did we get on <a
href="http://www.w3.org/2001/tag/issues.html#rdfURIMeaning-39">http://www.w3.org/2001/tag/issues.html#rdfURIMeaning-39</a>
)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; wrong one..</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; ( <a
href="http://www.w3.org/2001/tag/issues.html#abstractComponentRefs-37">http://www.w3.org/2001/tag/issues.html#abstractComponentRefs-37</a>
)</p>

<p class="phone"><cite>NM:</cite> schema WG is currently working on the
latter, whereas TAG *also* wants the conceptual name for use in things like
semantic web and version-independent referencing</p>

<p><a name="action04" id="action04"></a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <strong>ACTION:</strong> HT to
reflect TAG discussion on (namespacename, kind, localname) problem space, as
compared to schema component naming problem space, to XML Schema WG [recorded
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action04">http://www.w3.org/2005/06/16-tagmem-minutes.html#action04</a>]</p>

<h3 id="item061">WS Description and "safety"</h3>

<ul>
<li><a
href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0009.html">marsh on
safety</a></li>
<li><a
href="http://www.w3.org/2001/tag/issues.html#whenToUseGet-7">whenToUseGet-7</a>
</li>
</ul>

<p class="phone"><cite>DO:</cite> what happened here was that, as a result of
issue 7, the group came up with a minimal provision to satisfy the TAG. There
was no work on the bindings to actually use that facility.</p>

<p class="irc">&lt;<cite>timbl</cite>&gt; Safety is not just a question of
how to use HTTP. It is also in general important for optimization.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (er... hang on... this came up
as a last call issue from a member of the WG? did the WSD WG not understand
that last call means "wg members have finished their review"?)</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; timbl, you wanted to say: Safety is
not just a question of how to use HTTP. It is also in general important for
optimization.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (hmm... WSDL requirements were
written in 2002. I wonder if I was paying attention. <a
href="http://www.w3.org/TR/ws-desc-reqs/">http://www.w3.org/TR/ws-desc-reqs/</a>
)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (ugh... no stories)</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (ah... separate stories... <a
href="http://www.w3.org/TR/ws-desc-usecases/">http://www.w3.org/TR/ws-desc-usecases/</a>
)</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to note that
the web services that I see are things like the flickr API, and to note that
I expect WSDL to be useful for such service interfaces, and ask where</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Dan asked me to paraphrase
discussion I just had with David O. Here goes:</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Noah: does safety/get work with HTTP
in WSDL.</p>

<p class="irc">&lt;<cite>noah</cite>&gt; David: yes, indeed it's a bit better
than it was. Although the safety flag is now in an adjunct, the HTTP binding
now respects it, and you can also explicitly set the HTTP GET method in the
WSDL HTTP Binding</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Noah: OK, am I right that a cost of
the new decision is that you do not have a normative way of saying "use the
SOAP GET binding from the SOAP rec"</p>

<p class="phone"><a
href="http://www.pacificspirit.com/blog/2005/05/16/witw_wsdl_20_http_binding">http://www.pacificspirit.com/blog/2005/05/16/witw_wsdl_20_http_binding</a></p>

<p class="irc">&lt;<cite>noah</cite>&gt; David: not quite. The SOAP binding
in WSDL does not honor the safety flag, but it does let you set the response
only MEP and we think the GET WebMethod as well.</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Noah: will that MEP to the specific
on the wire protocol that the TAG agreed with the XMLP WG would be in the
SOAP Rec.</p>

<p class="irc">&lt;<cite>noah</cite>&gt; David: yes, think so.</p>

<p class="phone"><a
href="http://www.pacificspirit.com/Authoring/wsdl/YahooV1Search.wsdl">http://www.pacificspirit.com/Authoring/wsdl/YahooV1Search.wsdl</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; <a
href="http://www.pacificspirit.com/Authoring/wsdl/ArtistWSDL2uriformencoding.html">http://www.pacificspirit.com/Authoring/wsdl/ArtistWSDL2uriformencoding.html</a></p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; so DaveO seems to be saying that
my hopes are not completely unfounded.</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; so, dorchard , you're content
with the recent decision of the WSDL WG?</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; hmm... &lt;xs:element
name="searchString" type="xs:string" fixed="webSearch"/&gt;</p>

<p class="phone"><cite>DO:</cite> corporate users want to do REST stuff, but
the tooling doesn't support it in the way that they are accustomed to
building applications</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; Roy, you wanted to say: to be
responsive to our original issue, they need to provide URIs that are GETable
for the information made available by those services -- how they arrange</p>

<p class="phone"><cite>DO:</cite> two issues: 1) is the TAG okay with what
the WSDL group did; 2) does the TAG see the state of the WS world going in
the right direction or is there something more the TAG can do to improve
things?</p>

<p class="phone"><cite>NM:</cite> I think 70-75% of the problem is political
rather than technical -- people are saying that the issue isn't important
enough to them to justify implementation. We did the right thing to look at
the technical information, but I am wondering whether it is appropriate for
the TAG to continue pushing them together</p>

<p class="irc">&lt;<cite>noah</cite>&gt; Actually, not quite. What I meant to
say was, it's absolutely appropriate that we take effort to make sure the WS
stack is a good citizen on the web and can exploit REST to the extent that's
reasonable. The main role for the TAG is not to solve political and social
problems, but we should certainly be supportive of community efforts to
promote synergy between the WS stack and the rest of the Web.</p>

<p class="irc">&lt;<cite>Zakim</cite>&gt; DanC_lap, you wanted to observe
that this is sort of an interesting soap/rest/web-services discussion, but
regarding the TAG's position on the WSD WG's decision, it seems</p>

<p class="irc">&lt;<cite>noah</cite>&gt; I do think we should ask in all
cases: if the technical underpinnings are adequate, and if the deployment
isn't happening, then should we try to solve the problem by doing more
technical work?</p>

<p class="phone"><cite>DO:</cite> We could considerably simplify WSDL by
making it specific to the SOAP binding and create a separate IDL for
REST-based Web <br />
... The abstraction in WSDL causes additional steps that can be simplified</p>

<p class="phone"><cite>DC:</cite> I have heard some good news, but perhaps it
would be useful to come up with a new use-case for WSDL and asking them to
support it or declare it won't be supported by WSDL</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; 6.7 HTTP GET Versus POST: Which
to Use? <a
href="http://dev.w3.org/cvsweb/~checkout~/2002/ws/desc/wsdl20/wsdl20-primer.html?content-type=text/html;%20charset=utf-8#more-bindings">http://dev.w3.org/cvsweb/~checkout~/2002/ws/desc/wsdl20/wsdl20-primer.html?content-type=text/html;%20charset=utf-8#more-bindings</a></p>

<p class="phone"><cite>TBL:</cite> is there any open source code for making
use of WSDL with GET</p>

<p class="irc">&lt;<cite>DanC_lap</cite>&gt; (hmm... offer a bounty for
open-source [python?] implementation of this WSDL 2.0 GET stuff?)</p>

<p class="phone"><cite>NW:</cite> Any objection to telling the WSD chair that
the change is okay?</p>

<p class="phone">[no objections]</p>

<p><a name="action05" id="action05"></a></p>

<p class="irc">&lt;<cite>scribe</cite>&gt; <strong>ACTION:</strong> DanC to
communicate with Jonathan Marsh regarding TAG opinion on safety attribute
change [recorded in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action05">http://www.w3.org/2005/06/16-tagmem-minutes.html#action05</a>]</p>

<p class="phone"><strong class="resolution"><a name="RESOLUTION3"
id="RESOLUTION3">RESOLUTION</a>: TAG thanks MIT and Vincent Quint for
organizing and hosting this meeting</strong></p>

<p class="phone">ADJOURNED</p>
</div>

<h2><a name="ActionSummary" id="ActionSummary">Summary of Action
Items</a></h2>
<!-- Action Items -->

<p><strong>[NEW]</strong> <strong>ACTION:</strong> Henry Thompson to send F2F
logistics to Vincent for meeting page [<a href="#action01">recorded</a> in <a
href="http://www.w3..org/2005/06/14-tagmem-irc#T18-22-46">http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46</a>]
<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Vincent to add draft finding
on schemeProtocols-49 to findings page (link is <a
href="http://www.w3.org/2001/tag/doc/SchemeProtocols.html">http://www.w3.org/2001/tag/doc/SchemeProtocols.html</a>)
[<a href="#action02">recorded</a> in <a
href="http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46">http://www.w3.org/2005/06/14-tagmem-irc#T18-22-46</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> Dan to get web applications
charter and share it with the TAG for review. [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action013">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong>VQ to invite Dean to a TAG
teleconference [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action024">recorded</a>]
<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> Roy and Norm to review <a
href="http://www.w3.org/DesignIssues/Principles.html#PLP">http://www.w3.org/DesignIssues/Principles.html#PLP</a>
[<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action033">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> Dan to write a report on the
state of the art authentication in the web. [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action042">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> Dan to draft "Dont use
passwords in the clear" [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action052">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> VQ to make a link from the
findings-in-progress page [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action012">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> NM to produce a new draft [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action023">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> RF to declare victory and
move on [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action032">recorded</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> All to send vacation info to
Vincent [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#item012">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action01">http://www.w3.org/2005/06/16-tagmem-minutes.html#action01</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> Minute takers to get minutes
to Vincent by Monday 20 July [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action022">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action02">http://www.w3.org/2005/06/16-tagmem-minutes.html#action02</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> HST, VQ to review the primer
[<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action031">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action03">http://www.w3.org/2005/06/16-tagmem-minutes.html#action03</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> TBL revise <a
href="http://www.w3.org/DesignIssues/HTTP-URI.html">http://www.w3.org/DesignIssues/HTTP-URI.html</a>
[<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action041">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action04">http://www.w3.org/2005/06/16-tagmem-minutes.html#action04</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> HST to recommend intro to
Dretske thought [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action051">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action05">http://www.w3.org/2005/06/16-tagmem-minutes.html#action05</a>]<br
/>
<strong>[NEW]</strong> <strong>ACTION:</strong> Norm to write something like
this up and send it to www-tag to see if it gets popular support [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action011">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action01">http://www.w3.org/2005/06/16-tagmem-minutes.html#action01</a>]
<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> VQ to update the open action
list; this action subsumes Norm's outstanding action to post something about
GRDDL/RDDL to the list [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action021">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action02">http://www.w3.org/2005/06/16-tagmem-minutes.html#action02</a>]
<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> TimBL to respond to the
XQuery WG regarding better split of function into two names [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action03">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action03">http://www.w3.org/2005/06/16-tagmem-minutes.html#action03</a>]
<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> HT to reflect TAG discussion
on (namespacename, kind, localname) problem space, as compared to schema
component naming problem space, to XML Schema WG [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action04">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action04">http://www.w3.org/2005/06/16-tagmem-minutes.html#action04</a>]
<br />
<strong>[NEW]</strong> <strong>ACTION:</strong> DanC to communicate with
Jonathan Marsh regarding TAG opinion on safety attribute change [<a
href="http://www.w3.org/2001/tag/2005/06/14-16-minutes.html#action05">recorded</a>
in <a
href="http://www.w3.org/2005/06/16-tagmem-minutes.html#action05">http://www.w3.org/2005/06/16-tagmem-minutes.html#action05</a>]
<br />
</p>

<p> <br />
[End of minutes] <br />
</p>

<h2>Change log</h2>
<p>changes since <a href="http://lists.w3.org/Archives/Public/www-tag/2005Jun/0047.html">call for review</a> of Mon, 20 Jun 2005 18:40:35 +0200:</p>

<pre><!-- log starts on next line, not this one -->
$Log: 14-16-minutes.html,v $
Revision 1.23  2005/06/24 20:55:02  connolly
inline eiffel tower diagram

Revision 1.22  2005/06/24 20:48:26  connolly
width/height of semantic levels table

Revision 1.21  2005/06/24 20:46:50  connolly
blockquote style

Revision 1.20  2005/06/24 20:45:32  connolly
- marked up NM's quote from RFC3236
- inlined timbl's "Semantic levels" table

Revision 1.19  2005/06/24 20:38:04  connolly
- marked up an excerpt with blockquote/pre
- moved some F+O namespace notes under the relevant item

Revision 1.18  2005/06/24 20:29:11  connolly
inlined 2nd/final snapshot of outline

Revision 1.17  2005/06/24 20:26:07  connolly
- added navbar for tue/wed/thu am/pm
- moved some summer schedule stuff under the relevant item
- linked HT's msg
- continued inlining stuff that was projected at the meeting: URI-space.png

Revision 1.16  2005/06/24 20:02:41  connolly
link to call for review

Revision 1.15  2005/06/24 20:01:20  connolly
per NM Fri, 24 Jun 2005 15:18:01 -0400

Revision 1.14  2005/06/21 14:25:04  connolly
links to context: W3C, TAG

Revision 1.13  2005/06/21 14:20:22  connolly
- item014 is more TAG Directions
- try iframe for inlining stuff that was projected at the meeting,
  and not just referenced

Revision 1.9  2005/06/20 17:32:40  connolly
- consolidate scribe/roll items
- consolidate scheduling of next telcon items
- consolidate issue37 items
- edit next teleconference item down to the substance of it
- added changelog


revision 1.8
date: 2005/06/20 17:12:15;  author: connolly;  state: Exp;  lines: +7 -10
WSDL and safety... remove pointer to irrelevant issue
----------------------------
revision 1.7
date: 2005/06/20 16:25:54;  author: vquint;  state: Exp;  lines: +1 -2
(vquint) Changed through Jigsaw.
----------------------------
</pre>

</body>
</html>