2011 272 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
<!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" xml:lang="en">
<head>
  <title>  
    
  W3C News Archive: 2011

  
    W3C
  </title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="Help" href="/Help/" />
  <link rel="stylesheet" href="/2008/site/css/minimum" type="text/css" media="handheld, all" />
  <style type="text/css"  media="print, screen and (min-width: 481px)">@import url("/2008/site/css/advanced");</style>
  <link href="/2008/site/css/minimum" rel="stylesheet" type="text/css" media="handheld, only screen and (max-device-width: 480px)" />
  <meta name="viewport" content="width=device-width"/>
  <link rel="stylesheet" href="/2008/site/css/print" type="text/css" media="print" />
  <link rel="shortcut icon" href="/2008/site/images/favicon.ico" type="image/x-icon" />
  </head>
<body id="www-w3-org" class="w3c_public">
 <div id="w3c_container">
  <div id="w3c_mast"> <!-- #w3c_mast / Page top header -->
   <h1 class="logo"><a tabindex="2" accesskey="1" href="/"><img src="/2008/site/images/logo-w3c-mobile-lg" width="90" height="53" alt="W3C" /></a>
   <span class="alt-logo">W3C</span>
   </h1>
   <div id="w3c_nav">
        <form action="http://www.w3.org/Help/search" method="get" enctype="application/x-www-form-urlencoded">
       <!-- w3c_sec_nav is populated through js -->
       <div class="w3c_sec_nav"><!-- --></div>
           <ul class="main_nav"> <!-- Main navigation menu -->
     <li class="first-item"><a href="/standards/">Standards</a></li><li><a href="/participate/">Participate</a></li><li><a href="/Consortium/membership">Membership</a></li><li class="last-item"><a href="/Consortium/">About W3C</a></li>
       <li class="search-item">
      <div id="search-form">
       <input tabindex="3" class="text" name="q" value="" title="Search" />
       <button id="search-submit" name="search-submit" type="submit"><img class="submit" src="/2008/site/images/search-button" alt="Search" width="21" height="17" /></button> 
      </div>
    </li>
   </ul>
     </form>
   </div>
  </div> <!-- /end #w3c_mast -->
  <div id="w3c_main"> 
    <div id="w3c_logo_shadow" class="w3c_leftCol">
      <img height="32" alt="" src="/2008/site/images/logo-shadow" />
    </div>
   <div id="w3c_sidenavigation" class="w3c_leftCol">

         <h2 class="offscreen">Site Navigation</h2>
    <h3 class="category"><span class="ribbon"><a href="/News/" title="Up to News">News <img src="/2008/site/images/header-link" alt="Header link" width="13" height="13" class="header-link"/></a></span></h3>
       <ul class="theme">
        <li><a href="/News/2012.html">2012</a></li>
        <li><a class="current">2011</a></li>
        <li><a href="/News/2010.html">2010</a></li>
        <li><a href="/News/2009.html">2009</a></li>
        <li><a href="/News/2008.html">2008</a></li>
        <li><a href="/News/2007.html">2007</a></li>
        <li><a href="/News/2006.html">2006</a></li>
        <li><a href="/News/2005.html">2005</a></li>
        <li><a href="/News/2004.html">2004</a></li>
        <li><a href="/News/2003.html">2003</a></li>
        <li><a href="/News/2002.html">2002</a></li>
        <li><a href="/News/2001.html">2001</a></li>
        <li><a href="/News/2000.html">2000</a></li>
       </ul>
       <br/>
      
</div>
   <div class="w3c_mainCol">
     
  
       <div id="w3c_crumbs">
       <div id="w3c_crumbs_frame">
        <ul class="bct"> <!-- .bct / Breadcrumbs -->
          <li class="skip"><a tabindex="1" accesskey="2" title="Skip to content (e.g., when browsing via audio)" href="#w3c_content_body">Skip</a></li>
          <li><a href="/">W3C</a>&#160;<span class="cr">&#x00bb;</span>&#160;</li>
          <li><a href="/participate/">Participate</a>&#160;<span class="cr">&#x00bb;</span>&#160;</li>
          <li><a href="/participate/discussion.html">Mail,&#160;News,&#160;Blogs,&#160;Podcasts,&#160;and&#8230;</a>&#160;<span class="cr">&#x00bb;</span>&#160;</li>
          <li><a href="/News/">News</a>&#160;<span class="cr">&#x00bb;</span>&#160;</li>
          <li class="current">2011</li>
        </ul>            
     </div>
    </div>


    <h1 class="title">
  W3C News Archive: 2011
</h1>
    <div id="w3c_content_body">
    <div class="line">



<div class="vevent_list rMarginLg">

  <div class="entry" id="entry-9302">
  <h3>
<a href="#entry-9302">
  First Drafts of Three Audio API Specifications Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-15T17:17:19-05:00">15 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/audio/">Audio Working Group</a> has published three First Public Working Drafts to provide an advanced audio API for the Web:</p>

<ul class="show_items">
<li>the <a href="http://www.w3.org/TR/2011/WD-webaudio-20111215/">Web Audio API</a> and <a href="http://www.w3.org/TR/2011/WD-streamproc-20111215/">MediaStream Processing API</a> specifications each define a different approach to process and synthesize audio streams directly in script. These APIs can be used for interactive applications, games, 3D environments, musical applications, educational applications, and for the purposes of accessibility. They include the ability to synchronize, visualize, or enhance sound information when used in conjunction with graphics APIs. </li>
<li><a href="http://www.w3.org/TR/2011/WD-audioproc-20111215/">Audio Processing API</a> introduces and compares two client-side APIs for processing and synthesizing real-time audio streams in the browser.</li>
</ul>

<p>Read the blog post <a href="http://www.w3.org/QA/2011/12/sounding_out_the_audio_apis.html">Sounding Out the Audio APIs</a> for more information about the possibilities unlocked by an audio API, and learn more about the <a href="http://www.w3.org/2006/rwc/Activity.html">Rich Web Clients Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9301">
  <h3>
<a href="#entry-9301">
  Drafts Updated for XHTML+RDFa 1.1 and RDFa Core 1.1
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-15T17:06:32-05:00">15 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2010/02/rdfa/">RDF Web Applications Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2011/WD-rdfa-core-20111215/">RDFa Core 1.1</a>, a specification for attributes to express structured data in any markup language. The group also published an update to <a href="http://www.w3.org/TR/2011/WD-xhtml-rdfa-20111215/">XHTML+RDFa 1.1</a>, a Host Language for RDFa Core 1.1. This document is intended for authors who want to create XHTML Family documents that embed rich semantic markup. Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9300">
  <h3>
<a href="#entry-9300">
  The PROV Data Model and Abstract Syntax Notation Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-15T16:01:57-05:00">15 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/prov/">Provenance Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111215/">The PROV Data Model and Abstract Syntax Notation</a>. Provenance of information is crucial in deciding whether information is to be trusted, how it should be integrated with other diverse information sources, and how to give credit to its originators when reusing it. In an open and inclusive environment such as the Web, users find information that is often contradictory or questionable: provenance can help those users to make trust judgments. PROV-DM is a data model for provenance for building representations of the entities, people and activities involved in producing a piece of data or thing in the world. Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9299">
  <h3>
<a href="#entry-9299">
  CSS 2D Transforms Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-15T15:54:56-05:00">15 December 2011</span></p>
  <p>The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2011/WD-css3-2d-transforms-20111215/">CSS 2D Transforms</a>. CSS 2D Transforms allows elements rendered by CSS to be transformed in two-dimensional space. Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9298">
  <h3>
<a href="#entry-9298">
  W3C Invites Implementations of Touch Events version 1
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-15T15:53:41-05:00">15 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2010/webevents/">Web Events Working Group</a> invites implementation of the Candidate Recommendation of <a href="http://www.w3.org/TR/2011/CR-touch-events-20111215/">Touch Events version 1</a>. The Touch Events specification defines a set of low-level events that represent one or more points of contact with a touch-sensitive surface, and changes of those points with respect to the surface and any DOM elements displayed upon it (e.g., for touch screens) or associated with it (e.g. for drawing tablets without displays). Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9297">
  <h3>
<a href="#entry-9297">
  XPath, XQuery 3.0 Last Call Drafts Published; First Drafts of XPath Full Text and XQuery Update
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-15T15:51:08-05:00">15 December 2011</span></p>
  <p>The <a href="http://www.w3.org/XML/Query/">XML Query Working Group</a> and the 
<a href="http://www.w3.org/XML/XSLT">XSLT Working Group</a> have jointly
published Last Call Working Drafts of <a href="http://www.w3.org/TR/2011/WD-xpath-30-20111213/">XPath 3.0</a> and supporting
specifications, together with a First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-xpath-full-text-30-20111213/">Full Text
3.0</a>; the XQuery Working Group has published Last Call Working Drafts for
<a href="http://www.w3.org/TR/2011/WD-xquery-30-20111213/">XQuery 3.0</a> and 
<a href="http://www.w3.org/TR/2011/WD-xqueryx-30-20111213/">XQueryX 3.0</a>, and also a First Public Working Draft for
<a href="http://www.w3.org/TR/2011/WD-xquery-update-30-20111213/">XQuery Update 3.0</a>. XPath is a widely-used language for querying and
selecting from XML documents or other structure; XQuery and XQueryX are
query languages for operating on single XML documents, document
collections, relational databases and other data sources. Learn more about <a href="http://www.w3.org/standards/xml/">XML technology</a>.</p>
  
</div>



  <div class="entry" id="entry-9296">
  <h3>
<a href="#entry-9296">
  Registration for W3C Online Course on Mobile Web; Early Bird Registration Through 9 January
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-13T13:08:39-05:00">13 December 2011</span></p>
  <p>W3C is pleased to announce that <a href="http://www.w3techcourses.com/course/view.php?id=14">registration</a> is now open for a third edition of the most popular W3C online training course, <a href="http://www.w3devcampus.com/mobile-web-and-application-best-practices-training/">W3C Introduction to Mobile Web and Application Best Practices</a>.The 8-week course begins 30 January 2012. Developed by the W3C/<a href="http://www.mobiwebapp.eu/">MobiWebApp</a> team, the course familiarizes Web designers and content producers with the Web as delivered on mobile devices. Along with the <a href="http://www.w3devcampus.com/mobile-web-and-application-best-practices-training/">course description</a>, read comments from past students and what they have achieved. An early bird rate of €165 is available until 9 January 2012; after that date the full price is €225. Don't miss the early bird rate - <a href="http://www.w3techcourses.com/course/view.php?id=14">enroll now</a>!</p>
  
</div>



  <div class="entry" id="entry-9295">
  <h3>
<a href="#entry-9295">
  Seven Web Services Specifications are Recommendations
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-13T12:49:15-05:00">13 December 2011</span></p>
  <p>W3C is pleased to announce the publication of seven Web Services specifications from the
 <a href="http://www.w3.org/2002/ws/ra/">Web Services Resource Access Working Group</a>:
<a href="http://www.w3.org/TR/2011/PR-ws-enumeration-20110927/">Enumeration (WS-Enumeration)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-event-descriptions-20110927/">Event Descriptions (WS-EventDescriptions)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-eventing-20110927/">Eventing (WS-Eventing)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-fragment-20110927/">Fragment (WS-Fragment)</a>, <a href="http://www.w3.org/TR/2011/PR-ws-metadata-exchange-20110927/">Metadata Exchange (WS-MetadataExchange)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-soap-assertions-20110927/">SOAP Assertions (WS-SOAPAssertions)</a>, and
<a href="http://www.w3.org/TR/2011/PR-ws-transfer-20110927/">Transfer (WS-Transfer)</a>. Together, these specifications are designed to be composed with each other to provide a rich set of tools for the Web Services environment.  Learn more about the <a href="http://www.w3.org/2002/ws/">Web Services Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9294">
  <h3>
<a href="#entry-9294">
  Two Widgets Specifications Published: Widget Access Request Policy; Widget Interface
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-13T12:39:51-05:00">13 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> published two Widgets specifications today:</p> <ul class="show_items"> <li>A Candidate Recommendation of <a href="http://www.w3.org/TR/2011/CR-widgets-apis-20111213/">Widget Interface</a>, which defines an application programming interface (API) for widgets that provides, among other things, functionality for accessing a widget's metadata and persistently storing data. W3C invites implementation of this specification; see the ongoing <a href="http://dev.w3.org/2006/waf/widgets-api/imp-report/">implementation report</a>.</li> <li>A Proposed Recommendation of <a href="http://www.w3.org/TR/2011/PR-widgets-access-20111213/">Widget Access Request Policy</a>, which defines the security model controlling network access from within a widget, as well as a method for authors to request that the user agent grant access to certain network resources. Comments are welcome through 17 January 2012.</li> </ul> <p> Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9293">
  <h3>
<a href="#entry-9293">
  First Draft of CSS Exclusions and Shapes Module Level 3 Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-13T12:34:25-05:00">13 December 2011</span></p>
  <p>The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published the First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-css3-exclusions-20111213/">CSS Exclusions and Shapes Module Level 3</a>. CSS exclusions define arbitrary areas around which inline content can flow. Unlike CSS floats, which they extend, CSS exclusions can be positioned with any CSS positioning schemes. Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9292">
  <h3>
<a href="#entry-9292">
  First Draft Published of The PROV Ontology: Model and Formal Semantics
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-13T12:32:38-05:00">13 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/prov/">Provenance Working Group</a> has published the First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-prov-o-20111213/">The PROV Ontology: Model and Formal Semantics</a>. The PROV Ontology (also PROV-O) encodes the PROV Data Model [PROV-DM] in the OWL2 Web Ontology Language (OWL2). The PROV ontology consists of a set of classes, properties, and restrictions that can be used to represent provenance information. The PROV ontology can also be specialized to create new classes and properties for modeling provenance information specific to different domain applications. The PROV ontology supports a set of entailments based on OWL2 formal semantics and provenance specific inference rules. Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9289">
  <h3>
<a href="#entry-9289">
  W3C Workshop: The Multilingual Web – The Way Ahead 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-09T10:56:58-05:00">09 December 2011</span></p>
  <p>W3C announces today the fourth in a series of workshops to ensure the multilingual success of the World Wide Web: <a href="http://www.multilingualweb.eu/documents/luxembourg-workshop/luxembourg-cfp">The Multilingual Web – The Way Ahead</a>, 15 - 16 March 2012, Luxembourg, hosted by the <a href="http://ec.europa.eu/dgs/translation/whoweare/">Directorate-General for Translation (DGT)</a> of the European Commission. The event is co-located with the European Commission's Language Technology Showcase Days. Anyone may attend and participation is free. W3C welcomes participation from both speakers and non-speaking attendees, but the total number of participants is limited due to space.</p>

<p>Building on the success of the <a href="http://multilingualweb.eu/documents">preceding events</a> in Madrid, Pisa, and Limerick, this workshop will once again bring together speakers and participants with an interest in best practices and standards aimed at helping content creators, localizers, tools developers, and others meet the challenges of the multilingual Web. It provides further opportunities for networking across communities that span the various aspects involved. We are particularly interested in speakers who can identify gaps in current standards and best practices related to the mutilingual Web, and propose opportunities for addressing those. <strong><a href="http://www.multilingualweb.eu/register">Registration</a> is available online.</strong> </p>
  
</div>



  <div class="entry" id="entry-9288">
  <h3>
<a href="#entry-9288">
  RDFa Lite 1.1 Draft Published; RDFa 1.1 Primer Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-08T15:45:12-05:00">08 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2010/02/rdfa/">RDF Web Applications
Working Group</a> has published the First Public Working Draft for <a
href="http://www.w3.org/TR/rdfa-lite/">RDFa Lite 1.1</a> and an updated
Working Draft for the <a
href="http://www.w3.org/TR/rdfa-primer/">RDFa 1.1 Primer</a>.</p>
<p>One critique of RDFa is that is has too much functionality, leaving
first-time authors confused about the more advanced features. RDFa Lite
is a minimalist version of RDFa that helps authors easily jump into the
structured data world. The goal was to outline a small subset of RDFa
that will work for 80% of the Web authors out there doing simple data
markup.</p>
<p>The RDFa Primer is a more in-depth introduction to RDFa and all of the
structured data markup features that it provides.</p>
<p>The release of these two documents as Working Drafts is an open
invitation to the general public to review and provide feedback on the
direction of these documents via the <a
href="http://lists.w3.org/Archives/Public/public-rdfa-wg/">RDF Web
Applications Working
Group mailing list</a>. These documents are intended to be the last
Working drafts before RDFa enters Last Call. You can learn more about
similar projects to RDFa in W3C's <a
href="http://www.w3.org/standards/semanticweb/">Semantic Web
Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9287">
  <h3>
<a href="#entry-9287">
  W3C Invites Implementations of The WebSocket API, Web Storage
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-08T13:36:42-05:00">08 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> invites implementation of two Candidate Recommendations:</p> <ul class="show_items"> <li><a href="http://www.w3.org/TR/2011/CR-websockets-20111208/">The WebSocket API</a>, which defines an API that enables Web pages to use the WebSocket protocol for two-way communication with a remote host.</li> <li><a href="http://www.w3.org/TR/2011/CR-webstorage-20111208/">Web Storage</a>, which defines an API for persistent data storage of key-value pair data in Web clients.</li> </ul> <p>Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9286">
  <h3>
<a href="#entry-9286">
  Call for Review: SOAP over Java Message Service 1.0 Proposed Recommendation Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-08T13:34:43-05:00">08 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/ws/soapjms/">SOAP-JMS Binding Working Group</a> has published a Proposed Recommendation of <a href="http://www.w3.org/TR/2011/PR-soapjms-20111208/">SOAP over Java Message Service 1.0</a>. The work described in this and related documents is aimed at a set of standards for the transport of SOAP messages over JMS [Java Message Service]. The main purpose is to ensure interoperability between the implementations of different Web services vendors. This will also enable customers to implement their own Web services for part of their infrastructure, and to have this interoperate with vendor provided Web services. Comments are welcome through 13 January. Learn more about the <a href="http://www.w3.org/2002/ws/">Web Services Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9285">
  <h3>
<a href="#entry-9285">
  Incubator Group Report: HTML Speech XG Final Report
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-06T12:21:56-05:00">06 December 2011</span></p>
  <p>The W3C <a href="/2005/Incubator/htmlspeech/">HTML Speech Incubator Group</a> has published their final <a href="/2005/Incubator/htmlspeech/XGR-htmlspeech/">report</a>. This report provides use cases, requirements derived from those use cases and prioritized, and the following proposals: a JavaScript API for use of ASR services, a new &lt;reco&gt; html element that can be linked to the JS ASR API, a new &lt;tts&gt; html element for use of TTS services, and a protocol for how Web User Agents such as web browsers would communicate with ASR and TTS services other than the default ones provided by the Web User Agent. While the group has made astonishing progress in its goals, the proposals are far from being complete, Recommendation-level standards. The Incubator Group expects that the contents of this report will be used as the beginning of standards-track work in one or more W3C Working Groups and/or that of other Standards Development Organizations such as the Internet Engineering Task Force.</p>
<p>This publication is part of the <a href="/2005/Incubator/">Incubator Activity</a>, a forum where W3C Members can innovate and experiment. This work is not on the W3C standards track.</p>
  
</div>



  <div class="entry" id="entry-9284">
  <h3>
<a href="#entry-9284">
  Report: Status and Roadmap of Standards for Web Applications on Mobile
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-06T12:05:08-05:00">06 December 2011</span></p>
  <p><a class="imageLink" href="http://www.w3.org/2011/11/mobile-web-app-state.html"><img src="http://www.w3.org/2011/05/webapp-sm.png" alt="Thumbnail of application platform diagram that appears in report"/></a>
W3C has published a new edition of <a href="http://www.w3.org/2011/11/mobile-web-app-state.html"><cite>Standards for Web Applications on Mobile</cite></a>, an overview of the various technologies developed in W3C that increase the power of Web applications, particularly in the mobile context.</p> <p>A deliverable of the <a href="http://mobiwebapp.eu/">MobiWebApp</a> project, this fourth edition of the document highlights changes since August 2011, including several new specifications in development at W3C (<a href="http://www.w3.org/TR/webrtc/">Web Real Time communications</a>, <a href="http://www.w3.org/TR/geolocation-API-v2/">Geolocation v2</a>, <a href="http://www.w3.org/TR/vibration/">vibration API</a>), progress on many others, and new links to resources on mobile accessibility.</p> <p>The next edition of the document is scheduled for February 2012, in time for Mobile World Congress. W3C invites attendees to visit W3C's booth (Hall 2, 2A31) to learn more about these technologies and how they are transforming the mobile industry. Learn more about <a href="http://www.w3.org/Mobile/">the Web and Mobile Devices</a>.</p>
  
</div>



  <div class="entry" id="entry-9283">
  <h3>
<a href="#entry-9283">
  CSS Image Values and Replaced Content Module Level 3 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-06T11:00:17-05:00">06 December 2011</span></p>
  <p>The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2011/WD-css3-images-20111206/">CSS Image Values and Replaced Content Module Level 3</a>. In CSS Levels 1 and 2, image values, such as those used in the 'background-image' property, could only be given by a single URI value. This module introduces additional ways of representing 2-dimensional images, for example as a list of URIs denoting fallbacks, as a reference to an element in the document, or as a gradient. This module also defines several properties for manipulating raster images and for sizing or positioning replaced elements such as images within the box determined by the CSS layout algorithms. It also defines in a generic way CSS's sizing algorithm for images and other replaced elements. Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9282">
  <h3>
<a href="#entry-9282">
  Indexed Database API Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-06T10:53:37-05:00">06 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2011/WD-IndexedDB-20111206/">Indexed Database API</a>. This document defines APIs for a database of records holding simple values and hierarchical objects. User agents need to store large numbers of objects locally in order to satisfy off-line data requirements of Web applications. The Web Storage specification is useful for storing pairs of keys and their corresponding values. However, it does not provide in-order retrieval of keys, efficient searching over values, or storage of duplicate values for a key. Indexed Database API makes it possible to perform advanced key-value data management that is at the heart of most sophisticated query processors. Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9280">
  <h3>
<a href="#entry-9280">
  W3C Invites Implementations of Media Fragments URI 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-01T09:23:12-05:00">01 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/WebVideo/Fragments/">Media Fragments Working Group</a> invites implementation of the Candidate Recommendation of <a href="http://www.w3.org/TR/2011/CR-media-frags-20111201/">Media Fragments URI 1.0</a>. Audio and video resources on the World Wide Web are currently treated as "foreign" objects, which can only be embedded using a plugin that is capable of decoding and interacting with the media resource. Specific media servers are generally required to provide for server-side features such as direct access to time offsets into a video without the need to retrieve the entire resource. Support for such media fragment access varies between different media formats and inhibits standard means of dealing with such content on the Web. This specification provides for a media-format independent, standard means of addressing media fragments on the Web using Uniform Resource Identifiers (URI). The Working Group also published today the first draft of a companion document, <a href="http://www.w3.org/TR/2011/WD-media-frags-recipes-20111201/">Protocol for Media Fragments 1.0 Resolution in HTTP</a>, which describes various recipes for processing media fragments URI when used over the HTTP protocol. Learn more about the <a href="http://www.w3.org/2008/WebVideo/">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9279">
  <h3>
<a href="#entry-9279">
  Last Calls: Geolocation API Specification Level 2; DeviceOrientation Event
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-01T09:13:12-05:00">01 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/geolocation/">Geolocation Working Group</a> has published two Last Call Working Drafts: <a href="http://www.w3.org/TR/2011/WD-geolocation-API-v2-20111201">Geolocation API Specification Level 2</a>
and <a href="http://www.w3.org/TR/2011/WD-orientation-event-20111201/">DeviceOrientation Event Specification</a>. The former defines a high-level interface to location information associated only with the device hosting the implementation, such as latitude and longitude. The API itself is agnostic of the underlying location information sources. Common sources of location information include Global Positioning System (GPS) and location inferred from network signals such as IP address, RFID, WiFi and Bluetooth MAC addresses, and GSM/CDMA cell IDs, as well as user input.</p>

<p>The DeviceOrientation Event Specification defines several new DOM events that provide information about the physical orientation and motion of a hosting device.</p>

<p>Comments are welcome on both specifications through 15 January. Learn more about the <a href="http://www.w3.org/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9278">
  <h3>
<a href="#entry-9278">
  Content Security Policy Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-01T09:12:12-05:00">01 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/webappsec/">Web Application Security Working Group</a> has published the First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-CSP-20111129/">Content Security Policy</a>. This document defines Content Security Policy, a mechanism web applications can use to mitigate the broad class of content injection vulnerabilities, such as cross-site scripting (XSS). Content Security Policy is a declarative policy that lets the authors (or server administrators) of a web application restrict from where the application can load resources. Learn more about the <a href="http://www.w3.org/Security/">Security Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9277">
  <h3>
<a href="#entry-9277">
  Interest Group Note: Requirements for Home Networking Scenarios
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-12-01T09:07:55-05:00">01 December 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/webtv/">Web and TV Interest Group</a> published today an Interest Group Note of <a href="http://www.w3.org/TR/2011/NOTE-hnreq-20111201/">Requirements for Home Networking Scenarios</a>. This document lists the design goals and requirements that potential W3C recommendations should support in order to enable access to services and content provided by home network devices on other devices, including the discovery and playback of content available to those devices, both from services such as traditional broadcast media and internet based services but also from the home network. Learn more about <a href="http://www.w3.org/standards/webofdevices/tv">Web and TV</a>.</p>
  
</div>



  <div class="entry" id="entry-9274">
  <h3>
<a href="#entry-9274">
  Call for Review: Ontology for Media Resources 1.0 Proposed Recommendation Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-29T14:57:05-05:00">29 November 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published a Proposed Recommendation of <a href="http://www.w3.org/TR/2011/PR-mediaont-10-20111129/">Ontology for Media Resources 1.0</a>. This document defines the Ontology for Media Resources 1.0. The term "Ontology" is used in its broadest possible definition: a core vocabulary. The intent of this vocabulary is to bridge the different descriptions of media resources, and provide a core set of descriptive properties. This document defines a core set of metadata properties for media resources, along with their mappings to elements from a set of existing metadata formats. Besides that, the document presents a Semantic Web compatible implementation of the abstract ontology using RDF/OWL. The document is mostly targeted towards media resources available on the Web, as opposed to media resources that are only accessible in local repositories. Comments are welcome through 31 December. Learn more about the <a href="http://www.w3.org/2008/WebVideo/">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9273">
  <h3>
<a href="#entry-9273">
  CSS Specifications Updated: Flexible Box Layout, CSS Template, Regions, Paged Media
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-29T14:33:33-05:00">29 November 2011</span></p>
  <p>The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published four Working Drafts:</p> <ul class="show_items"> <li><a href="http://www.w3.org/TR/2011/WD-css3-flexbox-20111129/">CSS Flexible Box Layout Module</a>, which describes a CSS box model optimized for user interface design. In flexbox layout model, the children of a box are laid out either horizontally or vertically, and unused space can be assigned to a particular child or distributed among the children by assignment of "flex" to the children that should expand. Nesting of these boxes (horizontal inside vertical, or vertical inside horizontal) can be used to build layouts in two dimensions.</li> <li><a href="http://www.w3.org/TR/2011/WD-css3-layout-20111129/">CSS Template Layout Module</a>, which contains CSS features to describe layouts at a high level, meant for tasks such as the positioning and alignment of "widgets" in a graphical user interface or the layout grid for a page or a window.</li> <li><a href="http://www.w3.org/TR/2011/WD-css3-flexbox-20111129/">CSS Regions Module Level 3</a>, which allows content to flow across multiple areas called regions. The regions are not necessarily contiguous in the document order. The CSS regions module provides an advanced content flow mechanism, which can be combined with positioning schemes as defined by other CSS modules such as the Multi-Column Module or the Grid Layout Module to position the regions where content flows.</li> 
<li><a href="http://www.w3.org/TR/2011/WD-css3-gcpm-20111129/">CSS Generated Content for Paged Media Module</a>, describes features often used in printed publications. </li>
</ul> <p>Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9272">
  <h3>
<a href="#entry-9272">
  Updated Requirements for Japanese Text Layout Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-29T14:32:42-05:00">29 November 2011</span></p>
  <p>W3C has published a second version of <a href="http://www.w3.org/TR/2011/WD-jlreq-20111129/">Requirements for Japanese Text Layout</a>, which describes requirements for general Japanese layout realized with technologies like CSS, SVG, XSL-FO and eBook standards. The document is mainly based on a standard for Japanese layout, JIS X 4051, however, it also addresses areas which are not covered by JIS X 4051. This second version of the document contains a significant amount of additional information related to hanmen design, such as handling headings, placement of illustrations and tables, handling of notes and reference marks, etc. This document was developed by participants in the <a href="http://www.w3.org/2007/02/japanese-layout/">Japanese Layout Task Force</a>, with input from four W3C Working Groups: CSS, Internationalization Core, SVG and XSL. A <a href="http://www.w3.org/TR/2011/WD-jlreq-20111129/ja/">Japanese version</a> is also available.</p>
  
</div>



  <div class="entry" id="entry-9271">
  <h3>
<a href="#entry-9271">
  Last Call: Battery Status API
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-29T14:28:54-05:00">29 November 2011</span></p>
  <p>The <a href="http://www.w3.org/2009/dap/">Device APIs Working Group</a> has published a Last Call Working Draft of <a href="http://www.w3.org/TR/2011/WD-battery-status-20111129/">Battery Status API</a>. The Battery Status API specification defines a means for web developers to programmatically determine the battery status of the hosting device. Without knowing the battery status of a device, a web developer must design the web application with an assumption of sufficient battery level for the task at hand. This means the battery of a device may exhaust faster than desired because web developers are unable to make decisions based on the battery status. Given knowledge of the battery status, web developers are able to craft web content and applications which are power-efficient, thereby leading to improved user experience. Comments are welcome through 20 December. Learn more about the <a href="http://www.w3.org/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9270">
  <h3>
<a href="#entry-9270">
  Patent Advisory Group Recommends Continuing Work on Widgets Access Request Policy
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-28T19:02:39-05:00">28 November 2011</span></p>
  <p>The <a href="http://www.w3.org/2009/11/widgets-pag/">Patent Advisory Group (PAG)</a> for the Web Applications Working Group has published a <a href="http://www.w3.org/2009/11/widgets-pag/pagreport">report</a> recommending that W3C continue work on the <a href="http://www.w3.org/TR/widgets-access/">Widgets Access Request Policy Specification</a> without changes. W3C <a href="/Consortium/Patent-Policy-20040205/#sec-Exception">launches a PAG</a> to resolve issues in the event a patent has been disclosed that may be essential, but is not available under the <a href="/Consortium/Patent-Policy-20040205/#def-RF">W3C Royalty-Free licensing requirements</a>. See the original <a href="http://www.w3.org/News/2009.html#entry-8662">announcement of the PAG</a>.</p>
  
</div>



  <div class="entry" id="entry-9267">
  <h3>
<a href="#entry-9267">
  W3C Invites Implementations of API for Media Resources 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-22T15:09:34-05:00">22 November 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/WebVideo/Annotations/">Media Annotations Working Group</a> invites implementation of the Candidate Recommendation of <a href="http://www.w3.org/TR/2011/CR-mediaont-api-1.0-20111122/">API for Media Resources 1.0</a>. This specification defines an API to access metadata information related to media resources on the Web. The overall purpose is to provide developers with a convenient access to metadata information stored in different metadata formats. The Working Group is developing a <a href="http://www.w3.org/2008/WebVideo/Annotations/drafts/API/testsuite.html">test suite</a> during this Candidate Recommendation phase. Learn more about the <a href="http://www.w3.org/2008/WebVideo/">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9264">
  <h3>
<a href="#entry-9264">
  First Draft of Vibration API Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-17T17:45:37-05:00">17 November 2011</span></p>
  <p>The <a href="http://www.w3.org/2009/dap/">Device APIs Working Group</a> has published the First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-vibration-20111117/">Vibration API</a>. The Vibration API defines a means for web developers to programmatically provide tactile feedback in the form of vibration. The API is designed to tackle high-value use cases related to gaming, and is not meant to be used as a generic notification mechanism. Learn more about the <a href="http://www.w3.org/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9263">
  <h3>
<a href="#entry-9263">
  Two SPARQL 1.1 Drafts Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-17T17:43:52-05:00">17 November 2011</span></p>
  <p>The <a href="http://www.w3.org/2001/sw/DataAccess/">SPARQL Working Group</a> published two drafts today:</p> <ul class="show_items"> <li>the First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-sparql11-overview-20111117/">SPARQL 1.1 Overview</a>, which provides an introduction to a set of W3C specifications that facilitate querying and manipulating RDF graph content on the Web or in an RDF store.</li> <li>a Last Call Working Draft of <a href="http://www.w3.org/TR/2011/WD-sparql11-federated-query-20111117/">SPARQL 1.1 Federated Query</a>, which offers data consumers an opportunity to merge data distributed across the Web from multiple SPARQL query services. Comments on this working draft are welcome before 31 December 2011.</li> </ul> <p>Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9262">
  <h3>
<a href="#entry-9262">
  Website Accessibility Metrics - Online Symposium - 5 December
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-17T15:14:30-05:00">17 November 2011</span></p>
  <p>Registration is now open for the online symposium on website accessibility metrics to be held on 5 December 2011. The symposium is intended for researchers and practitioners who want to explore website accessibility metrics and help develop a roadmap for future research and development. For details and registration, see <a href="http://www.w3.org/WAI/RD/2011/metrics/">Website Accessibility Metrics - Online Symposium</a>. Learn more about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9260">
  <h3>
<a href="#entry-9260">
  WAI-ACT Web Accessibility Project
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-16T12:25:28-05:00">16 November 2011</span></p>
  <p>The Web Accessibility Initiative (<a href="http://www.w3.org/WAI/"><acronym>WAI</acronym></a>) has launched <a href="http://www.w3.org/WAI/ACT/"><acronym>WAI-ACT</acronym></a> - <em>Cooperation Framework for Guidance on Advanced Technologies, Evaluation Methodologies, and Research Agenda Setting to Support eAccessibility,</em> a European Commission (<acronym>EC</acronym>)-funded project.</p>
<p>Learn more about the project and how to participate from the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011OctDec/0104.html"><acronym>WAI-ACT</acronym> Project announcement e-mail</a>.</p>
  
</div>



  <div class="entry" id="entry-9257">
  <h3>
<a href="#entry-9257">
  W3C Announces First Draft of Standard for Online Privacy
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-14T07:35:45-05:00">14 November 2011</span></p>
  <p>To address rising concerns about privacy on the Web, W3C publishes today two first drafts for standards that allow users to express preferences about online tracking:</p>
<ul class="show_items">
<li><a href="/TR/2011/WD-tracking-dnt-20111114/">Tracking Preference Expression (DNT)</a>, which
defines mechanisms for users to express cross-site tracking preferences and 
for sites to indicate whether they honor these preferences.</li>
<li><a href="/TR/2011/WD-tracking-compliance-20111114/">Tracking Compliance and Scope Specification</a>, 
which defines the meaning of a "Do Not Track" preference
and sets out practices for websites to comply with this preference.</li>
</ul>
<p>These documents are the early work of a broad set of stakeholders in the
 <a href="http://www.w3.org/2011/tracking-protection/">W3C Tracking Protection
Working Group</a>, including browser vendors, content providers,
advertisers, search engines, and experts in policy,
privacy, and consumer protection. W3C invites review of these early drafts, expected to become standards by mid-2012. Read the <a href="https://www.w3.org/2011/11/dnt-pr.html.en">full press release</a> and <a href="http://www.w3.org/2011/11/dnt-testimonials">testimonials</a> and learn more about <a href="http://www.w3.org/Privacy/">Privacy</a>.</p>
  
</div>



  <div class="entry" id="entry-9254">
  <h3>
<a href="#entry-9254">
  W3Conf Developer Conference 15-16 November; Live Video Stream Available
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-09T16:12:34-05:00">09 November 2011</span></p>
  <p><a class="imageLink" href="http://www.w3.org/conf/">
<img width="200" height="158" src="http://www.w3.org/2011/10/w3conf-small.png" alt="W3Conf"/>
</a> W3C's first developer conference, <a href="http://www.w3.org/conf/">W3Conf: Practical Standards for Web Professionals</a> takes place 15-16 November in Redmond, Washington. <a href="http://w3conf2011.eventbrite.com/?ref=elink">Registration</a> is still open. For those who cannot attend in person, W3C will provide a <a href="http://www.w3.org/conf/live.html">live video stream</a> of more than 25 presentations, on mobile development, layout, script libraries, graphics, security, and Web gaming, as well as a panel with representatives from most of the major browsers.  No registration is required for the video stream. W3C would like to thank Microsoft for making this conference possible, and express our appreciation to Platinum Sponsor ATT, and Gold Sponsors Adobe and Nokia. Follow us <a href="http://twitter.com/#!/search/%40w3cconf">on twitter on @w3cconf</a>.</p>
  
</div>



  <div class="entry" id="entry-9253">
  <h3>
<a href="#entry-9253">
  Workshop Report: Third Workshop on Web and TV
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-08T14:44:00-05:00">08 November 2011</span></p>
  <p>W3C today published the <a href="http://www.w3.org/2011/09/webtv/summary">final report</a> of the <a href="http://www.w3.org/2011/09/webtv/">Third W3C Web and TV Workshop</a>, hosted by Comcast Cable 19-20 September in Hollywood, California. Nearly 150 representatives from key stakeholders participated, including major browser vendors, content providers, video service providers, TV broadcasters, cable operators, and CE manufacturers.  Participants in the Workshop focused on addressing gaps between the experiences, perspectives, and expectations of the entertainment industry and the Web community.  In addition, the <a href="http://www.w3.org/2011/webtv/">Web and TV Interest Group</a> discussed the issues from the workshop during its first <a href="http://lists.w3.org/Archives/Public/public-web-and-tv/2011Nov/0001">F2F meeting on September 21-22</a>, and decided on next steps for each issue, e.g., submit functional gaps to Working Groups
or create new Interest Group Task Forces. The conclusion is included in the group's <a href="http://www.w3.org/2011/webtv/wiki/Web_and_TV_Interest_Group_Report_201109">September Report</a>.</p>
  
</div>



  <div class="entry" id="entry-9252">
  <h3>
<a href="#entry-9252">
  W3C Co-organizes Meeting on Domain Names and Persistence at IDCC11
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-11-08T12:29:05-05:00">08 November 2011</span></p>
  <p>On 8 December 2011 at the International Digital Curation Conference (IDCC), W3C is co-organizing with the Digital Curation Centre a workshop on 
<a href="http://www.w3.org/2001/tag/doc/idcc_workshop.html">Domain Names and Persistence</a>, in Bristol, UK. The vulnerability of any digital material to unexpected or unintended changes in Internet domain name assignment, and hence to the outcome of domain name resolution, is widely recognised. The fact that domain names are not permanently assigned is regularly cited as one of the main reasons why http: URIs cannot be regarded as persistent identifiers over the long term. This workshop is intended to bring together interested parties to explore the dimensions of the problem and possible directions in which to look for solutions. Learn about related work by the <a href="http://www.w3.org/2001/tag/">W3C Technical Architecture Group (TAG)</a>.</p>
  
</div>



  <div class="entry" id="entry-9246">
  <h3>
<a href="#entry-9246">
  W3C Community Convenes for Technical Plenary 2011
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-27T15:38:45-05:00">27 October 2011</span></p>
  <p>
<a class="imageLink" href="http://www.w3.org/2011/11/TPAC/">
<img src="http://www.w3.org/2011/11/TPAC/img/tpac-logo.png" width="105" height="145" alt="TPAC 2011"/>
</a>
Next week, the W3C community meets in Santa Clara, California for <a href="http://www.w3.org/2011/11/TPAC/">TPAC 2011</a>, W3C's annual face-to-face gathering to coordinate both technical and strategic directions for the organization. We anticipate more than 350 people will participate in <a href="http://www.w3.org/Consortium/activities.html">Working Group</a> meetings, an <a href="http://www.w3.org/participate/meetings">Advisory Committee meeting</a>, and a <a href="http://www.w3.org/wiki/TPAC2011">Plenary Day</a> organized this year as a participant-driven camp. In addition to two plenary sessions (on Web and Television, and Web Content Interoperability), participants will discuss a <a href="http://www.w3.org/wiki/TPAC2011/SessionIdeas">variety of breakout topics</a>. Although participation in TPAC is limited to those already in W3C groups, the TPAC proceedings are public and will be made available shortly after the meeting. Follow the meeting on social networking sites with tag #tpac.</p>
  
</div>



  <div class="entry" id="entry-9245">
  <h3>
<a href="#entry-9245">
  First Draft of WebRTC 1.0: Real-time Communication Between Browsers Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-27T15:35:43-05:00">27 October 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/04/webrtc/">Web Real-Time Communications Working Group</a> has published he First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-webrtc-20111027/">WebRTC 1.0: Real-time Communication Between Browsers</a>. This document defines a set of APIs that enable video conferencing from within an Open Web Platform application. These APIs allow local media, including audio and video, to be requested from a platform, media to be sent over the network to another browser or device implementing the appropriate set of real-time protocols, and media received from another browser or device to be processed and displayed locally. This specification is being developed in conjunction with a protocol specification developed by the IETF RTCWEB group. Learn more about the <a href="http://www.w3.org/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9244">
  <h3>
<a href="#entry-9244">
  Last Call: Touch Events version 1
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-27T15:31:12-05:00">27 October 2011</span></p>
  <p>The <a href="http://www.w3.org/2010/webevents/">Web Events Working Group</a> has published a Last Call Working Draft of <a href="http://www.w3.org/TR/2011/WD-touch-events-20111027/">Touch Events version 1</a>. User Agents that run on terminals which provide touch input to use web applications typically use interpreted mouse events to allow users to access interactive web applications. However, these interpreted events, being normalized data based on the physical touch input, may not deliver the intended user experience. Native applications are capable of handling both cases with the provided system APIs. The Touch Events specification now provides a solution for Open Web Platform applications: the ability to directly handle touch events, and multiple touch points for enabled devices. Comments are welcome through 17 November. Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9242">
  <h3>
<a href="#entry-9242">
  Incubator Group Report: Unified Service Description Language XG Final Report
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-27T06:23:35-05:00">27 October 2011</span></p>
  <p>The W3C <a href="/2005/Incubator/usdl/">Unified Service Description Language Incubator Group</a> has published their final <a href="/2005/Incubator/usdl/XGR-usdl/">report</a>. The mission of the Unified Service Description Language Incubator Group was to work on the already existing proposal for USDL in three directions: investigate similar approaches and relate them to USDL, reshape the specification to align it with W3C and feedback that was collected, and prove practical relevance by creating reference test cases by various partners. During the XG's lifetime, the group shifted the focus away from working on the language itself in order to better concentrate on use cases and adoption. The Incubator Group Report therefore contains a comprehensive overview and assessment of other languages, specifications and approaches that were considered to be related to USDL. The report also contains a description of our reference test cases and their implementations, a list of issues and ideas of improvement for the next version of USDL, and a statement from some partners about USDL. It concludes with the recommendation to follow up on the USDL specification in form of a Working Group, among others.</p>
<p>This publication is part of the <a href="/2005/Incubator/">Incubator Activity</a>, a forum where W3C Members can innovate and experiment. This work is not on the W3C standards track.</p>
  
</div>



  <div class="entry" id="entry-9241">
  <h3>
<a href="#entry-9241">
  Incubator Group Report: Object Memory Modeling XG Final Report
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-26T02:25:22-05:00">26 October 2011</span></p>
  <p>The W3C <a href="/2005/Incubator/omm/">Object Memory Modeling Incubator Group</a> has published their final <a href="/2005/Incubator/omm/XGR-omm/">report</a>. This report summarizes the findings of the Object Memory Modeling Incubator Group. An XML-based object memory format is introduced, which allows for modeling of events or other information about individual physical artifacts, and which is designed to support data storage of those logs on so-called "smart labels" attached to the physical artifact. The group makes several recommendations concerning the future evolution of the object memory format at the W3C; these address connections to provenance modeling, the embedding of object memories in web pages, and potential benefits of an object memory API.</p>
<p>This publication is part of the <a href="/2005/Incubator/">Incubator Activity</a>, a forum where W3C Members can innovate and experiment. This work is not on the W3C standards track.</p>
  
</div>



  <div class="entry" id="entry-9240">
  <h3>
<a href="#entry-9240">
  Last Call: Web Storage
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-25T09:21:41-05:00">25 October 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="http://www.w3.org/TR/2011/WD-webstorage-20111025/">Web Storage</a>. This specification introduces two related mechanisms, similar to HTTP session cookies, for storing structured data on the client side. The first is designed for scenarios where the user is carrying out a single transaction, but could be carrying out multiple transactions in different windows at the same time. Cookies don't really handle this case well. To address this, this specification introduces the sessionStorage IDL attribute. Comments are welcome through 15 November. Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9239">
  <h3>
<a href="#entry-9239">
  Incubator Group Report: Library Linked Data XG Final Report
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-25T08:18:01-05:00">25 October 2011</span></p>
  <p>The W3C <a href="/2005/Incubator/lld/">Library Linked Data Incubator Group</a> has published their final <a href="/2005/Incubator/lld/XGR-lld/">report</a>. In the report, the group characterized the current state of library data management, outlined the potential benefits of publishing library data as Linked Data, and formulated next-step recommendations for library standards bodies, data and systems designers, librarians and archivists, and library leaders. The report is supplemented by two more detailed reports. <a href="/2005/Incubator/lld/XGR-lld-usecase-20111025/">"Use Cases"</a> describes library applications which showcase the benefits of adopting Semantic Web standards and Linked Data principles to publish library assets such as bibliographic data, concept schemes, and authority files. <a href="/2005/Incubator/lld/XGR-lld-vocabdataset-20111025/">"Datasets, Value Vocabularies, and Metadata Element Sets"</a> provides a snapshot of key resources available for creating library Linked Data today. The group moved several documents to the <a href="/2001/sw/wiki/LLD">W3C's Semantic Web wiki</a> and expects the discussion to continue on the <a href="http://lists.w3.org/Archives/Public/public-lld/">public-lld mailing list</a>, both of which are open to participation by all interested members of the
public.</p>
<p>This publication is part of the <a href="/2005/Incubator/">Incubator Activity</a>, a forum where W3C Members can innovate and experiment. This work is not on the W3C standards track.</p>
  
</div>



  <div class="entry" id="entry-9237">
  <h3>
<a href="#entry-9237">
  Schedule, Speakers, and Sponsors Announced for W3Conf Developer Conference
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-21T11:38:05-05:00">21 October 2011</span></p>
  <p>
<a class="imageLink" href="http://www.w3.org/conf/">
<img width="200" height="158" src="http://www.w3.org/2011/10/w3conf-small.png" alt="W3Conf"/>
</a>
W3C announces today the speakers and the schedule for <a href="http://www.w3.org/conf">W3Conf</a>, W3C's first developer conference, in the Seattle area on 15-16 November 2011. W3Conf will feature presentations by renowned experts on mobile development, layout, script libraries, graphics, security, and Web gaming, and representatives from major browser and authoring tool vendors.  The talks will focus on technologies you can use today, with a glimpse of the future; this is about developers, not products. <a href="http://w3conf2011.eventbrite.com/">Registration is open</a>, with early bird rates available through 31 October. W3C would like to thank Microsoft for making this conference possible,  and express our appreciation to Platinum Sponsor ATT, and Gold Sponsors Adobe and Nokia.</p>
  
</div>



  <div class="entry" id="entry-9236">
  <h3>
<a href="#entry-9236">
  Updated Drafts of Three WebApps Specifications: File API, Server-Sent Events, HTML5 Web Messaging
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-20T09:34:46-05:00">20 October 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> updated three Working Drafts today:</p> <ul class="show_items"> <li><a href="http://www.w3.org/TR/2011/WD-FileAPI-20111020/">File API</a>, which provides an API for representing file objects in web applications, as well as programmatically selecting them and accessing their data.</li> <li><a href="http://www.w3.org/TR/2011/WD-eventsource-20111020/">Server-Sent Events</a>, which defines an API for opening an HTTP connection for receiving push notifications from a server in the form of DOM events. The API is designed such that it can be extended to work with other push notification schemes such as Push SMS.</li> <li><a href="http://www.w3.org/TR/2011/WD-webmessaging-20111020/">HTML5 Web Messaging</a>, which defines two mechanisms for communicating between browsing contexts in HTML documents.</li> </ul> <p>Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9235">
  <h3>
<a href="#entry-9235">
  Group Note: Ontology of Rhetorical Blocks (ORB)
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-20T09:27:47-05:00">20 October 2011</span></p>
  <p>The <a href="http://www.w3.org/2001/sw/hcls/">Semantic Web Health Care and Life Sciences Interest Group</a> has published a Group Note of <a href="http://www.w3.org/TR/2011/NOTE-hcls-orb-20111020/">Ontology of Rhetorical Blocks (ORB)</a>. The Ontology of Rhetorical Blocks is a formalization capturing the coarse-grained rhetorical structure of scientific publications. This note is designed to provide a general overview of the motivation and use-cases supporting ORB, in addition to the actual conceptual elements, as well as, practical examples of how to use it in conjunction with different representation languages. Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9234">
  <h3>
<a href="#entry-9234">
  W3C Welcomes Google and Adobe as First Organization Sponsors
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-19T08:40:44-05:00">19 October 2011</span></p>
  <p>W3C introduced a <a href="http://www.w3.org/Consortium/sponsor/org">W3C Organization Sponsor program</a> earlier this year to enhance its capacity to support the deployment of Web standards. W3C announces today the first W3C Organization Sponsors: Google (Gold) and Adobe (Silver). W3C thanks both organizations for their generosity. W3C will use the donations to support training, documentation, tools, and outreach to Web professionals. "W3C has been a cornerstone component of the World Wide Web's evolution and Google is pleased to be able to support and participate in its processes," said <b>Vint Cerf</b>, Chief Internet Evangelist at Google and an Internet pioneer. "W3C brings many perspectives together from around the world to move the Web forward," said <b>Kevin Lynch</b>, Chief Technology Officer at Adobe. "We're happy to help support this effort and look forward to ongoing collaboration around our shared vision in the standardization of a richer Web." Read the <a href="http://www.w3.org/2011/09/sponsor-pr.html.en">press release</a> and learn more about the <a href="http://www.w3.org/Consortium/sponsor/org">W3C Organization Sponsor program</a>.</p>

  
</div>



  <div class="entry" id="entry-9231">
  <h3>
<a href="#entry-9231">
  First Draft of PROV Data Model and Abstract Syntax Notation Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-18T09:22:44-05:00">18 October 2011</span></p>
  <p>The <a href="http://www.w3.org/2011/prov/">Provenance Working Group</a> has published the First Public Working Draft of <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/">The PROV Data Model and Abstract Syntax Notation</a>. PROV-DM is a core data model for provenance for building representations of the entities, people and processes involved in producing a piece of data or thing in the world. PROV-DM is domain-agnostic but with well-defined extensibility points allowing further domain-specific and application-specific extensions to be defined. It is accompanied by PROV-ASN, a technology-independent abstract syntax notation, which allows serializations of PROV-DM instances to be created for human consumption, which facilitates its mapping to concrete syntax, and which is used as the basis for a formal semantics. Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9230">
  <h3>
<a href="#entry-9230">
  W3C Launches Model-Based User Interfaces Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-17T11:57:34-05:00">17 October 2011</span></p>
  <p>W3C announces today the new <a href='http://www.w3.org/2011/01/mbui-wg-charter'>Model-Based User Interfaces (MBUI) Working Group</a>. The mission of the Model-Based UI Working Group is to develop standards as a basis for interoperability across authoring tools for context aware user interfaces for Web-based interactive applications. Application developers face increasing difficulties due to wide variations in device capabilities, in the details of the standards they support, the need to support assistive technologies for accessibility, the demand for richer user interfaces, the suites of programming languages and libraries, and the need to contain costs and meet challenging schedules during the development and maintenance of applications. The Model-Based UI Working Group will start from extensive experience with model-based user interface design solutions, and will provide a strong basis for interoperable authoring tools for interactive application front ends, with HTML5 as a key delivery platform. Learn more about the <a href="http://www.w3.org/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9229">
  <h3>
<a href="#entry-9229">
  W3C Launches Web Testing Activity
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-13T15:17:59-05:00">13 October 2011</span></p>
  <p>W3C announces the launch of a new
<a href="http://www.w3.org/testing/">Web Testing Activity</a>. For years, W3C has been testing technologies independently in a variety of Working Groups. Each specification follows its own methods for testing the underlying technology and there has been minimal coordination between Working Groups on testing methods. Technologies such as HTML, CSS, and APIs must be tested in the same user agents, at times in combination. Therefore, as the number of technologies and the number of devices using them increase, it has become vital to quality on the Web that W3C take a broader view of testing. To this end, W3C has launched two groups. The <a href="http://www.w3.org/testing/browser/">Browser Testing and Tools Working Group</a> will produce technologies for use in testing, debugging, and troubleshooting of Web applications running in Web browsers. The <a href="http://www.w3.org/testing/ig/">Web Testing Interest Group</a> will develop and deploy testing mechanisms and collateral materials for testing of Web technologies across different devices (desktops, mobile, TV, etc.).</p>
  
</div>



  <div class="entry" id="entry-9228">
  <h3>
<a href="#entry-9228">
  BAD to Good: Demo shows web accessibility barriers fixed
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-13T10:29:45-05:00">13 October 2011</span></p>
  <p>The Web Accessibility Initiative (<a href="http://www.w3.org/WAI/">WAI</a>)
Education and Outreach Working Group (<a href="http://www.w3.org/WAI/EO">EOWG</a>) has updated
the <a href="http://www.w3.org/WAI/demos/bad/">Before and After Demonstration
(BAD)</a>. BAD shows an inaccessible website and a retrofitted version of the
same website with the accessibility barriers fixed. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011OctDec/0003.html">call for review e-mail</a>, learn
about <a href="http://www.w3.org/standards/webdesign/accessibility">Accessibility</a>,
and visit the <a href="http://www.w3.org/WAI/">WAI home page</a>.</p>
  
</div>



  <div class="entry" id="entry-9226">
  <h3>
<a href="#entry-9226">
  SVG Open 2011 is Around the Corner: 17-20 October
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-07T12:41:18-05:00">07 October 2011</span></p>
  <p>Registration is coming to a close for <a href="http://www.svgopen.org/2011/">SVG Open 2011</a>, which takes place 17-20 October 2011. W3C joins other sponsors to help with SVG Open 2011, the 9th international conference on Scalable Vector Graphics, which may now be used in all modern browsers. This year, Microsoft Corporation hosts the conference at their New England Research and Development (NERD) Center in Cambridge, Massachusetts. SVG Open provides an opportunity for designers, developers and implementers to learn about SVG, and share ideas, experiences, products, and strategies. Members of the <a href="http://www.w3.org/Graphics/SVG/">W3C SVG Working Group</a>, including W3C Team member Doug Schepers, will be attending and presenting at the conference. The SVG Working Group will also brief attendees on recent developments around the SVG specification, including SVG2 and integration with CSS and HTML. The conference includes a day of workshops. Learn more about  <a href="http://www.w3.org/standards/webdesign/graphics">Graphics at W3C</a>.</p>
  
</div>



  <div class="entry" id="entry-9225">
  <h3>
<a href="#entry-9225">
  New Course on Game development in HTML5 and Open Web Technology
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-07T08:00:56-05:00">07 October 2011</span></p>
  <p>W3C is pleased to announce its newest online course dedicated to <a href="http://openmediaweb.eu/2011/10/06/html5-games-course/">"Game Development in HTML5"</a>. Developed and taught by Michal Budzynski, who recently ran <a href="http://ongamestart.com/">onGameStart</a>, where <a href="http://www.openmediaweb.eu">W3C/OpenMedia</a> explored <a href="http://www.w3.org/2011/09/games/">standardization needs around games</a> with the Web games community. This course will last 4 weeks <strong>from 31 Oct. to 27 Nov. 2011</strong>. Through this course, students will create browser based multiplayer games by using open Web technologies such as HTML5 Canvas, CSS Transitions, Timing control for script-based animations, Web Sockets and other JavaScript APIs. The full price of the course is €225 but we have a limited number of seats available at the early bird rate of €145, open until 22 October 2011. <a href="http://www.w3techcourses.com/course/view.php?id=9">Register today!</a></p>
  
</div>



  <div class="entry" id="entry-9222">
  <h3>
<a href="#entry-9222">
  CSS Fonts Module Level 3 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-10-04T09:14:38-05:00">04 October 2011</span></p>
  <p>The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2011/WD-css3-fonts-20111004/">CSS Fonts Module Level 3</a>. This specification describes how font properties are specified and how font resources are loaded dynamically. Font resources may be local, installed on the system on which a user agent is running, or downloadable. For local font resources descriptive information can be obtained directly from the font resource. For downloadable font resources (sometimes referred to as web fonts), the descriptive information is included with the reference to the font resource. Families of fonts typically don't contain a single face for each possible variation of font properties. The CSS font selection mechanism describes how to match a given set of CSS font properties to a given font face. Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9221">
  <h3>
<a href="#entry-9221">
  Open Task Forces to Discuss Web Schemas, Data Formats
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-30T12:56:06-05:00">30 September 2011</span></p>
  <p>Structured data on the Web gained additional momentum with the June 2011 announcement from Google, Microsoft, and Yahoo! of <a href="http://schema.org/">schema.org</a>, which "provides a collection of schemas ... that webmasters can use to markup their pages in ways recognized by major search providers." The launch raised two topics in particular that will now be the focus of new task forces within W3C's <a href="http://www.w3.org/2001/sw/interest/">Semantic Web Interest Group</a>; schema.org will participate in these discussions:</p>
<ul class="show_items">
<li><a href="http://www.w3.org/wiki/WebSchemas">Web Schemas Task Force</a>, to be chaired by R.V. Guha (Google). This task force will focus on collaboration around vocabularies. </li>
<li><a href="http://www.w3.org/wiki/Html-data-tf">HTML Data Task Force</a>, to be chaired by Jeni Tennison. This task force will focus on the relationship between RDFa, microdata, and other approaches to structured data on the Web, including how people can combine data sources or translate from one syntax to another.</li>
</ul>
<p>Anyone may participate in these task forces; for more information see the <a href="http://www.w3.org/2001/sw/interest/">Semantic Web Interest Group home page</a>. Learn more about the <a href="http://www.w3.org/2001/sw/">Semantic Web</a>.</p>
  
</div>



  <div class="entry" id="entry-9219">
  <h3>
<a href="#entry-9219">
  Two New CSS Recommendations: Namespaces Module and Selectors Level 3; First Draft of Selectors Level 4
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-29T10:53:48-05:00">29 September 2011</span></p>
  <p>The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> published two W3C Recommendations today: <a href="http://www.w3.org/TR/2011/REC-css3-namespace-20110929/">CSS Namespaces Module</a> and <a href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/">Selectors Level 3</a>. The first defines the syntax for using namespaces in CSS. The second defines the patterns that style sheet designers may use to match parts of a document; see the <a href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#changesFromCSS2">list of changes from CSS2 selectors</a>. The Working Group also published the First Draft of <a href="http://www.w3.org/TR/2011/WD-selectors4-20110929/">Selectors Level 4</a>, which introduces powerful new selectors. Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9218">
  <h3>
<a href="#entry-9218">
  Last Call: The WebSocket API
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-29T10:44:16-05:00">29 September 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="http://www.w3.org/TR/2011/WD-websockets-20110929/">The WebSocket API</a>. To enable Web applications to maintain bidirectional communications with server-side processes, this specification introduces the WebSocket interface. Comments are welcome through 21 October. Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9217">
  <h3>
<a href="#entry-9217">
  W3C Social Business Jam: Three-day Online Global Event
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-28T17:23:13-05:00">28 September 2011</span></p>
  <p><a class="imageLink" href="http://www.w3.org/2011/socialbusiness-jam/">
<img src="http://www.w3.org/2011/socialbusiness-jam/images/W3CJamHeroImage.jpg" alt="W3C Jam image"/>
</a><em><strong>Update 7 October</strong>: <a href="https://www.collaborationjam.com/minijam3/w3csocialbusiness/registration/">Registration</a> is open.</em> W3C announces today its first ever 3-day virtual event, the <a href="http://www.w3.org/2011/socialbusiness-jam/">W3C Social Business Jam</a>, 8-10 November. Participation is free and open to all. Participation in this Jam is intended for individuals and professionals working in businesses or the social business space. If you are passionate about leveraging social capabilities to improve business results or if you want to discuss your ideas on how social technologies offer business value beyond traditional social media approaches, then this Jam is the right place for you. The meeting should produce a better understanding of how businesses are using social technologies and the challenges they face integrating the technologies into their existing environments. We expect the conversation on social business to continue after the Jam in <a href="/community/">W3C Community or Business Groups</a>. Learn more about the <a href="http://www.w3.org/2011/socialbusiness-jam/">W3C Social Business Jam</a>.</p>


  
</div>



  <div class="entry" id="entry-9216">
  <h3>
<a href="#entry-9216">
  Call for Review of Seven Web Services Proposed Recommendations
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-27T22:38:01-05:00">27 September 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/ws/ra/">Web Services Resource Access Working Group</a> has published Proposed Recommendations of seven Web Services specifications:
<a href="http://www.w3.org/TR/2011/PR-ws-enumeration-20110927/">Enumeration (WS-Enumeration)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-event-descriptions-20110927/">Event Descriptions (WS-EventDescriptions)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-eventing-20110927/">Eventing (WS-Eventing)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-fragment-20110927/">Fragment (WS-Fragment)</a>, <a href="http://www.w3.org/TR/2011/PR-ws-metadata-exchange-20110927/">Metadata Exchange (WS-MetadataExchange)</a>,
<a href="http://www.w3.org/TR/2011/PR-ws-soap-assertions-20110927/">SOAP Assertions (WS-SOAPAssertions)</a>, and
<a href="http://www.w3.org/TR/2011/PR-ws-transfer-20110927/">Transfer (WS-Transfer)</a>. Comments welcome through 4 November 2011. Learn more about the
<a href="http://www.w3.org/2002/ws/">Web Services Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9215">
  <h3>
<a href="#entry-9215">
  Extensible Stylesheet Language (XSL-FO) 2.0 Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-27T22:33:32-05:00">27 September 2011</span></p>
  <p>The <a href="http://www.w3.org/XML/XPPL/">XML Print and Page Layout Working Group</a> has published an updated
Working Draft of <a href="http://www.w3.org/TR/2011/WD-xslfo20-20110927/">Extensible Stylesheet Language (XSL-FO) Version
2.0</a>. XSL-FO is a powerful template-based language for formatting XML documents.
This is the first draft that includes the existing specification as well as new work, although some new features from the previous draft are not yet included. Learn more about <a href="http://www.w3.org/XML/">XML</a>.</p>
  
</div>



  <div class="entry" id="entry-9214">
  <h3>
<a href="#entry-9214">
  Widget Packaging and XML Configuration a Recommendation; three other Web Apps specifications published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-27T22:17:33-05:00">27 September 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> published a W3C Recommendation today of <a href="http://www.w3.org/TR/2011/REC-widgets-20110927/">Widget Packaging and XML Configuration</a>. This specification standardizes a packaging format and metadata for a class of software known as widgets. Unlike traditional user interface widgets (e.g., buttons, input boxes, toolbars, etc.), widgets as specified in this document are full-fledged client-side applications that are authored using technologies such as HTML and then packaged for distribution.</p> <p>The Working Group also published today:</p> <ul class="show_items"> <li>a Working Draft of <a href="http://www.w3.org/TR/2011/WD-widgets-uri-20110927/">Widget URI scheme</a>, which defines the widget URI scheme and rules for dereferencing a widget URI, which can be used to address resources inside a package.</li> <li>a Note of <a href="http://www.w3.org/TR/2011/NOTE-widgets-reqs-20110927/">Requirement For Standardizing Widgets</a>, which lists the design goals and requirements that specifications would need to address in order to standardize various aspects of widgets.</li> 
<li>a Last Call Working Draft of <a href="http://www.w3.org/TR/2011/WD-WebIDL-20110927/">Web IDL</a>, which can be used to describe interfaces that are intended to be implemented in web browsers. Web IDL is an IDL variant with a number of features that allow the behavior of common script objects in the web platform to be specified more readily. Last call comments welcome through 18 October 2011.</li>
</ul> <p>Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9213">
  <h3>
<a href="#entry-9213">
  New Online Course: HTML5 Audio and Video
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-27T11:49:49-05:00">27 September 2011</span></p>
  <p>We are pleased to announce the launch of a new W3C online course: <a href="http://openmediaweb.eu/2011/09/27/html5-audio-video-course/">HTML5 Audio and Video</a>. Taught by <a href="http://html5doctor.com/author/markb/">Mark Boas</a>, one of the HTML5 doctors, the course will last 5 weeks, from 17 October to 20 November 2011. Through this course students will learn how to use HTML5 media in Web pages and applications. The full price of the course is €225 but we have a limited number of seats available at the early bird rate of €145, available until 7 October 2011. <a href="http://www.w3techcourses.com/course/view.php?id=7">Register today</a>!</p>
  
</div>



  <div class="entry" id="entry-9212">
  <h3>
<a href="#entry-9212">
  W3C Organizes Workshop on Linked Enterprise Data Patterns
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-26T21:11:53-05:00">26 September 2011</span></p>
  <p>Linked Data technology offers huge potential for enterprise applications such as the integration and the management of data within and across enterprises. The distributed nature of Linked Data enables loose-coupling for data sharing within and between organizations. With Linked Data, enterprises have a unique opportunity to cooperate in their use of shared data without the costs of extensive coordination. W3C is organizing a Workshop on <a href="http://www.w3.org/2011/09/LinkedData/">Linked Enterprise Data Patterns: Data-driven Applications on the Web</a> for participants to discuss requirements, share solutions, and develop a healthy and scalable Linked Enterprise Data infrastructure. The Workshop takes place 6-7 December in Cambridge, Massachusetts. Anyone may participate; W3C membership is not required.
All participants are required to submit a <a href="http://www.w3.org/2011/09/LinkedData/#paper">position paper</a> by 25 October. Learn more about the <a href="http://www.w3.org/2011/09/LinkedData/">Workshop</a> and the <a href="http://www.w3.org/standards/semanticweb/">Semantic Web</a>.</p>
  
</div>



  <div class="entry" id="entry-9211">
  <h3>
<a href="#entry-9211">
  W3C Invites Implementations of Progress Events
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-26T10:40:00-05:00">26 September 2011</span></p>
  <p>The <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> invites implementation of the Candidate Recommendation of <a href="http://www.w3.org/TR/2011/CR-progress-events-20110922/">Progress Events</a>. The Progress Events specification defines an event interface that can be used for measuring progress; e.g., HTTP entity body transfers. This specification is primarily meant to be used by other specifications. Learn more about the <a href="http://www.w3.org/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9210">
  <h3>
<a href="#entry-9210">
  Inria to Host First W3C Office in France
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-20T21:01:02-05:00">20 September 2011</span></p>
  <p>
<a class="imageLink" href="http://www.inria.fr/">
<img src="http://www.w3.org/2011/09/logo-inria-en.jpg" alt="INRIA"/>
</a> To strengthen its relations with industry and research activities in France and Europe, W3C announces today the opening of a <a href="http://www.inria.fr/w3c-france">W3C Office in France</a>, hosted by <a href="http://www.inria.fr/">Inria</a> (French National Computer Science Research Institute). To mark the launch, the Office is organizing a session on
Open Data at the <a href="http://www.openworldforum.org/">Open World Forum</a>
on 22 September in Paris, in cooperation with Inria and Paris City Hall. "Inria has a longstanding commitment to the development of free software and
open standards," said Prof. Michel Cosnard, Inria Chairman and CEO. "We have
supported W3C's mission since the inception of the Consortium in 1994, notably
by hosting W3C's European branch". Read the <a href="http://www.w3.org/2011/09/france-pr.html">full press release</a> and learn more about the <a href="http://www.w3.org/Consortium/Offices/">W3C Offices</a>.</p>
  
</div>



  <div class="entry" id="entry-9209">
  <h3>
<a href="#entry-9209">
  Digital Ink Standard Enhances Device Integration
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-20T09:30:16-05:00">20 September 2011</span></p>
  <p>W3C announced today a new standard for the exchange of "digital ink" on the Web. The <a href="http://www.w3.org/TR/2011/REC-InkML-20110920/">Ink Markup Language (InkML) Recommendation</a> can be used to store and exchange the output of an electronic pen or stylus as well as handwriting, gestures, sketches, music, and other notations. InkML is part of W3C's ongoing efforts to build One Web available from any device. A host of new applications are now possible thanks to this open standard, such as: pen-based text messaging; handwritten annotation of documents, photos, or other media; collaborative white boards; archiving of hand-written notes; and more efficient approaches to filling out forms. Read the <a href="http://www.w3.org/2011/08/inkml-pr.html.en">press release</a> and <a href="http://www.w3.org/2011/08/inkml-testimonials.html">testimonials</a> and learn more about the <a href="http://www.w3.org/standards/webofdevices/">Web of Devices</a>.</p>


  
</div>



  <div class="entry" id="entry-9208">
  <h3>
<a href="#entry-9208">
  Last Call: R2RML and A Direct Mapping of Relational Data to RDF 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-20T09:26:47-05:00">20 September 2011</span></p>
  <p>The <a href="http://www.w3.org/2001/sw/rdb2rdf/">RDB2RDF Working Group</a> has published two Last Call Working Drafts for bringing relational database information to the Semantic Web: <a href="http://www.w3.org/TR/2011/WD-r2rml-20110920/">R2RML: RDB to RDF Mapping Language</a> and <a href="http://www.w3.org/TR/2011/WD-rdb-direct-mapping-20110920/">A Direct Mapping of Relational Data to RDF </a>. The former describes R2RML, a language for expressing customized mappings from relational databases to RDF datasets. Such mappings provide the ability to view existing relational data in the RDF data model, expressed in a structure and target vocabulary of the mapping author's choice. The latter document defines a direct mapping from relational data to RDF. Comments are welcome through 1 November. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9206">
  <h3>
<a href="#entry-9206">
  W3C Announces Online Symposium on Web Accessibility Metrics
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-15T15:02:59-05:00">15 September 2011</span></p>
  <p>The <a href="http://www.w3.org/WAI/RD">Research and Development Working Group (RDWG)</a> will hold an online symposium for researchers and practitioners to explore web accessibility metrics and develop a roadmap for future research and development. The Call for Papers is open until 1 November 2011. Learn more about the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011JulSep/0209.html">Symposium on Web Accessibility Metrics</a> and the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9205">
  <h3>
<a href="#entry-9205">
  First Draft of CSS Device Adaptation Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-15T08:04:20-05:00">15 September 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-css-device-adapt-20110915/">CSS Device Adaptation</a>. This specification provides a way for an author to specify, in CSS, the size, zoom factor, and orientation of the viewport that is used as the base for the initial containing block. The goal of this specification is to make it easier to design across devices with different viewport sizes. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9204">
  <h3>
<a href="#entry-9204">
  DOM4 Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-15T07:52:34-05:00">15 September 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-dom-20110915/">DOM4</a>. DOM4 defines the event and document model the Web platform uses. The DOM is a language- and platform neutral interface that allows programs and scripts to dynamically access and update the content and structure of documents. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9203">
  <h3>
<a href="#entry-9203">
  Battery Status Events Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-15T07:49:48-05:00">15 September 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-battery-status-20110915/">Battery Status Events</a>. This specification defines DOM event types that provide information about the battery status of the hosting device. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9202">
  <h3>
<a href="#entry-9202">
  Announcing W3Conf, W3C's First Developer Conference
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-14T15:35:28-05:00">14 September 2011</span></p>
  <p>W3C announces today <a href="http://www.w3.org/conf/">W3Conf: Practical Standards for Web Professionals</a>, W3C's first developer conference, in the Seattle area on 15-16 November 2011. Speakers and participants will focus on practical, cutting-edge standards that developers and designers can use across browsers today. The conference will feature presentations by leading experts in the Web industry on HTML5, CSS3, graphics, accessibility, multimedia, APIs, and more. Seating will be limited, but the event will be webcast live with video streaming. Registration will open soon! W3C Members interested in sponsoring the conference should contact Doug Schepers or Alan Bird. </p>
  
</div>



  <div class="entry" id="entry-9201">
  <h3>
<a href="#entry-9201">
  Last Call for SPARQL 1.1 Query Results JSON Format; First Draft of SPARQL 1.1 Query Results CSV and TSV Formats
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-13T23:36:42-05:00">13 September 2011</span></p>
  <p>The <a href="/2001/sw/DataAccess/">SPARQL Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-sparql11-results-json-20110913/">SPARQL 1.1 Query Results JSON Format</a>. This was also the First Public Draft of that document. SPARQL is a set of standards for the query and update of RDF data, along with ways to access such data over the web. This document describes the representation of SELECT and ASK query results using JSON. Comments are welcome through 26 October.</p><p> The Group also published a First Draft of <a href="http://www.w3.org/TR/2011/WD-sparql11-results-csv-tsv-20110913/">SPARQL 1.1 Query Results CSV and TSV Formats</a>, which describes the use of CSV and TSV formats for expressing SPARQL query results from SELECT queries. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9200">
  <h3>
<a href="#entry-9200">
  Last Call: Touch Events version 1
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-13T08:51:33-05:00">13 September 2011</span></p>
  <p>The <a href="/2010/webevents/">Web Events Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-touch-events-20110913/">Touch Events version 1</a>. The Touch Events specification defines a set of low-level events that represent one or more points of contact with a touch-sensitive surface, and changes of those points with respect to the surface and any DOM elements displayed upon it (e.g. for touch screens) or associated with it (e.g. for drawing tablets without displays). Comments are welcome through 11 October. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9198">
  <h3>
<a href="#entry-9198">
  W3C Organizes Workshop on the Future of Offline Web Applications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-09T15:10:09-05:00">09 September 2011</span></p>
  <p>The Web has rapidly evolved into a platform suitable for rich applications, but off-line use has remained one of the key missing elements that application developers require. 
To strengthen support for offline Web apps in the Open Web Platform, W3C is organizing a 
<a href="http://www.w3.org/2011/web-apps-ws/">Workshop on the Future of Offline Web Applications</a> on 5 November, hosted by Vodafone in Redwood City, CA. The Workshop is open to all at no cost, space permitting. Participants must submit a position paper by 30 September 2011. Learn more about the <a href="http://www.w3.org/2011/web-apps-ws/">Workshop</a>.</p>
  
</div>



  <div class="entry" id="entry-9196">
  <h3>
<a href="#entry-9196">
  W3C Launches Work on “Do Not Track” Standards for the Web
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-08T16:47:41-05:00">08 September 2011</span></p>
  <p>Today, the World Wide Web Consortium announced a new standardization effort to improve user privacy on the Web. The <a href="http://www.w3.org/2011/tracking-protection/">Tracking Protection Working Group</a> will create standards for "Do Not Track" technology by building consensus among a broad set of stakeholders, including browser vendors, content providers, advertisement networks, search engines, and experts in policy, privacy, and consumer protection. The Working Group, which first meets in two weeks, is charted to publish Do Not Track standards by mid-2012. The standards will let users express their tracking preferences and select which parties can track them online.
Learn more about W3C's <a href="http://www.w3.org/Privacy/">Privacy Activity</a> and read the <a href="http://www.w3.org/2011/track-privacy/report">April 2011 Report</a> from the <a href="http://www.w3.org/2011/track-privacy/report">W3C Workshop on Web Tracking and User Privacy</a>, which was sponsored by Adobe, Yahoo!, Google, Mozilla, and Microsoft.</p>

  
</div>



  <div class="entry" id="entry-9195">
  <h3>
<a href="#entry-9195">
  CSS Image Values and Replaced Content Module Level 3 Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-08T10:00:21-05:00">08 September 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-images-20110908/">CSS Image Values and Replaced Content Module Level 3</a>. This CSS Image Values and Replaced Content module has two parts: First, it defines the syntax for image values in CSS. Second, it defines properties used to control the interaction of replaced content and the CSS layout algorithms. These properties can affect the used image resolution for bitmaps, the replaced object's orientation, and whether and how to preserve the object's aspect ratio. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9194">
  <h3>
<a href="#entry-9194">
  W3C Launches New Web Application Security Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-07T23:03:33-05:00">07 September 2011</span></p>
  <p>Modern Web Applications may be governed by numerous security policies. Because there is no standard and shared mechanism for declaring and enforcing policies, it is not possible for sites to selectively declare the need to escape from some restrictions or to request enforcement of additional restrictions. W3C today launched the new <a href="http://www.w3.org/2011/webappsec/">Web Application Security Working Group</a>, with a <a href="http://www.w3.org/2011/08/appsecwg-charter.html">mission</a> is to address security issues in modern web applications and mash-ups. The group will define lightweight policy expression mechanisms to tune the browser security model.  The group will take up work based on the Content Security Policy specification, and will work on secure mash-up technologies including Cross-Domain Resource Sharing and UMP. W3C also launched today the
<a href="http://www.w3.org/2011/07/security-ig-charter.html">Web Security Interest Group</a>, a forum for discussions on improving standards and implementations to advance the security of the Web. Learn more about W3C's <a href="http://www.w3.org/Security/">Security Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9193">
  <h3>
<a href="#entry-9193">
  Last Call: Web Storage; Web Workers
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-06T10:51:00-05:00">06 September 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published Last Call Working Drafts of <a href="/TR/2011/WD-webstorage-20110901/">Web Storage</a> and <a href="/TR/2011/WD-workers-20110901/">Web Workers</a>. The former defines an API for persistent data storage of key-value pair data in Web clients. The latter defines an API that allows Web application authors to spawn background workers running scripts in parallel to their main page. This allows for thread-like operation with message-passing as the coordination mechanism. Comments are welcome through 27 September. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9192">
  <h3>
<a href="#entry-9192">
  Last Call: Multimodal Architecture and Interfaces
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-06T10:48:19-05:00">06 September 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/mmi/">Multimodal Interaction Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-mmi-arch-20110906/">Multimodal Architecture and Interfaces</a>. This document describes a loosely coupled architecture for multimodal user interfaces, which allows for co-resident and distributed implementations, and focuses on the role of markup and scripting, and the use of well defined interfaces between its constituents. Comments are welcome through 27 September. Learn more about the <a href="http://www.w3.org/2002/mmi/">Multimodal Interaction Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9191">
  <h3>
<a href="#entry-9191">
  CSS Values and Units Module Level 3 Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-06T10:45:49-05:00">06 September 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-values-20110906/">CSS Values and Units Module Level 3</a>. This CSS3 module describes the various values and units that CSS properties accept. Also, it describes how values are computed from "specified" through "computed" and "used" into "actual" values. The main purpose of this module is to define common values and units in one specification which can be referred to by other modules. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9190">
  <h3>
<a href="#entry-9190">
  W3C Web Services Standards Approved as ISO/IEC International Standards
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-06T08:20:51-05:00">06 September 2011</span></p>
  <p>Today <a href="http://www.w3.org/">W3C</a> and JTC1, a joint technical committee of <abbr title="International Organization for Standardization">ISO</abbr> and 
<abbr title="International Electrotechnical Commission">IEC</abbr>, announced formal approval of a <a href="/2010/08/ws-pas.html">package of W3C Web Services technologies</a> as ISO/IEC International Standards. As ISO/IEC JTC 1 Standards, these widely deployed technologies now benefit from formal recognition from national bodies, which will promote interoperability and reduce market fragmentation, thus benefiting all users. "This is good news for ensuring that people can use the Web anywhere, on any device," said Jeff Jaffe, W3C CEO. The package included eight specifications, including SOAP 1.2, MTOM, Addressing 1.0 and Policy 1.5, which are foundation specifications for message-based service technology that has been adopted by industry worldwide. Read the full <a href="/2011/07/wspas-pr.html">press release</a> and
<a href="/2011/07/wspas-testimonials.html">testimonials</a>, and learn more about W3C's PAS Submitter status in the <a href="http://www.w3.org/2010/04/pasfaq">W3C PAS FAQ</a>.</p>

  
</div>



  <div class="entry" id="entry-9189">
  <h3>
<a href="#entry-9189">
  Last Call: Performance Timeline; User Timing
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-01T15:12:02-05:00">01 September 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> has published Last Call Working Drafts of <a href="/TR/2011/WD-performance-timeline-20110901/">Performance Timeline</a> and <a href="/TR/2011/WD-user-timing-20110901/">User Timing</a>. The former defines an interface for web applications to access timing information related to navigation and elements. The latter defines an interface to help web developers measure the performance of their applications by giving them access to high precision timestamps. Comments are welcome through 22 September. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9188">
  <h3>
<a href="#entry-9188">
  Three CSS Drafts Published; First Draft of Conditional Rules Module Level 3
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-09-01T15:06:23-05:00">01 September 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> published three drafts today:</p> <ul class="show_items"> <li>a First Public Working Draft of <a href="/TR/2011/WD-css3-conditional-20110901/">CSS Conditional Rules Module Level 3</a>, which describes the rendering of structured documents (such as HTML and XML) on screen, on paper, in speech, etc. This module contains the features of CSS for conditional processing of parts of style sheets, conditioned on capabilities of the processor or the document the style sheet is being applied to.</li> <li>a draft of <a href="/TR/2011/WD-css3-text-20110901/">CSS Text Level 3</a>, which defines properties for text manipulation and specifies their processing model. It covers line breaking, justification and alignment, white space handling, text decoration and text transformation.</li> <li>a draft of <a href="/TR/2011/WD-css3-writing-modes-20110901/">CSS Writing Modes Module Level 3</a>, which defines CSS features to support for various international writing modes, such as left-to-right (e.g. Latin or Indic), right-to-left (e.g. Hebrew or Arabic), bidirectional (e.g. mixed Latin and Arabic) and vertical (e.g. Asian scripts).</li> </ul> <p>Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9185">
  <h3>
<a href="#entry-9185">
  Report Published from Identity in the Browser Workshop; Charter in Development
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-30T08:51:36-05:00">30 August 2011</span></p>
  <p>W3C today published the <a href="http://www.w3.org/2011/identity-ws/report.html">final report</a> of the <a href="http://www.w3.org/2011/identity-ws/">W3C Identity in the Browser workshop</a>, hosted by Mozilla 24-25 May in Mountain View, California. More than 80 representatives from various organizations participated, including major browser developers such as Google, Microsoft, Apple, Mozilla, and Netflix as well as companies wanting a more secure identity mechanism for the Web, such as Workshop sponsors RSA, Paypal, and Yahoo!. The report suggests opportunities for standardization to make the Web a more secure  platform, in particular by enabling identity to be built on top of reliable cryptography in the browser. W3C is now developing a draft Working Group charter; contact <a href="http://www.w3.org/People/all#hhalpin">Harry Halpin</a> if interested.
</p>
  
</div>



  <div class="entry" id="entry-9184">
  <h3>
<a href="#entry-9184">
  XML Security RELAX NG Schemas Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-30T08:49:51-05:00">30 August 2011</span></p>
  <p>The <a href="/2008/xmlsec/">XML Security Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-xmlsec-rngschema-20110830/">XML Security RELAX NG Schemas</a>. This document serves to publish RELAX NG schemas for XML Security specifications, including XML Signature 1.0 and 1.1, XML Encryption 1.0 and 1.1, Exclusive Canonicalization, XML Signature Properties, XML-Signature XPath Filter 2.0, and XML Security Generic Hybrid Ciphers. Learn more about the <a href="/Security/">Security Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9183">
  <h3>
<a href="#entry-9183">
  First Draft of RDF 1.1 Concepts and Abstract Syntax Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-30T08:47:32-05:00">30 August 2011</span></p>
  <p>The <a href="/2011/rdf-wg/">RDF Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-rdf11-concepts-20110830/">RDF 1.1 Concepts and Abstract Syntax</a>. The Resource Description Framework (RDF) is a framework for representing information in the Web. This document defines an abstract syntax (a data model) on which RDF is based, and which serves to link concrete syntaxes to its formal semantics. It also includes discussion of key concepts, datatyping, character normalization and handling of IRIs. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9182">
  <h3>
<a href="#entry-9182">
  One Week to Register for Mobile Web Online Training Course
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-30T07:26:33-05:00">30 August 2011</span></p>
  <p><a href="http://www.w3techcourses.com/course/view.php?id=6">Registration</a> for the second edition of W3C's <a href="http://www.w3.org/Mobile/training/MobiWeb109/">Mobile Web Online Training Course</a> is open one more week. The <a href="http://www.w3.org/QA/2011/08/great_course_money_well_invest.html">acclaimed</a> course begins Monday, 5 September and lasts 8 weeks. Web developers face a number of challenges when designing for the wide array of mobile devices people use today. This course explains how to use Web standards to provide the best experience to the most users: which versions of HTML and CSS are effective in a mobile context, how to overcome various constraints tied to mobile devices, practical client and server-side techniques, what you can do with emerging APIs, and more. The course is developed and taught by the <a href="http://mobiwebapp.eu/">W3C/MobiWebApp</a> team. On successful completion, participants receive a W3C Certificate. Learn more about the <a href="http://www.w3.org/Mobile/training/MobiWeb109/">Mobile Web Online Training Course</a>.</p>
  
</div>



  <div class="entry" id="entry-9181">
  <h3>
<a href="#entry-9181">
  Last Call: CSS Speech Module
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-18T11:35:44-05:00">18 August 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-css3-speech-20110818/">CSS Speech Module</a>. The CSS Speech module defines aural CSS properties that enable authors to declaratively control the rendering of documents via speech synthesis, and using optional audio cues. The feature set exposed by this specification is designed to match the model described by the Speech Synthesis Markup Language (SSML) Version 1.1. Comments are welcome through 30 September. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9180">
  <h3>
<a href="#entry-9180">
  Scalable Vector Graphics (SVG) 1.1 (Second Edition) is a W3C Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-16T10:27:12-05:00">16 August 2011</span></p>
  <p>The <a href="/Graphics/SVG/WG/">SVG Working Group</a> has published a W3C Recommendation of <a href="/TR/2011/REC-SVG11-20110816/">Scalable Vector Graphics (SVG) 1.1 (Second Edition)</a>. This specification defines the features and syntax for Scalable Vector Graphics (SVG) Version 1.1, a modularized language for describing two-dimensional vector and mixed vector/raster graphics in XML. The Second Edition incorporates a number of corrections that were published as errata against the First Edition, as well as numerous other changes that help make the specification more readable and unambiguous. The Changes appendix lists all of the changes that were made since the first Proposed Recommendation publication of the Second Edition. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9179">
  <h3>
<a href="#entry-9179">
  XMLHttpRequest Level 2 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-16T10:25:17-05:00">16 August 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-XMLHttpRequest2-20110816/">XMLHttpRequest Level 2</a>. The XMLHttpRequest Level 2 specification enhances the XMLHttpRequest object with new features, such as cross-origin requests, progress events, and the handling of byte streams for both sending and receiving. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9178">
  <h3>
<a href="#entry-9178">
  First Draft of Efficient XML Interchange (EXI) Profile Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-16T10:23:24-05:00">16 August 2011</span></p>
  <p>The <a href="http://www.w3.org/XML/EXI/">Efficient XML Interchange Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-exi-profile-20110816/">Efficient XML Interchange (EXI) Profile</a>. Many device classes and use-cases desire to use EXI as its exchange format. Due to various restrictions some of those application areas are not capable or allowed to require arbitrary memory growth at runtime. Certain evaluations of EXI in the context of such areas exposed some challenges to the attempt to restrict memory usage predictably within their limited respective threshold. This document describes a profile of the EXI 1.0 specification that allows bounding the memory consumption of EXI internal structures such as grammars and string partitions. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9177">
  <h3>
<a href="#entry-9177">
  W3C Launches Agile Track to Speed Web Innovation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-15T21:02:51-05:00">15 August 2011</span></p>
  <p>
<a class="imageLink" href="/community/"><img src="http://www.w3.org/community/src/img/community-group-logo.png" height="71" width="55" alt="Community and Business Groups"/></a>
To support the rapid evolution of Web technology, W3C today announced <a href="/community/">Community Groups</a>, an agile track for developers and businesses to create Web technology within W3C's international community of experts. Community Groups are open to all, anyone may propose a group, and there is no fee to participate. "Innovation and standardization build on each other," said Jeff Jaffe, W3C CEO. "As the pace of innovation accelerates and more industries embrace W3C's Open Web Platform, Community Groups will accelerate incorporation of innovative technologies into the Web." W3C also launched Business Groups today, which provide W3C Members and non-Members a vendor-neutral forum for the development of market-specific technologies and the means to have a powerful impact on the direction of Web standards. Read more in the <a href="http://www.w3.org/2011/08/cg-pr.html.en">press release</a> and <a href="http://www.w3.org/2011/08/cg-testimonials.html">testimonials</a>. Learn more <a href="http://www.w3.org/community/about/">about Community and Business Groups</a> then <a href="http://www.w3.org/community/groups/propose_cg">start your own Community Group</a> or <a href="http://www.w3.org/community/groups/propose_bg">your own Business Group</a>.
</p>
  
</div>



  <div class="entry" id="entry-9175">
  <h3>
<a href="#entry-9175">
  Three Web Apps Specifications Advance to Proposed Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-11T12:46:56-05:00">11 August 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> published three Proposed Recommendations today:</p> <ul class="show_items"> <li><a href="/TR/2011/PR-view-mode-20110811/">The 'view-mode' Media Feature</a>, which defines a media feature to match the different visual presentation modes that can be applied to web applications and thereby apply different styling based on these different modes using CSS Media Queries.</li> <li><a href="/TR/2011/PR-widgets-20110811/">Widget Packaging and XML Configuration</a>, which standardizes a packaging format and metadata for a class of software known as widgets. Unlike traditional user interface widgets (e.g., buttons, input boxes, toolbars, etc.), widgets as specified in this document are full-fledged client-side applications that are authored using technologies such as HTML and then packaged for distribution.</li> <li><a href="/TR/2011/PR-widgets-digsig-20110811/">XML Digital Signatures for Widgets</a>, which defines a profile of the XML Signature Syntax and Processing 1.1 specification to allow a widget package to be digitally signed. Authors and distributors can digitally sign a widget as a mechanism to ensure continuity of authorship and distributorship. A user agent, or other validation system, can use a digital signature to verify the data integrity of the files within a widget package and to confirm the signing key(s).</li> </ul> <p>Comments are welcome through 15 September. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9174">
  <h3>
<a href="#entry-9174">
  Call for Review: CSS Namespaces Module Proposed Recommendation Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-11T12:41:36-05:00">11 August 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Proposed Recommendation of <a href="/TR/2011/PR-css3-namespace-20110811/">CSS Namespaces Module</a>. This CSS Namespaces module defines the syntax for using namespaces in CSS. It defines the @namespace rule for declaring the default namespace and binding namespaces to namespace prefixes, and it also defines a syntax that other specifications can adopt for using those prefixes in namespace-qualified names. Comments are welcome through 8 September. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9173">
  <h3>
<a href="#entry-9173">
  Associating Schemas with XML documents 1.0 (Second Edition) Note Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-11T12:39:37-05:00">11 August 2011</span></p>
  <p>The <a href="http://www.w3.org/XML/Core/">XML Core Working Group</a> has published a Group Note of <a href="/TR/2011/NOTE-xml-model-20110811/">Associating Schemas with XML documents 1.0 (Second Edition)</a>. This document allows schemas using any schema definition language to be associated with an XML document by including one or more processing instructions with a target of xml-model in the document's prolog. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9172">
  <h3>
<a href="#entry-9172">
  Last Call: Resource Timing; First Draft of Performance Timeline 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-11T12:36:11-05:00">11 August 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-resource-timing-20110811/">Resource Timing</a>. This specification defines an interface for web applications to access timing information related to HTML elements. Comments are welcome through 15 September. The Working Group also published the First Public Working Draft of <a href="/TR/2011/WD-performance-timeline-20110811/">Performance Timeline</a>, which defines an interface for web applications to access timing information related to navigation and elements. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>. </p>
  
</div>



  <div class="entry" id="entry-9171">
  <h3>
<a href="#entry-9171">
  First Draft of Turtle Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-09T15:26:23-05:00">09 August 2011</span></p>
  <p>The <a href="/2011/rdf-wg/">RDF Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-turtle-20110809/">Turtle</a>. Turtle has long been popular among Semantic Web developers as an intuitive and powerful representation of RDF data. The standardization of Turtle will encourage its use in other standards such as R2RML as well as further its adoption in Semantic Web tool chains. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>

  
</div>



  <div class="entry" id="entry-9170">
  <h3>
<a href="#entry-9170">
  Last Call: Progress Events
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-09T11:38:00-05:00">09 August 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-progress-events-20110809/">Progress Events</a>. The Progress Events specification defines an abstract event interface that can be used for measuring loading progress. Comments are welcome through 01 September. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9169">
  <h3>
<a href="#entry-9169">
  First Draft of HTML5: Edition for Web Authors Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-09T11:29:55-05:00">09 August 2011</span></p>
  <p>The <a href="/html/wg/">HTML Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-html5-author-20110809/">HTML5: Edition for Web Authors</a>. This document is a strict subset of the full HTML5 specification that omits user-agent (UA) implementation details. It is targeted toward Web authors and others who are not UA implementors and who want a view of the HTML specification that focuses more precisely on details relevant to using the HTML language to create Web documents and Web applications. Because this document does not provide implementation conformance criteria, UA implementors should not rely on it, but should instead refer to the full HTML5 specification. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9168">
  <h3>
<a href="#entry-9168">
  XML Signature Best Practices Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-09T11:29:09-05:00">09 August 2011</span></p>
  <p>The <a href="/2008/xmlsec/">XML Security Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-xmldsig-bestpractices-20110809/">XML Signature Best Practices</a>. This document collects best practices for implementers and users of the XML Signature specification. Most of these best practices are related to improving security and mitigating attacks, yet others are for best practices in the practical use of XML Signature, such as signing XML that doesn't use namespaces, for example. Learn more about the <a href="/Security/">Security Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9167">
  <h3>
<a href="#entry-9167">
  W3C Organizes Workshop on Data and Services Integration
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-05T18:10:00-05:00">05 August 2011</span></p>
  <p>Integration of heterogeneous data and services has always been a concern for creators and managers of services. With the emergence of the Web, the need for reusing data and services has become even stronger as the number of available services has grown. Different services stacks now exist from Web Services to Cloud-based services. On 20-21 October, W3C is organizing a <a href="/2011/10/integration-workshop/">Workshop on Data and Services Integration</a> hosted by MITRE in Bedford, MA, USA to bring together people with different ways of looking at the issues left unsolved by the existing stacks, to investigate the possible paths to help bridging services built using different paradigms, and to identify points where standardization would help integration of services and data. The Workshop is open to all at no cost, space permitting. Participants must submit a <a href="http://www.w3.org/2011/10/integration-workshop/#paper">position paper</a> by 9 September 2011. Learn more about the <a href="http://www.w3.org/2011/10/integration-workshop">Workshop</a>.</p>
  
</div>



  <div class="entry" id="entry-9165">
  <h3>
<a href="#entry-9165">
  W3C Invites Implementations of WOFF File Format 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-04T12:05:28-05:00">04 August 2011</span></p>
  <p>The <a href="/Fonts/WG/">WebFonts Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2011/CR-WOFF-20110804/">WOFF File Format 1.0</a>. This document specifies the WOFF font packaging format. This format was designed to provide lightweight, easy-to-implement compression of font data, suitable for use with CSS @font-face rules. Any properly licensed TrueType/OpenType/Open Font Format file can be packaged in WOFF format for Web use. User agents decode the WOFF file to restore the font data such that it will display identically to the input font. Learn more about the <a href="/Fonts/">Fonts Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9164">
  <h3>
<a href="#entry-9164">
  CSSOM View Module Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-04T12:02:17-05:00">04 August 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-cssom-view-20110804/">CSSOM View Module</a>. The APIs introduced by this specification provide authors with a way to inspect and manipulate the visual view of a document. This includes getting the position of element layout boxes, obtaining the width of the viewport through script, and also scrolling an element. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9163">
  <h3>
<a href="#entry-9163">
  First Draft Published of Web Application Privacy Best Practices
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-08-04T12:00:31-05:00">04 August 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-app-privacy-bp-20110804/">Web Application Privacy Best Practices</a>. This document outlines good privacy practices for web applications, including those that might use device APIs.Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9160">
  <h3>
<a href="#entry-9160">
  W3C Invites Implementations of W3C XML Schema Definition Language 1.1 (Parts 1 and 2)
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-22T21:21:32-05:00">22 July 2011</span></p>
  <p>The <a href="/XML/Schema">XML Schema Working Group</a> invites implementation of the Candidate Recommendation s <a href="/TR/2011/CR-xmlschema11-1-20110721/">XML Schema Definition Language (XSD) 1.1 Part 1: Structures</a> and <a href="/TR/2011/CR-xmlschema11-2-20110721/">XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes</a>. The first document specifies the XML Schema Definition Language, which offers facilities for describing the structure and constraining the contents of XML documents, including those which exploit the XML Namespace facility. The schema language, which is itself represented in an XML vocabulary and uses namespaces, substantially reconstructs and considerably extends the capabilities found in XML document type definitions (DTDs). This specification depends on XML Schema Definition Language 1.1 Part 2: Datatypes, which defines facilities for defining datatypes to be used in XML Schemas as well as other XML specifications. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>

  
</div>



  <div class="entry" id="entry-9159">
  <h3>
<a href="#entry-9159">
  Last Call: Page Visibility
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-22T21:17:58-05:00">22 July 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-page-visibility-20110721/">Page Visibility</a>. This specification defines a means for site developers to programmatically determine the current visibility state of the page in order to develop power and CPU efficient web applications. Comments are welcome through 18 August. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9158">
  <h3>
<a href="#entry-9158">
  First Draft of The From-Origin Header Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-22T21:17:05-05:00">22 July 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-from-origin-20110721/">The From-Origin Header</a>. The Web platform currently has no limitations on embedding resources from different origins. This specification defines a way for resources to declare they are unavailable within an embedding context. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9157">
  <h3>
<a href="#entry-9157">
  Authoring Tool Accessibility Guidelines (ATAG) 2.0 and Implementing ATAG 2.0 Working Drafts Updated 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-22T21:11:48-05:00">22 July 2011</span></p>
  <p>The <a href="http://www.w3.org/WAI/AU/">Authoring Tool Accessibility  Guidelines Working Group</a> has published updated Working Drafts of <a href="http://www.w3.org/TR/2011/WD-ATAG20-20110721/">Authoring Tool Accessibility  Guidelines (ATAG) 2.0</a> and the companion document <a href="http://www.w3.org/TR/2011/WD-IMPLEMENTING-ATAG20-20110721/">Implementing ATAG 2.0</a>. ATAG defines how <a href="http://www.w3.org/WAI/intro/atag.php#for">authoring tools</a> should help developers produce   accessible web content that conforms   to Web Content Accessibility   Guidelines (WCAG) 2.0. It also defines   how to make   authoring tools accessible so that people with   disabilities can use   them. Comments are welcome through 15 September 2011.   Please see the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011JulSep/0037.html">invitation to review the ATAG 2.0 Working Draft</a> for more information. Learn more about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9155">
  <h3>
<a href="#entry-9155">
  User Agent Accesibility Guidelines (UAAG) 2.0 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-20T21:14:17-05:00">20 July 2011</span></p>
  <p>The <a href="/WAI/UA/">User Agent Accessibility Guidelines Working
Group</a> has published an updated Working Draft of the <a href="http://www.w3.org/TR/2011/WD-UAAG20-20110719/">User Agent Accessibility
Guidelines (UAAG) 2.0</a>. UAAG defines how browsers, media players, and
other "user agents" should support accessibility for people with disabilities
and work with assistive technologies. The
Working Group also published an updated Working Draft of  <a href="http://www.w3.org/TR/2011/WD-IMPLEMENTING-UAAG20-20110719/">Implementing
UAAG 2.0</a>. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011JulSep/0019.html">invitation to
review the UAAG 2.0 Working Draft</a> and about the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9153">
  <h3>
<a href="#entry-9153">
  Internationalization Checker Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-19T08:39:58-05:00">19 July 2011</span></p>
  <p>The <a href="http://validator.w3.org/i18n-checker/">i18n checker</a> is a free service from W3C that provides information about internationalization-related aspects of your HTML page and advice on creating markup that supports the multilingual Web. This latest release uses a new user interface and redesigned source code. It also adds a number of new tests, a file upload facility, and support for HTML5. This is still a 'pre-final' release and development continues. There are already  plans to add further tests and features, to translate the user interface, to add support for XHTML5 and polyglot documents, to integrate with the W3C Unicorn checker, and to add various other features. At this stage we are particularly interested in receiving user feedback. Learn more about <a href="http://www.w3.org/International/">Web Internationalization</a>.</p>

  
</div>



  <div class="entry" id="entry-9151">
  <h3>
<a href="#entry-9151">
  Last Call: API for Media Resources 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-12T13:52:30-05:00">12 July 2011</span></p>
  <p>The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-mediaont-api-1.0-20110712/">API for Media Resources 1.0</a>. This specification defines an API to access metadata information related to media resources on the Web. The overall purpose is to provide developers with convenient access to metadata information stored in different metadata formats. The API provides means to access the set of metadata properties defined in the Ontology for Media Resources 1.0 specification. Comments are welcome through 07 August. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9150">
  <h3>
<a href="#entry-9150">
  CSS Drafts Updated: CSSOM; CSS Image Values and Replaced Content Module Level 3
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-12T13:49:36-05:00">12 July 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published Working Drafts of <a href="/TR/2011/WD-cssom-20110712/">CSSOM</a> and <a href="/TR/2011/WD-css3-images-20110712/">CSS Image Values and Replaced Content Module Level 3</a>. CSSOM defines APIs (including generic parsing and serialization rules) for Media Queries, Selectors, and CSS itself. The latter specification defines the syntax for <code>image</code> values in CSS. It also defines properties used to control the interaction of replaced content and the CSS layout algorithms. These properties can affect the used image resolution for bitmaps, the replaced object's orientation, and whether and how to preserve the object's aspect ratio. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9149">
  <h3>
<a href="#entry-9149">
  Last Call: Web IDL
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-12T13:46:44-05:00">12 July 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-WebIDL-20110712/">Web IDL</a>. This document defines an interface definition language, Web IDL, that can be used to describe interfaces that are intended to be implemented in Web browsers. Web IDL is an IDL variant with a number of features that allow the behavior of common script objects in the web platform to be specified more readily. How interfaces described with Web IDL correspond to constructs within ECMAScript and Java execution environments is also detailed in this document. It is expected that this document acts as a guide to implementors of already-published specifications, and that newly published specifications reference this document to ensure conforming implementations of interfaces are interoperable. Comments are welcome through 23 August. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9148">
  <h3>
<a href="#entry-9148">
  Registration Opens for W3C Training on Mobile Web and Application Best Practices (starts September)
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-12T13:41:50-05:00">12 July 2011</span></p>
  <p>W3C is pleased to announce that <a href="http://www.w3.org/Mobile/training/MobiWeb109/">registration</a> is now open for a second edition of the "W3C Introduction to Mobile Web and Application Best Practices." The online course can be taken in any time zone and will last 8 weeks, from 5 September to 28 October 2011. Developed and taught by the <a href="http://mobiwebapp.eu/">W3C/MobiWebApp</a> team, the course is based entirely on W3C standards, particularly the <a href="http://www.w3.org/Mobile/training/MobiWeb109/">Mobile Web Best Practices</a> and <a href="http://www.w3.org/2010/09/MWABP/">Mobile Web Application Best Practices</a>, all designed to help make great Web content available to as wide an audience as possible. On successful completion, participants receives a W3C Certificate of Completion.  The full price of the course is €195 but we have a limited number of places available at the early bird rate of €145. See <a href="http://www.w3.org/Mobile/training/MobiWeb109/">full details</a> of the course. To ensure your place on the course, please <a href="http://www.w3.org/Mobile/training/mobile_course/mobile_course_dates">register now</a>. </p>
  
</div>



  <div class="entry" id="entry-9147">
  <h3>
<a href="#entry-9147">
  Call for Prior Art Related to US Patent 7,743,336 and US Patent Application 20070101146
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-08T14:48:46-05:00">08 July 2011</span></p>
  <p>This is a <a href='/2010/12/cfpa'>public call for prior
art</a> on patent Application No. 11/432,295 and on Patent 7,743,336.
The W3C seeks information about access control systems available before
October 2005 and content distribution systems before April 2006 that
offer a viable solution that may apply to the <a
href="/2009/11/widgets-pag-charter#L381">use of access
requests policy in Widgets</a>. People who wish to provide feedback
should refer to the <a href='/2010/12/cfpa'>call for
prior art</a> for more information. On 13 November 2009,  pursuant to
its rights under <a href="/Consortium/Patent-Policy-20040205/">W3C's
Patent Policy</a>, Apple, Inc. disclosed <a
href="/2004/01/pp-impl/p72">US Published Patent
Application No. 11/432,295 and US Published Patent Application
11/409,276</a> and claimed that it applies to the <a
href="/2008/webapps/">Web Applications WG</a>'s <a
href="/TR/widgets-access/">Widget Access Request Policy
specification</a>. Apple excluded all claims from the W3C Royalty-Free
License commitment of the <a
href="/Consortium/Patent-Policy-20040205/#sec-Exclusion">W3C Patent Policy</a> given by Participants of the Web Applications Working Group. In accordance with the <a
href="/Consortium/Patent-Policy-20040205/#sec-Exception">exception procedures</a> of the Patent Policy, W3C launched a <a href="/2009/11/widgets-pag-charter">Patent Advisory Group (PAG)</a> to determine possible solutions. The PAG has advised W3C to issue this call for prior art. </p>
  
</div>



  <div class="entry" id="entry-9146">
  <h3>
<a href="#entry-9146">
  Continuing Global Conversation on Key Issues in Web &amp; TV Convergence: Third Workshop on Web and TV Scheduled
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-08T13:31:02-05:00">08 July 2011</span></p>
  <p>W3C announces the third in a series of <a href="/2003/08/Workshops/">Workshops</a> on the Web and TV. The <a href="/2011/09/webtv/">Third W3C Web and TV Workshop</a> takes place in Hollywood, California, USA, 19-20 September 2011, hosted by Comcast Cable. In the previous two workshops (<a href="/2010/09/web-on-tv/summary">Tokyo Workshop</a> and <a href="/2010/11/web-and-tv/summary">Berlin Workshop</a>), participants identified opportunities for convergence of Web and TV infrastructure and began identifying technical challenges. This third workshop will continue these efforts, with a particular focus on the needs of content creators and distributors. Additionally, there will be an opportunity to discuss and debate some of the initial requirements arising in the Web and TV Interest Group that began its work in February 2011. Anyone may participate in this Workshop; a Position Paper is required from a presenter while a Statement of Interest is required from an observer. Both Position Papers and Statements of Interest are due 15 August 2011.  Please see the <a href="/2011/09/webtv/">Call for Participation</a> for further details.</p>
  
</div>



  <div class="entry" id="entry-9145">
  <h3>
<a href="#entry-9145">
  Joint Workshop on Mobile and Web Technologies in Social and Economic Development Report Available
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-07T12:24:26-05:00">07 July 2011</span></p>
  <p>W3C together with <a href="http://www.webfoundation.org">the Web Foundation</a> today published <a href="http://public.webfoundation.org/2011/01/MW4D_WS/report">the report</a> from the <a href="http://public.webfoundation.org/2011/01/MW4D_WS/">W3C/Web Foundation Workshop on Mobile and Web Technologies in Social and Economic Development</a> held in Dar es Salaam, Tanzania in June. The large and diverse group representing more than 30 different nationalities had engaging discussions on voice-based services for underprivileged communities, mobile entrepreneurship and data collection tools. The results of these discussions, as well as the actions identified will be investigated  by the <a href="/2008/MW4D/">W3C Mobile Web for Social Development Interest Group</a> and the <a href="http://www.webfoundation.org">Web Foundation</a>.</p>
 
<p>W3C and the Web Foundation thanks the participants and appreciates the support of the Workshop sponsors: <a href="http://www.spidercenter.org/">Spider</a> (Gold Sponsor), <a href="http://www.twaweza.org/">Twaweza</a> (Gold Sponsor) and <a href="http://www.comviva.com/">Comviva</a> (silver sponsor).</p>
  
</div>



  <div class="entry" id="entry-9144">
  <h3>
<a href="#entry-9144">
  First Draft of XML Encryption 1.1 CipherReference Processing using 2.0 Transforms Specification Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-07T09:02:03-05:00">07 July 2011</span></p>
  <p>The <a href="/2008/xmlsec/">XML Security Working Group</a> has published a First Public Working Draft of "<a href="/TR/2011/WD-xmlenc-transform20-20110707/">XML Encryption 1.1 CipherReference Processing using 2.0 Transforms</a>" specification. This specification brings the benefits of the XML Signature 2.0 transform processing model to XML Encryption, reducing the attack surface and simplifying the processing model. Related 2.0 specifications are in Last Call, including XML Signature 2.0, Canonical XML 2.0 and the XML Signature Streaming Profile of XPath 1.0. The XML Security WG also has 1.1 specifications in Candidate Recommendation, including XML Signature 1.1, XML Encryption 1.1, XML Signature Properties, and XML Security Generic Hybrid Ciphers.</p>
 
<p>To address patent disclosures related to the XML Signature 1.1 and 2.0 and XML Encryption 1.1 specifications, W3C has chartered a <a href="/2011/xmlsec-pag/">Patent Advisory Group</a> that is in progress. Learn more about W3C's <a href="/Security/Activity.html">Security Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9143">
  <h3>
<a href="#entry-9143">
  Ontology for Media Resources 1.0  is a W3C Candidate Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-07T08:59:07-05:00">07 July 2011</span></p>
  <p>The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> invites implementation of the Candidate Recommendation <a href="/TR/2011/CR-mediaont-10-20110707">Ontology for Media Resources 1.0</a>. This document defines the Ontology for Media Resources 1.0. The term "Ontology" is used in its broadest possible definition: a core vocabulary. The intent of this vocabulary is to bridge the different descriptions of media resources, and provide a core set of descriptive properties. This document defines a core set of metadata properties for media resources, along with their mappings to elements from a set of existing metadata formats. Besides that, the document presents a Semantic Web compatible implementation of the abstract ontology using RDF/OWL. The document is mostly targeted towards media resources available on the Web, as opposed to media resources that are only accessible in local repositories. See the group's <a href="/2008/WebVideo/Annotations/drafts/ontology10/testsuite.html">Media Ontology Test Suite</a>. Learn more about the <a href="/2008/WebVideo/Activity">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9141">
  <h3>
<a href="#entry-9141">
  Voice Browser Call Control: CCXML Version 1.0 is a W3C Recomendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-05T11:49:11-05:00">05 July 2011</span></p>
  <p>The <a href="/Voice/Group/">Voice Browser Working Group</a> has published a W3C Recommendation of <a href="/TR/2011/REC-ccxml-20110705/">Voice Browser Call Control: CCXML Version 1.0</a>. The Call Control Extensible Markup Language (CCXML) provides declarative markup to describe telephony call control. CCXML can be used in conjunction with a dialog system such as VoiceXML. Learn more about the <a href="/Voice/">Voice Browser Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9140">
  <h3>
<a href="#entry-9140">
  Working with Time Zones Published as an updated Working Group Note
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-07-05T11:09:12-05:00">05 July 2011</span></p>
  <p>The <a href="/International/core/">Internationalization (I18N) Core Working Group</a> has published an updated version of <a href="/TR/2011/NOTE-timezone-20110705/">Working with Time Zones</a> as a Working Group Note. Date and time values can be complex and the relationship between computer and human timekeeping systems can lead to problems. The working group has updated this version to contain more comprehensive guidelines and best practices for working with time and time zones in applications and document formats. Use cases are provided to help choose an approach that ensures that geographically distributed applications work well. This document also aims to provide a basic understanding and vocabulary for talking about time and time handling in software. Learn more about the <a href="/International/">Internationalization Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9138">
  <h3>
<a href="#entry-9138">
  CSS3 Ruby Module Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-30T08:11:15-05:00">30 June 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-ruby-20110630/">CSS3 Ruby Module</a>. "Ruby" are short runs of text alongside the base text, typically used in East Asian documents to indicate pronunciation or to provide a short annotation. This document proposes a set of CSS properties associated with the 'Ruby' elements. They can be used in combination with the Ruby elements of HTML. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9135">
  <h3>
<a href="#entry-9135">
  First Draft of DeviceOrientation Event Specification Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-28T13:32:39-05:00">28 June 2011</span></p>
  <p>The <a href="/2008/geolocation/">Geolocation Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-orientation-event-20110628/">DeviceOrientation Event Specification</a>. This specification defines several new DOM event types that provide information about the physical orientation and motion of a hosting device. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9134">
  <h3>
<a href="#entry-9134">
  Incubator Group Report: Semantic Sensor Network XG Final Report
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-28T11:22:00-05:00">28 June 2011</span></p>
  <p>The W3C <a href="/2005/Incubator/ssn/">Semantic Sensor Network Incubator Group</a> has published their final <a href="/2005/Incubator/ssn/XGR-ssn/">report</a>. As networks of sensors become more commonplace there is a greater need for their management and querying to be assisted by standards and computer reasoning. Building on the OGC's Sensor Web Enablement services-based architecture and standards, including four description languages, the group produced ontologies for describing sensors and extended a language to support semantic annotations. The report lists use-cases and reviews existing ontologies leading to the selection of the SSN ontology, analyzes examples and semantic markup as well as mapping to existing standards. The report also includes a list of directions for future work in the context of Linked Sensor Data, or Semantic Internet of Things for work at the border of Internet of Things and Internet of Service. The group plans to create a W3C Community Group to focus on the maintenance and extension of the SSN Ontology.</p>
<p>This publication is part of the <a href="/2005/Incubator/">Incubator Activity</a>, a forum where W3C Members can innovate and experiment. This work is not on the W3C standards track.</p>
 
  
</div>



  <div class="entry" id="entry-9129">
  <h3>
<a href="#entry-9129">
  Six Drafts Published Related to XSLT, XQuery, Xpath
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-21T10:51:37-05:00">21 June 2011</span></p>
  <p>W3C today published six documents related to XSLT, XQuery, and XPath:</p>
<ul class="show_items">
<li><a href="/TR/2011/WD-xslt-xquery-serialization-30-20110614/">XSLT and XQuery Serialization 3.0</a></li>
<li><a href="/TR/2011/WD-xqueryx-30-20110614/">XQueryX 3.0</a></li>
<li><a href="/TR/2011/WD-xquery-30-20110614/">XQuery 3.0: An XML Query Language</a></li>
<li><a href="/TR/2011/WD-xpath-functions-30-20110614/">XPath and XQuery Functions and Operators 3.0</a></li>
<li><a href="/TR/2011/WD-xpath-datamodel-30-20110614/">XQuery and XPath Data Model 3.0</a></li>
<li><a href="/TR/2011/WD-xpath-30-20110614/">XML Path Language (XPath) 3.0</a></li>
</ul>

<p>These drafts were published by the <a href="http://www.w3.org/XML/Query/">XML Query Working Group</a> and the <a href="http://www.w3.org/Style/XSL/">XSL Working Group</a>. Read more about <a href="/standards/xml/">XML</a>.</p>
  
</div>



  <div class="entry" id="entry-9128">
  <h3>
<a href="#entry-9128">
  For Review: Updated Techniques for Web Content Accessibility Guidelines (WCAG)
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-21T10:46:17-05:00">21 June 2011</span></p>
  <p>The <a href="http://www.w3.org/WAI/GL/">Web Content Accessibility Guidelines Working Group</a> today requests review of draft updates to Notes that accompany WCAG 2.0: <a href="http://www.w3.org/WAI/GL/2011/WD-WCAG20-TECHS-20110621/">Techniques for WCAG 2.0 (Editors' Draft)</a> and <a href="http://www.w3.org/WAI/GL/2011/WD-UNDERSTANDING-WCAG20-20110621/">Understanding WCAG 2.0 (Editors' Draft)</a>.  Comments are welcome through 26 August 2011. (This is not an update to WCAG 2.0, which is a stable document.) To learn more about the updates, see the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011AprJun/0041.html">Call for Review: WCAG 2.0 Techniques Draft Updates e-mail</a>. Read about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9127">
  <h3>
<a href="#entry-9127">
  Last Call: Contacts API
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-16T17:44:32-05:00">16 June 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-contacts-api-20110616/">Contacts API</a>. The Contacts API defines the high-level interfaces required to obtain read access to a user's unified address book. Comments are welcome through 14 July. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9125">
  <h3>
<a href="#entry-9125">
  Two XML Schema Notes published: Unicode block names for use in XSD regexps; XSD datatype for IEEE floating-point decimal
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-14T11:04:50-05:00">14 June 2011</span></p>
  <p>The <a href="/XML/Schema">XML Schema Working Group</a> published two Group Notes today: <a href="/TR/2011/NOTE-xsd-unicode-blocknames-20110609/">Unicode block names for use in XSD regular expressions</a> and <a href="/TR/2011/NOTE-xsd-precisionDecimal-20110609/">An XSD datatype for IEEE floating-point decimal</a>. The former lists the names of character categories and character blocks defined by Unicode and used in the regular expression language defined by XSD 1.0 and XSD 1.1. The latter defines a datatype designed for compatibility with IEEE 754 floating-point decimal data, which can be supported by XSD 1.1 processors as an implementation-defined datatype. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9124">
  <h3>
<a href="#entry-9124">
  W3C Advisory Committee Elects Advisory Board 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-14T10:58:19-05:00">14 June 2011</span></p>
  <p>The W3C Advisory Committee has filled four open seats on the <a href="/2002/ab/">W3C Advisory Board</a>. Created in 1998, the Advisory Board provides guidance to the Team on issues of strategy, management, legal matters, process, and conflict resolution. Beginning 1 July 2011, the nine Advisory Board participants are Jean-François Abramatic (IBM), Ann Bassetti (The Boeing Company), Jim Bell (HP), Michael Champion (Microsoft), Eduardo Gutentag (Oracle), Robert Freund (Hitachi), Ora Lassila (Nokia), Charles McCathieNevile (Opera Software), and Takeshi Natsuno (Keio University). Steve Zilles continues as interim Advisory Board Chair. Read more about the <a href="/2002/ab/">Advisory Board</a>.</p>
  
</div>



  <div class="entry" id="entry-9123">
  <h3>
<a href="#entry-9123">
  First Draft of CSS Regions Module Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-09T10:49:00-05:00">09 June 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-css3-regions-20110609/">CSS Regions Module</a>. The CSS Regions module allows content to flow across multiple areas called regions. The regions do not necessarily follow the document order. The CSS Regions module provides an advanced content flow mechanism, which can be combined with positioning schemes as defined by other CSS modules such as the Multi-Column Module or the Grid Layout Module to position the regions where content flows. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9122">
  <h3>
<a href="#entry-9122">
  Call for Review: Scalable Vector Graphics (SVG) 1.1 (Second Edition) Proposed Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-09T10:45:22-05:00">09 June 2011</span></p>
  <p>The <a href="/Graphics/SVG/WG/">SVG Working Group</a> has published a Proposed Recommendation of <a href="/TR/2011/PR-SVG11-20110609/">Scalable Vector Graphics (SVG) 1.1 (Second Edition)</a>. This specification defines the features and syntax for Scalable Vector Graphics (SVG) Version 1.1, a modularized language for describing two-dimensional vector and mixed vector/raster graphics in XML. Comments are welcome through 07 July. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9120">
  <h3>
<a href="#entry-9120">
  Last Call: Three Widgets Specifications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-07T14:56:05-05:00">07 June 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> published three Last Call Working Drafts today:</p> <ul> <li><a href="/TR/2011/WD-widgets-20110607/">Widget Packaging and XML Configuration</a>, which lets users create full-fledged client-side applications that are authored using technologies such as HTML and then packaged for distribution.</li> <li><a href="/TR/2011/WD-widgets-apis-20110607/">Widget Interface</a>, which defines an API to access a widget's metadata and persistently storing data.</li> <li><a href="/TR/2011/WD-widgets-digsig-20110607/">XML Digital Signatures for Widgets</a>, a security mechanism that allows people to digitally sign a widget as a mechanism to ensure continuity of authorship and distributorship.</li> </ul> <p> Comments are welcome through 28 June. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9119">
  <h3>
<a href="#entry-9119">
  First Draft of The Network Information API Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-07T14:49:22-05:00">07 June 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-netinfo-api-20110607/">The Network Information API</a>. This API provides an interface enabling Web applications to access the underlying network information (connection type) of the device. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9116">
  <h3>
<a href="#entry-9116">
  Cascading Style Sheets Standard Boasts Unprecedented Interoperability
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-07T08:44:06-05:00">07 June 2011</span></p>
  <p>W3C announced new levels of support today for Cascading Style Sheets (CSS), the language for adding style to Web content. W3C released an update to the core CSS standard, <a href="/TR/2011/REC-CSS2-20110607">CSS 2.1</a>, to reflect the current state of support for CSS features, and to serve as the stable foundation for future extensions.
CSS has been in widespread use as an Open Web technology for more than a decade, but it took many years for implementations and the specification to converge. The collective efforts of the <a href="http://www.w3.org/Style/CSS/Group">CSS Working Group</a>, implementers, contributors to the <a href="http://www.w3.org/Style/CSS/Test/CSS2.1/">CSS Test Suite</a>, and the W3C CSS community have made interoperable CSS a reality for the Open Web. More than 9000 CSS tests have made it easier for designers to create style sheets that work across browsers, and across devices. "This publication crowns a long effort to achieve very broad interoperability," said Bert Bos, co-inventor of CSS and co-Editor of CSS 2.1." Now we can turn our attention to the cool features we've been itching to bring to the Web." 
The CSS Working Group also published two other Recommendations today:
<a href="http://www.w3.org/TR/2011/REC-css3-color-20110607/">CSS Color Module Level 3</a> and <a href="/TR/2011/REC-mathml-for-css-20110607/">A MathML for CSS Profile</a>. Read the
<a href="http://www.w3.org/2011/05/css-pr.html.en">press release</a> and
<a href="http://www.w3.org/2011/05/css-testimonials.html">testimonials</a>,
and learn more about <a href="http://www.w3.org/Style/CSS/">Cascading Style Sheets</a>.</p>
  
</div>



  <div class="entry" id="entry-9115">
  <h3>
<a href="#entry-9115">
  W3C Launches New Government Linked Data Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-06T13:44:36-05:00">06 June 2011</span></p>
  <p>W3C today launched the new 
<a href="http://www.w3.org/2011/gld/">Government Linked Data Working Group</a>, whose mission is to provide standards and other information which help governments around the world publish their data as effective and usable Linked Data using Semantic Web technologies; see the <a href="http://www.w3.org/2011/gld/charter">full charter</a>. In addition, W3C renewed today the <a href="http://www.w3.org/egov/IG/">eGovernment Interest Group</a>, a forum for building and strengthening the community of people who use or promote the use of W3C technologies to improve Government. That group identifies and discusses essential areas of technology and related policy issues; see the <a href="http://www.w3.org/egov/IG/charter-2011">full eGov Interest Group charter</a> and learn more about <a href="http://www.w3.org/egov/">eGovernment at W3C</a>.</p>
  
</div>



  <div class="entry" id="entry-9114">
  <h3>
<a href="#entry-9114">
  Battery Status Event Specification Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-02T09:36:08-05:00">02 June 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-battery-status-20110602/">Battery Status Event Specification</a>. This specification defines a new DOM event type that provides information about the battery status of the hosting device. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9113">
  <h3>
<a href="#entry-9113">
  Three Web Performance Drafts Published: Visibility, Timing Control for Script-Based Animations, Navigation Timing
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-06-02T09:34:45-05:00">02 June 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> published three drafts today:</p> <ul> <li>a First Public Working Draft of <a href="/TR/2011/WD-page-visibility-20110602/">Page Visibility</a>, which defines a means for site developers to programmatically determine the current visibility state of the page in order to develop power and CPU efficient web applications.</li> <li>a First Public Working Draft of <a href="/TR/2011/WD-animation-timing-20110602/">Timing control for script-based animations</a>, which defines an API web page authors can use to write script-based animations where the user agent is in control of limiting the update rate of the animation. Using this API should result in more appropriate utilization of the CPU by the browser.</li> <li>an update to the Candidate Recommendation for <a href="/TR/2011/CR-navigation-timing-20110602/">Navigation Timing</a>, which defines an interface for web applications to access timing information related to navigation and elements. </li> </ul> <p>Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9112">
  <h3>
<a href="#entry-9112">
  CSS Writing Modes Module Level 3 Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-31T12:42:39-05:00">31 May 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-writing-modes-20110531/">CSS Writing Modes Module Level 3</a>. CSS3 Writing Modes defines CSS features to support for various international writing modes, such as left-to-right (e.g. Latin or Indic), right-to-left (e.g., Hebrew or Arabic), bidirectional (e.g., mixed Latin and Arabic) and vertical (e.g., Asian scripts). Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9111">
  <h3>
<a href="#entry-9111">
  DOM Level 3 Events Published as Last Call; DOM Core Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-31T09:40:34-05:00">31 May 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a 
Last Call Working Draft of 
<a href="http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/">DOM Level 3 Events</a>. The DOM is a language- and platform neutral interface that allows programs and scripts to dynamically access and update the content and structure of documents.  Document Object Model Events Level 3 defines a generic platform- and language-neutral event system which allows registration of event handlers, describes event flow through a tree structure, and provides basic contextual information for each event. Comments welcome through 28 June 2011. The group also published today an updated Working Draft of <a href="/TR/2011/WD-domcore-20110531/">DOM Core</a>.  Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9106">
  <h3>
<a href="#entry-9106">
  Workshop Report: Web Tracking and User Privacy
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-25T15:51:21-05:00">25 May 2011</span></p>
  <p>W3C today published <a href="http://www.w3.org/2011/track-privacy/report.html">the report</a> from the <a href="http://www.w3.org/2011/track-privacy">W3C Workshop on Web Tracking and User Privacy</a> held at Princeton University in April. The large and diverse group of participants had an engaging discussion yielding consensus on the importance, time-sensitivity and complexity of the issue and revealing promising areas for standards work. We encourage interested parties to continue discussion on the <a href="http://lists.w3.org/Archives/Public/public-privacy/">public mailing list</a>, including on the possibility of W3C forming new groups in this area.</p>
<p>W3C thanks the participants and appreciates the support of the Workshop sponsors: <a href="http://www.adobe.com">Adobe</a>, <a href="http://www.yahoo.com">Yahoo!</a>, <a href="http://www.google.com">Google</a>, <a href="http://www.mozilla.org">Mozilla</a> and <a href="http://www.microsoft.com">Microsoft</a>.</p>
  
</div>



  <div class="entry" id="entry-9105">
  <h3>
<a href="#entry-9105">
  Last Call: W3C Invites Broad Review of HTML5 and Five Related Specifications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-25T07:39:06-05:00">25 May 2011</span></p>
  <p>
<a class="imageLink" href="/html/logo/"><img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_128.png" height="128" width="128" alt="HTML5"/></a>
W3C today called for broad review of HTML5 and five related specifications published by the <a href="/html/wg/">W3C HTML Working Group</a>. HTML5 offers powerful tools for creating Web-based applications that will run on any device. By issuing a Last Call announcement, the HTML Working Group encourages people to comment on the extent to which they believe that technical requirements have been met and significant dependencies with groups inside and outside W3C have been satisfied. Comments are welcome through 3 August. Each document includes instructions for providing feedback in the status section of the document:</p>

<ul class="show_items">
<li><a href="/TR/2011/WD-html5-20110525/">HTML5</a></li>
<li><a href="/TR/2011/WD-rdfa-in-html-20110525/">HTML+RDFa 1.1</a></li>
<li><a href="/TR/2011/WD-microdata-20110525/">HTML Microdata</a></li>
<li><a href="/TR/2011/WD-2dcontext-20110525/">HTML Canvas 2D Context</a></li>
<li><a href="/TR/2011/WD-html-polyglot-20110525/">Polyglot Markup: HTML-Compatible XHTML Documents</a></li>
<li><a href="/TR/2011/WD-html-alt-techniques-20110525/">HTML5: Techniques for providing useful text alternatives</a></li>
</ul>

<p>The HTML Working Group published three other drafts today as well:
<a href="/TR/2011/WD-html-markup-20110525/">HTML: The Markup Language Reference</a>,
<a href="/TR/2011/WD-html5-diff-20110525/">HTML5 diffs from HTML4</a>, and
<a href="/TR/2011/WD-html-aapi-20110525/">HTML to Platform Accessibility APIs Implementation Guide</a>.</p>

<p>Read the <a href="/2011/05/html5lc-pr.html">press release</a>
and <a href="/2011/05/html5lc-faq.html">FAQ for HTML5 Last Call</a> and
learn more <a href="/html/">about HTML</a>.</p>
  
</div>



  <div class="entry" id="entry-9104">
  <h3>
<a href="#entry-9104">
  First Draft of Resource Timing Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-24T09:50:35-05:00">24 May 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-resource-timing-20110524/">Resource Timing</a>. This specification defines an interface for web applications to access timing information related to HTML elements. User latency is an important quality benchmark for Web Applications. While JavaScript-based mechanisms can provide comprehensive instrumentation for user latency measurements within an application, in many cases, they are unable to provide a complete end-to-end latency picture. While the Navigation Timing specification address part of the problem by providing timing information associated with a navigation, this document introduces the ResourceTiming interface to allow Javascript mechanisms to collect complete timing information related to resources on a document. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9103">
  <h3>
<a href="#entry-9103">
  CSS Lists and Counters Module Level 3 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-24T09:38:18-05:00">24 May 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-lists-20110524/">CSS Lists and Counters Module Level 3</a>. This draft contains the features of CSS level 3 relating to list styling. The main extensions compared to CSS Level 2 are a pseudo-element representing the list marker, a new hanging value for list-style-position, and a method for authors to define their own list-styles. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9098">
  <h3>
<a href="#entry-9098">
  RIF In RDF Note Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-13T11:49:16-05:00">13 May 2011</span></p>
  <p>The <a href="/2005/rules/wg.html">Rule Interchange Format Working Group</a> has published a Group Note of <a href="/TR/2011/NOTE-rif-in-rdf-20110512/">RIF In RDF</a>. This document specifies a reversible mapping (or transformation) from Rule Interchange Format (RIF) XML documents to Resource Description Framework (RDF) graphs. This mapping allows the contents of RIF documents to be interoperably stored and processed as RDF triples, using existing serializations and tools for RDF. When used with the standard mapping from RDF triples to RIF frames, this also provides a "reflection" or "introspection" mechanism, an interoperable way for RIF rules to operate on RIF documents. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9097">
  <h3>
<a href="#entry-9097">
  First Draft of Points of Interest Core Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-13T10:37:50-05:00">13 May 2011</span></p>
  <p>The <a href="/2010/POI/">Points of Interest Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-poi-core-20110512/">Points of Interest Core</a>. In general terms, a "point of interest" is a location about which information is available. A POI can be as simple as a set of coordinates and an identifier, or more complex such as a three dimensional model of a building with names in various languages, information about open and closed hours, and a civic address. POI data has many uses including augmented reality browsers, location-based social networking games, geocaching, mapping, and navigation systems. This document describes a generic data model and one normative format. This format is based on XML and is likely insufficient to cover all POI use cases, therefore, it is expected that the data model will be mapped to other formats, such as JSON, GML, RDF, GeoRSS, or HTML. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9096">
  <h3>
<a href="#entry-9096">
  Call for Review: Voice Browser Call Control: CCXML Version 1.0 is a Proposed Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-12T15:58:40-05:00">12 May 2011</span></p>
  <p>The <a href="http://www.w3.org/Voice/Group/">Voice Browser Working Group</a> has published a Proposed Recommendation of <a href="/TR/2011/PR-ccxml-20110510/">Voice Browser Call Control: CCXML Version 1.0</a>. This document describes CCXML, or the Call Control eXtensible Markup Language. CCXML is designed to provide telephony call control support for dialog systems, such as VoiceXML. Comments are welcome through 10 June. Learn more about the <a href="http://www.w3.org/Voice/">Voice Browser Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9095">
  <h3>
<a href="#entry-9095">
  Last Call: Five SPARQL 1.1 Drafts
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-12T13:44:05-05:00">12 May 2011</span></p>
  <p>The <a href="/2009/sparql/wiki/Main_Page">SPARQL Working Group</a> 
has published Last Call Working Drafts of the following SPARQL 1.1 documents:</p>

<ul class="show_items">
<li><a href="/TR/2011/WD-sparql11-query-20110512/">SPARQL 1.1 Query</a> adds support for aggregates, subqueries, projected expressions, and negation to the SPARQL query language.</li>
<li><a href="/TR/2011/WD-sparql11-update-20110512/">SPARQL 1.1 Update</a> defines an update language for RDF graphs.</li>
<li><a href="/TR/2011/WD-sparql11-service-description-20110512/">SPARQL 1.1 Service Description</a> defines a vocabulary and discovery mechanism for describing the  
 capabilities of a SPARQL endpoint.</li>
<li><a href="/TR/2011/WD-sparql11-http-rdf-update-20110512/">SPARQL 1.1 Graph Store HTTP Protocol</a> describes the use of the HTTP protocol for managing named RDF  
 graphs on an HTTP server.</li>

<li><a href="/TR/2011/WD-sparql11-entailment-20110512/">SPARQL 1.1 Entailment Regimes</a> defines conditions under which SPARQL queries can be used with  
 entailment regimes such as RDF, RDF Schema, OWL, or RIF.</li>
</ul>

<p>SPARQL is a set of specfications related to querying a web of linked data. Review comments welcome through 29 July. Learn more about the <a href="/2001/sw/">Semantic Web and Linked Data</a>.</p>
  
</div>



  <div class="entry" id="entry-9094">
  <h3>
<a href="#entry-9094">
  Last Call: Scalable Vector Graphics (SVG) 1.1 (Second Edition)
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-12T13:40:08-05:00">12 May 2011</span></p>
  <p>The <a href="/Graphics/SVG/WG/">SVG Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-SVG11-20110512/">Scalable Vector Graphics (SVG) 1.1 (Second Edition)</a>, a modularized language for describing two-dimensional vector and mixed vector/raster graphics in XML. The document has been republished as a Last Call Working Draft primarily for the community to validate changes made as a result of the previous Last Call. Comments are welcome through 02 June. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9093">
  <h3>
<a href="#entry-9093">
  Updated CSS Snapshots for 2010, 2007
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-12T13:35:37-05:00">12 May 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published updates to two Group Notes: <a href="/TR/2011/NOTE-css-2010-20110512/">Cascading Style Sheets (CSS) Snapshot 2010</a> and <a href="http://www.w3.org/TR/2011/NOTE-css-beijing-20110512/">Cascading Style Sheets (CSS) Snapshot 2007</a>. These documents collect into one definition all the specs that together form the current state of Cascading Style Sheets (CSS) as of the indicated year. The primary audience is CSS implementors, not CSS authors, as this definition includes modules by specification stability, not Web browser adoption rate. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9091">
  <h3>
<a href="#entry-9091">
  W3C Announces Workshop to Bring Local Focus to the Multilingual Web
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-12T10:18:48-05:00">12 May 2011</span></p>
  <p><a class="imageLink" href="http://www.multilingualweb.eu/documents/pisa-workshop/pisa-cfp"><img src="http://www.w3.org/International/multilingualweb/madrid/mw3-small.png" alt="MultilingualWeb logo" height="98" width="98"/></a> W3C announces the <a href="http://www.multilingualweb.eu/documents/limerick-workshop/limerick-cfp">A Local Focus for the Multilingual Web</a>, to take place 21 - 22 September 2011 in Limerick, Ireland, co-located with the <a href="http://www.localisation.ie/resources/conferences/2011/index.htm">16th Annual LRC Conference</a>. Workshop participants will discuss currently available best practices and standards that help content creators, localizers, language technology developers, browser makers, and others meet the challenges of the multilingual Web. The Workshop also provides opportunities for networking that bring together the various communities involved in enabling the multilingual Web. This is the third of four Workshops being planned by W3C over two years as part of the MultilingualWeb European Project and is hosted by the University of Limerick. Participation is free and open to anyone. However, space is limited and participants are advised to register as soon as possible. People wishing to speak should submit an outline of their proposed talk with their registration form. The deadline for speaker proposals is 15 July. For more information, see the <a href="http://www.multilingualweb.eu/documents/limerick-workshop/limerick-cfp">call for participation</a>. Learn more about W3C's <a href="http://www.w3.org/International/">Internationalization Activity</a>.</p>

  
</div>



  <div class="entry" id="entry-9088">
  <h3>
<a href="#entry-9088">
  W3C Publishes First Draft of RDF Interfaces
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-10T11:41:00-05:00">10 May 2011</span></p>
  <p>The <a href="http://www.w3.org/2010/02/rdfa/">RDF Web Applications
Working Group</a> has published the First Public Working Draft of the <a
href="/TR/2011/WD-rdf-interfaces-20110510/">RDF Interfaces</a> specification.
The goal of the RDF Interfaces specification is to provide a common
development environment for Web Applications that utilize structured
data and RDF. It provides interfaces for creating and managing RDF
Triples, Graphs, and Parsers. It also provides the basic building blocks
for the upcoming RDF API and the recently published <a
href="http://www.w3.org/TR/rdfa-api/">RDFa API</a>. While RDF support is
a priority, support for Microdata and Microformats are also provided
through extensible-by-design interfaces for parsers and Graph storage.
Since this is a First Public Working Draft, the document is expected to
change over the coming months. We welcome feedback from the community of Web Application developers on the  <a
href="http://lists.w3.org/Archives/Public/public-rdfa-wg/">group's public list</a>.
For more information about the Semantic Web, please see the <a
href="http://www.w3.org/standards/semanticweb/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9087">
  <h3>
<a href="#entry-9087">
  Open Web Platform Progress Drives Expanding Industry Interest
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-10T11:05:49-05:00">10 May 2011</span></p>
  <p>
W3C and its partners are creating an innovative Open Web Platform for application development. The platform has captured the attention of a great many industries that see the business opportunities enabled by its richness, universality, and interoperability across diverse devices. "W3C's Open Web Platform is emerging as the platform of choice for the delivery of services and the development of rich applications across a broader set of industries, including mobile, television, publishing, and advertising," said <a href="http://www.w3.org/People/Jeff/">Dr. Jeff Jaffe</a>, W3C CEO.  As a result, nearly forty organizations from sixteen countries have joined W3C in the past twelve months, including these leaders in media, television, entertainment, gaming, telecommunications, device manufacturers, and social media: China Unicom, Comcast, Facebook, LG Electronics, NEC Corporation, Netflix, SanDisk, Sony, and Zynga. Read the <a href="/2011/05/membership-pr.html">full press release</a> and <a href="/2011/05/membership-testimonials.html">testimonials</a> from many of the recent Members.</p>
  
</div>



  <div class="entry" id="entry-9086">
  <h3>
<a href="#entry-9086">
  Call for Review: Ink Markup Language (InkML) Proposed Recommendation Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-10T11:02:03-05:00">10 May 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/mmi/">Multimodal Working Group</a> has published a Proposed Recommendation of <a href="/TR/2011/PR-InkML-20110510/">Ink Markup Language (InkML)</a>. This document describes the syntax and semantics for the Ink Markup Language, which serves as the data format for representing ink entered with an electronic pen or stylus. The markup allows for the input and processing of handwriting, gestures, sketches, music and other notational languages in applications. It provides a common format for the exchange of ink data between components such as handwriting and gesture recognizers, signature verifiers, and other ink-aware modules. Comments are welcome through 10 June. Learn more about <a href="http://www.w3.org/2002/mmi/Activity.html">Multimodal Interaction</a>.</p>

  
</div>



  <div class="entry" id="entry-9085">
  <h3>
<a href="#entry-9085">
  Last Call: Evaluation and Report Language (EARL) 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-10T10:57:54-05:00">10 May 2011</span></p>
  <p>The <a href="/WAI/ER/">Evaluation and Repair Tools Working Group</a> has published a Last Call Working Draft of the <a href="http://www.w3.org/TR/2011/WD-EARL10-Schema-20110510/">Evaluation and Report Language (EARL) 1.0 Schema</a>, and updated Working Drafts of <a href="http://www.w3.org/TR/2011/WD-EARL10-Guide-20110510/">Developer Guide for Evaluation and Report Language (EARL) 1.0</a>, <a href="http://www.w3.org/TR/2011/WD-HTTP-in-RDF10-20110510/"><acronym title="Hyper Text Transfer Protocol">HTTP</acronym> Vocabulary in <acronym title="Resource Description Framework">RDF</acronym> 1.0</a>, <a href="http://www.w3.org/TR/2011/WD-Content-in-RDF10-20110510/">Representing Content in RDF 1.0</a>, and <a href="http://www.w3.org/TR/2011/WD-Pointers-in-RDF10-20110510/">Pointer Methods in RDF 1.0</a>. EARL is a machine-readable format for expressing test results, such as results from web accessibility evaluation tools. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011AprJun/0017.html">invitation to review the EARL 1.0 Last Call Working Draft</a> and about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9084">
  <h3>
<a href="#entry-9084">
  W3C Launches Web Real-Time Communications Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-05T13:01:05-05:00">05 May 2011</span></p>
  <p>W3C today launched a new <a href="http://www.w3.org/2011/04/webrtc/">Web Real-Time Communications Working Group</a> to define client-side APIs to enable Real-Time Communications in Web browsers. These APIs should enable building applications that can be run inside a browser, requiring no extra downloads or plugins, that allow communication between parties using audio, video and supplementary real-time communication, without having to use intervening servers. Read the full <a href="http://www.w3.org/2011/04/webrtc-charter.html">charter</a> and learn more about W3C's <a href="http://www.w3.org/2007/uwa/Activity.html">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9083">
  <h3>
<a href="#entry-9083">
  First Draft of Touch Events Specification Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-05-05T10:04:07-05:00">05 May 2011</span></p>
  <p>The <a href="/2010/webevents/">Web Events Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-touch-events-20110505/">Touch Events Specification</a>. The Touch Interface specification defines a set of low-level events that represent one or more points of contact with a touch-sensitive surface, and changes of those points with respect to the surface and any DOM elements displayed upon it (e.g., for touch screens) or associated with it (e.g., for drawing tablets without displays). It also addresses pen-tablet devices, such as drawing tablets, with consideration toward stylus capabilities. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9082">
  <h3>
<a href="#entry-9082">
  Call for Implementation of Seven Web Services Specifications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-28T12:39:06-05:00">28 April 2011</span></p>
  <p>The <a href="/2002/ws/ra/">Web Services Resource Access Working Group</a> invites implementation of seven Candidate Recommendations for Web Services:
<a href="/TR/2011/CR-ws-enumeration-20110428/">Enumeration (WS-Enumeration)</a>,
<a href="/TR/2011/CR-ws-event-descriptions-20110428/">Event Descriptions (WS-EventDescriptions)</a>,
<a href="/TR/2011/CR-ws-eventing-20110428/">Eventing (WS-Eventing)</a>,
<a href="/TR/2011/CR-ws-fragment-20110428/">Fragment (WS-Fragment)</a>, <a href="/TR/2011/CR-ws-metadata-exchange-20110428/">Metadata Exchange (WS-MetadataExchange)</a>,
<a href="/TR/2011/CR-ws-soap-assertions-20110428/">SOAP Assertions (WS-SOAPAssertions)</a>, and
<a href="/TR/2011/CR-ws-transfer-20110428/">Transfer (WS-Transfer)</a>. Comments welcome through 20 May 2011. Learn more about the
<a href="/2002/ws/">Web Services Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9081">
  <h3>
<a href="#entry-9081">
  CSS Writing Modes Module Level 3 Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-28T12:38:18-05:00">28 April 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-writing-modes-20110428/">CSS Writing Modes Module Level 3</a>. CSS3 Writing Modes defines CSS features to support for various international writing modes, such as left-to-right (e.g. Latin or Indic), right-to-left (e.g. Hebrew or Arabic), bidirectional (e.g. mixed Latin and Arabic) and vertical (e.g. Asian scripts). Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9080">
  <h3>
<a href="#entry-9080">
  New W3C Online Course: Introduction to Mobile Web and Application Best Practices
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-28T10:18:11-05:00">28 April 2011</span></p>
  <p>W3C is pleased to announce its latest online training course: <a href="http://www.w3.org/2011/04/mobile_course_description.php">Introduction to Mobile Web and Application Best Practices</a>. This course includes a lot of new material concerning Web applications. Delivered over 8 weeks with a start date of 6 June 2011, the course will help Web designers and content producers to become familiar with the Web as delivered on mobile devices. It is based entirely on W3C standards, particularly the <a href="http://www.w3.org/2007/02/mwbp_flip_cards">Mobile Web Best Practices</a> and <a href="http://www.w3.org/2010/09/MWABP/">Mobile Web Application Best Practices</a>. Participants will learn in particular about which versions of HTML and CSS to use for mobile today, client-side and server-side content adaptation techniques, and exciting new APIs available on modern mobile platforms. The full price for the new course is €195 but there are two early bird periods. From now until Friday 6 May you can enroll for just €95. The second early bird period runs until Friday 20 May at €145. See <a href="http://www.w3.org/2011/04/mobile_course_description.php">full details</a> of the course and <a href="http://www.w3.org/2011/05/MobiWeb108/">register now</a>.
</p>
  
</div>



  <div class="entry" id="entry-9078">
  <h3>
<a href="#entry-9078">
  State Chart XML (SCXML): State Machine Notation for Control Abstraction Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-26T15:20:54-05:00">26 April 2011</span></p>
  <p>The <a href="/Voice/">Voice Browser Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-scxml-20110426/">State Chart XML (SCXML): State Machine Notation for Control Abstraction</a>. This document outlines State Chart XML (SCXML), which is a general-purpose event-based state machine language that combines concepts from CCXML and Harel State Tables. CCXML is an event-based state machine language designed to support call control features in Voice Applications (specifically including VoiceXML but not limited to it). Learn more about <a href="/Voice/">Voice browsing</a>.</p>
  
</div>



  <div class="entry" id="entry-9077">
  <h3>
<a href="#entry-9077">
  First Draft of Battery Status Event Specification Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-26T14:19:08-05:00">26 April 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-battery-status-20110426/">Battery Status Event Specification</a>. This specification provides tools for developers to access device battery status (charge level, time remaining, etc.) within Web Applications. This specification defines a new DOM event type that provides information about the battery status of the hosting device and associated auxiliary devices. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9076">
  <h3>
<a href="#entry-9076">
  Authoring Tool Accessibility Guidelines (ATAG) 2.0 and Implementing ATAG 2.0 Working Drafts Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-26T14:16:35-05:00">26 April 2011</span></p>
  <p>The <a href="http://www.w3.org/WAI/AU/">Authoring Tool Accessibility  Guidelines Working Group</a> has published updated Working Drafts of <a href="/TR/2011/WD-ATAG20-20110426/">Authoring Tool Accessibility  Guidelines (ATAG) 2.0</a> and the companion document <a href="/TR/2011/WD-IMPLEMENTING-ATAG20-20110426/">Implementing ATAG 2.0</a>. ATAG defines how <a href="http://www.w3.org/WAI/intro/atag.php#for">authoring tools</a> should help developers produce   accessible web content that conforms to Web Content Accessibility   Guidelines (WCAG) 2.0. It also defines how to make   authoring tools accessible so that people with disabilities can use   them. Comments are welcome through 24 May 2011. Please see the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011AprJun/0010.html">invitation to review the ATAG 2.0 Working Draft</a> for more information. Learn more about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9075">
  <h3>
<a href="#entry-9075">
  Last Call: XML Signature, Canonicalization 2.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-26T14:12:48-05:00">26 April 2011</span></p>
  <p>The XML Security Working Group has published Last Call Working Drafts of 
<a href="http://www.w3.org/TR/2011/WD-xmldsig-core2-20110421/">XML Signature Syntax and Processing Version 2.0</a>, <a href="http://www.w3.org/TR/2011/WD-xml-c14n2-20110421/">Canonical XML 2.0</a>, and 
<a href="http://www.w3.org/TR/2011/WD-xmldsig-xpath-20110421/">XML Signature Streaming Profile of XPath 1.0</a>. These specifications are part of an ongoing effort to rework XML Signature and Canonical XML to address issues around performance, streaming, robustness, and attack surface.  With this Last Call, the Working Group is seeking broad feedback on the approach it has taken. Please comment by 31 May.</p>

<p>Additionally, the XML Security Working Group has updated Working Drafts of
<a href="http://www.w3.org/TR/2011/WD-xmlsec-algorithms-20110421/">XML Security Algorithm Cross-Reference</a>, 
<a href="http://www.w3.org/TR/2011/WD-xmlsec-reqs2-20110421/">XML Security 2.0 Requirements and Design Considerations</a>, and 
<a href="http://www.w3.org/TR/2011/WD-xmlsec-rngschema-20110421/">XML Security RELAX NG Schemas documents</a>. Learn more about <a href="/standards/xml/">XML</a>.</p>

  
</div>



  <div class="entry" id="entry-9074">
  <h3>
<a href="#entry-9074">
  W3C to Participate in SVG Open 2011
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-20T15:17:23-05:00">20 April 2011</span></p>
  <p>Developers and designers are excited by the ability to use SVG in all modern browsers.  W3C joins other sponsors to help with <a href="http://www.svgopen.org/2011/">SVG Open 2011</a>, the 9th international conference on Scalable Vector Graphics, 17-20 October 2011. This year, Microsoft Corporation will be hosting the conference at their New England Research and Development (NERD) Center in Cambridge, Massachusetts.  SVG Open provides an opportunity for designers, developers and implementers to learn about SVG, and share ideas, experiences, products, and strategies.  Members of the W3C <a href="http://www.w3.org/Graphics/SVG/">SVG Working Group</a>, including W3C Team members Chris Lilley and Doug Schepers, will be attending and presenting at the conference. The SVG Working Group will also brief attendees on recent developments around the SVG specification, including SVG2 and integration with CSS and HTML. The conference includes a day of workshops. The deadline for <a href="http://www.svgopen.org/2011/participate.shtml">presentation abstracts and course outlines</a> has been extended through 15 May. Learn more about the <a href="http://www.w3.org/Graphics/">W3C Graphics Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9073">
  <h3>
<a href="#entry-9073">
  Four Web Applications Drafts Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-19T16:21:34-05:00">19 April 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> today updated several Working Drafts:</p> <ul class="show_items"> <li><a href="http://www.w3.org/TR/2011/WD-websockets-20110419/">WebSocket API</a>, which enables full-duplex bidirectional communication between a Web application and a remote host.</li> <li><a href="/TR/2011/WD-IndexedDB-20110419/">Indexed Database API</a>, which defines a concrete API that a Web application can use to maintain an indexed database, and, within that database, to perform advanced key-value data management with in-order retrieval of keys, efficient searching over values, and storage of duplicate values for a key.</li> <li>Two publications that build on the the File API specification, which provides an API for representing file objects in web applications, as well as programmatically selecting them and accessing their data. The first published today is <a href="/TR/2011/WD-file-writer-api-20110419/">File API: Writer</a>, which defines an API for writing to files from web applications. The second is <a href="/TR/2011/WD-file-system-api-20110419/">The File API: Directories and System</a>, which defines an API to navigate file system hierarchies, and defines sandboxed sections of a user's local filesystem to web applications, for secure local storage.</li> </ul> <p>Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9071">
  <h3>
<a href="#entry-9071">
  First Draft of Calendar API Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-19T13:10:21-05:00">19 April 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-calendar-api-20110419/">Calendar API</a>. The Calendar API defines the high-level interfaces required to obtain read access to a user's calendaring service. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9070">
  <h3>
<a href="#entry-9070">
  Call for Review: CSS 2.1 Proposed Recommendation; CSS3 Speech Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-19T12:54:46-05:00">19 April 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Proposed Recommendation of <a href="/TR/2011/PR-CSS2-20110412/">Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</a>. This specification defines Cascading Style Sheets, level 2 revision 1 (CSS 2.1). CSS 2.1 is a style sheet language that allows authors and users to attach style (e.g., fonts and spacing) to structured documents (e.g., HTML documents and XML applications). By separating the presentation style of documents from the content of documents, CSS 2.1 simplifies Web authoring and site maintenance. See the <a href='http://www.w3.org/Style/CSS/Test/'>CSS Test Suite</a>, a valuable tool in achieving interoperable implementations of this specification. Comments are welcome through 17 May. The group also published today an updated Working Draft of
<a href="/TR/2011/WD-css3-speech-20110419">CSS3 Speech Module</a>. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9069">
  <h3>
<a href="#entry-9069">
  RDFa API and RDFa 1.1 Primer Drafts Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-19T10:28:32-05:00">19 April 2011</span></p>
  <p>The <a href="/2010/02/rdfa/">RDF Web Applications Working Group</a> has published a new Working Draft of the <a href="/2010/02/rdfa/drafts/2011/WD-rdfa-api-20110419/">RDFa API</a>. This document specifies an API to access the RDF data embedded in an HTML or XHTML page using RDFa. The Working Group also published a First Public Working Draft of the <a href="/2010/02/rdfa/drafts/2011/WD-rdfa-primer-20110419/">RDFa 1.1 Primer</a>; this is an updated version of the <a href="/TR/2008/NOTE-xhtml-rdfa-primer-20081014/">RDFa Primer</a> that has been adapted to the features of <a href="/TR/2011/WD-rdfa-core-20110331/">RDFa Core 1.1</a> specification. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9068">
  <h3>
<a href="#entry-9068">
  HTML Media Capture Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-15T09:24:31-05:00">15 April 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-html-media-capture-20110414/">HTML Media Capture</a>. This specification defines a new interface for media files, a new parameter for the accept attribute of the HTML input element in file upload state, and recommendations for providing optimized access to the microphone and camera of a hosting device. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9067">
  <h3>
<a href="#entry-9067">
  First Draft of HTML to Platform Accessibility APIs Implementation Guide Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-15T09:22:23-05:00">15 April 2011</span></p>
  <p>The <a href="/html/wg/">HTML Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-html-aapi-20110414/">HTML to Platform Accessibility APIs Implementation Guide</a>. This is draft documentation mapping HTML elements and attributes to accessibility API Roles, States and Properties on a variety of platforms. It provides recommendations on deriving the accessible names and descriptions for HTML elements. It also provides accessible feature implementation examples. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9066">
  <h3>
<a href="#entry-9066">
  The Messaging API Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-15T09:20:11-05:00">15 April 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-messaging-api-20110414/">The Messaging API</a>. This specification defines an API that provides access to messaging functionality in the device, including SMS, MMS and e-mail. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9063">
  <h3>
<a href="#entry-9063">
  Last Call: XML Processor Profiles
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-12T14:14:22-05:00">12 April 2011</span></p>
  <p>The <a href="/XML/Processing/">XML Processing Model Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-xml-proc-profiles-20110412/">XML processor profiles</a>. This specification defines several XML processor profiles, each of which fully determines a data model for any given XML document. It is intended as a resource for other specifications, which can by a single normative reference establish precisely what input processing they require. Comments are welcome through 16 May. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9062">
  <h3>
<a href="#entry-9062">
  CSS Text Level 3 Draft Published; Minor Updates to Multi-Column Layout Module 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-12T13:30:32-05:00">12 April 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-text-20110412/">CSS Text Level 3</a>. This CSS3 module defines properties for text manipulation and specifies their processing model. It covers line breaking, justification and alignment, white space handling, text decoration and text transformation. The CSS Working Group also published today a minor update to the Candidate Recommendation <a href="http://www.w3.org/TR/2011/CR-css3-multicol-20110412/">CSS Multi-column Layout Module</a>. The pseudo-algorithm was corrected and also made easier to read. The wording of a few other sections was improved in places, without changes to the functionality. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9061">
  <h3>
<a href="#entry-9061">
  Clipboard API and Events Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-12T13:28:15-05:00">12 April 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-clipboard-apis-20110412/">Clipboard API and events</a>. This specification defines the common clipboard operations of cutting, copying and pasting, in such a way that they are exposed to Web Applications and can be adapted to provide advanced functionalities. Its goal is to provide for compatibility where possible with existing implementations. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9059">
  <h3>
<a href="#entry-9059">
  Last Call: Emotion Markup Language (EmotionML) 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-08T10:18:27-05:00">08 April 2011</span></p>
  <p>The <a href="/2002/mmi/">Multimodal Interaction (MMI) Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-emotionml-20110407/">Emotion Markup Language (EmotionML) 1.0</a>. As the web is becoming ubiquitous, interactive, and multimodal, technology needs to deal increasingly with human factors, including emotions. The present draft specification of Emotion Markup Language 1.0 aims to strike a balance between practical applicability and basis in science. The language is conceived as a "plug-in" language suitable for use in three different areas: (1) manual annotation of data; (2) automatic recognition of emotion-related states from user behavior; and (3) generation of emotion-related system behavior. Learn more about the <a href="/2002/mmi/Activity.html">Multimodal Interaction Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9058">
  <h3>
<a href="#entry-9058">
  Vocabularies for EmotionML First Working Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-08T10:05:32-05:00">08 April 2011</span></p>
  <p>The <a href="/2002/mmi/">Multimodal Interaction (MMI) Working Group</a> has published a First Public Working Draft of <a href="/TR/2011/WD-emotion-voc-20110407/">Vocabularies for EmotionML</a>. This document represents a public collection of emotion vocabularies that can be used with EmotionML to represent emotions and related states. It was originally part of an earlier draft of the EmotionML specification, but was moved out of it so that we can easily update, extend and correct the list of vocabularies as required. Learn more about the <a href="/2002/mmi/Activity.html">Multimodal Interaction Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9057">
  <h3>
<a href="#entry-9057">
  Grid Layout First Working Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-07T09:11:40-05:00">07 April 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a First Public Working Draft of <a href="/TR/2011/WD-css3-grid-layout-20110407/">Grid Layout</a>, which allows designers to define invisible grids of horizontal and vertical lines. Elements from a document can then be anchored to points in the grid, which aligns them visually to each other, even if they are not next to each other in the source. Learn more about the <a href="/Style/CSS/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9056">
  <h3>
<a href="#entry-9056">
  Eight HTML5 Drafts Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-04-06T08:04:18-05:00">06 April 2011</span></p>
  <p>The <a href="/html/wg/">HTML Working Group</a> published eight documents:</p> <ul class="show_items"> <li>Working Drafts of the <a href="/TR/2011/WD-html5-20110405/">HTML5 specification</a>, the accompanying explanatory document <a href="/TR/2011/WD-html5-diff-20110405/">HTML5 differences from HTML4</a>, and the related non-normative reference <a href="/TR/2011/WD-html-markup-20110405/">HTML: The Markup Language</a>.</li> <li>Working Drafts of the specifications <a href="/TR/2011/WD-rdfa-in-html-20110405/">HTML+RDFa 1.1</a> and <a href="/TR/2011/WD-microdata-20110405/">HTML Microdata</a>, which define mechanisms for embedding machine-readable data in HTML documents, and the specification <a href="/TR/2011/WD-2dcontext-20110405/">HTML Canvas 2D Context</a>, which defines a 2D immediate-mode graphics API for use with the HTML5 &amp;lt;canvas&amp;gt; element.</li> <li> <a href="/TR/2011/WD-html-alt-techniques-20110405/">HTML5: Techniques for providing useful text alternatives</a>, which is intended to help authors provide useful text alternatives for images in HTML documents.</li> <li> <a href="http://www.w3.org/TR/2011/WD-html-polyglot-20110405/">Polyglot Markup: HTML-Compatible XHTML Documents</a>, which is intended to help authors produce XHTML documents that are also compatible with non-XML HTML syntax and parsing rules.</li> </ul> <p>Learn more about <a href="/html/">HTML5</a>.</p>
  
</div>



  <div class="entry" id="entry-9052">
  <h3>
<a href="#entry-9052">
  W3C Launches Provenance Working Group; Renews RDF Web Applications Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-31T23:17:29-05:00">31 March 2011</span></p>
  <p>W3C announced today a new <a href="http://www.w3.org/2011/prov/">Provenance Working Group</a>, whose mission is to support the widespread publication and use of provenance information of Web documents, data, and resources. The Working Group will publish W3C Recommendations that define a language for exchanging provenance information among applications. See the <a href="http://www.w3.org/2011/01/prov-wg-charter">Provenance Working Group Charter</a> for more information.</p>

<p>W3C also renewed the 
<a href="http://www.w3.org/2010/02/rdfa/">RDF Web Applications Working Group</a>, formerly the RDFa Working Group. The mission of the group is to support the developing use of RDF for embedding and handling structured data in Web documents in general. The Working Group will publish W3C Recommendations to extend and enhance the currently published RDFa 1.0 documents, including an API, as well as a general RDF API aimed at ECMAScript. The Working Group will also support the HTML Working Group in its work on incorporating RDFa in HTML5 and XHTML5 (as a followup on the the currently published Working Draft for RDFa 1.0 in HTML5). See the <a href="http://www.w3.org/2011/03/rdfwa-wg-charter">RDF Web Applications Working Group Charter</a> for more information, and read more about <a href="http://www.w3.org/standards/semanticweb/">the Semantic Web</a>.</p>
  
</div>



  <div class="entry" id="entry-9051">
  <h3>
<a href="#entry-9051">
  Last Call: RDFa Core 1.1, XHTML+RDFa 1.1
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-31T09:22:21-05:00">31 March 2011</span></p>
  <p>The <a href="/2010/02/rdfa/">RDFa Working Group</a> has published Last Call Working Drafts of <a href="/TR/2011/WD-rdfa-core-20110331/">RDFa Core 1.1</a> and <a href="/TR/2011/WD-xhtml-rdfa-20110331/">XHTML+RDFa 1.1</a>. The current Web is primarily made up of an enormous number of documents that have been created using HTML. These documents contain significant amounts of structured data, which is largely unavailable to tools and applications. When publishers can express this data more completely, and when tools can read it, a new world of user functionality becomes available, letting users transfer structured data between applications and web sites, and allowing browsing applications to improve the user experience.</p>

<p>RDFa Core is a specification for attributes to express structured data in any markup language. XHTML+RDFa 1.1 is one such language; it is a superset of XHTML 1.1 intended for authors who want to create XHTML Family documents that embed rich semantic markup. There was a very wide review of the First Last Call for RDFa 1.1 by key
members of various standards communities, large companies and
independent Web developer communities. Due to the large amount of solid
feedback by the various respondents, numerous improvements and
enhancements were made to RDFa 1.1 to reflect the desires of the
developer community.</p>

<p>Comments are welcome through 21 April. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9049">
  <h3>
<a href="#entry-9049">
  W3C Issues Report on Web and Television Convergence
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-28T08:42:36-05:00">28 March 2011</span></p>
  <p>Today, W3C publishes a <strong><a href="http://www.w3.org/2010/11/web-and-tv/summary.html">report</a></strong> from the <a href="http://www.w3.org/2010/11/web-and-tv/">Second Web and TV Workshop</a>, which took place in Berlin in February. The report summarizes the discussion among the 77 participating organizations and highlights some key Web and TV convergence priorities:</p>
<ul class="show_items">
<li>Adaptive streaming over HTTP</li>
<li>Home networking and second-screen scenarios</li>
<li>The role of metadata and relation to Semantic Web technology</li>
<li>Ensuring that convergent solutions are accessible</li>
<li>Profiling and testing</li>
<li>Possible extensions to HTML5 for Television</li>
</ul>
<p>Prioritization now continues in the W3C <a href="http://www.w3.org/2011/webtv/">Web and TV Interest Group</a>. That group will review existing work, as well as the relationship between services on the Web and TV services. It will identify requirements and potential solutions to ensure that the Web will function well with TV.</p>
<p>The W3C Workshop in Berlin was made possible in part by sponsorship from Netflix, IPTV Forum Japan, and Tomo-Digi. This second Web and TV workshop was also organized with the support of the OMWeb EU project. Read the <a href="http://www.w3.org/2011/03/webtv-pr">press release</a> about the report.</p>
  
</div>



  <div class="entry" id="entry-9048">
  <h3>
<a href="#entry-9048">
  W3C Launches Audio Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-25T14:03:15-05:00">25 March 2011</span></p>
  <p>W3C today launches the <a href="/2011/audio/">Audio Working Group</a>, whose <a href="/2011/audio/charter/Overview.html">chartered</a> mission is to develop a client-side script API adding more advanced audio capabilities than are currently offered by audio elements.  The API will support the features required by advanced interactive applications including the ability to process and synthesize audio streams directly in script, and will extend the HTML5 <code>&lt;audio&gt;</code> and <code>&lt;video&gt;</code> media elements. Learn more about the <a href="/2006/rwc/Activity.html">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9047">
  <h3>
<a href="#entry-9047">
  Databases on the Semantic Web: Drafts Published for R2RML; A Direct Mapping of Relational Data to RDF
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-24T09:12:31-05:00">24 March 2011</span></p>
  <p>The <a href="/2001/sw/rdb2rdf/">RDB2RDF Working Group</a> has published Working Drafts of 
<a href="/TR/2011/WD-r2rml-20110324/">R2RML: RDB to RDF Mapping Language</a>
and
<a href="/TR/2011/WD-rdb-direct-mapping-20110324/">A Direct Mapping of Relational Data to RDF</a>, which enable people to expose relational database data on the Semantic Web. In R2RML, people map their relational database to RDF datasets. The Direct Mapping is intended to provide a default behavior for R2RML. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9046">
  <h3>
<a href="#entry-9046">
  CSS Fonts Module Level 3 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-24T09:04:30-05:00">24 March 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-fonts-20110324/">CSS Fonts Module Level 3</a>. Families of fonts typically don't contain a single face for each possible variation of font properties. The CSS font selection mechanism describes how to match a given set of CSS font properties to a given font face, and how font resources are loaded dynamically. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9045">
  <h3>
<a href="#entry-9045">
  Bringing Communities Together at Federated Social Web Europe
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-24T08:06:18-05:00">24 March 2011</span></p>
  <p>
<a class="imageLink" href="http://d-cent.org/fsw2011/">
<img src="/2011/03/fsw-logo.png" alt="Federated social web conf"
width="235" height="100"/>
</a>
Social networking has transformed the Web. However, most Social Web applications today limit relationships to those with accounts in the same system. As with many other communications tools (telephone, email, Web) people will ultimately prefer Social Web applications without such barriers,  where anyone can communicate seamlessly with anyone else, whatever application they are using. W3C will be exploring how to achieve "One Social Web" at <a href="http://d-cent.org/fsw2011/">Federated Social Web Europe</a>.</p>

<p>The conference, which takes place 3-5 June in Berlin, Germany, is made possible with the help of the <a href="http://www.primelife.eu/">PrimeLife project</a> and is hosted by the Heinrich-Böll-Stiftung. It follows the 2010 <a href="http://federatedsocialweb.net/">Federated Social Web Summit</a> and is designed to bring together diverse communities interested in Social Web, identity, and privacy. The agenda will include talks, presentation of position papers, and opportunities for on-the-ground agenda building. Participants are <a href="http://d-cent.org/fsw2011/cfp">invited</a> to submit position papers, due 2 May. Proposals received after that date may be added to the part of the agenda determined at the event.</p>
  
</div>



  <div class="entry" id="entry-9044">
  <h3>
<a href="#entry-9044">
  Last Call: Widget Packaging and Configuration
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-22T10:07:57-05:00">22 March 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-widgets-20110322/">Widget Packaging and Configuration</a>. This specification standardizes a packaging format and metadata for a class of software known as widgets. Unlike traditional user interface widgets (e.g., buttons, input boxes, toolbars, etc.), widgets as specified in this document are full-fledged client-side applications that are authored using technologies such as HTML5 and then packaged for distribution. Examples range from simple clocks, stock tickers, news casters, games and weather forecasters, to complex applications that pull data from multiple sources to be "mashed-up" and presented to a user in some interesting and useful way. Comments are welcome through 01 May. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9042">
  <h3>
<a href="#entry-9042">
  W3C Workshop: Identity in the Browser
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-21T09:58:31-05:00">21 March 2011</span></p>
  <p>The Web is now critical infrastructure and, as such, requires mechanisms that foster trust. For critical enterprise activity, effective government engagement, and
sensitive social information accessed over the Web, a higher level of
identity assurance, privacy protection, and security is required, and
client-side technologies like browsers have an important role to play. There is a pressing need for trustworthy, widely-applicable digital identity management. W3C is therefore organizing a <a href="http://www.w3.org/2011/identity-ws/">Workshop on Identity in the Browser</a>, to take place 24-25 May 2011 in Mountain View, California, and hosted by the Mozilla Foundation. Participants will investigate strategies to facilitate the development and deployment of improved identity authentication and authorization technologies across the Web. Also included in the workshop will be explorations into the operational, policy, and legal issues that must be addressed by the solutions. Anyone may participate and there is no fee to participate. All participants are required to submit a position paper by 22 April; see additional <a href="http://www.w3.org/2011/identity-ws/#cfp_participationRequirements">participation requirements</a>. To help with planning, brief "expressions of interest" are appreciated as rapidly as possible. Learn more about the <a href="http://www.w3.org/2011/identity-ws/">Workshop on Identity in the Browser</a>.</p>
  
</div>



  <div class="entry" id="entry-9041">
  <h3>
<a href="#entry-9041">
  W3C to Participate in Web Summit Bilbao
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-18T13:52:03-05:00">18 March 2011</span></p>
  <p>
<a class="imageLink" href="http://www.bilbaowebsummit.com/pages_en/index.html">
<img src="/2011/03/guggenheim.jpg" width="241" height="130" alt="Guggenheim museum"/>
</a>
The <a href="http://www.w3c.es/">W3C Spain Office</a>, together with representatives from W3C Members Anoboto and CTIC; the City Council of Bilbao; the Basque Government; and the Spanish Ministry of Science and Innovation announced this week the first <a href="http://www.bilbaowebsummit.com/pages_en/index.html">Bilbao Web Summit</a> to take place  17-18 May 2011 at the Euskalduna Conference Center in Bilbao, Spain. The Bilbao Web Summit will bring together the Web community and global leaders in business, technology, government, media, health and education sectors to discuss the future of the Web.  Speakers include W3C staff and Membership, and many other organizations are participating in the conference as speakers and sponsors. The event is open to the public; learn more about
 <a href="http://www.bilbaowebsummit.com/pages_en/registration/registration.html#">registration</a>.  <a href="http://www.bilbaowebsummit.com/pages_en/contact.html">Contact the Bilbao Web Summit</a> for more information about speaking and sponsorship opportunities. </p>
  
</div>



  <div class="entry" id="entry-9040">
  <h3>
<a href="#entry-9040">
  XQuery and XPath Full Text 1.0; XQuery Update Facility 1.0 are W3C Recommendations
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-17T16:19:52-05:00">17 March 2011</span></p>
  <p>W3C published two Recommendations today: <a href="/TR/2011/REC-xquery-update-10-20110317/">XQuery Update Facility 1.0</a> and <a href="/TR/2011/REC-xpath-full-text-10-20110317/">XQuery and XPath Full Text 1.0</a>. The former defines an update facility that extends the XML Query language, XQuery. The XQuery Update Facility provides expressions that can be used to make persistent changes to instances of the XQuery 1.0 and XPath 2.0 Data Model. The latter extends XQuery 1.0 and XPath 2.0 with full-text search capabilities. The former document was published by the <a href="http://www.w3.org/XML/Query/">XML Query Working Group</a>, the latter jointly with the <a href="http://www.w3.org/Style/XSL/">XSL Working Group</a>. Learn more about <a href="/standards/xml/">XML</a>.</p>
  
</div>



  <div class="entry" id="entry-9039">
  <h3>
<a href="#entry-9039">
  Last Call: HTML5 Web Messaging
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-17T16:09:44-05:00">17 March 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-webmessaging-20110317/">HTML5 Web Messaging</a>. Web browsers, for security and privacy reasons, prevent documents in different domains from affecting each other; that is, cross-site scripting is disallowed. While this is an important security feature, it prevents pages from different domains from communicating even when those pages are not hostile. This specification defines two mechanisms for communicating between browsing contexts in HTML documents. Comments are welcome through 01 June. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9038">
  <h3>
<a href="#entry-9038">
  Last Call: Media Fragments URI 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-17T15:59:05-05:00">17 March 2011</span></p>
  <p>The <a href="/2008/WebVideo/Fragments/">Media Fragments Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-media-frags-20110317/">Media Fragments URI 1.0</a>. Audio and video resources on the World Wide Web are currently treated as "foreign" objects, which can only be embedded using a plugin that is capable of decoding and interacting with the media resource. Specific media servers are generally required to provide for server-side features such as direct access to time offsets into a video without the need to retrieve the entire resource. Support for such media fragment access varies between different media formats and inhibits standard means of dealing with such content on the Web. This specification provides for a media-format independent, standard means of addressing media fragments on the Web using URIs. Comments are welcome through 10 April. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9037">
  <h3>
<a href="#entry-9037">
  Device API Access Control Use Cases and Requirements Note Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-17T15:56:14-05:00">17 March 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Group Note of <a href="/TR/2011/NOTE-dap-policy-reqs-20110317/">Device API Access Control Use Cases and Requirements</a>. With the emergence of numerous new APIs in Web browsers and runtime engines, the need to control which Web sites and applications can make use of these APIs increases. This document describes use cases and requirements for controlling access to these APIs. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9036">
  <h3>
<a href="#entry-9036">
  Last Call: SVG Compositing Specification
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-16T11:02:11-05:00">16 March 2011</span></p>
  <p>The <a href="/Graphics/SVG/WG/">SVG Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-SVGCompositing-20110315/">SVG Compositing Specification</a>. SVG is a language for describing vector graphics, but it is typically rendered to a display or some form of print medium. The SVG Compositing module adds support for the full range of Porter and Duff operators [PorterDuff] and blending modes. The module allows for raster and vector objects to be combined to produce eye catching effects. Comments are welcome through 12 April. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9035">
  <h3>
<a href="#entry-9035">
  W3C Invites Implementations of Navigation Timing
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-16T09:54:19-05:00">16 March 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2011/CR-navigation-timing-20110315/">Navigation Timing</a>. This specification defines an interface for web applications to access timing information related to navigation and elements. A preliminary <a href="http://www.w3.org/2011/03/navigation-timing-report">implementation report</a> is available and will be updated during the Candidate Recommendation period. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9034">
  <h3>
<a href="#entry-9034">
  W3C Invites Discussion of Open Web Platform for All at WWW 2011
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-16T09:25:27-05:00">16 March 2011</span></p>
  <p>W3C invites all <a href="http://www.www2011india.com/">WWW2011</a> participants to meet at the <a href="http://www.hicc.com/">Hyderabad International Convention Centre
(HICC)</a> to discuss the regional and global impact of this expanding Open Web
Platform for application development. Participants have several opportunities to meet with the W3C staff, including the  <a href="http://www.w3.org/2011/03/w3c-track.html">W3C track</a> and a keynote by W3C Director Tim-Berners-Lee. This year's W3C track consists of two sessions: people (Accessible and Multilingual Web camp) and devices (Mobile Web Applications camp). Tim Berners-Lee's keynote titled  Designing the Web for an Open Society" takes place Thursday, 31 March. The W3C track was organized with the support of the <a href="http://www.w3cindia.in/">W3C India Office</a> and the <a href="http://mobiwebapp.eu/">MobiWebApp EU project</a>. Read the <a href="http://www.w3.org/2011/03/w3ctrack-pr.html.en">press release</a> for more information.</p>
  
</div>



  <div class="entry" id="entry-9032">
  <h3>
<a href="#entry-9032">
  Three Web Apps Last Calls: Server-Sent Events, Progress Events, Web Workers
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-10T13:29:27-05:00">10 March 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> published three Last Call Working Drafts today:</p> <ul class="show_items"> <li><a href="/TR/2011/WD-eventsource-20110310/">Server-Sent Events</a>, defines an API for opening an HTTP connection for receiving push notifications from a server in the form of DOM events. The API is designed such that it can be extended to work with other push notification schemes such as Push SMS.</li> <li><a href="/TR/2011/WD-progress-events-20110310/">Progress Events</a>, defines an abstract event interface that can be used for measuring progress; e.g. HTTP entity body transfers.</li> <li><a href="/TR/2011/WD-workers-20110310/">Web Workers</a>, which defines an API that allows Web application authors to spawn background workers running scripts in parallel to their main page. This allows for thread-like operation with message-passing as the coordination mechanism.</li> </ul> <p>Comments are welcome through 21 April. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9031">
  <h3>
<a href="#entry-9031">
  EXI Extends Reach of XML to New Devices and Applications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-10T13:16:33-05:00">10 March 2011</span></p>
  <p>W3C today publishes a new standard that will enable people to use XML in brand new ways. The <a href="/TR/2011/REC-exi-20110310/">Efficient XML Interchange (EXI)</a> standard dramatically improves the performance, network efficiency, and power consumption of applications that use XML. EXI is a very compact representation of XML information, making it ideal for use in smart phones, devices with memory or bandwidth constraints, in performance sensitive applications such as sensor networks, in consumer electronics such as cameras, in automobiles, in real-time trading systems, and in many other scenarios.  Extensive testing shows that EXI performs consistently better than <a href="http://www.w3.org/TR/exi-measurements/">previous XML formats</a>, <a href="http://www.w3.org/TR/exi-evaluation/#compactness-results">data compression, and even packed binary data formats</a>. As such, it brings the full range of XML benefits to even the most demanding applications. Read the full <a href="/2011/03/exi-pr.html.en">press release</a> and 
<a href="/2011/03/exi-testimonials.html">Member Testimonials</a>. Learn more about <a href="http://www.w3.org/XML/">XML at W3C</a>.</p>
  
</div>



  <div class="entry" id="entry-9030">
  <h3>
<a href="#entry-9030">
  Last Call: Ontology for Media Resources 1.0
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-08T09:58:30-05:00">08 March 2011</span></p>
  <p>The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-mediaont-10-20110308/">Ontology for Media Resources 1.0</a>. This ontology (vocabulary) bridges the different descriptions of media resources, and provide a core set of descriptive properties. This document defines a core set of metadata properties for media resources, along with their mappings to elements from a set of existing metadata formats. Besides that, the document presents a Semantic Web compatible implementation of the abstract ontology using RDF/OWL. The document is mostly targeted towards media resources available on the Web, as opposed to media resources that are only accessible in local archives or museums. Comments are welcome through 31 March. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9027">
  <h3>
<a href="#entry-9027">
  W3C Invites Implementer Feedback on XML Security 1.1 Specifications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-04T14:28:12-05:00">04 March 2011</span></p>
  <p>The <a href="/2008/xmlsec">XML Security Working Group</a> published four Candidate Recommendations today:  <a href="/TR/2011/CR-xmldsig-core1-20110303/">XML Signature Syntax and Processing 1.1</a>, <a href="/TR/2011/CR-xmlenc-core1-20110303/">XML Encryption Syntax and Processing 1.1</a>, <a href="/TR/2011/CR-xmlsec-generic-hybrid-20110303/">XML Security Generic Hybrid Ciphers</a>, and <a href="/TR/2011/CR-xmldsig-properties-20110303/">XML Signature Properties</a>. XML Signatures provide integrity, message authentication, and/or signer authentication services for data of any type, whether located within the XML that includes the signature or elsewhere. As companion documents, the Working Group has released new Working Drafts of <a href="/TR/2011/WD-xmlsec-reqs-20110303/">XML Security 1.1 Requirements and Design Considerations</a> and <a href="/TR/2011/WD-xmlsec-rngschema-20110303/">XML Security RELAX NG Schemas</a>.</p>

<p>To address patent disclosures related to the XML Signature 1.1 and XML Encryption 1.1 specifications, W3C has chartered a <a href="/2011/xmlsec-pag/">Patent Advisory Group</a>. Learn more about W3C's <a href="http://www.w3.org/Security/Activity">Security Activity</a>.</p>

  
</div>



  <div class="entry" id="entry-9026">
  <h3>
<a href="#entry-9026">
  W3C Launches Patent Advisory Group for XML Signature and XML Encryption
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-04T14:27:04-05:00">04 March 2011</span></p>
  <p> 
In accordance with the <a href="/Consortium/Patent-Policy-20040205/">W3C Patent Policy</a>, W3C has launched a Patent Advisory Group (<acronym>PAG</acronym>) in response to <a href="http://www.w3.org/2011/02/xmlsec-pag-charter.html">disclosures</a> 
related to the <a href="/TR/xmlenc-core1/">XML Encryption Syntax and Processing 1.1</a> and <a href="/TR/xmldsig-core1/">XML Signature Syntax and Processing 1.1</a> specifications;
see the <a href="/2011/02/xmlsec-pag-charter.html">PAG charter</a>.
The <a href="/2008/xmlsec/">XML Security Working Group</a> develops this specification. W3C <a href="/Consortium/Patent-Policy-20040205/#sec-Exception">launches a PAG</a> to resolve issues in the event a patent has been disclosed that may be essential, but is not available under the <a href="/Consortium/Patent-Policy-20040205/#def-RF">W3C Royalty-Free licensing requirements</a>. Public comments regarding these disclosures may be sent to public-xmlsec-comments@w3.org (<a href="http://lists.w3.org/Archives/Public/public-xmlsec-comments/">with public archive</a>). Learn more about <a href="/Consortium/Patent-Policy-20040205/#sec-Exception">Patent Advisory Groups</a>.
</p> 

  
</div>



  <div class="entry" id="entry-9025">
  <h3>
<a href="#entry-9025">
   Web Tracking and Privacy Focus of W3C Workshop
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-03T16:30:33-05:00">03 March 2011</span></p>
  <p>Tracking (e.g., for behavioral advertising) has come to the forefront recently as part of the overall Web privacy conversation in the broader Web and policy community.  Several software vendors (including Microsoft, Mozilla, and Google) are offering measures that are intended to permit users to opt out of this tracking, or to prevent tracking by Web sites that are known to engage in these practices. Similar technology is deployed in a number of plugins (including NoScript, AdBlock plus, TACO, and PrivacyChoice). As part of ongoing efforts in the area of user privacy on the Web, W3C is organizing a <a href="http://www.w3.org/2011/track-privacy/">Workshop on Web Tracking and User Privacy</a>, 28-29 April 2011 in Princeton, New Jersey (USA). Topics are likely to include: whether a do not track proposal is advisable or other means might accomplish the same goals; benefits and challenges of browser-bade approaches; other approaches to better user privacy in the face of frequent online tracking.  Anyone may participate in this Workshop; a position paper is required and space is limited. <a href="http://www.w3.org/2011/track-privacy/#paper">Position papers</a> are due 25 March 2011 but <a href="http://www.w3.org/2011/track-privacy/#eoi">expressions of interest</a> sooner than that are appreciated. Many thanks to the Center for Information Technology Policy at Princeton University for hosting the meeting. Please see the the <a href="http://www.w3.org/2011/track-privacy/">Call for Participation</a> for further details.</p>

  
</div>



  <div class="entry" id="entry-9024">
  <h3>
<a href="#entry-9024">
  W3C Note Published: Describing Linked Datasets with the VoID Vocabulary
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-03T09:42:11-05:00">03 March 2011</span></p>
  <p>The <a href="http://www.w3.org/2001/sw/interest/">Semantic Web Interest Group</a> has published a Group Note of <a href="/TR/2011/NOTE-void-20110303/">Describing Linked Datasets with the VoID Vocabulary</a>. Semantic Web and other technologies have made it easy and beneficial to publish and share datasets. When someone wants to select a dataset, one of the fundamental questions is, what does it offer? There are datasets such as DBpedia that cover quite a range of topics, whereas there are others that only talk about a certain domain (books, places, etc.). VoID provides a bridge between the publishers and users of datasets. VoID addresses a variety of needs, ranging from data discovery to cataloging and archiving of datasets. Most importantly, VoID helps users find the right data for their tasks. Today's publication provides advice about deployment of dataset descriptions and discusses the discovery as well. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9023">
  <h3>
<a href="#entry-9023">
  W3C Launches HTML5 Chinese Interest Group 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-01T18:19:48-05:00">01 March 2011</span></p>
  <p>W3C has launched the <a href="http://www.w3.org/html/ig/zh/">HTML5 Chinese Interest Group</a>, whose mission is to facilitate focused discussion in Chinese of the HTML5 specification and of specifications closely related to HTML5, to gather comments and questions in Chinese about those specifications, to collect information about specific use cases in Chinese speaking region for technologies defined in those specifications, and to report the results of its activities as a group back to the <a href="/html/wg/">HTML Working Group</a>, as well as to other relevant groups and to the W3C membership and community. Learn more in the <a href="http://www.w3.org/html/ig/zh/charter.html">charter</a> (available in Chinese as well), <a href="http://www.w3.org/html/ig/zh/#join">join the Interest Group</a>, and learn more about the <a href="/html/">W3C HTML Activity</a>.</p>

  
</div>



  <div class="entry" id="entry-9022">
  <h3>
<a href="#entry-9022">
  Web Notifications First Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-01T12:06:53-05:00">01 March 2011</span></p>
  <p>The <a href="/2010/web-notifications/">Web Notification Working Group</a> has published the First Public Working Draft of <a href="/TR/2011/WD-notifications-20110301/">Web Notifications</a>. This specification provides an API to generate simple notifications to alert users outside of the web page. It does not specify exactly how a user agent should display these notifications; the best presentation depends on the device where the user agent is run. When this specificiation refers to displaying notifications on the "desktop", it generally refers to some static display area outside the web page, but may take several forms, including a corner of the user's display, an area within the chrome of the user agent, or the "home" screen of a mobile device. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9021">
  <h3>
<a href="#entry-9021">
  Best practices for creating MMI Modality Components Note Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-03-01T10:34:07-05:00">01 March 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/mmi/">Multimodal Interaction (MMI) Working Group</a> today published <a href="/TR/2011/NOTE-mmi-mcbp-20110301/">Best practices for creating MMI Modality Components</a> as a Group Note. Multimodal access means that people may use diverse "modalities" for interaction with the Web, including screen, keyboard, digital ink, voice, speech output, etc. The Working Group has defined a general and flexible framework providing interoperability among modality-specific components from different vendors - for example, speech recognition from one vendor and handwriting recognition from another. The current Note provides additional informative guidelines for authors of MMI modality components. Its purpose is to help authors create useful  constituents that may be more easily incorporated into a multimodal system. Learn more about the <a href="http://www.w3.org/2002/mmi/Activity.html">Multimodal Interaction Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9018">
  <h3>
<a href="#entry-9018">
  CSS Image Values and Replaced Content Module Level 3 Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-17T10:56:43-05:00">17 February 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-css3-images-20110217/">CSS Image Values and Replaced Content Module Level 3</a>. This CSS Image Values and Replaced Content module has two parts. First, it defines the syntax for <code>image</code> values in CSS. <code>image</code> values can be a single URI to an image, a list of URIs denoting a series of fallbacks, a reference to an element in the document, or gradients. Second, it defines properties used to control the interaction of replaced content and the CSS layout algorithms. These properties can affect the used image resolution for bitmaps, the replaced object's orientation, and whether and how to preserve the object's aspect ratio. Learn more about the <a href="/Style/">Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9017">
  <h3>
<a href="#entry-9017">
  Web Content Accessibility Guidelines (WCAG 2.0) Authorized Translations Now in Six Languages
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-16T12:19:35-05:00">16 February 2011</span></p>
  <p>Today two more Authorized Translations of WCAG 2.0 were published, bringing the total to six languages. These were developed through the <a href="http://www.w3.org/2005/02/TranslationPolicy">Policy for Authorized W3C Translations</a> and they can be used for official purposes. W3C encourages translation of specifications and resources into all languages; see <a href="http://www.w3.org/Consortium/Translation/">W3C Translations</a>. The Web Accessibility Initiative (WAI) particularly encourages the development of W3C Authorized Translations of WCAG 2.0 and other technical specifications to facilitate their adoption and implementation internationally;  see <a href="http://www.w3.org/WAI/translation">Translating WAI Documents</a>. To find out if WCAG is available in your language, see the <a href="http://www.w3.org/WAI/WCAG20/translations">WCAG 2.0 Translations list</a>, which also lists unofficial translations. Additional perspectives are in the <a href="http://www.w3.org/QA/2009/06/wcag_20_in_your_mother_tongue.html">"WCAG 2.0 in your mother tongue" blog post</a>. Read about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-9016">
  <h3>
<a href="#entry-9016">
  W3C Invites Implementations of CSS Backgrounds and Borders Module Level 3; Updates Text Level 3
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-15T10:50:31-05:00">15 February 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2011/CR-css3-background-20110215/">CSS Backgrounds and Borders Module Level 3</a>, which contains the features of CSS Level 3 relating to borders and backgrounds. The main extensions compared to CSS Level 2 are borders consisting of images, boxes with multiple backgrounds, boxes with rounded corners and boxes with shadows. The Working Group also updated a Working Draft of <a href="/TR/2011/WD-css3-text-20110215/">CSS Text Level 3</a>, which defines properties for text manipulation and specifies their processing model. It covers line breaking, justification and alignment, white space handling, text decoration and text transformation. Learn more about the <a href="http://www.w3.org/Style/CSS/Test/">CSS Test Suite</a> and the <a href="/Style/">W3C Style Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9015">
  <h3>
<a href="#entry-9015">
  W3C Extends HTML Working Charter: HTML5 Last Call in May 2011 and Recommendation in 2014 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-14T08:49:04-05:00">14 February 2011</span></p>
  <p> <a class="imageLink" href="/html/logo/"> <img src="/html/logo/downloads/HTML5_Logo_64.png" alt="HTML5" width="64" height="64"/> </a> W3C extends today the <a href="/2007/03/HTML-WG-charter.html">charter</a> of the <a href="/html/wg/">HTML Working Group</a>, reaffirming the commitment for <a href="/TR/html5/">HTML5</a> to reach Last Call in May 2011, and announcing plans to reach Recommendation by 2014. "Even as innovation continues, advancing HTML5 to Recommendation provides the entire Web ecosystem with a stable, tested, interoperable specification," said Jeff Jaffe, W3C CEO. W3C is developing a <a href="http://www.w3.org/html/wiki/Testing">comprehensive test suite</a> to help achieve broad interoperability for the full specification. Stable specifications are useful targets for interoperability at the same time that innovation never ceases. Therefore, to fulfill the W3C HTML Working Group's mission, W3C Director Tim Berners-Lee encourages the participants to begin discussion of requirements for future versions of HTML after HTML5 reaches Last Call. Read more in the <a href="/2011/02/htmlwg-pr.html">press release</a> and learn more <a href="/html/">about HTML</a>.</p> 
  
</div>



  <div class="entry" id="entry-9014">
  <h3>
<a href="#entry-9014">
  W3C Opens Germany and Austria Office at DFKI
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-10T06:04:43-05:00">10 February 2011</span></p>
  <p>W3C announces today the opening of a new <a href="http://www.w3c.de/">W3C Germany and Austria Office</a>, hosted at the Project Office Berlin of the <a href="http://www.dfki.de/">German Research Center for Artificial Intelligence (DFKI)</a>, the leading German research institute in the field of innovative software technology based on Artificial Intelligence. W3C and DFKI celebrate today this collaborative effort at an <a href="http://www.w3c.de/Events/2011/w3c-office-at-dfki/">opening event</a>, at Theseus Innovation Center in Berlin. "European research and industry have a clear role in shaping the future of the Web," said Dr. Jeff Jaffe, W3C CEO. "Increased participation from key German and Austrian industries will not only impact positively their businesses and innovation strategies, but will also influence W3C's international landscape." Read more in the <a href="http://www.w3.org/2011/02/germany-austria-pr">press release</a> and learn about the <a href="http://www.w3.org/Consortium/Offices/">W3C Offices Program</a>.</p>
  
</div>



  <div class="entry" id="entry-9012">
  <h3>
<a href="#entry-9012">
  W3C Launches Web Performance Interest Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-08T17:38:49-05:00">08 February 2011</span></p>
  <p>Today W3C launches a new 
<a href="http://www.w3.org/2010/webperf/ig/">Web Performance Interest Group</a>, whose mission is to create a faster user experience on the Web. The Interest Group will produce use cases and requirements for future deliverables of the <a href="http://www.w3.org/2010/webperf/">Web Performance Working Group</a>. The Interest Group will provide a forum to discuss Web performance initiatives across web publishers, vendors, developers, and users with the goal of identifying areas for standardization. Learn more about the 
<a href="http://www.w3.org/2006/rwc/Activity.html">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9011">
  <h3>
<a href="#entry-9011">
  Three WebApps Updates: Web Workers, Web Storage, Server-Side Events
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-08T16:29:24-05:00">08 February 2011</span></p>
  <p>The <a href="/2008/webapps/">Web Applications Working Group</a> updated three Working Drafts today: <a href="/TR/2011/WD-workers-20110208/">Web Workers</a>, <a href="http://www.w3.org/TR/2011/WD-webstorage-20110208/">Web Storage</a>, and <a href="http://www.w3.org/TR/2011/WD-eventsource-20110208/">Server-side Events</a>. The first defines an API that allows Web application authors to spawn background workers running scripts in parallel to their main page. This allows for thread-like operation with message-passing as the coordination mechanism. The second defines an API for persistent data storage of key-value pair data in Web clients. The third defines an API for opening an HTTP connection for receiving push notifications from a server in the form of DOM events. The API is designed such that it can be extended to work with other push notification schemes such as Push SMS. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9009">
  <h3>
<a href="#entry-9009">
  W3C Launches Web and TV Interest Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-07T17:04:23-05:00">07 February 2011</span></p>
  <p>At the occasion of the <a href="http://www.w3.org/2010/11/web-and-tv/">Web and TV Workshop in Berlin</a>, W3C announces the creation of a new <a href="http://www.w3.org/2011/webtv/">Web and TV Interest Group</a>. The new group's mission is to provide a forum for Web and TV technical discussions, to review existing work, as well as the relationship between services on the Web and TV services, and to identify requirements and potential solutions to ensure that the Web will function well with TV.  See the <a href="http://www.w3.org/2010/09/webTVIGcharter.html">group's charter</a> for more information. Learn more about <a href="http://www.w3.org/standards/webofdevices/tv">Web and TV at W3C</a>.</p>
  
</div>



  <div class="entry" id="entry-9008">
  <h3>
<a href="#entry-9008">
  CSS Writing Modes Module Level 3 Draft Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-01T15:31:12-05:00">01 February 2011</span></p>
  <p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published an updated draft of <a href="http://www.w3.org/TR/2011/WD-css3-writing-modes-20110201/">CSS Writing Modes Module Level 3</a>, which specifies the text layout model in CSS and the properties that control it. It covers bidirectional and vertical text. Learn more about the <a href="http://www.w3.org/Style/">Style Activity</a>. </p>
  
</div>



  <div class="entry" id="entry-9007">
  <h3>
<a href="#entry-9007">
  Alan Bird Joins W3C Staff as Global Business Development Lead 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-02-01T15:18:10-05:00">01 February 2011</span></p>
  <p>
<a href="/People/AlanBird/" class="imageLink">
<img width="56" height="79" src="http://www.w3.org/People/AlanBird/alanbird-sm.jpg" alt="AlanBird"/>
</a>
W3C welcomes <a href="http://www.w3.org/People/AlanBird/">J. Alan Bird</a> to the W3C staff as the new Global Business Development Lead. Mr. Bird will lead W3C efforts internationally to strengthen the W3C Membership program, identify business development strategies, and seek new revenue streams to support the organization's mission. As the Web creates and transforms a growing number of industries, W3C has created a senior business development position to ensure that a more diverse set of stakeholders can participate in W3C work. Initially, Mr. Bird will focus on development in the areas of Web and Television,and Mobile Web. In addition, he will strengthen our business strategies internationally, working with partners in various regions. Mr. Bird brings 30 years of experience in the IT industry to his new role. In previous roles, Mr. Bird has focused on enterprise systems management and applications development, specializing in building partnerships that benefit end users.</p>

  
</div>



  <div class="entry" id="entry-9006">
  <h3>
<a href="#entry-9006">
  W3C Organizes Workshop on Mobile and Web Technologies in Social and Economic Development
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-31T12:37:58-05:00">31 January 2011</span></p>
  <p>W3C announces its fourth 
<a href="http://public.webfoundation.org/2011/01/MW4D_WS/">Workshop on Mobile and Web Technologies in Social and Economic  Development</a>, in  Dar es Salam, Tanzania on 4-5 June. Today, more than half the world's population lives on less than $3 a day, and has no access to healthcare, education, government services, etc. But the strong growth in the mobile phone use offers new opportunities for improvement. The potential of simple ICT services on mobile devices to increase people's income has been demonstrated. However, there are still many challenges to overcome in order to realize the full potential of mobile and Web technologies in this area. The aim of this Workshop is to explore how to lower the existing barriers and to identify key directions for future exploration. Learn more about <a href="http://public.webfoundation.org/2011/01/MW4D_WS/#Participation">participation</a> in the Workshop as well as 
<a href="http://public.webfoundation.org/2011/01/MW4D_WS/#Sponsorshi">sponsorship opportunities</a>. This Workshop is jointly organized by W3C and the World Wide Web Foundation. Learn more about W3C's <a href="http://www.w3.org/2008/MW4D/">Mobile Web for Social Development Interest Group</a>.</p>
  
</div>



  <div class="entry" id="entry-9004">
  <h3>
<a href="#entry-9004">
  Invitation to W3C Germany and Austria Office Opening
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-26T08:16:58-05:00">26 January 2011</span></p>
  <p>W3C is pleased to announce that the German
Research Center for Artifical Intelligence (DFKI), a long-term W3C Member and the leading German research institute in the field of
innovative software technology, is the new <a href="http://www.w3c.de/">W3C Office for Germany and Austria</a>. To celebrate this new relationship, W3C and DFKI invite people to an <a href="http://www.w3c.de/Events/2011/w3c-office-at-dfki/">opening event</a> in Berlin, Germany on 10 February 2011. The event will be a great opportunity for people to learn how European research and various industries can contribute to and benefit from W3C's open Web platform. Participation is free, but
<a href="http://www.w3c.de/Events/2011/w3c-office-at-dfki/registration.html">registration is required</a>. The event follows a W3C 
<a href="http://www.w3.org/2010/11/web-and-tv/">Web and TV Workshop</a>.  W3C Offices promote adoption of W3C work among developers, application builders, and standards setters, and encourage inclusion of stakeholder organizations in the creation of future recommendations by joining W3C. Learn about the <a href="http://www.w3.org/Consortium/Offices/">W3C Offices Program</a>.</p>

  
</div>



  <div class="entry" id="entry-9003">
  <h3>
<a href="#entry-9003">
  Call for Review: XQuery Update Facility 1.0 Proposed Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-25T17:34:07-05:00">25 January 2011</span></p>
  <p>The <a href="http://www.w3.org/XML/Query/">XML Query Working Group</a>
has published a Proposed Recommendation of the <a
href="http://www.w3.org/TR/2011/PR-xquery-update-10-20110125/">XQuery
Update Facility 1.0</a>; this defines extensions to XQuery to support
changing documents in place in an efficient and declarative manner.
Comments are welcome through 22 February.
Learn more about the
<a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9002">
  <h3>
<a href="#entry-9002">
  Call for Review: XQuery and XPath Full Text 1.0 is a Proposed Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-25T17:04:42-05:00">25 January 2011</span></p>
  <p>The <a href="/Style/XSL/">XSL Working Group</a> and the <a href="http://www.w3.org/XML/Query/">XML Query Working Group</a> have jointly published a Proposed Recommendation of the <a href="http://www.w3.org/TR/2011/PR-xpath-full-text-10-20110125/">XQuery and XPath Full Text 1.0</a> facility. This extends the XPath and XQuery languages to give support for full-text searches against XML Documents or other data model instances. Comments are welcome through 22 February. Learn more about the
<a href="/XML/">Extensible Markup Language (XML) Activity</a>. </p>
  
</div>



  <div class="entry" id="entry-9001">
  <h3>
<a href="#entry-9001">
  Last Call: Multimodal Architecture and Interfaces
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-25T15:11:25-05:00">25 January 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/mmi/">Multimodal Interaction Working Group</a> has published a Last Call draft of 
<a href="/TR/2011/WD-mmi-arch-20110125/">Multimodal Architecture and Interfaces</a>. This document describes a loosely coupled architecture for multimodal user interfaces, which allows for co-resident and distributed implementations, and focuses on the role of markup and scripting, and the use of well defined interfaces between its constituents.The Last Call period ends on 15 February 2011. Learn more about the <a href="http://www.w3.org/2002/mmi/Activity.html">Multimodal Interaction Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-9000">
  <h3>
<a href="#entry-9000">
  W3C Launches RDF Working Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-21T18:25:55-05:00">21 January 2011</span></p>
  <p>W3C today launches the <a href="http://www.w3.org/2011/rdf-wg/">RDF Working Group</a>, whose mission is to update the cornerstone standard for the Semantic Web: the  Resource Description Framework (RDF). The scope of work is to extend RDF to include some of the features that the community has identified as both desirable and important for interoperability based on experience with the 2004 version of the standard, but without having a negative effect on existing deployment. Some of the anticipated features include JSON and Turtle serializations, and a standard model and semantics for multiple graphs and graphs stores. Learn more about the <a href="/2001/sw/">Semantic Web</a>.</p>
  
</div>



  <div class="entry" id="entry-8998">
  <h3>
<a href="#entry-8998">
  Call for Review: Efficient XML Interchange (EXI) Format 1.0 Proposed Recommendation
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-20T17:00:04-05:00">20 January 2011</span></p>
  <p>The <a href="http://www.w3.org/XML/EXI/">Efficient XML Interchange Working Group</a> has published a Proposed Recommendation of <a href="/TR/2011/PR-exi-20110120/">Efficient XML Interchange (EXI) Format 1.0</a>. EXI is a very compact, high performance XML representation that was designed to work well for a broad range of applications. It simultaneously improves performance and significantly reduces bandwidth requirements without compromising efficient use of other resources such as battery life, code size, processing power, and memory. Comments are welcome through 17 February. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-8997">
  <h3>
<a href="#entry-8997">
  Updated Draft of The Messaging API Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-20T16:57:07-05:00">20 January 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-messaging-api-20110120/">The Messaging API</a>. This specification defines an API that provides access to messaging functionality in the device, including SMS, MMS and e-mail. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-8996">
  <h3>
<a href="#entry-8996">
  W3C Invites Implementations of WAI-ARIA for Accessible Rich Internet Applications
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-18T18:34:01-05:00">18 January 2011</span></p>
  <p>The <a href="http://www.w3.org/WAI/PF/">Protocols and Formats Working Group
(PFWG)</a> invites implementations of the Candidate Recommendation <a href="http://www.w3.org/TR/2011/CR-wai-aria-20110118/">WAI-ARIA</a>, the Accessible Rich Internet Applications technical
specification for making dynamic, interactive Web content accessible to people
with disabilities. WAI-ARIA and supporting documents are described in the <a href="http://www.w3.org/WAI/intro/aria">WAI-ARIA Overview</a>. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2011JanMar/0003.html">WAI-ARIA CR e-mail announcement</a> and the <a href="http://www.w3.org/QA/2011/01/wai-aria-cr.html">WAI-ARIA CR blog post</a>
for more information, and about the <a href="http://www.w3.org/WAI/">Web
Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-8995">
  <h3>
<a href="#entry-8995">
  Role Attribute Last Call Working Draft
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-18T18:30:30-05:00">18 January 2011</span></p>
  <p>The <a href="http://www.w3.org/WAI/PF/">Protocols and Formats Working Group (PFWG)</a> has published a Last Call Working Draft of <a href="http://www.w3.org/TR/role-attribute/">Role Attribute</a>, an XML attribute that allows the author to add semantic information to documents. Role Attribute supports <a href="http://www.w3.org/WAI/intro/aria">WAI-ARIA</a>, the Accessible Rich Internet Applications technical specification for making dynamic, interactive web content accessible to people with disabilities. <a href="http://www.w3.org/WAI/PF/comments/instructions">Comments</a> are welcome through 25 February 2011. Read about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
  
</div>



  <div class="entry" id="entry-8993">
  <h3>
<a href="#entry-8993">
  Device API Access Control Use Cases and Requirements Draft Published
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-18T10:18:35-05:00">18 January 2011</span></p>
  <p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a Working Draft of <a href="/TR/2011/WD-dap-policy-reqs-20110118/">Device API Access Control Use Cases and Requirements</a>. With the emergence of numerous new APIs in Web browsers and runtime engines, the need to control which Web sites and applications can make use of these APIs increases. This document describes use cases and requirements for controlling access to these APIs. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-8992">
  <h3>
<a href="#entry-8992">
  W3C Introduces an HTML5 Logo 
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-18T10:00:00-05:00">18 January 2011</span></p>
  <p><a class="imageLink" href="/html/logo/"><img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_128.png" height="128" width="128" alt="HTML5"/></a> W3C unveiled today an <a href="/html/logo/">HTML5 logo</a>, a striking visual identity for the open web platform. W3C encourages early adopters to use HTML5 and to provide feedback to the <a href="/html/wg/">W3C HTML Working Group</a> as part of the standardization process. Now there are logos for those who have taken up parts of HTML5 into their sites, and for anyone who wishes to tell the world they are using or referring to HTML5, CSS, SVG, WOFF, and other technologies used to build modern Web applications. The <a href="/html/logo/">logo home page</a> includes a badge builder (which generates code for displaying the logo), a gallery of sites using the logo, links for buying an HTML5 T-shirt, instructions for getting free stickers, and more. The logo is available under "Creative Commons 3.0 By" so it can be adapted by designers to meet their needs. See also the <a href="/html/logo/faq">HTML5 logo FAQ</a> and <a href="/html/">learn more about HTML5</a>.</p>
  
</div>



  <div class="entry" id="entry-8990">
  <h3>
<a href="#entry-8990">
  Eight HTML5 Drafts Updated
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-14T15:18:02-05:00">14 January 2011</span></p>
  <p>The <a href="/html/wg/">HTML Working Group</a> published eight documents:</p>
   <ul class="show_items">
     <li>Working Drafts of the
       <a href="/TR/2011/WD-html5-20110113/">HTML5 specification</a>,
       the accompanying explanatory document
       <a href="/TR/2011/WD-html5-diff-20110113/">HTML5 differences from HTML4</a>,
       and the related non-normative reference
       <a href="/TR/2011/WD-html-markup-20110113/">HTML: The Markup Language</a>.</li>
     <li>Working Drafts of the specifications
       <a href="/TR/2011/WD-rdfa-in-html-20110113/">HTML+RDFa 1.1</a>
       and <a href="/TR/2011/WD-microdata-20110113/">HTML Microdata</a>,
       which define mechanisms for embedding machine-readable
       data in HTML documents, and the specification
       <a href="/TR/2011/WD-2dcontext-20110113/">HTML Canvas 2D Context</a>,
       which defines a 2D immediate-mode graphics API for use
       with the HTML5 &lt;canvas&gt; element.</li>
     <li> <a href="/TR/2011/WD-html-alt-techniques-20110113/">HTML5:
       Techniques for providing useful text alternatives</a>, which is
       intended to help authors provide useful text alternatives for images in HTML
       documents.</li>
     <li> <a href="http://www.w3.org/TR/2011/WD-html-polyglot-20110113/">Polyglot
       Markup: HTML-Compatible XHTML Documents</a>, which is intended to
       help authors produce XHTML documents that are also compatible with
       non-XML HTML syntax and parsing rules.</li>
   </ul>
  <p>Learn more about <a href="/html/">HTML5</a>.</p>

  
</div>



  <div class="entry" id="entry-8989">
  <h3>
<a href="#entry-8989">
  W3C Launches WebID Incubator Group
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-14T09:37:09-05:00">14 January 2011</span></p>
  <p>W3C is pleased to announce the creation of the <a href="/2005/Incubator/webid/">WebID Incubator Group</a>, whose mission is to further advance for full standardization the WebID protocol, an authentication protocol that uses the SSL/TLS layer for user identification by tying the client to a profile document on the Web through placing a URI in a certificate. It is a first step to a fully standard-based browser authentication experience, but not limited to browser based authentication: peer to peer server authentication will work just as well. The Incubator Group intends to pursue work that has been evolving since 2008, grow the number of interested parties from the Social Web, security and browser communities, and integrate their feedback. The following W3C Members have sponsored the <a href="/2005/Incubator/webid/charter">charter</a> for this group: The Apache Software Foundation, DERI Galway, Garlik, INRIA, Nokia, OpenLink Software, Talis, Telecom Italia SpA, Vrije Universiteit Amsterdam. Read more about the <a href="/2005/Incubator/">Incubator Activity</a>, an initiative to foster development of emerging Web-related technologies. Incubator Activity work is not on the W3C standards track but in many cases serves as a starting point for a future Working Group.</p>
  
</div>



  <div class="entry" id="entry-8988">
  <h3>
<a href="#entry-8988">
  W3C Announces Workshop to Bring Content to the Multilingual Web
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-13T17:02:29-05:00">13 January 2011</span></p>
  <p><a class="imageLink" href="http://www.multilingualweb.eu/documents/pisa-workshop/pisa-cfp"><img height="98" width="98" src="http://www.w3.org/International/multilingualweb/madrid/mw3-small.png" alt="MultilingualWeb logo" /></a> W3C announces the <a href="http://www.multilingualweb.eu/documents/pisa-workshop/pisa-cfp">Content on the Multilingual Web Workshop</a>, to take place 4-5 April 2011 in Pisa, Italy. Workshop participants will discuss currently available best practices and standards that help content creators, localizers, language technology developers, browser makers, and others meet the challenges of the multilingual Web. The Workshop also provides opportunities for networking that bring together the various communities involved in enabling the multilingual Web. This is the second of four Workshops being planned by W3C over the next two years as part of the MultilingualWeb European Project and is hosted by the Consiglio Nazionale delle Ricerche. Participation is free and open to anyone. However, space is limited and participants are advised to register as soon as possible. People wishing to speak should submit an outline of their proposed talk with their registration form. The deadline for speaker proposals is 1 March. For more information, see the <a href="http://www.multilingualweb.eu/documents/pisa-workshop/pisa-cfp">call for participation</a>. Learn more about W3C's <a href="http://www.w3.org/International/">Internationalization Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-8987">
  <h3>
<a href="#entry-8987">
  Last Call: Navigation Timing
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-11T15:06:02-05:00">11 January 2011</span></p>
  <p>The <a href="/2010/webperf/">Web Performance Working Group</a> has published a Last Call Working Draft of <a href="/TR/2011/WD-navigation-timing-20110111/">Navigation Timing</a>. User latency is an important quality benchmark for Web Applications. While JavaScript-based mechanisms can provide comprehensive instrumentation for user latency measurements within an application, in many cases, they are unable to provide a complete end-to-end latency picture. To address the need for complete information on user experience, this document introduces the PerformanceTiming interfaces. This interface allows JavaScript mechanisms to provide complete client-side latency measurements within applications. Comments are welcome through 08 February. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
  
</div>



  <div class="entry" id="entry-8986">
  <h3>
<a href="#entry-8986">
  W3C Invites Implementations of Ink Markup Language (InkML)
 </a>
  
  </h3>
  <p class="date"><span class="dtstart published" title="2011-01-11T14:58:08-05:00">11 January 2011</span></p>
  <p>The <a href="http://www.w3.org/2002/mmi/">W3C Multimodal Interaction Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2011/CR-InkML-20110111/">Ink Markup Language (InkML)</a>. This document describes the syntax and semantics for the Ink Markup Language, a data format for representing ink entered with an electronic pen or stylus. The markup allows for the input and processing of handwriting, gestures, sketches, music and other notational languages in applications. It provides a common format for the exchange of ink data between components such as handwriting and gesture recognizers, signature verifiers, and other ink-aware modules. See the group's <a href="http://www.w3.org/2002/mmi/2011/inkml-irp/">implementation report plan</a>. Learn more about the <a href="/2002/mmi/Activity.html">Multimodal Interaction Activity</a>.</p>
  
</div>



</div>

</div> <!-- /end .line -->
        </div> <!-- /end #w3c_content_body -->
      </div> <!-- /end #w3c_mainCol -->
    </div> <!-- end #w3c_main -->
  </div> <!-- /end #w3c_container -->

<div id="w3c_footer">
  <div id="w3c_footer-inner">
    <h2 class="offscreen">Footer Navigation</h2>
    <div class="w3c_footer-nav">
      <h3>Navigation</h3>
      <ul class="footer_top_nav">   
       <li><a href="/">Home</a></li>
       <li><a href="/standards/">Standards</a></li>
       <li><a href="/participate/">Participate</a></li>
       <li><a href="/Consortium/membership">Membership</a></li>
       <li class="last-item"><a href="/Consortium/">About W3C</a></li>
      </ul>
    </div>
    <div class="w3c_footer-nav">
      <h3>Contact W3C</h3>
      <ul class="footer_bottom_nav">
           <li><a href="/Consortium/contact">Contact</a></li>
           <li><a accesskey="0" href="/Help/">Help and FAQ</a></li>
           <li><a href="/Consortium/sponsor/">Sponsor / Donate</a></li>
           <li><a href="/Consortium/siteindex">Site Map</a></li>
           <li><address id="w3c_signature"><a href="mailto:site-comments@w3.org">Feedback</a> (<a href="http://lists.w3.org/Archives/Public/site-comments/">archive</a>)</address></li>
      </ul>
    </div>
    <div class="w3c_footer-nav">
      <h3>W3C Updates</h3>
      <ul class="footer_follow_nav">
           <li>
                        <a href="http://twitter.com/W3C" title="Follow W3C on Twitter"><img src="/2008/site/images/twitter-bird" alt="Twitter" class="social-icon" width="78" height="83" /></a>
                        <a href="http://identi.ca/w3c" title="See W3C on Identica"><img src="/2008/site/images/identica-logo" alt="Identica" class="social-icon" width="91" height="83" /></a>
          </li>
     </ul>
    </div>
    <!-- #footer address / page signature -->
        <p class="copyright">Copyright © 2011 W3C <sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics"> ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>) <a href="/Consortium/Legal/ipr-notice">Usage policies apply</a>.</p>  </div>
</div><!-- /end #footer --><div id="w3c_scripts">
  <script type="text/javascript" src="/2008/site/js/main"><!-- --></script>
</div>

</body>
</html>