2009
302 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
<!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" lang="en">
<head>
<title>2009 - 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 href="/News/2011.html">2011</a></li>
<li><a href="/News/2010.html">2010</a></li>
<li><a class="current">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> <span class="cr">»</span> </li>
<li><a href="/participate/">Participate</a> <span class="cr">»</span> </li>
<li><a href="/participate/discussion.html">Mail, News, Blogs, Podcasts, and…</a> <span class="cr">»</span> </li>
<li><a href="/News/">News</a> <span class="cr">»</span> </li>
<li class="current">2009</li>
</ul>
</div>
</div>
<h1 class="title">2009</h1>
<div id="w3c_content_body">
<div class="line">
<div class="vevent_list rMarginLg">
<div class="entry" id="entry-8688">
<h3>
<a href="#entry-8688">
Seven API Publications Advance Web Applications Stack
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-22T10:15:51-05:00">22 December 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a>
has published updates to seven specifications related to
APIs that enhance the open Web platform as a runtime environment
for full-featured applications.
W3C invites implementation experience for the two newest
Candidate Recommendations: </p>
<ul class="show_items">
<li><a href="/TR/2009/CR-widgets-apis-20091222/">The Widget Interface</a>
defines an application programming interface (API) for widgets that provides functionality for accessing a widget's metadata and persistently storing data.
The group's <a href="http://dev.w3.org/2006/waf/widgets-api/imp-report/">implementation report</a> will be used to track progress.</li>
<li><a href="/TR/2009/CR-selectors-api-20091222/">Selectors API Level 1</a>
defines methods for retrieving Element nodes from the DOM by matching against a group of selectors (such as those used in Cascading Style Sheets). The
group is developing a <a href="http://dev.w3.org/2006/webapi/selectors-api-testsuite/">selectors API test suite</a>.</li>
</ul>
<p>Comments on these Last Call Working Drafts are welcome until 30 June 2010:</p>
<ul class="show_items">
<li><a href="/TR/2009/WD-webstorage-20091222/">Web Storage</a>
provides APIs for Web applications to store key-value data on
the client side.</li>
<li><a href="/TR/2009/WD-workers-20091222/">Web Workers</a>
defines an API for enabling thread-like operations (using
message passing) in Web applications, so that certain
application tasks can be run in parallel.</li>
<li><a href="/TR/2009/WD-eventsource-20091222/">Server-Sent Events</a>
defines an API for a Web application to open an HTTP connection
for receiving push notifications from a server, in the form of
DOM events.</li>
</ul>
<p>The group also updated these Working Drafts:</p>
<ul class="show_items">
<li><a href="/TR/2009/WD-websockets-20091222/">Web Sockets API</a>
provides an API for full-duplex communication between a Web
application and a remote host.</li>
<li><a href="/TR/2009/WD-webdatabase-20091222/">Web SQL Database</a>
defines an API for Web applications to store data in client-side
databases that can be queried using a variant of SQL.</li>
</ul>
<p>Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8687">
<h3>
<a href="#entry-8687">
W3C Invites Implementations of Web Security Context: User Interface Guidelines
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-22T10:10:35-05:00">22 December 2009</span></p>
<p>The <a href="/2006/WSC/">Web Security Context Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-wsc-ui-20091222/">Web Security Context: User Interface Guidelines</a>. This specification deals with the trust decisions that users must make online, and with ways to support them in making safe and informed decisions where possible. It specifies user interactions with a goal toward making security usable, based on known best practice in this area. Read the group's expectations about <a href="http://www.w3.org/TR/2008/NOTE-wsc-usecases-20080306/#usability-testing">implementation and testing</a> and learn more about the <a href="/Security/">Security Activity</a>.</p>
</div>
<div class="entry" id="entry-8686">
<h3>
<a href="#entry-8686">
W3C Invites Implementations of CSS Backgrounds and Borders Module Level 3, Multi-Column Layout
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-17T13:27:18-05:00">17 December 2009</span></p>
<p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> invites implementation of two Candidate Recommendations: <a href="/TR/2009/CR-css3-background-20091217/">CSS Backgrounds and Borders Module Level 3</a> and <a href="/TR/2009/CR-css3-multicol-20091217/">CSS Multi-column Layout Module</a>. CSS is a language for describing the rendering of structured documents (such as HTML and XML) on screen, on paper, in speech, etc. The main extensions in Backgrounds and Borders over CSS 2 related to borders consisting of images, boxes with multiple backgrounds, boxes with rounded corners and boxes with shadows. Multicolumn features allow authors to flow content into multiple columns with a gap and a rule between them. Learn more about the <a href="/Style/">Style Activity</a>.</p>
</div>
<div class="entry" id="entry-8685">
<h3>
<a href="#entry-8685">
Media Fragments URI 1.0 First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-17T11:29:19-05:00">17 December 2009</span></p>
<p>The <a href="/2008/WebVideo/Fragments/">Media Fragments Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-media-frags-20091217/">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. Media Fragments URI 1.0 provides for a media-format independent, standard means of addressing media fragments on the Web using Uniform Resource Identifiers (URI). The Working Group also updated <a href="/TR/2009/WD-media-frags-reqs-20091217/">Use cases and requirements for Media Fragments</a>. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p>
</div>
<div class="entry" id="entry-8684">
<h3>
<a href="#entry-8684">
Five Web Services Drafts Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-17T11:23:11-05:00">17 December 2009</span></p>
<p>The <a href="/2002/ws/ra/">Web Services Resource Access Working Group</a> published updates to five Working Drafts: <a style="" href="/TR/2009/WD-ws-enumeration-20090924/">Web Services Enumeration (WS-Enumeration)</a>, <a style="" href="/TR/2009/WD-ws-eventing-20090924/">Web Services Eventing (WS-Eventing)</a>, <a style="" href="/TR/2009/WD-ws-resource-transfer-20090924/">Web Services Resource Transfer (WS-RT)</a>, <a href="/TR/2009/WD-ws-transfer-20090924/">Web Services Transfer (WS-Transfer)</a>, and <a href="/TR/2009/WD-ws-metadata-exchange-20090924/">Web Services Metadata Exchange (WS-MetadataExchange)</a>. The first describes a general SOAP-based protocol for enumerating a sequence of XML elements that is suitable for traversing logs, message queues, or other linear information models. The second describes a protocol that allows Web services to subscribe to or accept subscriptions for event notification. The third defines extensions to WS-Transfer that deal primarily with fragment-based access to resources to satisfy the common requirements of WS-ResourceFramework and WS-Management. The fourth describes a general SOAP-based protocol for accessing XML representations of Web service-based resources. The fifth defines how metadata associated with a Web service endpoint can be represented as resources, how metadata can be embedded in endpoint references, and how metadata could be retrieved from a Web service endpoint. Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p>
</div>
<div class="entry" id="entry-8683">
<h3>
<a href="#entry-8683">
Use Cases for Possible Future EMMA Features Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-15T14:50:53-05:00">15 December 2009</span></p>
<p>The <a href="/2002/mmi/">Multimodal Interaction Working Group</a> has published a Group Note of <a href="/TR/2009/NOTE-emma-usecases-20091215/">Use Cases for Possible Future EMMA Features</a>. Since <a href="/TR/emma/">EMMA
1.0</a> became a W3C Recommendation, a number of new possible use
cases for the EMMA language have emerged, e.g., multimodal output,
biometrics, emotion, sensor data, multi-stage dialogs and interactions
with multiple users. This document describes those use cases
and illustrates how the EMMA language could be extended to support
them. Learn more about W3C's <a href="/2002/mmi/Activity.html">Multimodal Interaction Activity</a>.</p>
</div>
<div class="entry" id="entry-8682">
<h3>
<a href="#entry-8682">
New Drafts of XQuery 1.1, XPath 2.1 and Supporting Documents Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-15T14:45:55-05:00">15 December 2009</span></p>
<p>As part of work on XSLT 2.1 and XQuery 1.1, the <a href="/XML/Query/">XQuery</a> and <a href="/Style/XSL/">XSL</a> Working Groups have published First Public Working Drafts of <a href="http://www.w3.org/TR/2009/WD-xpath-datamodel-11-20091215/">XQuery and XPath Data Model 1.1</a>, <a href="http://www.w3.org/TR/2009/WD-xpath-functions-11-20091215/">XPath and XQuery Functions and Operators 1.1</a>, <a href="http://www.w3.org/TR/2009/WD-xslt-xquery-serialization-11-20091215/">XSLT and XQuery Serialization 1.1</a> and <a href="http://www.w3.org/TR/2009/WD-xpath-21-20091215/">XPath 2.1</a>. In addition, The XQuery Working Group has updated drafts for <a href="http://www.w3.org/TR/2009/WD-xquery-11-20091215/">XQuery 1.1: An XML Query Language</a>, <a href="http://www.w3.org/TR/2009/WD-xqueryx-11-20091215/">XQueryX 1.1</a> and <a href="http://www.w3.org/TR/2009/WD-xquery-11-requirements-20091215/">XQuery 1.1 Requirements</a>. Learn more about <a href="/standards/xml/">XML at W3C</a>.</p>
</div>
<div class="entry" id="entry-8681">
<h3>
<a href="#entry-8681">
W3C China Office Supports First Web Standards Event of Webrebuild.org in Beijing
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-15T14:07:21-05:00">15 December 2009</span></p>
<p>
<a class="imageLink" href="http://www.webrebuild.org/">
<img width="300" height="123" src="http://www.w3.org/Consortium/Offices/webrebuild.jpg" alt="Group photo from Web Standards Event" />
</a>
The <a href="http://www.chinaw3c.org/">W3C China Office</a> supported <a href="http://www.webrebuild.org/">Webrebuild.org</a> with their first Web Standards Event in Beijing. The theme of the event, attended by over 100 people, was "Thoughts on Web Standards" and it aimed at offering a platform for developers in Beijing to discuss and share ideas of how to make better use of Web standards and technologies. Speakers discussed browser compatibility, CSS3.0, HTML5 and ontologies. AnQi (Angel) Li from the W3C China Office gave an opening speech to welcome the attendees and introduced the W3C China Office. Learn more about <a href="/Talks/">upcoming W3C talks internationally</a>.</p>
</div>
<div class="entry" id="entry-8680">
<h3>
<a href="#entry-8680">
Accessible Rich Internet Applications (WAI-ARIA), Authoring Practices, and Implementation Guide Working Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-15T13:45:30-05:00">15 December 2009</span></p>
<p>The <a href="http://www.w3.org/WAI/PF/">Protocols and Formats Working Group (PFWG)</a> published an updated Working Draft of <a href="http://www.w3.org/TR/2009/WD-wai-aria-20091215/">WAI-ARIA</a>, the Accessible Rich Internet Applications technical specification for making dynamic, interactive Web content accessible to people with disabilities. PFWG also published Working Drafts of the <a href="http://www.w3.org/TR/2009/WD-wai-aria-implementation-20091215/">WAI-ARIA User Agent Implementation Guide</a> that provides guidance on how browsers and other user agents should expose WAI-ARIA features to platform accessibility <acronym title="application programming interfaces">APIs</acronym>, and <a href="http://www.w3.org/TR/2009/WD-wai-aria-practices-20091215/">WAI-ARIA Authoring Practices</a> that describes how Web content developers can develop accessible rich Web applications using WAI-ARIA. These and other WAI-ARIA 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/2009OctDec/0118.html">WAI-ARIA review announcement for details</a>, and about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
</div>
<div class="entry" id="entry-8679">
<h3>
<a href="#entry-8679">
W3C Invites Implementations of MathML Version 3.0, CSS Profile
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-15T12:43:20-05:00">15 December 2009</span></p>
<p>The <a href="/Math/">Math Working Group</a> invites implementation of the Candidate Recommendations <a href="/TR/2009/CR-MathML3-20091215/">Mathematical Markup Language (MathML) Version 3.0</a>
and
<a href="/TR/2009/CR-mathml-for-css-20091215/">A MathML for CSS Profile</a>. The former defines the Mathematical Markup Language, an XML application for describing mathematical notation and capturing both its structure and content. The goal of MathML is to enable mathematics to be served, received, and processed on the World Wide Web, just as HTML has enabled this functionality for text. The second specification describes a profile of MathML 3.0 that allows formatting with Cascading Style Sheets (CSS).
The group is developing a <a href="http://www.w3.org/Math/testsuite/">Test Suite</a> for specifications, starting from the MathML 2.0 Test Suite. Read the <a href="http://www.w3.org/Math/lastcall3/Overview.html">disposition of last call comments for MathML 3.0</a> and <a href="http://www.w3.org/Math/lastcallcss/Overview.html">for the CSS Profile</a>. Learn more about the <a href="/Math/">Math Activity</a>.</p>
</div>
<div class="entry" id="entry-8678">
<h3>
<a href="#entry-8678">
Call for Review: Selectors Level 3 Proposed Recommendation Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-15T10:45:15-05:00">15 December 2009</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/2009/PR-css3-selectors-20091215/">Selectors Level 3</a>. Selectors are patterns that match against elements in a tree, and as such form one of several technologies that can be used to select nodes in an XML document. Selectors have been optimized for use with HTML and XML, and are designed to be usable in performance-critical code. See the group's <a href="/Style/CSS/Test/CSS3/Selectors/20091025/reports/CR-ImpReport.html">implementation report</a> and <a href="/TR/2009/WD-css3-selectors-20090310/">disposition of Last Call comments</a>. Comments are welcome through 31 January 2010. Learn more about the <a href="/Style/">Style Activity</a>.</p>
</div>
<div class="entry" id="entry-8677">
<h3>
<a href="#entry-8677">
WAI Gathering Additional Resources Supporting Web Accessibility Business Case
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-14T11:05:56-05:00">14 December 2009</span></p>
<p>The <acronym title="Web Accessibility Initiative">WAI</acronym> <a href="/WAI/EO">Education and Outreach Working Group</a> today published a first collection of statistics, case studies, and articles that support the business case for web accessibility, in <a href="/WAI/bcase/resources.html">Resources for Developing a Web Accessibility Business Case for Your Organization</a>. To learn about sharing your resources, see <a href="/QA/2009/12/share_resources_supporting_the.html">Share Resources Supporting the Web Accessibility Business Case blog post</a>. Read about the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
</div>
<div class="entry" id="entry-8675">
<h3>
<a href="#entry-8675">
New Internationalization Article: Choosing a Language Tag
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-11T12:12:55-05:00">11 December 2009</span></p>
<p>The <a href="/International/core">Internationalization Core Working Group</a> publishes information to help people understand and use international aspects of W3C technologies. Recently the group published <a href="/International/questions/qa-choosing-language-tags">Choosing a Language Tag</a>. The appearance of <a href="http://www.ietf.org/rfc/rfc5646.txt">RFC 5646</a> earlier this year added a new 'extended language' subtag to BCP 47 and around 7,000 new entries in the <a href="http://www.iana.org/assignments/language-subtag-registry">IANA Language Subtag Registry</a>. This article asks, which language tag is right for me, and how do I choose the language and other subtags I need? The answer outlines the necessary decisions in a step-by-step fashion. Visit the <a href="/International/">Internationalization home page</a>.</p>
</div>
<div class="entry" id="entry-8674">
<h3>
<a href="#entry-8674">
Internet Society and W3C Strengthen Relationship to Help Ensure Open Global Internet
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-11T08:30:21-05:00">11 December 2009</span></p>
<p>In a <a href="/2009/12/isocw3c-pr">joint press release</a> today, The Internet Society (ISOC) and W3C announced a donation from ISOC for the purpose of advancing the evolution of W3C as an organization that creates open Web standards. "ISOC and W3C have worked together for years in a number of areas, and have deeply shared values about the Internet’s development," said Lynn St. Amour, President and CEO of the Internet Society. "Our support to the W3C in their transition efforts demonstrates ISOC's commitment to ensuring the Internet continues to be an open, global platform for innovation." The announcement reflects the two organizations' shared aim of ensuring the
continued growth and accessibility of the global Internet and Web, and stewardship responsibilities to ensure these global communication platforms continue to benefit users worldwide. More information is available in the
<a href="/2009/12/isocw3c-pr">press release</a> and in a <a href="/2009/11/isoc-w3c-faq">FAQ about ISOC and W3C</a>.</p>
</div>
<div class="entry" id="entry-8673">
<h3>
<a href="#entry-8673">
New WAI Resource: Involve Users in Web Projects for Better, Easier Accessibility
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-09T15:22:25-05:00">09 December 2009</span></p>
<p>The <acronym title="Web Accessibility Initiative">WAI</acronym> <a href="/WAI/EO">Education and Outreach Working Group</a> today published <a href="/WAI/users/involving.html">Involving Users in Web Projects for Better, Easier Accessibility</a>, which provides guidance for project managers, designers, and developers of:</p>
<ul class="show_items">
<li>websites and web applications</li>
<li>browsers, media players, and assistive technologies</li>
<li>authoring tools such as content management systems (CMS), blog software, and <acronym title="what you see is what you get">WYSIWYG</acronym> editors</li>
<li> standards and policies on accessibility</li>
<li>web technologies and technical specifications</li>
</ul>
<p>Learn more about this and the related document <a href="/WAI/eval/users">Involving Users in Evaluating Web Accessibility</a> in the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009OctDec/0107.html">Involving Users announcement e-mail</a> and the <a href="/QA/2009/12/discover_new_ways_of_thinking.html">blog post <strong>Discover new ways of thinking about accessibility</strong></a>; and learn more about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>.</p>
</div>
<div class="entry" id="entry-8671">
<h3>
<a href="#entry-8671">
Namespaces in XML 1.0 (Third Edition) is a W3C Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-08T17:29:49-05:00">08 December 2009</span></p>
<p>The <a href="/XML/Core/">XML Core Working Group</a> has published <a href="/TR/2009/REC-xml-names-20091208/">Namespaces in XML 1.0 (Third Edition)</a> as a W3C Recommendation. XML namespaces provide a simple method for qualifying element and attribute names used in Extensible Markup Language (XML) documents by associating them with namespaces identified by URI references. This version, which supersedes the Second Edition, includes no substantive <a href="/TR/2009/REC-xml-names-20091208/#changes">changes</a>. Among the accumulated errata which it incorporates is one of particular importance, which removes an incompatibility with the Fifth Edition of the XML 1.0 specification itself. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
</div>
<div class="entry" id="entry-8670">
<h3>
<a href="#entry-8670">
W3C Outlines Roadmap for Realizing Web for Social Development
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-08T14:24:01-05:00">08 December 2009</span></p>
<p>W3C today outlines a roadmap for extending the Web to rural and underprivileged communities in developing countries. The <a href="/TR/2009/NOTE-mw4d-roadmap-20091208/">Mobile Web for Social Development (MW4D) Roadmap</a> examines the challenges to deploying and accessing development-oriented services and surveys the technology landscape for meeting those challenges. The document identifies two major challenges:</p> <ol class="show_items"> <li>barriers to Web access faced by underprivileged communities in developing countries, and</li> <li>barriers to authoring and deploying Web content, and accessing information, applications, and services on mobile phones.</li> </ol> <p>The roadmap was published by the <a href="/2008/MW4D/">Mobile Web for Social Development Interest Group</a>, part of the <a href="/Mobile/">W3C Mobile Web Initiative (MWI)</a>. Read the <a href="/2009/12/mw4d-pressrelease">press release</a> and learn more about the <a href="/Mobile/">Mobile Web Initiative (MWI)</a>. </p>
</div>
<div class="entry" id="entry-8669">
<h3>
<a href="#entry-8669">
W3C Invites Implementations of Efficient XML Interchange (EXI) Format 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-08T14:20:13-05:00">08 December 2009</span></p>
<p>The <a href="/XML/EXI/">Efficient XML Interchange Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-exi-20091208/">Efficient XML Interchange (EXI) Format 1.0</a>. This document is the specification of the Efficient XML Interchange (EXI) format, a very compact representation for the Extensible Markup Language (XML) Information Set that is intended to simultaneously optimize performance and the utilization of computational resources. The EXI format uses a hybrid approach drawn from the information and formal language theories, plus practical techniques verified by measurements, for entropy encoding XML information. Using a relatively simple algorithm, which is amenable to fast and compact implementation, and a small set of datatype representations, it reliably produces efficient encodings of XML event streams. The group also updated the <a href="/TR/2009/WD-exi-primer-20091208/">EXI Primer</a>. Read the group's <a href="/XML/Group/EXI/docs/interop/interop">interoperability test plan</a> and learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
</div>
<div class="entry" id="entry-8668">
<h3>
<a href="#entry-8668">
Last Call: Widget Access Request Policy
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-08T13:52:59-05:00">08 December 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-widgets-access-20091208/">Widget Access Request Policy</a>. This specification defines the security model controlling network access from within a widget, as well as a method for widget authors to request that the user agent grant access to certain network resources or sets thereof. Comments are welcome through 13 January. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8667">
<h3>
<a href="#entry-8667">
Voice Extensible Markup Language (VoiceXML) 3.0 Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-03T14:03:59-05:00">03 December 2009</span></p>
<p>The <a href="/Voice/">Voice Browser Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-voicexml30-20091203/">Voice Extensible Markup Language (VoiceXML) 3.0</a>. The primary goal of this document is to bring the advantages of Web-based development and content delivery to interactive voice response applications. VoiceXML 3.0 is a modular XML language for creating interactive media dialogs that feature synthesized speech, recognition of spoken and DTMF key input, telephony, mixed initiative conversations, and recording and presentation of a variety of media formats including digitized audio, and digitized video. Learn more about the <a href="/Voice/">Voice Browser Activity</a>.</p>
</div>
<div class="entry" id="entry-8666">
<h3>
<a href="#entry-8666">
Last Call: W3C XML Schema Definition Language (XSD) 1.1
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-03T13:55:26-05:00">03 December 2009</span></p>
<p>The <a href="/XML/Schema">XML Schema Working Group</a> has published Last Call Working Draft of <a href="/TR/2009/WD-xmlschema11-1-20091203/">W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures</a> and
<a href="/TR/2009/WD-xmlschema11-2-20091203/">Part 2: Datatypes</a>. The former 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). The second publication
defines facilities for defining datatypes to be used in XML Schemas as well as other XML specifications. Comments are welcome through 31 December. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
</div>
<div class="entry" id="entry-8665">
<h3>
<a href="#entry-8665">
W3C Invites Implementation of Widget Packaging and Configuration
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-01T12:29:13-05:00">01 December 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-widgets-20091201/">Widget Packaging and Configuration</a>. This specification standardizes a packaging format for software known as widgets. Widgets are client-side applications that are authored using Web standards, but whose content can also be embedded into Web documents. The packaging format acts as a container for files used by a widget. The configuration document is an XML vocabulary that declares metadata and configuration parameters for a widget. The steps for processing a widget package describe the expected behavior and means of error handling for runtimes while processing the packaging format, configuration document, and other relevant files. The group plans to track implementations in an <a href="http://dev.w3.org/2006/waf/widgets/imp-report/">implementation report</a>. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8664">
<h3>
<a href="#entry-8664">
CSS 2D Transforms, Transitions Modules Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-01T10:40:50-05:00">01 December 2009</span></p>
<p>The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published Working Drafts of <a href="/TR/2009/WD-css3-2d-transforms-20091201/">CSS 2D Transforms Module Level 3</a> and <a href="/TR/2009/WD-css3-transitions-20091201/">CSS Transitions Module Level 3</a>. CSS 2D Transforms allows elements rendered by CSS to be transformed in two-dimensional space. CSS Transitions allows property changes in CSS values to occur smoothly over a specified duration. Learn more about the <a href="/Style/">Style Activity</a>.</p>
</div>
<div class="entry" id="entry-8663">
<h3>
<a href="#entry-8663">
Multimodal Architecture and Interfaces (MMI Architecture) Working Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-01T10:30:34-05:00">01 December 2009</span></p>
<p>The <a href="/2002/mmi/">Multimodal Interaction Working Group</a> has published an updated Working Draft of <a href="/TR/2009/WD-mmi-arch-20091201/">Multimodal Architecture and Interfaces (MMI Architecture)</a>, which defines 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 document as a whole has changed significantly and the group welcomes review. The main changes from
the previous draft are (1) clarifying the relationship to EMMA, (2) simplifying the architecture constituents, (3) adding a description on HTTP transport of lifecycle events and (4) adding an example of handwriting recognition modality component. A
<a href="/TR/2009/WD-mmi-arch-20091201/">diff-marked version</a> of this document is available. Learn more about the W3C <a href="/2002/mmi/Activity">Multimodal Interaction
Activity</a>.</p>
</div>
<div class="entry" id="entry-8662">
<h3>
<a href="#entry-8662">
Patent Advisory Group Launched for Widgets 1.0: Access Requests Policy
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-12-01T10:21:04-05:00">01 December 2009</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 <a href="/2004/01/pp-impl/p72">disclosure</a> related to the <a href="/TR/widgets-access/">Widgets 1.0: Access Requests Policy</a> specification; see the <a href="/2009/11/widgets-pag-charter">PAG charter</a>. The <a href="/2008/webapps/">WebApps 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>. Learn more about <a href="/Consortium/Patent-Policy-20040205/#sec-Exception">Patent Advisory Groups</a>.</p>
</div>
<div class="entry" id="entry-8661">
<h3>
<a href="#entry-8661">
W3C Launches HTML5 Japanese Interest Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-29T22:24:16-05:00">29 November 2009</span></p>
<p>W3C has launched the <a href="/html/ig/jp/">HTML5 Japanese Interest Group</a> whose mission is to facilitate focused discussion in Japanese of the HTML5 specification and of specifications closely related to HTML5, to gather comments and questions in Japanese about those specifications, to collect information about specific use cases in Japan for technologies defined in those specifications, and to report the results of its activities as a group back to the HTML Working Group and others in the community. Learn more in the <a href="/2009/09/html5-ig-jp-charter">charter</a>, <a href="/html/ig/jp/#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-8660">
<h3>
<a href="#entry-8660">
Last Call: XMLHttpRequest
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-19T14:04:21-05:00">19 November 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-XMLHttpRequest-20091119/">XMLHttpRequest</a>. The XMLHttpRequest specification defines an API that provides scripted client functionality for transferring data between a client and a server. It is the ECMAScript HTTP API. Comments are welcome through 16 December. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8658">
<h3>
<a href="#entry-8658">
First Draft of File API Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-17T22:41:58-05:00">17 November 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-FileAPI-20091117/">File API</a>. This specification provides an API for representing file objects in web applications, as well as programmatically selecting them and accessing their data. This API is designed to be used in conjunction with other APIs and elements on the web platform, notably: XMLHttpRequest (e.g. with an overloaded send() method for File objects), postMessage, DataTransfer (part of the drag and drop API defined in [HTML5,]) and Web Workers. Additionally, it should be possible to programmatically obtain a list of files from the input element [HTML5] when it is in the File Upload state. These kinds of behaviors are defined in the appropriate affiliated specifications. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8657">
<h3>
<a href="#entry-8657">
Last Call: Widgets 1.0: The widget Interface
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-17T11:38:20-05:00">17 November 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-widgets-apis-20091117/">Widgets 1.0: The widget Interface</a>. This specification defines an application programming interface (API) for widgets that provides, amongst other things, functionality for accessing a widget's metadata and persistently storing data. Comments are welcome through 08 December. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8656">
<h3>
<a href="#entry-8656">
Last Call: XML Entity definitions for Characters
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-17T11:35:51-05:00">17 November 2009</span></p>
<p>The <a href="/Math/">Math Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-xml-entity-names-20091117/">XML Entity definitions for Characters</a>. It is difficult to write science fluently if scientific characters are not available for use. It is difficult to read science if corresponding glyphs are not available for presentation. In the majority of cases it is preferable to store characters directly as Unicode character data or as XML numeric character references. However, in some environments it is more convenient to use the ASCII input mechanism provided by XML entity references. Many entity names are in common use, and this specification aims to provide standard mappings to Unicode for each of these names. It introduces no names that have not already been used in earlier specifications. Comments are welcome through 08 December. Learn more about the <a href="/Math/">Math Activity</a>.</p>
</div>
<div class="entry" id="entry-8655">
<h3>
<a href="#entry-8655">
First Draft of Mobile Web for Social Development Roadmap Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-17T11:23:34-05:00">17 November 2009</span></p>
<p>The <a href="/2008/MW4D/">Mobile Web For Social Development (MW4D) Interest Group</a> has published a Group Note of <a href="/TR/2009/NOTE-mw4d-roadmap-20091117/">Mobile Web for Social Development Roadmap</a>. This document describes some of the current challenges of deploying development-oriented services on mobile phones. It suggests the most promising directions for lowering barriers to developing, deploying and accessing services on mobile phones and thereby creating an enabling environment for more social-oriented services to appear. Learn more about the <a href="/Mobile/">Mobile Web Initiative Activity</a>.</p>
</div>
<div class="entry" id="entry-8654">
<h3>
<a href="#entry-8654">
World Wide Web Foundation Launches Operations and First Projects
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-15T08:35:29-05:00">15 November 2009</span></p>
<p>Speaking at the <a href="http://igf09.eg/homeeng.html">Internet Governance Forum</a> in Sharm el Sheikh, Egypt, Tim Berners-Lee announced today that <a href="http://www.webfoundation.org">World Wide Web Foundation</a> is open for business. World Wide Web Foundation was <a href="/News/2008.html#entry-6786">created</a> with W3C's support in September 2008, and focuses on advancing the Web as a medium that empowers people to make positive social and economic change. Web Foundation's first two projects will help people to better leverage the Web to support <a href="http://www.webfoundation.org/projects/greening-africa/">agriculture in near-desert environments in Africa</a>, and <a href="http://www-dev.webfoundation.org/projects/empower-youth/">empowering youth in inner-city centers</a> by teaching them how to create Web content. Such projects are consistent with W3C's own work to ensure that One Web is available to all, including work on <a href="/2008/MW4D/">mobile Web for social development</a>, <a href="/WAI/">accessibility</a>, and <a href="/International/">internationalization</a>. W3C looks forward to collaborating with World Wide Web Foundation to further lower barriers to access and to promote the development of free and open Web standards.</p>
</div>
<div class="entry" id="entry-8651">
<h3>
<a href="#entry-8651">
W3C Technical Plenary Convenes
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-11-04T13:37:58-05:00">04 November 2009</span></p>
<p class="newsImage">
<a class="imageLink" href="/2009/11/TPAC/"><img alt="Natural Bridges (Santa Cruz, CA)" src="/2009/11/scbeach.jpg" height="133" width="200" /></a>
The W3C community convenes today in Santa Clara, California for <a href="/2009/11/TPAC/">Technical Plenary (TPAC) 2009</a> to discuss:</p>
<ul class="show_items newsImage">
<li>Decentralized Extensibility in HTML5</li>
<li>Maintaining a Healthy Internet Ecosystem -- Challenges to an Open Internet Infrastructure</li>
<li>Privacy on the Web of Applications -- Challenges and Opportunities</li>
<li>Web Apps vs App. Stores</li>
<li>Future of the Social Web</li>
<li>Twelve lightning talks</li>
</ul>
<p>This year, the <a href="http://www.isoc.org/">Internet Society (ISOC)</a>, as part of its mission to support the development of open standards, is sponsoring TPAC 2009. Tomorrow, the public will participate in discussion at W3C's first <a href="/2009/11/TPAC/DevMeeting">Developer Gathering</a>. Follow the goings-on via hash code "#tpac09" in various social networking channels. Procedings from the Plenary Day will be public. </p>
</div>
<div class="entry" id="entry-8650">
<h3>
<a href="#entry-8650">
Five API Working Drafts Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T15:02:36-05:00">30 October 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a>
has published updates to five Working Drafts of specifications for
APIs that enhance the open Web platform as a runtime environment
for full-featured applications:</p>
<ul class="show_items">
<li><a href="/TR/2009/WD-websockets-20091029/">Web Sockets API</a>
provides an API for full-duplex communication between a Web
application and a remote host.</li>
<li><a href="/TR/2009/WD-webstorage-20091029/">Web Storage</a>
provides APIs for Web applications to store key-value data on
the client side.</li>
<li><a href="/TR/2009/WD-webdatabase-20091029/">Web Database</a>
defines an API for Web applications to store data in client-side
databases that can be queried using a variant of SQL.</li>
<li><a href="/TR/2009/WD-workers-20091029/">Web Workers</a>
defines an API for enabling thread-like operations (using
message passing) in Web applications, so that certain
application tasks can be run in parallel.</li>
<li><a href="/TR/2009/WD-eventsource-20091029/">Server-Sent Events</a>
defines an API for a Web application to open an HTTP connection
for receiving push notifications from a server, in the form of
DOM events.</li>
</ul>
<p>Note that the
<a href="/TR/2009/WD-webstorage-20091029/">Web Storage</a>
and <a href="/TR/2009/WD-webdatabase-20091029/">Web Database</a>
specifications were previously published as a single Working
Draft, but have now been split out into separate Working Drafts.
Learn more about the
<a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8649">
<h3>
<a href="#entry-8649">
Widgets 1.0: Packaging and Configuration Draft Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T15:00:29-05:00">30 October 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a>
has published an updated Working Draft of
<a href="/TR/2009/WD-widgets-20091029/">Widgets 1.0: Packaging and Configuration</a>,
which standardizes a packaging format for software known as
widgets. The specification relies on PKWare's Zip specification as
the archive format, XML as a configuration document format, and
provides a series of steps that widget runtimes follow when
processing and verifying various aspects of a package. This
updated Working Draft addresses issues reported during the first
Candidate Recommendation phase (see the
<a href="/TR/2009/WD-widgets-20091029/#list-of-changes">list of changes</a>).
Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8648">
<h3>
<a href="#entry-8648">
DataCache API First Working Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T14:57:42-05:00">30 October 2009</span></p>
<p>The <a href="/2008/webapps/">Web Applications Working Group</a> has published a First Public Working Draft of
<a href="/TR/2009/WD-DataCache-20091029/">DataCache API</a>,
which provides Web applications with a means to programatically
add and remove resources to a “data cache”, which can then be
statically served by user agents when a particular resource is
requested. Learn more about the
<a href="/2006/rwc/Activity.html">Rich Web Client Activity</a>.</p>
</div>
<div class="entry" id="entry-8647">
<h3>
<a href="#entry-8647">
State Chart XML (SCXML) Working Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T14:56:19-05:00">30 October 2009</span></p>
<p>The <a href="/Voice/">Voice Browser Working Group</a> has published
an updated Working Draft of <a href="/TR/2009/WD-scxml-20091029/">State Chart XML (SCXML): State Machine Notation for Control Abstraction</a>.
<abbr title="State Chart eXtensible Markup Language">SCXML</abbr> is a
general-purpose event-based state machine language that may be used in
a number of ways, including as a high-level dialog language
controlling VoiceXML 3.0's encapsulated speech modules, or as a
multimodal control language in the MultiModal Interaction
framework. The main difference from the
<a href="/TR/2009/WD-scxml-20090507/">previous draft</a> is
the correction of various inconsistencies. A
<a href="/TR/2009/WD-scxml-20091029/diff.html">diff-marked version</a>
of this document is also available for comparison purposes.
Learn more about the <a href="/Voice/">Voice Browser Activity</a>.
</p>
</div>
<div class="entry" id="entry-8646">
<h3>
<a href="#entry-8646">
First Draft of Emotion Markup Language (EmotionML) 1.0 Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T14:54:50-05:00">30 October 2009</span></p>
<p> The <a href="/2002/mmi/">Multimodal Interaction
Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-emotionml-20091029/"> Emotion Markup Language
(EmotionML) 1.0</a>. EmotionML provides representations of emotions and related states for technological applications. The aim of this draft is to strike a balance between practical applicability and scientific well-foundedness of emotion specification.
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/">Multimodal Interaction
Activity</a>.
</p>
</div>
<div class="entry" id="entry-8645">
<h3>
<a href="#entry-8645">
Authoring Tool Accessibility Guidelines (ATAG) 2.0: Updated Working Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T14:52:03-05:00">30 October 2009</span></p>
<p>The <a href="/WAI/AU/">Authoring Tool Accessibility Guidelines Working Group</a> has published an updated Working Draft of <a href="/TR/2009/WD-ATAG20-20091029/">Authoring Tool Accessibility Guidelines (ATAG) 2.0</a>. ATAG defines how authoring tools should help Web developers produce Web content that is accessible and conforms to Web Content Accessibility Guidelines (WCAG) 2.0. ATAG also defines how to make authoring tools accessible so that people with disabilities can use them. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009OctDec/0046.html">invitation to review the ATAG 2.0 Working Draft</a> and about the <a href="/WAI/">Web Accessibility Initiative</a>.</p>
</div>
<div class="entry" id="entry-8644">
<h3>
<a href="#entry-8644">
Last Call: Evaluation and Report Language (EARL) 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T14:49:32-05:00">30 October 2009</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="/TR/EARL10-Schema/">Evaluation and Report Language (EARL) 1.0 Schema</a>, updated Working Drafts of <a href="/TR/HTTP-in-RDF10/"><acronym title="Hyper Text Transfer Protocol">HTTP</acronym> Vocabulary in <acronym title="Resource Description Framework">RDF</acronym> 1.0</a>, <a href="/TR/Content-in-RDF10/">Representing Content in RDF 1.0</a>, <a href="/TR/Pointers-in-RDF10/">Pointer Methods in RDF 1.0</a>, <a href="/TR/EARL10-Requirements/">Evaluation and Report Language (EARL) 1.0 Requirements</a>, and a First Public Working Draft of the <a href="/TR/EARL10-Guide/">Evaluation and Report Language (EARL) 1.0 Guide</a>. EARL is a machine-readable format for expressing test results. The primary motivation for developing EARL is to facilitate the processing of test results, such as those generated by Web accessibility evaluation tools, using a vendor-neutral and platform-independent format. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009OctDec/0045.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-8643">
<h3>
<a href="#entry-8643">
Web Services Fragment (WS-Fragment) First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-30T14:44:59-05:00">30 October 2009</span></p>
<p>The <a href="/2002/ws/ra/">Web Services Resource Access Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-ws-fragment-20091027/">Web Services Fragment (WS-Fragment)</a>. This specification extends the WS-Transfer [WS-Transfer] specification to enable clients to retrieve and manipulate parts or fragments of a WS-Transfer enabled resource without needing to include the entire XML representation in a message exchange. Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p>
</div>
<div class="entry" id="entry-8641">
<h3>
<a href="#entry-8641">
Incubator Group Report: Rich Web Application Backplane
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-27T11:12:09-05:00">27 October 2009</span></p>
<p>The <a href="/2005/Incubator/app-backplane/">Rich Web Application Backplane Incubator Group (XG)</a> published their <a href="/2005/Incubator/app-backplane/XGR-app-backplane-20091030/">final report</a> today. The report describes two areas of work undertaken by the XG; authoring patterns helpful in supporting high-function web applications in managing client-side data and user interaction control. In addition, a range of methods are considered for implementing such patterns in current browsers without requiring plug-ins or extensions using javascript-based markup behaviors.
The Backplane XG <a href="/2005/Incubator/app-backplane/XGR-app-backplane-20091030/#Conclusion">recommends</a> that a workshop be organized bringing together interested parties with an aim to creating a Working Group to define a standardized architecture and API for XML and HTML interaction formats implemented in Javascript. 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-8640">
<h3>
<a href="#entry-8640">
W3C OWL 2 Standard Facilitates Information Management and Integration
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-27T08:55:10-05:00">27 October 2009</span></p>
<p>Today W3C announces a new version of a standard for representing
knowledge on the Web. <a href="/TR/owl2-overview/">OWL 2</a>, part of W3C's <a href="/2001/sw/">Semantic Web toolkit</a>,
allows people to capture their knowledge about a particular domain
(say, energy or medicine) and then use tools to manage information,
search through it, and learn more from it. As an open standard based
on Web technology, OWL 2 lowers the cost of merging knowledge from
multiple domains. More than a dozen implementations of OWL 2 are
already available. The standard consists of 13 documents, of which 4
are instructional. Read the <a href="/2009/10/owl2-pr">press release
</a>, read the <a href="/2009/10/owl2-testimonial">testimonials</a>, and
learn more about the <a href="/2001/sw/">Semantic Web</a>.
</p>
</div>
<div class="entry" id="entry-8639">
<h3>
<a href="#entry-8639">
SML XLink Reference Scheme Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-23T14:47:29-05:00">23 October 2009</span></p>
<p>The <a href="/XML/SML/">Service Modeling Language Working Group</a> has published a Group Note of <a href="/TR/sml-xlink-ref-scheme/">The SML XLink Reference Scheme</a>. The Service Modeling Language [SML] specification extends the Extensible Mark-up Language and XML Schema with a mechanism for incorporating into XML documents references to other documents or document fragments. The SML specification does not mandate the use of any specific reference scheme, and provides an extensibility mechanism for defining new reference schemes. This note illustrates how the extensibility mechanism can be used to define an SML reference scheme based on XLink links. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p>
</div>
<div class="entry" id="entry-8638">
<h3>
<a href="#entry-8638">
Three Health Care and Life Science Interest Group Notes Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-23T14:32:29-05:00">23 October 2009</span></p>
<p>The <a href="/2001/sw/hcls/">Semantic Web Health Care and Life Sciences Interest Group</a> published three Interest Group notes produced by the <a href="http://esw.w3.org/topic/HCLSIG/SWANSIOC">Scientific Discourse Task Force</a>:
</p>
<ul>
<li><a href="/TR/hcls-swan/">Semantic Web Applications in Neuromedicine (SWAN) Ontology</a></li>
<li><a href="/TR/hcls-sioc/">SIOC, SIOC Types and Health Care and Life Sciences</a></li>
<li><a href="/TR/hcls-swansioc/">SWAN/SIOC: Alignment Between the SWAN and SIOC Ontologies</a></li>
</ul>
<p>
These notes describe how one can use the Semantic Web to express and integrate scientific data from different domains and from heterogeneous services. It is hoped that they will inspire further contributions to the ongoing work of the Health Care and Life Sciences Interest Group and its Scientific Discourse Task Force, as well as inspire those in other domains to exploit the Semantic Web. On a related topic, the Interest Group holds a <a href="http://esw.w3.org/topic/HCLS/ISWC2009/Workshop">Workshop on Scientific Discourse</a> at <a href="http://iswc2009.semanticweb.org/">ISWC 2009</a> on Monday, 26 October. Learn more about the <a href="/2001/sw/">Semantic Web</a>.</p>
</div>
<div class="entry" id="entry-8637">
<h3>
<a href="#entry-8637">
W3C Launches MashSSL Incubator Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-22T16:43:40-05:00">22 October 2009</span></p>
<p> W3C is pleased to announce the creation of the <a href="/2005/Incubator/MashSSL/">MashSSL Incubator Group</a>, whose mission is to create an open security protocol to
solve a fundamental Internet security problem. Specifically, when two
web applications communicate through a potentially untrusted user they
do not have any standard way of mutually authenticating each other and
establishing a trusted channel. The group seeks to create an open,
secure standard for solving this problem. The following W3C Members have sponsored the <a href="/2005/Incubator/MashSL/charter">charter</a> for this group: DigiCert, Venafi and VeriSign. 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.</p>
</div>
<div class="entry" id="entry-8636">
<h3>
<a href="#entry-8636">
Six SPARQL 1.1 First Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-22T12:52:15-05:00">22 October 2009</span></p>
<p>The <a href="/2001/sw/DataAccess/">SPARQL Working
Group</a> published the First Public Working Draft of six SPARQL 1.1
specifications. SPARQL is the query language of the Semantic Web, and
SPARQL 1.1 enhances the SPARQL landscape with:</p>
<ul>
<li> <a href="/TR/2009/WD-sparql11-query-20091022/">SPARQL 1.1
Query</a> - Adds support for aggregates, subqueries, projected
expressions, and negation to the SPARQL query language.</li>
<li> <a href="/TR/2009/WD-sparql11-update-20091022/">SPARQL 1.1
Update</a> - Defines an update language for RDF graphs.</li>
<li> <a href="/TR/2009/WD-sparql11-protocol-20091022/">SPARQL 1.1
Protocol</a> - Defines an abstract interface and HTTP bindings for a
protocol to issue SPARQL Query and SPARQL Update statements against a
SPARQL endpoint.</li>
<li> <a href="/TR/2009/WD-sparql11-service-description-20091022/">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/2009/WD-sparql11-http-rdf-update-20091022/">SPARQL
1.1 Uniform HTTP Protocol for Managing RDF Graphs</a> - Describes the
use of the HTTP protocol for managing named RDF graphs on an HTTP
server.</li>
<li> <a href="/TR/2009/WD-sparql11-entailment-20091022/">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>Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p>
</div>
<div class="entry" id="entry-8635">
<h3>
<a href="#entry-8635">
Two Security First Drafts Published: XML Signature Syntax and Processing Version 2.0; Canonical XML Version 2.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-22T12:38:14-05:00">22 October 2009</span></p>
<p>The <a href="/2008/xmlsec/">XML Security Working Group</a> has published two First Public Working Drafts: <a href="/TR/2009/WD-xmldsig-core2-20091022/">XML Signature Syntax and Processing Version 2.0</a> and <a href="/TR/2009/WD-xml-c14n2-20091022/">Canonical XML Version 2.0</a>. The former provides integrity, message authentication, and/or signer authentication services for data of any type, whether located within the XML that includes the signature or elsewhere. XML Signature 2.0 includes a new transform model designed to address requirements including performance, simplicity and streamability. This model is significantly different than in XML Signature 1.x (see Section 10: "Differences from 1.x version"). XML Signature 2.0 is designed to be backward compatible, however, enabling the XML Signature 1.x model to be used where necessary. Canonical XML Version 2.0 is a major rewrite of Canonical XML Version 1.1 to address issues around performance, streaming, hardware implementation, robustness, minimizing attack surface, determining what is signed and more. It also incorporates an update to Exclusive Canonicalization, effectively a 2.0 version, as well. Learn more about the W3C <a href="/Security/">Security Activity</a>.</p>
</div>
<div class="entry" id="entry-8634">
<h3>
<a href="#entry-8634">
API for Media Resource 1.0 First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-21T15:07:31-05:00">21 October 2009</span></p>
<p>The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published the First Public Working Draft of <a href="/TR/mediaont-api-1.0/">API for Media Resource 1.0</a>. This specification defines a client-side API to access metadata information related to media resources on the Web. The overall purpose of the API is to provide developers with a convenient access to metadata information stored in different metadata formats. The API serves as a mediator between a developer and the underlying Ontology for Media Resource 1.0 with the goal to support interoperability between metadata formats. It offers GET and SET operations to retrieve and to store particular metadata informations represented in a certain metadata format related to media ressources on the Web. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p>
</div>
<div class="entry" id="entry-8633">
<h3>
<a href="#entry-8633">
XForms 1.1 is a W3C Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-20T13:16:37-05:00">20 October 2009</span></p>
<p>The <a href="/MarkUp/Forms/">Forms Working Group</a> has published a W3C Recommendation of <a href="/TR/2009/REC-xforms-20091020/">XForms 1.1</a>. Forms are an important part of the Web, and they continue to be the primary means for enabling interactive Web applications. Web applications and electronic commerce solutions have sparked the demand for better Web forms with richer interactions. XForms is the response to this demand, and provides a new platform-independent markup language for online interaction between a person (through an XForms Processor) and another, usually remote, agent. Read the <a href="/2009/10/xforms-testimonial">Member testimonials about XForms</a>, learn about the <a href="/TR/2009/REC-xforms-20091020/#intro-diffs">differences between XForms 1.0 and 1.1</a> and more about the <a href="/MarkUp/Forms/">XForms Activity</a>.</p>
</div>
<div class="entry" id="entry-8632">
<h3>
<a href="#entry-8632">
Extended Guidelines for Mobile Web Best Practices 1.0 Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-20T13:14:09-05:00">20 October 2009</span></p>
<p>The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> has published a Group Note of <a href="/TR/2009/NOTE-mwbp-guidelines-20091020/">Extended Guidelines for Mobile Web Best Practices 1.0</a>. This document supplements W3C Mobile Web Best Practices 1.0 [MWBP] by providing additional evaluations of conformance to Best Practice statements and by providing additional interpretations of Best Practice statements. Learn more about the <a href="/Mobile/">Mobile Web Initiative Activity</a>.</p>
</div>
<div class="entry" id="entry-8631">
<h3>
<a href="#entry-8631">
HTML+RDFa First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-15T17:17:08-05:00">15 October 2009</span></p>
<p>The <a href="/html/wg/">HTML Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-rdfa-in-html-20091015/">HTML+RDFa</a>. RDFa is intended to solve the problem of machine-readable data in HTML documents. RDFa provides a set of HTML attributes to augment visual data with machine-readable hints. Using RDFa, authors may turn their existing human-visible text and links into machine-readable data without repeating content. This specification defines rules and guidelines for adapting the RDF in XHTML: Syntax and Processing (RDFa) specification for use in the HTML5 and XHTML5 members of the HTML family. The rules defined in this document not only apply to HTML5 documents in non-XML and XML mode, but also to HTML4 documents interpreted through the HTML5 parsing rules. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p>
</div>
<div class="entry" id="entry-8630">
<h3>
<a href="#entry-8630">
Device APIs Requirements Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-15T17:13:49-05:00">15 October 2009</span></p>
<p>The <a href="/2009/dap/">Device APIs and Policy Working Group</a> has published a First Draft of a Group Note of <a href="/TR/2009/NOTE-dap-api-reqs-20091015/">Device APIs Requirements</a>. These are the requirements intended to be met in the development of client-side APIs that enable the creation of Web Applications and Web Widgets that interact with devices services such as Calendar, Contacts, Camera, etc. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p>
</div>
<div class="entry" id="entry-8629">
<h3>
<a href="#entry-8629">
Last Call: CSS Backgrounds and Borders Module Level 3
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-15T17:03:45-05:00">15 October 2009</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/2009/WD-css3-background-20091015/">CSS Backgrounds and Borders Module Level 3</a>.
This document contains the features of CSS
level 3 relating to borders and backgrounds. It includes and
extends the functionality of CSS level 2 [CSS21], which builds on CSS
level 1 [CSS1]. The main extensions compared to level 2
are borders consisting of images, boxes with multiple backgrounds,
boxes with rounded corners and boxes with shadows. Comments are welcome through 17 November. Learn more about the <a href="/Style/">Style Activity</a>.</p>
</div>
<div class="entry" id="entry-8628">
<h3>
<a href="#entry-8628">
W3C Launches New Site
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-13T16:29:18-05:00">13 October 2009</span></p>
<p class="newsImage"><a class="imageLink" href="/standards/"><img alt="Surf the new site" src="/2009/10/surf.jpg" height="160" width="200" /></a>
Today W3C launched its new Web site. This update follows the <a href="/News/2009#entry-6357">beta site announcement</a> earlier this year. The new site features a harmonized design, simplified information architecture, new style for technical reports, and new content, including calendars and aggregated blogs. Visitors to the site will notice that there are (new) pages that have not yet been completed with up-to-date content. We plan to continue to add content to these pages, and welcome your contributions. Please contact us at site-comments@w3.org if you would like to contribute (e.g., by writing a short technology introduction), or if you find any bugs or anomalies.</p>
<p>W3C would like to thank people who helped in the template development, including
Airbag Industries, Nicole Sullivan, and Sorin Stefan. W3C also appreciates all of the suggestions that have helped improve the usability of the final product.</p>
</div>
<div class="entry" id="entry-6534">
<h3>
<a href="#entry-6534">
Join the eGovernment Interest Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-09T00:00:00-05:00">09 October 2009</span></p>
<div id="item186"><p> The <a href="/2007/eGov/IG/wiki/Main_Page">eGovernment Interest Group</a> has been rechartered with a new focus Open Government Data and Education/Outreach. The group is open to all (W3C Members and non-Members alike). We encourage participation from people around the world working on improving the interface between citizens and government. Please see the <a href="/2009/06/eGov/ig-charter">new charter</a> and <a href="/2007/eGov/IG/participation">how to participate</a>. Learn more about <a href="/2007/eGov/">eGovernment at W3C</a>. </p></div>
</div>
<div class="entry" id="entry-6537">
<h3>
<a href="#entry-6537">
W3C Patent Advisory Group Recommends Continuing Work on Widgets 1.0: Update
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-08T00:00:00-05:00">08 October 2009</span></p>
<div id="item183"><p> A <a href="/Consortium/Patent-Policy-20040205/#sec-Exception">Patent Advisory Group (PAG)</a> for the <a href="/2008/webapps/">Web Applications Working Group</a> published its <a href="/2009/03/widgets-pag/pagreport">report</a>, which suggests that W3C should continue the work on the <a href="/TR/widgets-updates/ ">Widgets 1.0: Updates Specification</a>. W3C launched the PAG when Apple Computer, Inc excluded patent claims from the W3C Royalty-Free licensing commitment. The Group concluded that the US Patent Number 5,764,992 is considered not essential according to <a href="/Consortium/Patent-Policy-20040205/#sec-PAG-conclude-alternate">Section 8 of the W3C Patent Policy</a>, and provided a <a href="/2009/03/widgets-pag/pagreport#Conclusion">set of Recommendations</a> to the Web Applications Working Group. </p></div>
</div>
<div class="entry" id="entry-6536">
<h3>
<a href="#entry-6536">
Last Call: Widgets 1.0: Widget URIs
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-08T00:00:00-05:00">08 October 2009</span></p>
<div id="item184"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-widgets-uri-20091008/">Widgets 1.0: Widget URIs</a>. Resources inside a widget package are identified and located using a method that is specific to widgets technology. Widget URIs reflect this by providing these specific locators with their own syntax so that resources in widget packages can be readily identified. Comments are welcome through 10 November. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6535">
<h3>
<a href="#entry-6535">
Incubator Group Report: Product Modelling using Semantic Web Technologies
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-08T00:00:00-05:00">08 October 2009</span></p>
<div id="item185"><p> The <a href="/2005/Incubator/w3pm/">Product Modelling Incubator Group</a> has published their final <a href="/2005/Incubator/w3pm/XGR-w3pm-20091008/">report</a>. The mission of the Incubator Group was to enable the use of the (Semantic) Web for Product Modelling (PM): the definition, storage, exchange and sharing of product data. Product data is information about the structure and behaviour of things that are realized in industrial processes. So principally product data is about things that are manmade, but it can also be about things in the natural world that interact with those industrial processes and/or its resulting products. The report describes the role and scope of product data, and initial work in two technical areas (1) quantities, units, and scales; and (2) product structure - the decomposition of wholes in parts and the interconnection relationships between these parts. 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>
<div class="entry" id="entry-6542">
<h3>
<a href="#entry-6542">
Learn Mobile Web Design With W3C MWI Experts (Course Begins 12 October)
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-06T00:00:00-05:00">06 October 2009</span></p>
<div id="item178"><p> The third and possibly final run of the successful online training course <a href="/2009/09/MobiWeb106/">An Introduction to W3C Mobile Web Best Practices</a> is due to start on Monday, 12 October. Participants work at their own pace at times to suit them throughout the 9-week course. The program is well-suited to developers with experience of desktop design and production who wish to apply their HTML and CSS skills to the mobile environment. A mixture of lectures and assignments provide hands-on practical experience in using W3C's Mobile Web Best Practices. Participants will work with both <a href="/2009/04/MobiWeb102/tutors.html">W3C instructors</a> and peers who can share experiences about the real-world challenges of mobile Web design.</p> <p>Comments from previous participants include:</p> <ul><li>"Great course! I really enjoyed it. Found it challenging at times but never felt I was on my own. The forum was an essential element to making me feel part of a community. Kudos!"</li><li>"Thanks for the cool course. I learned a lot."</li><li lang="es" xml:lang="es">"El contenido del curso es excelente, valoro el interes que le prestan a todos los estudiantes y a los temas de los foros."</li></ul> <p>More information (including a free sample) is available about the <a href="/2009/09/MobiWeb106/">course material</a>, registration fee, and intended audience. Learn more about the <a href="/Mobile/">Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6541">
<h3>
<a href="#entry-6541">
W3C Technical Plenary Week Participants to Address HTML 5 and Other Hot Topics
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-06T00:00:00-05:00">06 October 2009</span></p>
<div id="item179"><p> The W3C community convenes next month in Santa Clara, California for <a href="/2009/11/TPAC/">Technical Plenary Week (TPAC) 2009</a>, this year's edition of an annual week-long opportunity for W3C group participants to share news of progress and to address hot-button technical issues face-to-face, including the future of HTML 5, privacy challenges in an era of powerful Web Applications, and how governments are using the Web to increase transparency and accountability. This year, the <a href="http://www.isoc.org/">Internet Society (ISOC)</a>, as part of its mission to support the development of open standards, will sponsor TPAC 2009 and actively participate in the event. In addition to ISOC representatives, participants from other standards development organizations will join in discussion about the health of the "Internet Ecosystem" during the <a href="/2009/11/TPAC/PlenaryAgenda">Plenary Day</a>. As previously <a href="/News/2009#item165">announced</a>, W3C invites the public to a <a href="/2009/11/TPAC/DevMeeting">Developer Gathering</a> on 5 November. In addition, the press are invited to attend a <a href="/2009/11/TPAC/MediaBreakfast">Media Breakfast</a> on 3 November from 7:30-8:30am (Pacific Time) for presentations on some of the key topics W3C will cover during the week. Read the <a href="/2009/11/tpac2009-pr">press release</a> and learn more about <a href="/2009/11/TPAC/">TPAC 2009</a>. </p></div>
</div>
<div class="entry" id="entry-6540">
<h3>
<a href="#entry-6540">
Last Call: A MathML for CSS profile
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-06T00:00:00-05:00">06 October 2009</span></p>
<div id="item180"><p> The <a href="/Math/">Math Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-mathml-for-css-20091006/">A MathML for CSS profile</a>. This document describes a profile of MathML 3.0 that could be used to capture structure of mathematical formulae in the way suitable for further CSS formatting. This profile is expected to facilitate adoption of MathML in web browsers and CSS formatters, allowing them to reuse existing CSS visual formatting model, enhanced with a few mathematics-oriented extensions, for rendering of the layout schemata of presentational MathML. Learn more about the <a href="/Math/Activity">W3C Math Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6539">
<h3>
<a href="#entry-6539">
Last Call: Mobile Web Application Best Practices; Guidelines for Web Content Transformation Proxies 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-06T00:00:00-05:00">06 October 2009</span></p>
<div id="item181"><p> The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> has published two Last Call Working Drafts: <a href="/TR/2009/WD-mwabp-20091006/">Mobile Web Application Best Practices</a> and <a href="/TR/2009/WD-ct-guidelines-20091006/">Guidelines for Web Content Transformation Proxies 1.0</a>. The former describes Best Practices for the development and delivery of Web applications on mobile devices. The recommendations expand upon statements made in the <a href="/TR/mobile-bp/">Mobile Web Best Practices</a>, especially those that relate to the exploitation of device capabilities and awareness of the delivery context. The latter document provides guidance to implementers of Content Transformation proxies as to whether and how to transform Web content. Content Transformation proxies alter requests sent by user agents to servers and responses returned by servers so that the appearance, structure or control flow of Web applications are modified. Content Transformation proxies are mostly used to convert Web sites designed for desktop computers to a form suitable for mobile devices. Comments on both documents welcome through 6 November. Learn more about the <a href="/Mobile/">Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6538">
<h3>
<a href="#entry-6538">
Widgets 1.0: View Modes Media Feature First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-06T00:00:00-05:00">06 October 2009</span></p>
<div id="item182"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-widgets-vmmf-20091006/">Widgets 1.0: View Modes Media Feature</a>. This specification is part of the Widgets 1.0 family of specifications. It introduces a feature that allows designers to specify different presentations according to "view modes" (e.g., when a widget is running like any other application, when it is running without "chrome," or when occupying all of the screen). Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6543">
<h3>
<a href="#entry-6543">
Government, Business And Academia Experts To Discuss Financial Data On The Web at W3C-XBRL Workshop
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-05T00:00:00-05:00">05 October 2009</span></p>
<div id="item177"><p> W3C and XBRL International, Inc. are co-sponsoring a <a href="/2009/03/xbrl/cfp">Workshop on Improving Access to Financial Data on the Web</a> today and tomorrow, hosted at the offices of the Federal Deposit Insurance Corporation (<a href="http://www.fdic.gov/">FDIC</a>) in Arlington, Virginia (USA). The main goal of the Workshop is to identify opportunities and challenges for improving access to financial data on the Web. Participants will discuss how Extensible Business Reporting Language (<a href="http://www.xbrl.org/faq.aspx#15">XBRL</a>) and related XML data standards can best be utilized, and how using XBRL to provide financial data via the Web relates to broader opportunities for <a href="/2001/sw/">Semantic Web</a> technologies. More than 15 speakers and 100 participants will discuss topics such as interoperability and harmonization of standard data formats and the impact of the increased transparency on the economy and society as a whole. For more information, see the <a href="/2009/03/xbrl/program.html">Program Agenda</a> and <a href="/2009/09/xbrl-pressrelease">Media Advisory</a>. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6546">
<h3>
<a href="#entry-6546">
SVG Color 1.2 Language, Primer First Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-01T00:00:00-05:00">01 October 2009</span></p>
<div id="item174"><p> The <a href="/Graphics/SVG/WG/">SVG Working Group</a> has published First Public Working Drafts of <a href="/TR/2009/WD-SVGColor12-20091001/">SVG Color 1.2, Part 2: Language</a> and <a href="/TR/2009/WD-SVGColorPrimer12-20091001/">SVG Color 1.2, Part 1: Primer</a>. The former defines features of the Scalable Vector Graphics (SVG) Language that are specifically for color-managed environments, including document interchange, publishing, and high-quality display. SVG Color extends the control of color, relative to SVG Tiny 1.2, in three ways. Firstly by adding an additional color space for interpolation and compositing; this means that colors are no longer constrained to the sRGB gamut. Secondly by extending the syntax for Paint, thus allowing colors to be specified as calibrated (ICC and named) and uncalibrated ('device') color. Thirdly, it mandates the color management of embedded images. The Primer explains the technical background and gives guidelines on how to use the SVG Color specification with SVG 1.2 Tiny and SVG 1.2 Full modules. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6545">
<h3>
<a href="#entry-6545">
W3C Invites Implementation of Six Rule Interchange Format (RIF) Candidate Recommendations
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-01T00:00:00-05:00">01 October 2009</span></p>
<div id="item175"><p> The <a href="/2005/rules">Rule Interchange Format (RIF) Working Group</a> has published six Candidate Recommendations. Together, they allow systems using a variety of rule languages and rule-based technologies to interoperate with each other and with Semantic Web technologies. </p><p>Three of the drafts define XML formats with formal semantics for storing and transmitting rules: </p> <ul><li> The <a href="/TR/rif-prd/">RIF Production Rule Dialect (PRD)</a> is designed for the kinds of rules used in modern Business Rule Management systems. </li><li> The <a href="/TR/rif-bld/">RIF Basic Logic Dialect (BLD)</a> is a foundation for Logic Programming, classical logic, and related formalisms. </li><li> The <a href="/TR/rif-core/">RIF Core Dialect</a> is the common subset of PRD and BLD, useful when having a ubiquitous platform is paramount. </li></ul> <p>The other drafts:</p> <ul><li> <a href="/TR/rif-dtb/">RIF Datatypes and Builtins (DTB)</a> specifies the datatypes and standard operations (modeled on <a href="/TR/xpath-functions/">XPath Functions</a>) available in all RIF dialects </li><li> <a href="/TR/rif-rdf-owl/">RIF RDF and OWL Compatibility</a> specifies how RIF works with RDF, RDFS, OWL 1, and OWL 2. </li><li> <a href="/TR/rif-fld">RIF Framework for Logic Dialects (FLD)</a> provides a mechanism for specifying extended dialects, beyond BLD, when more expressive power is required. </li></ul> <p>The group has also published a new version of <a href="/TR/2009/WD-rif-test-20091001/">RIF Test Cases</a>, and three new First Public Working Drafts: <a href="/TR/2009/WD-rif-overview-20091001/">RIF Overview</a>, <a href="/TR/2009/WD-rif-xml-data-20091001/">RIF Combination with XML data</a> and <a href="/TR/2009/WD-rif-owl-rl-20091001/">OWL 2 RL in RIF</a>. </p><p>The Working Group asks all developers to send <a href="/2005/rules/wiki/How_to_Submit_an_Implementation_Report">implementation reports</a>, and other comments, to public-rif-comments@w3.org by 29 October 2009. Learn more about the <a href="/2001/sw">Semantic Web Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6544">
<h3>
<a href="#entry-6544">
W3C Talks in October
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-10-01T00:00:00-05:00">01 October 2009</span></p>
<div id="item176"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">14 October, San Jose, CA, USA: </span><span class="talktitle">Internationalization: An Introduction</span><span class="talkdesc">Addison Phillips gives a tutorial at <a href="http://www.unicodeconference.com">Internationalization and Unicode Conference</a>. </span></li><li><span class="talkstart">15 October, Potsdam, Germany: </span><span class="talktitle">W3C and W3C Offices - an overview</span><span class="talkdesc">Klaus Birkenbihl presents at <a href="http://www.w3c.de/Events/2009/office-opening"> Launch of the W3C Germany and Austria Office</a>. </span></li><li><span class="talkstart">15 October, San Jose, CA, USA: </span><span class="talktitle">BCP47: Language and Locale Identification</span><span class="talkdesc">Addison Phillips presents at <a href="http://www.unicodeconference.com">Internationalization and Unicode Conference</a>. </span></li><li><span class="talkstart">21 October, London, United Kingdom: </span><span class="talktitle">Browser Standardization</span><span class="talkdesc">Philipp Hoschka participates in a panel at <a>Mobile Web and Applications 2009</a>. </span></li><li><span class="talkstart">23 October, Ede, The Netherlands: </span><span class="talktitle">The Open Web</span><span class="talkdesc">Steven Pemberton gives a keynote at <a href="http://www.nluug.nl/events/nj09/index.html" lang="nl" xml:lang="nl">NLUUG Najaarsconferentie "Het Open Web"</a>. </span></li><li><span class="talkstart">29 October, Chicago, IL, USA: </span><span class="talktitle">WAI-ARIA Introduction: Making Advanced Websites and Web Applications Accessible</span><span class="talkdesc">Shawn Henry presents at <a href="http://www.atia.org/i4a/pages/Index.cfm?pageID=3530">ATIA 2009 Chicago</a>. </span></li><li><span class="talkstart">30 October, Philadelphia, USA: </span><span class="talktitle">Introduction to the Semantic Web</span><span class="talkdesc">Ivan Herman gives a tutorial at <a>Company Presentation at Johnson & Johnson</a>. </span></li><li><span class="talkstart">30 October, Chicago, IL, USA: </span><span class="talktitle">Web Accessibility Standards and Guidelines Update 2009</span><span class="talkdesc">Shawn Henry presents at <a href="http://www.atia.org/i4a/pages/Index.cfm?pageID=3530">ATIA 2009 Chicago</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6548">
<h3>
<a href="#entry-6548">
WebSimpleDB API First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-29T00:00:00-05:00">29 September 2009</span></p>
<div id="item172"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-WebSimpleDB-20090929/">WebSimpleDB API</a>. User agents need to store large numbers of objects locally in order to satisfy off-line data requirements of Web applications. Whereas the <a href="/TR/2009/WD-webstorage-20090910/">Web Storage</a> specification is useful for storing pairs of keys and their corresponding values, it does not provide in-order retrieval of keys, efficient searching over values, or storage of duplicate values for a key. The new WebSimpleDB API specification provides a concrete API to perform advanced key-value data management that is at the heart of most sophisticated query processors. It does so by using transactional databases to store keys and their corresponding values. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6547">
<h3>
<a href="#entry-6547">
XSL-FO 2.0 First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-29T00:00:00-05:00">29 September 2009</span></p>
<div id="item173"><p> The XSL-FO subgroup of the <a href="/Style/XSL/">XSL Working Group</a> has published a First Public Working Draft of <a href="/TR/xslfo20/">Design Notes for Extensible Stylesheet Language (XSL) 2.0</a>, which contains initial and early work on XSL-FO 2.0. XSL-FO defines an XML vocabulary for formatting and layout of XML documents; use XSLT to transform documents into XSL-FO for on-screen or paper formatting, for example into PDF. Public comments are requested, both from users and implementors of XSL 1.x and from people who have been waiting for new features before using XSL-FO. Lean more about <a href="http://www.w3.org/XML/">XML</a>.</p></div>
</div>
<div class="entry" id="entry-6551">
<h3>
<a href="#entry-6551">
Five Web Services Drafts Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-24T00:00:00-05:00">24 September 2009</span></p>
<div id="item169"><p> The <a href="/2002/ws/ra/">Web Services Resource Access Working Group</a> published updates to five Working Drafts: <a href="/TR/2009/WD-ws-enumeration-20090924/">Web Services Enumeration (WS-Enumeration)</a>, <a href="/TR/2009/WD-ws-eventing-20090924/">Web Services Eventing (WS-Eventing)</a>, <a href="/TR/2009/WD-ws-resource-transfer-20090924/">Web Services Resource Transfer (WS-RT)</a>, <a href="/TR/2009/WD-ws-transfer-20090924/">Web Services Transfer (WS-Transfer)</a>, and <a href="/TR/2009/WD-ws-metadata-exchange-20090924/">Web Services Metadata Exchange (WS-MetadataExchange)</a>. The first describes a general SOAP-based protocol for enumerating a sequence of XML elements that is suitable for traversing logs, message queues, or other linear information models. The second describes a protocol that allows Web services to subscribe to or accept subscriptions for event notification. The third defines extensions to WS-Transfer that deal primarily with fragment-based access to resources to satisfy the common requirements of WS-ResourceFramework and WS-Management. The fourth describes a general SOAP-based protocol for accessing XML representations of Web service-based resources. The fifth defines how metadata associated with a Web service endpoint can be represented as resources, how metadata can be embedded in endpoint references, and how metadata could be retrieved from a Web service endpoint. Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6550">
<h3>
<a href="#entry-6550">
Last Call: Mathematical Markup Language (MathML) Version 3.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-24T00:00:00-05:00">24 September 2009</span></p>
<div id="item170"><p> The <a href="/Math/">Math Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-MathML3-20090924/">Mathematical Markup Language (MathML) Version 3.0</a>. MathML is an XML application for describing mathematical notation and capturing both its structure and content. The goal of MathML is to enable mathematics to be served, received, and processed on the World Wide Web, just as HTML has enabled this functionality for text. Comments are welcome through 11 November. Learn more about the <a href="/Math/">Math Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6549">
<h3>
<a href="#entry-6549">
W3C Invites Implementations of Timed Text (TT) Authoring Format 1.0 - Distribution Format Exchange Profile (DFXP)
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-24T00:00:00-05:00">24 September 2009</span></p>
<div id="item171"><p> The <a href="/AudioVideo/TT/">Timed Text Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-ttaf1-dfxp-20090924/">Timed Text (TT) Authoring Format 1.0 - Distribution Format Exchange Profile (DFXP)</a>, used to represent timed text media for the purpose of interchange among authoring systems. Timed text is textual information that is intrinsically or extrinsically associated with timing information. The specification provides a standardized representation of a particular subset of textual information with which stylistic, layout, and timing semantics are associated by an author or an authoring system for the purpose of interchange and potential presentation. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6554">
<h3>
<a href="#entry-6554">
OWL 2 is a Proposed Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-22T00:00:00-05:00">22 September 2009</span></p>
<div id="item166"><p> With <a href="/2007/OWL/wiki/Implementations">more than a dozen implementations</a> of OWL 2 reported, the <a href="/2007/OWL">OWL Working Group</a> has published its OWL 2 Web Ontology Language as a Proposed Recommendation. An ontology is a structured set of terms that a particular community uses for organizing data, such as "title", "author", and "ISBN" for data about books. OWL 2 is a compatible extension to <a href="/TR/2004/REC-owl-features-20040210/">OWL 1</a>, providing <a href="/TR/2009/PR-owl2-new-features-20090922/">additional features</a> for people using ontologies. The OWL 2 document set contains 13 documents, of which 4 are instructional: <a href="/TR/2009/PR-owl2-overview-20090922/">overview</a> , <a href="/TR/2009/PR-owl2-primer-20090922/">primer</a>, <a href="/TR/2009/PR-owl2-new-features-20090922/">new features and rationale</a>, and <a href="/TR/2009/PR-owl2-quick-reference-20090922/">quick reference</a>. The <a href="/TR/2009/PR-rdf-plain-literal-20090922/">rdf:PlainLiteral datatype</a>, developed for use by OWL 2 and <a href="/2005/rules">RIF</a>, is also a Proposed Recommendation. Learn more about the <a href="/2001/sw">Semantic Web</a>. </p></div>
</div>
<div class="entry" id="entry-6553">
<h3>
<a href="#entry-6553">
W3C Launches Provenance Incubator Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-22T00:00:00-05:00">22 September 2009</span></p>
<div id="item167"><p> W3C is pleased to announce the creation of the <a href="/2005/Incubator/prov/">Provenance Incubator Group</a>, whose mission is to provide a state-of-the art understanding and develop a roadmap in the area of provenance for Semantic Web technologies, development, and possible standardization. The group will be chaired by Yolanda Gil. The following W3C Members have sponsored the <a href="/2005/Incubator/prov/charter">charter</a> for this group: Renssealaer Polytechnic Institute, Talis Information Limited, University of Manchester, University of Southampton, University of Southern California Information Sciences Institute (USC / ISI), and Vrije Universiteit. 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.</p></div>
</div>
<div class="entry" id="entry-6552">
<h3>
<a href="#entry-6552">
W3C Organizes Workshop on Access Control Application Scenarios
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-22T00:00:00-05:00">22 September 2009</span></p>
<div id="item168"><p> W3C invites people to participate in a <a href="/2009/policy-ws/cfp.html">Workshop on Access Control Application Scenarios</a> on 17-18 November 2009 in Luxembourg. This Workshop is intended to explore evolving application scenarios for access control technologies, such as XACML. Results from a number of recent European research projects in the grid, cloud computing, and privacy areas show overlapping use cases for these technologies that extend beyond classical intra-enterprise applications. The Workshop, co-financed by the European Commission 7th framework program via the <a href="http://www.primelife.eu/">PrimeLife project</a>, is free of charge and open to anyone, subject to review of their statement of interest and space availability. Position papers are due 23 October. See the <a href="/2009/policy-ws/cfp.html">call for participation</a> for more information. Learn more about the <a href="/Privacy/">Privacy Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6555">
<h3>
<a href="#entry-6555">
Developer Gathering during W3C Technical Plenary Week
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-21T00:00:00-05:00">21 September 2009</span></p>
<div id="item165"><p> As part of its efforts to broaden participation opportunities in W3C, W3C announces today its first <a href="/2009/11/TPAC/DevMeeting">Developer Gathering</a>, to be held 5 November, 2009 during the W3C <a href="/2009/11/TPAC/">Technical Plenary Week (TPAC)</a> in Santa Clara, California. <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&tax=0&amount=75&currency_code=USD&no_shipping=1&business=mtg-reg-receipt@w3.org&item_name=TPAC_DEV&return=http://www.w3.org/2009/11/TPAC/DevMeeting.html&lc=us">Registration</a> is open to the public; W3C is seeking in particular developers and designers who may not participate regularly in W3C groups. Arun Ranganathan (Mozilla), Fantasai, Philippe Le Hégaret, and others will speak on a variety of hot topics with a goal of feeding back comments to the groups developing the relevant technology standards. Learn more about the <a href="/2009/11/TPAC/DevMeeting">Developer Gathering</a>.</p></div>
</div>
<div class="entry" id="entry-6556">
<h3>
<a href="#entry-6556">
New W3C Group to Standardize Relational Database, RDF Mapping
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-16T00:00:00-05:00">16 September 2009</span></p>
<div id="item164"><p> W3C announces today the new <a href="/2001/sw/rdb2rdf/">RDB2RDF Working Group</a>, whose mission is to standardize a language for mapping relational data and relational database schemas into RDF and OWL, tentatively called the RDB2RDF Mapping Language, R2RML. From the beginning of the deployment of the <a href="/2001/sw/">Semantic Web</a> there has been increasing interest in mapping relational data to the Semantic Web. This is to allow relational data to be combined with other data on the Web, to link semantics directly to relational data and to aid in enterprise data integration. The creation of this Working Group follows the <a href="/2005/Incubator/rdb2rdf/XGR-rdb2rdf-20090126/">work of a previous W3C Incubator Group</a> in this area. Read the <a href="/2009/08/rdb2rdf-charter">RDB2RDF Working Group Charter</a> and learn more about the <a href="/2001/sw/">Semantic Web</a>.</p></div>
</div>
<div class="entry" id="entry-6558">
<h3>
<a href="#entry-6558">
W3C Invites Implementations of WebCGM 2.1
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-15T00:00:00-05:00">15 September 2009</span></p>
<div id="item162"><p> The <a href="/Graphics/WebCGM/WG/">WebCGM Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-webcgm21-20090915/">WebCGM 2.1</a>. Computer Graphics Metafile (CGM) is an ISO standard, defined by ISO/IEC 8632:1999, for the interchange of 2D vector and mixed vector/raster graphics. WebCGM is a profile of CGM, which adds Web linking and is optimized for Web applications in technical illustration, electronic documentation, geophysical data visualization, and similar fields. The Working Group has adopted a <a href="/Graphics/WebCGM/2009/WebCGM21/testsuite21.html">public test suite for WebCGM 2.1</a> and has produced a preliminary <a href="/Graphics/WebCGM/2009/WebCGM21/implementation-report.html">WebCGM 2.1 implementation report</a>. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6557">
<h3>
<a href="#entry-6557">
CSS Working Group Updates Candidate Recommendation of CSS3 Media Queries
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-15T00:00:00-05:00">15 September 2009</span></p>
<div id="item163"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-css3-mediaqueries-20090915/">Media Queries</a>. HTML4 and CSS2 currently support media-dependent style sheets tailored for different media types. For example, a document may use sans-serif fonts when displayed on a screen and serif fonts when printed. "screen" and "print" are two media types that have been defined. Media queries extend the functionality of media types by allowing more precise labeling of style sheets. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6560">
<h3>
<a href="#entry-6560">
Web Storage; Web Database Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-10T00:00:00-05:00">10 September 2009</span></p>
<div id="item160"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published Working Drafts of <a href="/TR/2009/WD-webstorage-20090910/">Web Storage</a> and <a href="/TR/2009/WD-webdatabase-20090910/">Web Database</a> (a First Public Draft). The former defines an API for persistent data storage of key-value pair data in Web clients. The latter defines an API for storing data in databases that can be queried using a variant of SQL. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6559">
<h3>
<a href="#entry-6559">
Protocol for Web Description Resources (POWDER): Test Suite Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-10T00:00:00-05:00">10 September 2009</span></p>
<div id="item161"><p> The <a href="/2007/powder/">Protocol for Web Description Resources (POWDER) Working Group</a> has published a Group Note of <a href="/TR/2009/NOTE-powder-test-20090910/">Protocol for Web Description Resources (POWDER): Test Suite</a>. This document presents test cases for the POWDER technology, which helps to build a Web of trust and make it possible to discover relevant, quality content more efficiently. The tests facilitate and exemplify the creation of POWDER documents of varying complexity and provide a means to assert the conformance of software applications designed to handle POWDER documents. Learn more about the <a href="/2001/sw/">Semantic Web</a>.</p></div>
</div>
<div class="entry" id="entry-6561">
<h3>
<a href="#entry-6561">
New eGovernment Activity Focus Proposed; Guidelines for Publishing Open Government Data Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-09T00:00:00-05:00">09 September 2009</span></p>
<div id="item159"><p> Today, the World Wide Web Consortium (W3C) announces a draft work plan for the <a href="/2007/eGov/IG">eGovernment Interest Group</a>, whose mission is to document, advocate, coordinate and communicate best practices, solutions and approaches to improve the interface between citizens and government through effective use of Web standards. The <a href="/2009/06/eGov/ig-charter">draft charter</a>, in review by the W3C community until the end of September, focuses on two topics: Open Government Data (OGD), and Education and Outreach. In line with its anticipated focus on Open Government Data, the group also announces today a first draft of <a href="/TR/2009/WD-gov-data-20090908/">Publishing Open Government Data</a>, which provides step-by-step guidelines for putting government data on the Web. Sharing data according to these guidelines enables greater transparency; delivers more efficient public services; and encourages greater public and commercial use and re-use of government information. Learn more about the <a href="/2007/eGov/">W3C eGovernment Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6564">
<h3>
<a href="#entry-6564">
Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Candidate Recommendation Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-08T00:00:00-05:00">08 September 2009</span></p>
<div id="item156"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has updated the Candidate Recommendation of <a href="/TR/2009/CR-CSS2-20090908/">Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</a>. This specification defines Cascading Style Sheets, level 2 revision. 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). This update corrects some errata in the previous draft. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6563">
<h3>
<a href="#entry-6563">
New Draft of DOM Level 3 Events Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-08T00:00:00-05:00">08 September 2009</span></p>
<div id="item157"><p> The <a href="/2008/webapps/">WebApps Working Group</a> has published a new Working Draft of <a href="/TR/2009/WD-DOM-Level-3-Events-20090908/">DOM Level 3 Events</a>, 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. DOM3 Events introduces an advanced text and keyboard event model, including composition events for input-method editors and other internationalization issues. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a></p></div>
</div>
<div class="entry" id="entry-6562">
<h3>
<a href="#entry-6562">
Authoring HTML: Handling Right-to-left Scripts Group Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-08T00:00:00-05:00">08 September 2009</span></p>
<div id="item158"><p> The <a href="/International/core/">Internationalization Core Working Group</a> has published <a href="http://www.w3.org/TR/i18n-html-tech-bidi/">Authoring HTML: Handling Right-to-left Scripts</a> as a Working Group Note. This document describes techniques for the use of HTML markup and CSS style sheets when creating content in languages that use right-to-left scripts, such as Arabic, Hebrew, Persian, Thaana, Urdu, etc. It builds on (but also goes beyond) markup needed to supplement the Unicode bidirectional algorithm, and also touches on how to prepare content that will later be localized into right-to-left scripts. Learn more about the <a href="/International/">Internationalization Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6565">
<h3>
<a href="#entry-6565">
W3C Opens New India Office
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-07T00:00:00-05:00">07 September 2009</span></p>
<div id="item155"><p> Today the <a href="http://www.w3cindia.in/">W3C India Office</a> opened at a new Host: the Department of Information Technology in the Ministry of Communications & Information Technology. Swaran Lata, who is Director of the Human Centered Computing division (TDIL), will run the new Office with the support of deputy manager Somnath Chandra. W3C Offices act as local points of contact for W3C work and help ensure that W3C and its specifications reach an international audience. W3C would like to thank the India Ministry of Communications and Information Technology for their support in ensuring that W3C has a strong presence in India. The previous Office in India, hosted by C-DAC, has already closed. Learn more about the <a href="/Consortium/Offices/">W3C Offices program</a>.</p></div>
</div>
<div class="entry" id="entry-6566">
<h3>
<a href="#entry-6566">
W3C Talks in September
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-04T00:00:00-05:00">04 September 2009</span></p>
<div id="item154"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">1 September, Florence, Italy: </span><span class="talktitle">A Roadmap for Making the Web an Inclusive Environment</span><span class="talkdesc">Judy Brewer gives a keynote at <a href="http://www.aaate2009.eu/">AAATE 2009 Conference</a>. </span></li><li><span class="talkstart">2 September, Florence, Italy: </span><span class="talktitle">Web Accessibility and Older People</span><span class="talkdesc">Andrew Arch, Shadi Abou-Zahra present at <a href="http://www.aaate2009.eu/">AAATE conference</a>. </span></li><li><span class="talkstart">2 September, Hangzhou, China: </span><span class="talktitle">Introduction to the World Wide Web Consortium</span><span class="talkdesc">Ivan Herman presents at <a>Zheijiang University</a>. </span></li><li><span class="talkstart">4 September, Bristol, United Kingdom: </span><span class="talktitle">Web Accessibility Benefits Older Users</span><span class="talkdesc">Andrew Arch, Shadi Abou-Zahra present at <a href="http://www.bsg2009.org.uk/">British Society of Gerontology 38th Conference</a>. </span></li><li><span class="talkstart">15 September, Durban, South Africa: </span><span class="talktitle">M-government: anytime, anywhere connected citizen</span><span class="talkdesc">Vagner Diniz presents at <a href="http://www.govtech.co.za/default.asp">GovTech 2009</a>. </span></li><li><span class="talkstart">16 September, London, United Kingdom: </span><span class="talktitle">Web Applications Enabled</span><span class="talkdesc">Michael Cooper, Shadi Abou-Zahra, various speakers to be confirmed give a tutorial at <a href="http://www.rnib.org.uk/xpedio/groups/public/documents/PublicWebsite/public_ts09_home.hcsp">Techshare 2009</a>. </span></li><li><span class="talkstart">16 September, Amsterdam, The Netherlands: </span><span class="talktitle">Mobile web development: why so many platforms? How to make a choice? </span><span class="talkdesc">François Daoust, Nick Allot (OMTP) present at <a href="http://wipjam.com/osim/">WIPJAM@OSiM</a>. </span></li><li><span class="talkstart">17 September, London, United Kingdom: </span><span class="talktitle">Improving the web experience for older people</span><span class="talkdesc">Andrew Arch, Shadi Abou-Zahra present at <a href="http://www.rnib.org.uk/xpedio/groups/public/documents/PublicWebsite/public_ts09_home.hcsp">Techshare 2009</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6568">
<h3>
<a href="#entry-6568">
A Sprinkle of POWDER Fosters Trust on the Web
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-01T00:00:00-05:00">01 September 2009</span></p>
<div id="item152"><p> Today W3C takes steps toward building a Web of trust, and making it possible to discover relevant, quality content more efficiently. When content providers use POWDER, the <a href="/2007/powder/">Protocol for Web Description Resources</a>, they help people with tasks such as seeking sound medical advice, looking for trustworthy retailers, or searching for content available under a particular license (for instance, a Creative Commons license). The <a href="/2007/powder/">POWDER Working Group</a> published three W3C Recommendations today: <a href="/TR/2009/REC-powder-grouping-20090901/">Grouping of Resources</a>, <a href="/TR/2009/REC-powder-formal-20090901/">Formal Semantics</a>, and <a href="/TR/2009/REC-powder-dr-20090901/">Description Resources</a>. For more information about POWDER, including a <a href="/TR/powder-primer/">POWDER Primer</a> and a range of tools, see the <a href="/2007/powder/">group home page</a>. Read the <a href="/2009/09/powder-pr.html">press release</a> and learn more about the <a href="/2001/sw">Semantic Web Activity.</a></p></div>
</div>
<div class="entry" id="entry-6567">
<h3>
<a href="#entry-6567">
W3C mobileOK Scheme 1.0 Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-09-01T00:00:00-05:00">01 September 2009</span></p>
<div id="item153"><p> The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> has published a Group Note of <a href="/TR/2009/NOTE-mobileOK-20090825/">W3C mobileOK Scheme 1.0</a>. mobileOK is designed to improve the Web experience for users of mobile devices by rewarding content providers that adhere to good practice when delivering content to them. Learn more about the <a href="/Mobile/">Mobile Web Initiative Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6569">
<h3>
<a href="#entry-6569">
Online Training Course: An Introduction to W3C's Mobile Web Best Practices (Sep to Nov 2009)
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-31T00:00:00-05:00">31 August 2009</span></p>
<div id="item151"><p> W3C announces today the next edition of its successful online course to introduce Web developers and designers to its Mobile Web Best Practices. The <a href="/2009/07/MobiWeb105/">next session</a> runs from 7 September to 9 November 2009. W3C received very positive reviews from participants who attended the <a href="/2009/04/MobiWeb102/">previous session</a>, including:</p> <ul><li>"Every web developer should at least know the basics of mobile web development. So this is the course to take."</li><li>"The best starting point possible!"</li><li>"[The] tutor and student forum to discuss ideas or problems throughout the course was invaluable."</li></ul> <p>W3C invites you to join the next session, where you will:</p> <ul><li> learn about the specific promises and challenges of the mobile platform</li><li>learn how to use W3C's Mobile Web Best Practices to design mobile-friendly Web content and to adapt existing content for mobile</li><li>discover the relevant W3C resources for mobile Web design</li></ul> <p>Participants have access to lectures and assignments that provide hands-on practical experience of using W3C's Mobile Web Best Practices. Participants will work with both W3C experts on this topic (the instructors) and peers who can share experiences about the real-world challenges of mobile Web design. More information is available about the <a href="/2009/07/MobiWeb105/">course material</a> (including a free sample), registration fee, and intended audience. Learn more about the <a href="/Mobile/">Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6570">
<h3>
<a href="#entry-6570">
SSML 1.1 Candidate Recommendation Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-27T00:00:00-05:00">27 August 2009</span></p>
<div id="item150"><p> The <a href="/Voice/">Voice Browser Working Group</a> has updated the Candidate Recommendation of <a href="/TR/2009/CR-speech-synthesis11-20090827/"> Speech Synthesis Markup Language (SSML) Version 1.1</a>. SSML is designed to provide a rich, XML-based markup language for assisting the generation of synthetic speech in Web and other applications. Although the Working Group has not formally identified any features as being at-risk, as a result of the previous publication, the Working Group now understands that some features may not receive adequate implementation experience. This draft identifies them in the <a href="/TR/2009/CR-speech-synthesis11-20090827/#status"> status section</a> and asks for feedback. A few editorial errors in the <a href="/TR/2008/CR-speech-synthesis11-20081107/"> previous draft</a> and the <a href="/Voice/2009/ssml11-irp/">Implementation Report Plan document</a> were also fixed. A list of <a href="/TR/2009/CR-speech-synthesis11-20090827/#AppG"> changes from the previous draft</a> is available. Learn more about the <a href="/Voice/Activity">Voice Browser Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6572">
<h3>
<a href="#entry-6572">
W3C Announces Two New Co-Chairs for the HTML Working Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-26T00:00:00-05:00">26 August 2009</span></p>
<div id="item148"><p> Tim Berners-Lee <a href="http://lists.w3.org/Archives/Public/public-html/2009Aug/1293.html">announced</a> today that two people will join Sam Ruby (IBM) in co-Chairing the <a href="/html/wg/">HTML Working Group</a>Paul Cotton (Microsoft) and Maciej Stachowiak (Apple). Chris Wilson has stepped down as co-Chair and <a href="http://lists.w3.org/Archives/Public/public-html/2009Aug/1290.html">indicated</a> that he will be changing his focus to programmability in the web platform. As Berners-Lee wrote about this transition, "The work of this group is tremendously important to the Web. I am pleased that all three co-Chairs have taken on the responsibility for working closely with the editor and group to make HTML 5 a success." More information about the new Chairs is available in <a href="http://lists.w3.org/Archives/Public/public-html/2009Aug/1293.html">Berners-Lee's announcement</a>. Learn more about the <a href="/html/wg">HTML Working Group</a>. </p></div>
</div>
<div class="entry" id="entry-6571">
<h3>
<a href="#entry-6571">
HTML 5 Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-26T00:00:00-05:00">26 August 2009</span></p>
<div id="item149"><p> The <a href="/html/wg/">HTML Working Group</a> has published Working Drafts of <a href="/TR/2009/WD-html5-20090825/">HTML 5</a> and <a href="/TR/2009/WD-html5-diff-20090825/">HTML 5 differences from HTML 4</a>. In HTML 5, new features are introduced to help Web application authors, new elements are introduced based on research into prevailing authoring practices, and special attention has been given to defining clear conformance criteria for user agents in an effort to improve interoperability. "HTML 5 differences from HTML 4" describes the differences between HTML 4 and HTML 5 and provides some of the rationale for the changes. Learn more about <a href="/html/">HTML</a>.</p></div>
</div>
<div class="entry" id="entry-6574">
<h3>
<a href="#entry-6574">
Voice Extensible Markup Language (VoiceXML) 3.0 Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-25T00:00:00-05:00">25 August 2009</span></p>
<div id="item146"><p> The <a href="/Voice/">Voice Browser Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-voicexml30-20090825/">Voice Extensible Markup Language (VoiceXML) 3.0</a>. This document specifies VoiceXML 3.0, a modular XML language for creating interactive media dialogs that feature synthesized speech, recognition of spoken and DTMF key input, telephony, mixed initiative conversations, and recording and presentation of a variety of media formats including digitized audio, and digitized video. A list of <a href="/TR/2009/WD-voicexml30-20090825/#Changes">changes from the previous draft</a> is available. Learn more about the <a href="/Voice/">Voice Browser Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6573">
<h3>
<a href="#entry-6573">
SVG Open 2009 Schedule Available; Early-Bird Registration Ends 31 August
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-25T00:00:00-05:00">25 August 2009</span></p>
<div id="item147"><p> <a href="http://www.svgopen.org/2009/">SVG Open 2009</a>, the 7th International Conference on <a href="/Graphics/SVG/">Scalable Vector Graphics</a>, will be held 2-4 October, hosted by Google in Mountain View, California, with <a href="https://www.svgopen.org/2009/registration.php?section=workshops">workshops</a> hosted by IBM, on 5 October. The theme is "SVG Coming of Age", reflecting increased industry support and interest by Web designers and developers. The <a href="http://www.svgopen.org/2009/registration.php?section=conference_schedule">schedule</a> and confirmed <a href="http://www.svgopen.org/2009/keynotes.shtml">keynote speakers</a> are now available. Over 70 presentations will be delivered by SVG experts from around the globe, on topics including script libraries, authoring tools, mobiles, Web mapping and geo-location services, and much more. Chris Lilley, Doug Schepers, and the W3C SVG Working Group will be participating. Learn more about W3C's <a href="/Graphics/SVG/">SVG Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6575">
<h3>
<a href="#entry-6575">
XMLHttpRequest Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-20T00:00:00-05:00">20 August 2009</span></p>
<div id="item145"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published updates to Working Drafts of <a href="/TR/2009/WD-XMLHttpRequest-20090820/">XMLHttpRequest</a> and <a href="/TR/2009/WD-XMLHttpRequest2-20090820/">XMLHttpRequest Level 2</a>. The XMLHttpRequest specification is part of the Web application technology stack, enabling Ajax-style development. XMLHttpRequest defines an API that provides scripted client functionality for transferring data between a client and a server. XMLHttpRequest Level 2 offers additional 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>
<div class="entry" id="entry-6576">
<h3>
<a href="#entry-6576">
W3C Relaunches Multimodal Interaction Working Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-19T00:00:00-05:00">19 August 2009</span></p>
<div id="item144"><p> W3C is pleased to announce the relaunch of the <a href="/2002/mmi">Multimodal Interaction Working Group</a> to develop technology that enables users to use their preferred modes of interaction with the Web. Deborah Dahl (Invited Expert) chairs the group which is <a href="/2009/05/mmi-charter.html">chartered</a> to develop open standards to adapt to device, user and environmental conditions, and to allow multiple modes of Web interaction including <acronym title="Graphical User Interface">GUI</acronym>, speech, vision, pen, gestures, haptic interfaces, sensor data, etc. <a href="/Consortium/Member/List">W3C Members</a> may use this <a href="/2004/01/pp-impl/34607/join">form</a> to join the Working Group. Read about the <a href="/2002/mmi/">Multimodal Interaction Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6580">
<h3>
<a href="#entry-6580">
From Chaos, Order: SKOS Recommendation Helps Organize Knowledge
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-18T00:00:00-05:00">18 August 2009</span></p>
<div id="item140"><p> Today W3C announces a new standard that builds a bridge between the world of knowledge organization systems - including thesauri, classifications, subject headings, taxonomies, and folksonomies - and the linked data community, bringing benefits to both. Libraries, museums, newspapers, government portals, enterprises, social networking applications, and other communities that manage large collections of books, historical artifacts, news reports, business glossaries, blog entries, and other items can now use <a href="/TR/2009/REC-skos-reference-20090818/">Simple Knowledge Organization System (SKOS)</a> to leverage the power of linked data. The <a href="/2006/07/SWD/">Semantic Web Deployment Working Group</a> also published today two Group Notes with the Recommendation, updating the <a href="/TR/2009/NOTE-skos-primer-20090818/">SKOS Primer</a> and <a href="/TR/2009/NOTE-skos-ucr-20090818/">SKOS Use Cases and Requirements</a>. Read the <a href="/2009/07/skos-pr">press release</a> and <a href="/2009/07/skos-testimonial">testimonials</a> and learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6579">
<h3>
<a href="#entry-6579">
Last Call: Widgets 1.0: APIs and Events
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-18T00:00:00-05:00">18 August 2009</span></p>
<div id="item141"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-widgets-apis-20090818/">Widgets 1.0: APIs and Events</a>. Widgets are full-fledged client-side applications that are authored using Web standards. Examples range from simple clocks, stock tickers, news streamers, 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. The APIs and Events specification defines a set of APIs and events for the Widgets 1.0 family of specifications. Comments are welcome through 15 September. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6578">
<h3>
<a href="#entry-6578">
Call for Review: XForms 1.1 Proposed Recommendation Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-18T00:00:00-05:00">18 August 2009</span></p>
<div id="item142"><p> The <a href="/MarkUp/Forms/">Forms Working Group</a> has published a Proposed Recommendation of <a href="/TR/2009/PR-xforms11-20090818/">XForms 1.1</a>. XForms is not a free-standing document type, but is intended to be integrated into other markup languages, such as XHTML, ODF or SVG. XForms 1.1 refines the XML processing platform introduced by XForms 1.0 by adding several new submission capabilities, action handlers, utility functions, user interface improvements, and helpful datatypes as well as a more powerful action processing facility, including conditional, iterated and background execution, the ability to manipulate data arbitrarily and to access event context information. Comments are welcome through 22 September. Learn more about the <a href="/MarkUp/Forms/">XForms Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6581">
<h3>
<a href="#entry-6581">
Namespaces in XML 1.0 (Third Edition) is a W3C Proposed Edited Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-06T00:00:00-05:00">06 August 2009</span></p>
<div id="item139"><p> The <a href="http://www.w3.org/XML/Core/">XML Core Working Group</a> has
published the <a href="http://www.w3.org/TR/2009/PER-xml-names-20090806/">Third Edition
of Namespaces in XML 1.0</a> as W3C Proposed Edited Recommendation. XML
Namespaces provide a simple method for qualifying element and attribute
names used in Extensible Markup Language documents by associating them
with namespaces identified by URI references. The Third Edition as
proposed incorporates all outstanding errata. The review period is open
until 14 September 2009. Learn more about the <a href="http://www.w3.org/XML/Activity">XML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6583">
<h3>
<a href="#entry-6583">
CSSOM View Module: Updated Working Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-04T00:00:00-05:00">04 August 2009</span></p>
<div id="item137"><p> The <a href="http://www.w3.org/Style/CSS/members">Cascading Style Sheets (CSS)
Working Group</a> has published an updated <a href="http://www.w3.org/TR/2009/WD-cssom-view-20090804/">Working Draft
of CSSOM View Module</a>. This specification describes APIs that should
be useful for Web application authors. The APIs inspect and manipulate
the view information of a document, such as the position of element
layout boxes, the width of the viewport, and also an element's scroll
position. Learn more about the <a href="http://www.w3.org/Style/">Style
Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6582">
<h3>
<a href="#entry-6582">
Last Call for Widgets 1.0: Access Requests Policy
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-08-04T00:00:00-05:00">04 August 2009</span></p>
<div id="item138"><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/2009/WD-widgets-access-20090804/">Widgets
1.0: Access Requests Policy</a>. This specification defines the security
model controlling network access from within a widget, as well as a
method for widget authors to request that the user agent grant access to
certain network resources. Comments are welcome through 20 September
2009. Learn more about the <a href="http://www.w3.org/2006/rwc/Activity">Rich Web Client
Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6584">
<h3>
<a href="#entry-6584">
Six XML Security Documents Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-31T00:00:00-05:00">31 July 2009</span></p>
<div id="item136"><p> The <a href="/2008/xmlsec/">XML Security Working Group</a> published six documents related to XML signature and encryption. 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. </p> <ul><li><a href="/TR/2009/WD-xmldsig-bestpractices-20090730/">XML Signature Best Practices</a>. This Working Draft describes best practices 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.</li><li><a href="/TR/2009/WD-xmldsig-core1-20090730/">XML Signature Syntax and Processing Version 1.1</a>. This Working Draft updates the signature specification.</li><li><a href="/TR/2009/WD-xmldsig-simplify-20090730/">XML Signature Transform Simplification: Requirements and Design</a>. This Working Draft outlines a proposed simplification of the XML Signature Transform mechanism, intended to enhance security, performance, streamability and to ease adoption.</li><li><a href="/TR/2009/WD-xmlenc-core1-20090730/">W3C XML Encryption Syntax and Processing Version 1.1</a>. This Working Draft updates the encryption specification.</li><li><a href="/TR/2009/WD-xmlsec-generic-hybrid-20090730/">XML Security Generic Hybrid Ciphers</a>. This First Public Working Draft augments XML Encryption Version 1.1 by defining algorithms, XML types and elements necessary to enable use of generic hybrid ciphers in XML Security applications.</li><li><a href="/TR/2009/WD-xmlsec-algorithms-20090730/">XML Security Algorithm Cross-Reference</a>. This Group Note collects the various known URIs for encryption algorithms (at the time of its publication) and indicates which specifications define them.</li></ul> <p>Learn more about the <a href="/Security/">Security Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6585">
<h3>
<a href="#entry-6585">
Daniel Weitzner Named to Run US Government Internet Policy Unit
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-30T00:00:00-05:00">30 July 2009</span></p>
<div id="item135"><p> Daniel Weitzner has been named Associate Administrator for the Office of Policy Analysis and Development at the <a href="http://www.ntia.doc.gov/opadhome/staffbios.htm">US National Telecommunications and Information Administration (NTIA)</a>. Danny will have a leading role in fulfilling the NTIA's mandate to provide the President advice on telecommunications and information policy issues.</p> <p>Danny will thus be leaving the W3C staff, which he joined in 1998 as the Technology and Society Domain Lead. During these 11 years, Danny has contributed significantly to advances in many areas where policy meets technology, including privacy, security, intellectual property, and trust. As Chair of the Patent Policy Working Group, Danny led the effort that culminated in W3C's Royalty-Free Patent Policy, now a cornerstone of W3C's value proposition to the Web community.</p> <p>Before joining the W3C, Danny was co-founder and Deputy Director of the Center for Democracy and Technology and was Deputy Policy Director of the Electronic Frontier Foundation. Danny is also Director of the the <a href="http://dig.csail.mit.edu/">MIT CSAIL Decentralized Information Group</a> with Tim Berners- Lee and a founding director of the Web Science Research Initiative and holds an appointment as Principal Research Scientist at MIT's Computer Science and Artificial Intelligence Laboratory.</p> <p>While W3C regrets that Danny will be stepping down from W3C, it is encouraging that US policy may well be shaped by someone who has demonstrated a commitment to open standards as a tool for improving society. Danny, good luck!</p></div>
</div>
<div class="entry" id="entry-6586">
<h3>
<a href="#entry-6586">
W3C Invites Implementations of Widgets 1.0: Packaging and Configuration
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-24T00:00:00-05:00">24 July 2009</span></p>
<div id="item134"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-widgets-20090723/">Widgets 1.0: Packaging and Configuration</a>. This specification standardizes a packaging format for software known as widgets. Widgets are client-side applications that are authored using Web standards, but whose content can also be embedded into Web documents. The specification relies on PKWare's Zip specification as the archive format, XML as a configuration document format, and a series of steps that runtimes follow when processing and verifying various aspects of a package. The packaging format acts as a container for files used by a widget. The Working Group plans to develop a <a href="http://dev.w3.org/2006/waf/widgets/tests/">test suite</a> during the Candidate Recommendation phase. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6589">
<h3>
<a href="#entry-6589">
CSS Image Values Module Level 3 First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-23T00:00:00-05:00">23 July 2009</span></p>
<div id="item131"><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/2009/WD-css3-images-20090723/">CSS Image Values Module Level 3</a>. This CSS Image Values module defines the syntax for image values in CSS. Image values can be a single URI to an image, a list of URIs denoting a series of fallbacks, sprites (image slices), or gradients. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6588">
<h3>
<a href="#entry-6588">
Flexible Box Layout Module First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-23T00:00:00-05:00">23 July 2009</span></p>
<div id="item132"><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/2009/WD-css3-flexbox-20090723/">Flexible Box Layout Module</a>. The draft describes a CSS box model optimized for interface design. It provides an additional layout system alongside the ones already in CSS. This model is based on the box model in the XUL user-interface language. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6587">
<h3>
<a href="#entry-6587">
User Agent Accessibility Guidelines (UAAG) 2.0: Updated Working Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-23T00:00:00-05:00">23 July 2009</span></p>
<div id="item133"><p> The <a href="/WAI/UA/">User Agent Accessibility Guidelines Working Group</a> has published an updated Working Draft of the <a href="/TR/2009/WD-UAAG20-20090723/">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. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009JulSep/0016.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>
<div class="entry" id="entry-6590">
<h3>
<a href="#entry-6590">
W3C Organizes Workshop on Improving Access to Financial Data on the Web
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-16T00:00:00-05:00">16 July 2009</span></p>
<div id="item130"><p> W3C invites people to participate in a <a href="/2009/03/xbrl/cfp.html">Workshop on Improving Access to Financial Data on the Web</a> on 5-6 October 2009 in Arlington, Virginia (USA). Workshop participants will discuss how to achieve greater transparency and more efficient reporting and analysis of business and financial data for companies and governments. The Workshop is jointly organized by W3C and <a href="http://www.xbrl.org/">XBRL International</a>, with hosting support from the <a href="http://www.fdic.gov/">Federal Deposit Insurance Corporation (FDIC)</a>. The extensible business reporting language (XBRL), is being widely adopted all around the world, and is set to become the standard way of recording, storing and transmitting business financial information. While effort on XBRL so far has gone into developing the standards and taxonomies of reporting concepts, comparatively little effort has been spent on how to exploit the expected flood of data. The goal of the Workshop is to identify opportunities, use cases, and challenges for interactive access to financial data expressed in XBRL and related languages, and the broader opportunities for using Semantic Web technologies. The Workshop is free of charge and open to anyone, subject to review of their statement of interest and space availability. Statements of interest (position papers) are due 21 August. See the <a href="/2009/03/xbrl/cfp">call for participation</a> for more information. Learn more about the <a href="/2001/sw/">Semantic Web</a>.</p></div>
</div>
<div class="entry" id="entry-6591">
<h3>
<a href="#entry-6591">
Best Practices for Authoring HTML: Handling Right-to-left Scripts Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-15T00:00:00-05:00">15 July 2009</span></p>
<div id="item129"><p> The <a href="/International/core/">Internationalization Core Working Group</a> has published the Working Draft of <a href="/TR/2009/WD-i18n-html-tech-bidi-20090714/">Best Practices for Authoring HTML: Handling Right-to-left Scripts</a>. This document provides advice for the use of HTML markup and CSS style sheets to create pages for languages that use right-to-left scripts, such as Arabic, Hebrew, Persian, Thaana, Urdu, etc. It explains how to create content in right-to-left scripts that builds on but goes beyond the Unicode bidirectional algorithm, as well as how to prepare content for localization into right-to-left scripts. Learn more about the <a href="/International/">Internationalization Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6592">
<h3>
<a href="#entry-6592">
XML Signature Correction Addresses Security Issue
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-14T00:00:00-05:00">14 July 2009</span></p>
<div id="item128"><p> The <a href="/2008/xmlsec">XML Security Working Group</a> has published a <a href="/2008/06/xmldsigcore-errata.html#e03">proposed correction</a> to the <a href="/TR/xmldsig-core/">XML Signature</a> specification. The correction addresses a specification-level security issue that can lead to an authentication bypass (<a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-0217">CVE-2009-0217</a>). It will be incorporated into an upcoming Working Draft for the <a href="/TR/xmldsig-core1/">XML Signature 1.1</a> specification. For information about affected implementations, see <a href="http://www.kb.cert.org/vuls/id/466161">CERT Vulnerability Note 466161</a>. For more information about the issue, see the <a href="/QA/2009/07/hmac_truncation_in_xml_signatu.html">W3C Q&A blog</a>. Learn more about W3C's <a href="/Security/">Security Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6594">
<h3>
<a href="#entry-6594">
XPath 2.0 and XQuery 1.0 Full Text Facility Test Suite Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-09T00:00:00-05:00">09 July 2009</span></p>
<div id="item126"><p> The XSL and XML Query Working Groups have published version 1.0 of the <a href="http://dev.w3.org/cvsweb/2007/xpath-full-text-10-test-suite/">XPath 2.0 and XQuery 1.0 Full Text Facility Test Suite</a>, and are requesting that people with implementations report results. The Full Text Facility provides a standard way of searching by word or phrase across multilingual documents or data represented using the XPath and XQuery Data Model. As a result of preliminary implementation experience, and to reflect comments received, the <a href="/TR/2009/CR-xpath-full-text-10-20090709/">Candidate Recommendation for the Full Text Facility</a> has also been republished: the new version incorporates editorial changes but also clarifies some ambiguities that had been reported. The Working Groups hope to move the document to Proposed Recommendation once more test results have been submitted. The <a href="/XML/Query/">XML Query</a> and <a href="/Style/XSL/">XSL</a> Working Groups also published today an update of <a href="/TR/2009/WD-xpath-full-text-10-use-cases-20090709/">XQuery and XPath Full Text 1.0 Use Cases</a>. Learn more about the <a href="/XML/Activity">XML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6593">
<h3>
<a href="#entry-6593">
Relationship Between Mobile Web (MWBP) and Web Content Accessibility (WCAG) Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-09T00:00:00-05:00">09 July 2009</span></p>
<div id="item127"><p> The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> and the <a href="/WAI/EO/"><acronym title="Web Accessibility Initiative">WAI</acronym> Education and Outreach Working Group</a> have published <a href="/TR/2009/NOTE-mwbp-wcag-20090709/">Relationship between Mobile Web Best Practices (MWBP) and Web Content Accessibility Guidelines (WCAG)</a> as a W3C Working Group Note. The groups encourage people to <strong>start by reading</strong> <a href="/WAI/mobile/">Web Content Accessibility and Mobile Web: Making a Web Site Accessible Both for People with Disabilities and for Mobile Devices</a>, which shows how design goals for accessibility and mobile access overlap. A third document, <a href="/WAI/mobile/experiences">Shared Web Experiences: Barriers Common to Mobile Device Users and People with Disabilities</a>, provides examples of barriers that people (without disabilities) face when interacting with Web content via mobile devices, and similar barriers for people with disabilities using desktop computers. Learn more about the <a href="/Mobile/">Mobile Web Initiative (MWI)</a> and the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p></div>
</div>
<div class="entry" id="entry-6595">
<h3>
<a href="#entry-6595">
Last Call: Geolocation API Specification
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-07T00:00:00-05:00">07 July 2009</span></p>
<div id="item125"><p> The <a href="/2008/geolocation/">Geolocation Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-geolocation-API-20090707/">Geolocation API Specification</a>. The Geolocation API defines a high-level interface to location information associated only with the device hosting the implementation, such as latitude and longitude. 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. Comments are welcome through 10 August. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6598">
<h3>
<a href="#entry-6598">
W3C Launches Device APIs and Policy Working Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-03T00:00:00-05:00">03 July 2009</span></p>
<div id="item122"><p> W3C launched a new <a href="/2009/dap/">Device APIs and Policy Working Group</a>, co-Chaired by Robin Berjon (Vodafone) and Frederick Hirsch (Nokia). The group's mission is to create client-side APIs that enable the development of Web Applications and Web Widgets that interact with devices services such as Calendar, Contacts, and Camera. Additionally, the group will produce a framework for the expression of security policies that govern access to security-critical APIs (such as the APIs listed previously). Per its <a href="/2009/05/DeviceAPICharter">charter</a>, this group will conduct its work in public. Learn more about the <a href="/2009/dap/">Device APIs and Policy Working Group</a>.</p></div>
</div>
<div class="entry" id="entry-6597">
<h3>
<a href="#entry-6597">
Last Call for Six Rule Interchange Format (RIF) Drafts
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-03T00:00:00-05:00">03 July 2009</span></p>
<div id="item123"><p> The <a href="/2005/rules">Rule Interchange Format (RIF) Working Group</a> has published six Last Call Working Drafts. Together, they allow systems using a variety of rule languages and rule-based technologies to interoperate with each other and with other Semantic Web technologies. Three of the drafts define XML formats with formal semantics for storing and transmitting rules: </p> <ul><li> The <a href="/TR/rif-prd/">RIF Production Rule Dialect (PRD)</a> is designed for the kinds of rules used in modern Business Rule Management systems. </li><li> The <a href="/TR/rif-bld/">RIF Basic Logic Dialect (BLD)</a> is a foundation for Logic Programming, classical logic, and related formalisms. </li><li> The <a href="/TR/rif-core/">RIF Core Dialect</a> is the common subset of PRD and BLD, useful when having a ubiquitous platform is paramount. </li></ul> <p>The other drafts:</p> <ul><li> <a href="/TR/rif-dtb/">RIF Datatypes and Builtins (DTB)</a> specifies the datatypes and standard operations (modeled on <a href="/TR/xpath-functions/">XPath Functions</a>) available in all RIF dialects </li><li> <a href="/TR/rif-rdf-owl/">RIF RDF and OWL Compatibility</a> specifies how RIF works with RDF, RDFS, OWL 1, and OWL 2. </li><li> <a href="/TR/rif-fld">RIF Framework for Logic Dialects (FLD)</a> provides a mechanism for specifying extended dialects, beyond BLD, when more expressive power is required. </li></ul> <p>The Working Group requests comments be sent to public-rif-comments@w3.org by 31 July 2009. Learn more about the <a href="/2001/sw">Semantic Web Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6596">
<h3>
<a href="#entry-6596">
Live Training Sessions On Mobile Web Design Rescheduled
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-03T00:00:00-05:00">03 July 2009</span></p>
<div id="item124"><p> Originally scheduled for July, W3C has rescheduled a <a href="/2009/04/MobiWeb103/">Live Training Sessions On Mobile Web Design</a> for 13 October 2009. Students will attend a full day of lectures and hands on sessions about the <a href="/TR/2008/REC-mobile-bp-20080729/">W3C Mobile Web Best Practices</a> standard, and more generally on mobile Web design. Read the full <a href="/2009/06/live_mobile_training.html">announcement</a>, <a href="http://www.3gwebtrain.com/moodle/course/view.php?id=14">register</a>, and learn more about the <a href="/Mobile">W3C Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6601">
<h3>
<a href="#entry-6601">
XHTML 2 Working Group Expected to Stop Work End of 2009, W3C to Increase Resources on HTML 5
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-02T00:00:00-05:00">02 July 2009</span></p>
<div id="item119"><p> Today the Director announces that when the <a href="/2007/03/XHTML2-WG-charter">XHTML 2 Working Group charter</a> expires as scheduled at the end of 2009, the charter will not be renewed. By doing so, and by increasing resources in the <a href="/html/wg/">HTML Working Group</a>, W3C hopes to accelerate the progress of <a href="/TR/html5">HTML 5</a> and clarify W3C's position regarding the future of HTML. A <a href="/2009/06/xhtml-faq.html">FAQ</a> answers questions about the future of deliverables of the XHTML 2 Working Group, and the status of various discussions related to HTML. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6600">
<h3>
<a href="#entry-6600">
First Draft of SPARQL New Features and Rationale
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-02T00:00:00-05:00">02 July 2009</span></p>
<div id="item120"><p> The <a href="/2001/sw/DataAccess/">SPARQL Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-sparql-features-20090702/">SPARQL New Features and Rationale</a>. This document provides an overview of the main new features of SPARQL and their rationale. This is an update to SPARQL adding several new features that have been agreed by the SPARQL WG. These language features were determined based on real applications and user and tool-developer experience. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6599">
<h3>
<a href="#entry-6599">
Summary of Workshop on Speaker Biometrics and VoiceXML 3.0 Available
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-02T00:00:00-05:00">02 July 2009</span></p>
<div id="item121"><p class="newsImage"><a class="imageLink" href="/2008/08/siv/summary.html"><img alt="photo of Voice biometrics Workshop" src="/2008/08/siv/dsc_0004_480x360.jpg" height="112" width="150" /></a> W3C has published a <a href="/2008/08/siv/summary.html">summary </a> and <a href="/2008/08/siv/minutes.html">full minutes</a> of the <a href="/2008/08/siv/cfp.html">Workshop on Speaker biometrics and VoiceXML 3.0</a>, that took place in Menlo Park, California on 5-6 March. Participants from 15 organizations focused discussion on Speaker Identification and Verification (SIV) functionality within VoiceXML 3.0, and identifying and prioritizing directions for the functionality. The major "takeaways" from the Workshop were confirmation that SIV fits into the VoiceXML space and creation of the "<a href="/2008/08/siv/MenloParkModel-v003.png">Menlo Park Model</a>", a SIV available VoiceXML architecture. The Working Group will continue to discuss how to include the requirements expressed at the Workshop into VoiceXML 3.0 and improve the specification. Learn more about the <a href="/Voice/">Voice Browser Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6602">
<h3>
<a href="#entry-6602">
W3C Talks in July
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-07-01T00:00:00-05:00">01 July 2009</span></p>
<div id="item118"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">2 July, Brisbane, Australia: </span><span class="talktitle">W3C: a Use Case for Web Technologies</span><span class="talkdesc">Klaus Birkenbihl presents at <a>NICTA, Queensland Research Laboratory</a>. </span></li><li><span class="talkstart">7 July, Barcelona, Spain: </span><span class="talktitle" lang="es" xml:lang="es">Acceso a la Información Pública y Redes Sociales</span><span class="talkdesc">José Manuel Alonso participates in a panel at <a href="http://www.uoc.edu/symposia/idp2009/" lang="es" xml:lang="es">V Congreso Internet, Derecho y Política</a>. </span></li><li><span class="talkstart">14 July, Linz, Austria: </span><span class="talktitle" lang="de" xml:lang="de">WCAG 2.0 ist da, was nun?</span><span class="talkdesc">Shadi Abou-Zahra presents at <a lang="de" xml:lang="de">IKT Forum 2009</a>. </span></li><li><span class="talkstart">20 July, Boston, USA: </span><span class="talktitle">Web Accessibility, Universal Design, and Standardization</span><span class="talkdesc">Judy Brewer participates in a panel at <a href="http://ewh.ieee.org/conf/accessingthefuture/index.php">Accessing the Future: A global collaborative exploration for accessibility in the next decade</a>. </span></li><li><span class="talkstart">20 July, Seattle, WA, USA: </span><span class="talktitle">Accessibility: It's for Everyone and Everything</span><span class="talkdesc">Shawn Henry presents at <a href="http://webdesignworld.com/2009/seattle/">Web Design World 2009 Seattle</a>. </span></li><li><span class="talkstart">21 July, Seattle, WA, USA: </span><span class="talktitle">Accessibility in a Web 2.0 World</span><span class="talkdesc">Shawn Henry presents at <a href="http://webdesignworld.com/2009/seattle/">Web Design World 2009 Seattle (discount "Passport" registration code: S9W06)</a>. </span></li><li><span class="talkstart">24 July, San Diego, USA: </span><span class="talktitle">WCAG 2.0 Test Samples Repository</span><span class="talkdesc">Shadi Abou-Zahra presents at <a href="http://www.hcii2009.org/">HCI International 2009</a>. </span></li><li><span class="talkstart">27 July, Raleigh, North Carolina, USA: </span><span class="talktitle">Ex-XHTML HTML</span><span class="talkdesc">Doug Schepers presents at <a href="http://www.aboveandbeyondlearning.com/xmlconference.html">The Summer XML 2009 Conference</a>. </span></li><li><span class="talkstart">28 July, Raleigh, North Carolina, USA: </span><span class="talktitle">Open Graphics and the Sustainable Web: Scalable Vector Graphics and Canvas</span><span class="talkdesc">Doug Schepers presents at <a href="http://www.aboveandbeyondlearning.com/xmlconference.html">The Summer XML 2009 Conference</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6604">
<h3>
<a href="#entry-6604">
Two SML Notes: XLink Reference Scheme, EPR-Based Reference Schemes
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-30T00:00:00-05:00">30 June 2009</span></p>
<div id="item116"><p> The <a href="/XML/SML/">Service Modeling Language Working Group</a> has published two Working Group Notes: <a href="/TR/2009/NOTE-sml-xlink-ref-scheme-20090630/">The SML XLink Reference Scheme</a> and <a href="/TR/2009/NOTE-sml-epr-ref-scheme-20090630/">Framework for SML EPR-Based Reference Schemes</a>. The Service Modeling Language specification extends the Extensible Mark-up Language and XML Schema with a mechanism for incorporating into XML documents references to other documents or document fragments. The first note addresses the construction of an SML reference scheme based on the XML Linking Language. The second addresses the construction of SML reference schemes for document or document fragment references that employ WS-Addressing endpoint references (EPRs). Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6603">
<h3>
<a href="#entry-6603">
Last Call: CSS3 module: Multi-column layout
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-30T00:00:00-05:00">30 June 2009</span></p>
<div id="item117"><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/2009/WD-css3-multicol-20090630/">CSS3 module: Multi-column layout</a>. This module describes multi-column layout in CSS. It builds on the CSS3 Box model module and adds functionality to flow the content of an element into multiple columns. Comments are welcome through 01 October. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6606">
<h3>
<a href="#entry-6606">
First Authorized Translation of WCAG 2.0 Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-26T00:00:00-05:00">26 June 2009</span></p>
<div id="item114"><p> W3C announces the French Authorized Translation of Web Content Accessibility Guidelines (WCAG) 2.0, <span lang="fr" xml:lang="fr"><a href="/Translations/WCAG20-fr">Règles pour l'accessibilité des contenus Web (WCAG) 2.0</a></span>. It is the first of several planned WCAG 2.0 Translations: Brazilian Portuguese, Catalan, Chinese, Czech, Danish, Dutch, German, Hindi, Hungarian, Italian, Japanese, Korean, Portuguese, Russian, Spanish, Swedish, and other languages. Translations are listed on the <a href="/WAI/WCAG20/translations"><strong>WCAG 2.0 Translations</strong></a> page and announced via the <a href="/WAI/IG/#mailinglist">WAI Interest Group mailing list</a> and <a href="/WAI/highlights/rssfeed.rss">WAI RSS feed</a>. Learn more about <a href="/Consortium/Translation/">translating W3C documents</a>, <a href="/2005/02/TranslationPolicy">Policy for Authorized W3C Translations</a>, <a href="/WAI/intro/wcag">WCAG 2.0</a>, and the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p></div>
</div>
<div class="entry" id="entry-6605">
<h3>
<a href="#entry-6605">
Steve Bratt to Assume Full-Time Role as Web Foundation CEO
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-26T00:00:00-05:00">26 June 2009</span></p>
<div id="item115"><p> As of 30 June, Steven R. Bratt will step down from his role as W3C CEO in order to pursue full-time the role of CEO of the <a href="http://webfoundation.org/">World Wide Web Foundation</a>. The Web Foundation was <a href="/News/2008#item157">announced</a> in September 2008 with a mission to advance the Web, connect humanity, and empower people. Steve has been part-time CEO of the Web Foundation since then.</p> <p>While W3C COO and then CEO, Steve was responsible for W3C's worldwide operations and outreach, including overall management of Member relations, the W3C Process, the staff, strategic planning, budget, legal matters, external liaisons and major events. His purposeful and thoughtful leadership at W3C was informed by previous experiences in research, industry, and government, where he served on scientific and arms control delegations among others.</p> <p>While W3C seeks to fill the <a href="/Consortium/Recruitment/">open position</a>, Ralph Swick assumes Steve's leadership responsibilities. Thomas Roessler steps up in the interim to take on the role of Technology and Society Domain Lead.</p> <p>The mission of the Web Foundation complements that of W3C, and the two organizations will continue to coordinate their efforts to make the Web useful and available to all. W3C looks forward to Steve's successful leadership of the Web Foundation.</p></div>
</div>
<div class="entry" id="entry-6610">
<h3>
<a href="#entry-6610">
Note Published: W3C mobileOK Scheme 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-25T00:00:00-05:00">25 June 2009</span></p>
<div id="item110"><p> The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> has published a Group Note of <a href="/TR/2009/NOTE-mobileOK-20090625/">W3C mobileOK Scheme 1.0</a>. W3C's mobileOK is designed to improve the Web experience for users of mobile devices by rewarding content providers that adhere to good practice when delivering content to them. This document describes the mobileOK scheme, which allows content providers to promote their content as being suitable for use on very basic mobile devices. Learn more about the <a href="/Mobile/">Mobile Web Initiative Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6609">
<h3>
<a href="#entry-6609">
Five Web Services Drafts Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-25T00:00:00-05:00">25 June 2009</span></p>
<div id="item111"><p> The <a href="/2002/ws/ra/">Web Services Resource Access Working Group</a> published updates to five Working Drafts: <a href="/TR/2009/WD-ws-enumeration-20090317/">Web Services Enumeration (WS-Enumeration)</a>, <a href="/TR/2009/WD-ws-eventing-20090317/">Web Services Eventing (WS-Eventing)</a>, <a href="/TR/2009/WD-ws-resource-transfer-20090317/">Web Services Resource Transfer (WS-RT)</a>, <a href="/TR/2009/WD-ws-transfer-20090317">Web Services Transfer (WS-Transfer)</a>, and <a href="/TR/2009/WD-ws-metadata-exchange-20090317 ">Web Services Metadata Exchange (WS-MetadataExchange)</a>. The first describes a general SOAP-based protocol for enumerating a sequence of XML elements that is suitable for traversing logs, message queues, or other linear information models. The second describes a protocol that allows Web services to subscribe to or accept subscriptions for event notification. The third defines extensions to WS-Transfer that deal primarily with fragment-based access to resources to satisfy the common requirements of WS-ResourceFramework and WS-Management. The fourth describes a general SOAP-based protocol for accessing XML representations of Web service-based resources. The fifth defines how metadata associated with a Web service endpoint can be represented as resources, how metadata can be embedded in endpoint references, and how metadata could be retrieved from a Web service endpoint. Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6608">
<h3>
<a href="#entry-6608">
W3C Workshop on Using Ink in Multimodal Applications Canceled
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-25T00:00:00-05:00">25 June 2009</span></p>
<div id="item112"><p> The <a href="/2009/03/ink/cfp.html"> Workshop on Using Ink in Multimodal Applications</a>, which was planned for 10-11 July 2009 in Grand Bend, Ontario (Canada), has been canceled. The goal of the Workshop was to help the Multimodal Interaction Working Group integrate handwriting modality components (Ink Modality Components) into the <a href="/TR/mmi-arch/">MMI Architecture</a> and clarify what should be added to the Multimodal specifications to enable applications to adapt to various modality combinations including Ink. The group is planning to meet face-to-face during W3C's <a href="/2009/11/TPAC/">TPAC 2009</a>, and will continue to discuss possible extensions for InkML and how to integrate the specification into the architecture. Read about the <a href="/TR/InkML/">Ink Markup Language (InkML)</a> and W3C's <a href="/2002/mmi/">Multimodal Interaction Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6607">
<h3>
<a href="#entry-6607">
W3C Invites Implementations of Widgets 1.0: Digital Signatures
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-25T00:00:00-05:00">25 June 2009</span></p>
<div id="item113"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-widgets-digsig-20090625/">Widgets 1.0: Digital Signatures</a>. Widgets are full-fledged client-side applications that are authored using Web standards and packaged for distribution. This document defines a profile of the XML Signature Syntax and Processing 1.1 specification to allow a widget package to be digitally signed, helping to ensure continuity of authorship and distributorship. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6613">
<h3>
<a href="#entry-6613">
CSS Fonts Module Level 3 Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-18T00:00:00-05:00">18 June 2009</span></p>
<div id="item107"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published the Working Draft of <a href="/TR/2009/WD-css3-fonts-20090618/">CSS Fonts Module Level 3</a>. This CSS3 module describes how font properties are specified and how font resources are loaded dynamically. This draft consolidates material previously divided between the CSS3 Fonts and CSS3 Web Fonts modules. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6612">
<h3>
<a href="#entry-6612">
First Draft Published for Ontology for Media Resource 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-18T00:00:00-05:00">18 June 2009</span></p>
<div id="item108"><p> The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-mediaont-10-20090618/">Ontology for Media Resource 1.0</a>. This specification defines an ontology for cross-community data integration of information related to media resources, with a particular focus on media resources on the Web. The ontology is supposed to foster interoperability and counter the current proliferation of video metadata formats by providing full or partial translation and mapping towards existing formats. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6611">
<h3>
<a href="#entry-6611">
First Drafts of Widgets 1.0: Access Requests Policy; URI Scheme
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-18T00:00:00-05:00">18 June 2009</span></p>
<div id="item109"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published two First Public Working Drafts: <a href="/TR/2009/WD-widgets-access-20090618/">Widgets 1.0: Access Requests Policy</a> and <a href="/TR/2009/WD-widgets-uri-20090618/">Widgets 1.0: URI Scheme</a>. The former defines the security model controlling network access from within a widget, as well as a method for widget authors to request that the user agent grant access to certain network resources. The latter defines a "widget:" URI scheme to help identify resources within a widget package. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6614">
<h3>
<a href="#entry-6614">
W3C Launches Open Web Education Alliance Incubator Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-17T00:00:00-05:00">17 June 2009</span></p>
<div id="item106"><p> W3C is pleased to announce the creation of the <a href="/2005/Incubator/owea/">Open Web Education Alliance Incubator Group</a>, whose mission is to help enhance and standardize the architecture of the World Wide Web by facilitating the highest quality standards and best practice based education for future generations of Web professionals. The goal of this Incubator Group is to bring together interested individuals, companies, and organizations with a strong interest in the field of educating Web professionals, to explore the needs and issues around the topic of Web development education. The group will be chaired by John Allsopp. The following W3C Members have sponsored the <a href="/2005/Incubator/owea/charter-20090617">charter</a> for this group: Adobe Systems Inc.; Mitsue-Links Co., Ltd; and Opera Software. 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.</p></div>
</div>
<div class="entry" id="entry-6616">
<h3>
<a href="#entry-6616">
Updated Drafts of SVG Parameters 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-16T00:00:00-05:00">16 June 2009</span></p>
<div id="item104"><p> The <a href="/Graphics/SVG/WG/">SVG Working Group</a> has published two Working Drafts: <a href="/TR/2009/WD-SVGParamPrimer-20090616/"> SVG Parameters 1.0, Part 1: Primer </a> and <a href="/TR/2009/WD-SVGParam-20090616/">SVG Parameters 1.0, Part 2: Language</a>. The SVG Parameters specification is an SVG 2.0 Module to provide a declarative way to incorporate parameter values into SVG content. Often, users may wish to create a single resource, and reuse it several times with specified variations, and this specification provides a means to do so without the use of scripts. The Primer suggests how to use the SVG Parameters specification with SVG 1.2. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6615">
<h3>
<a href="#entry-6615">
Last Call: Delivery Context Ontology
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-16T00:00:00-05:00">16 June 2009</span></p>
<div id="item105"><p> The <a href="/2007/uwa/">Ubiquitous Web Applications Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-dcontology-20090616/">Delivery Context Ontology</a>. A "Delivery Context" is a source of information that can help create context-aware applications, thus providing a compelling user experience. The Delivery Context Ontology specification provides a formal model of the characteristics of the environment in which devices interact with the Web or other services. The Delivery Context includes the characteristics of the Device, the software used to access the service and the Network providing the connection among others. Comments are welcome through 07 July. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6619">
<h3>
<a href="#entry-6619">
W3C Invites Implementation of OWL 2
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-15T00:00:00-05:00">15 June 2009</span></p>
<div id="item101"><p> The <a href="http://www.w3.org/2007/OWL">OWL Working Group</a> invites implementation of its OWL 2 Web Ontology Language. OWL 2 is a compatible extension to <a href="http://www.w3.org/TR/2004/REC-owl-features-20040210/">OWL 1</a>, providing <a href="http://www.w3.org/TR/2009/WD-owl2-new-features-20090611/">additional features</a> for people using ontologies. An ontology is a structured set of terms that a particular community uses for organizing data, such as "title", "author", and "ISBN" for data about books. The OWL 2 document set contains 9 technical specifications and 4 instructional documents. The Recommendation-track specifications are now Candidate Recommendations, indicating that the Working Group and the W3C Director believe this is a good time for systems to begin adopting OWL 2 features on an experimental basis. The group maintains a <a href="http://www.w3.org/2007/OWL/wiki/Implementations">list of implementations</a> and encourages new information about implementations and other feedback to be sent to it <a href="http://lists.w3.org/Archives/Public/public-owl-comments/">comments address</a>. The 4 instructional documents, which provide an introduction to OWL 2, are now at Last Call: <a href="http://www.w3.org/TR/2009/WD-owl2-overview-20090611/">overview</a>, <a href="http://www.w3.org/TR/2009/WD-owl2-primer-20090611/">primer</a>, <a href="http://www.w3.org/TR/2009/WD-owl2-new-features-20090611/">new features and rationale</a>, and <a href="http://www.w3.org/TR/2009/WD-owl2-quick-reference-20090611/">quick reference</a>. Finally, a new datatype used within both OWL and <a href="http://www.w3.org/2005/rules">RIF</a>, called <a href="http://www.w3.org/TR/2009/CR-rdf-plain-literal/">rdf:PlainLiteral</a> (formerly called rdf:text) is also a Candidate Recommendation. Learn more about the <a href="http://www.w3.org/2001/sw">Semantic Web</a>. </p></div>
</div>
<div class="entry" id="entry-6618">
<h3>
<a href="#entry-6618">
Call for Review: SKOS Reference Proposed Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-15T00:00:00-05:00">15 June 2009</span></p>
<div id="item102"><p> The Semantic Web Deployment Working Group has published the Proposed Recommendation of <a href="/TR/2009/PR-skos-reference-20090615/">SKOS Simple Knowledge Organization System Reference</a>. SKOS provides a common data model for sharing and linking knowledge organization systems via the Web. SKOS is a vocabulary for expressing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading schemes, taxonomies, folksonomies, and other similar types of controlled vocabulary. As an application of the Resource Description Framework (<a href="/TR/rdf-primer/">RDF</a>), SKOS allows concepts to be composed and published on the World Wide Web, linked with data on the Web and integrated into other concept schemes. Along with this publication of the SKOS Reference Proposed Recommendation the Working Group has published an updated <a href="/TR/2009/WD-skos-primer-20090615/">SKOS Primer Working Draft</a>. Comments are welcome through 15 July. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6617">
<h3>
<a href="#entry-6617">
W3C Celebrates Semantic Web Progress at SemTech 2009
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-15T00:00:00-05:00">15 June 2009</span></p>
<div id="item103"><p class="newsImage"><a class="imageLink" href="/2001/sw/"><img class="NoBorder" alt="Semantic Web" src="/Icons/SW/sw-horz.png" /></a> W3C technical staff and more than 30 <a href="/Consortium/Member/List">W3C Member organizations</a> will present at the <a href="http://www.semantic-conference.com/">Semantic Technology Conference (SemTech)</a> this week in San Jose, California. Sessions led by W3C staff and Member organizations highlight the accelerating rate of adoption and deployment of Semantic Web technologies in the past year. "We have gathered a growing number of Semantic Web use cases and case studies in the past 12 months," said Ivan Herman, Semantic Web Activity Lead for W3C and one of the presenters. "What thrills me is the diversity of application areas for the Semantic Web, including more software, services and tools, as well as successful deployment in business and industry." Read the full <a href="/2009/06/SemTech-pressrelease">press release</a> and learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6620">
<h3>
<a href="#entry-6620">
Call for Prior Art Related to US Patent 5,764,992
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-12T00:00:00-05:00">12 June 2009</span></p>
<div id="item100"><p> This is a <a href="/2009/03/widgets-pag/cfpa.html">public call for prior art</a>. On 5 March 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/p66">US patent 5,764,992</a> and claimed that it applies to the <a href="/TR/2008/WD-widgets-updates-20081007/">Widgets 1.0: Updates specification</a>. Apple excluded all claims from the W3C Royalty-Free License commitment of the <a href="/Consortium/Patent-Policy-20040205/">W3C Patent Policy</a> given by Participants of the <a href="/2008/webapps/">Web Applications Working Group</a>. 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/03/widgets-pag-charter">Patent Advisory Group (PAG)</a> to determine possible solutions. The PAG has advised W3C to issue this call for prior art. The PAG seeks information about software update systems available before June 1995 that offer a viable solution that may apply to the <a href="http://www.w3.org/2009/03/widgets-pag-charter#L381">use of updates in Widgets</a>. People who wish to provide feedback should refer to the <a href="/2009/03/widgets-pag/cfpa.html">call for prior art</a> for more information. </p></div>
</div>
<div class="entry" id="entry-6622">
<h3>
<a href="#entry-6622">
UK Government Moves to Put Data on the Web
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-10T00:00:00-05:00">10 June 2009</span></p>
<div id="item98"><p> Today the Office of the Prime Minister in the UK <a href="http://twitter.com/DowningStreet/status/2102188386">announced</a> that Tim Berners-Lee will "help drive opening of access to Government data on the web over the coming months." The announcement is an important step in helping to fulfill the vision for a Web of Linked Open Data built on W3C's open Semantic Web standards, espoused by Berners-Lee in his <a href="http://www.ted.com/index.php/talks/tim_berners_lee_on_the_next_web.html">TED 2009 talk</a>. "Government data — the people's data — is an important component to the larger Linked Open Data movement," said Berners-Lee. "I look forward to working with multiple government agencies and local enthusiasts to help early adopters bring their data to the bigger picture." In April, Berners-Lee <a href="http://www.thenationaldialogue.org/ideas/linked-open-data">engaged</a> similarly with the US government offering to help them join the "rapidly growing Linked Open Data cloud, to which US recovery data will be a welcome addition." W3C's own <a href="/2007/eGov/IG/wiki/Main_Page">eGovernment Interest Group</a> has also been actively building an international network of support to work with governments on issues of transparency, accountability, and efficiency through open data. Learn more about W3C's <a href="/2007/eGov/">eGovernment</a> and <a href="/2001/sw/">Semantic Web</a> Activities.</p></div>
</div>
<div class="entry" id="entry-6621">
<h3>
<a href="#entry-6621">
W3C Invites Implementations of XQuery Update Facility 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-10T00:00:00-05:00">10 June 2009</span></p>
<div id="item99"><p> The <a href="/XML/Query/">XML Query Working Group</a> has published a minor update to the Candidate Recommendation of <a href="/TR/2009/CR-xquery-update-10-20090609/">XQuery Update Facility 1.0</a>. This document 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. This draft reflects <a href="/TR/2009/CR-xquery-update-10-20090609/#id-revision-log">changes</a> made in response to comments received so far during the Candidate Recommendation period. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6629">
<h3>
<a href="#entry-6629">
Last Call: WebCGM 2.1
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item91"><p> The <a href="/Graphics/WebCGM/WG/">WebCGM Working Group</a> has published a Last Call Working Draft of <a href="/TR/2009/WD-webcgm21-20090604/">WebCGM 2.1</a>. Computer Graphics Metafile (CGM) is an ISO standard, defined by ISO/IEC 8632:1999, for the interchange of 2D vector and mixed vector/raster graphics. WebCGM is a profile of CGM, which adds Web linking and is optimized for Web applications in technical illustration, electronic documentation, geophysical data visualization, and similar fields. First published (1.0) in 1999, WebCGM unifies potentially diverse approaches to CGM utilization in Web document applications. It therefore represents a significant interoperability agreement amongst major users and implementers of the ISO CGM standard. Comments are welcome through 02 July. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6628">
<h3>
<a href="#entry-6628">
Use Cases and Requirements for Ontology and API for Media Object 1.0 Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item92"><p> The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-media-annot-reqs-20090604/">Use Cases and Requirements for Ontology and API for Media Object 1.0</a>. This document specifies use cases and requirements as an input for the development of the "Ontology for Media Object 1.0" and the "API for Media Object 1.0". The ontology will be a simple ontology to support cross-community data integration of information related to media objects on the Web. The API will provide read access and potentially write access to media objects, relying on the definitions from the ontology. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6627">
<h3>
<a href="#entry-6627">
Drafts of MathML 3.0 and MathML for CSS Profile Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item93"><p> The <a href="/Math/">Math Working Group</a> has published Working Drafts of <a href="/TR/2009/WD-MathML3-20090604/">Mathematical Markup Language (MathML) Version 3.0</a> and <a href="/TR/2009/WD-mathml-for-css-20090604/">A MathML for CSS profile</a>. MathML is an XML application for describing mathematical notation and capturing both its structure and content. The goal of MathML is to enable mathematics to be served, received, and processed on the World Wide Web, just as HTML has enabled this functionality for text. This document describes a profile of MathML 3.0 that admits formatting with Cascading Style Sheets. Learn more about the <a href="/Math/">Math Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6626">
<h3>
<a href="#entry-6626">
Registration Open: Live Training Sessions On Mobile Web Design
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item94"><p> Today, the W3C Mobile Web Initiative opens <a href="http://www.3gwebtrain.com/moodle/course/view.php?id=14">registration</a> for its first ever live training day. Training will take place Thursday, 2 July 2009, in Cambridge, UK. Students will attend a full day of lectures and hands on sessions on the <a href="/TR/2008/REC-mobile-bp-20080729/">W3C Mobile Web Best Practices</a> standard, and more generally on mobile Web design. This training event is part of the <a href="/2008/MobiWeb20/">MobiWeb 2.0</a> project supported by the European Union's 7th Research Framework Programme (FP7). Read the full <a href="/2009/06/live_mobile_training.html">announcement</a> and learn more about the <a href="/Mobile">W3C Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6625">
<h3>
<a href="#entry-6625">
W3C Invites Implementations of SOAP over Java Message Service 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item95"><p> The <a href="/2002/ws/soapjms/">SOAP-JMS Binding Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-soapjms-20090604/">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. It should also enable customers to implement their own Web services for part of their infrastructure, and to have this interoperate with vendor provided Web services. The main audience will be implementers of Web services stacks; in particular people who wish to extend a Web services stack with an implementation of SOAP/JMS. This document specifies how SOAP should bind to a messaging system that supports the Java Message Service (JMS). Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6624">
<h3>
<a href="#entry-6624">
Call for Review: POWDER Suite is a Proposed Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item96"><p> The <a href="/2007/powder/">Protocol for Web Description Resources (POWDER) Working Group</a> has published three Proposed Recommendations: <a href="/TR/2009/PR-powder-grouping-20090604/">Protocol for Web Description Resources (POWDER): Grouping of Resources</a>, <a href="/TR/2009/PR-powder-dr-20090604/ ">Description Resources</a>, and <a href="/TR/2009/PR-powder-formal-20090604/ ">Formal Semantics</a>. The Protocol for Web Description Resources (POWDER) suite facilitates the publication of descriptions of multiple resources such as all those available from a Web site (see <a href="/TR/powder-use-cases/">POWDER use cases</a>). The first of these three documents describes how sets of IRIs can be defined such that descriptions or other data can be applied to the resources obtained by dereferencing IRIs that are elements of the set. The second details the creation and lifecycle of Description Resources (DRs), which encapsulate POWDER metadata. The third describes the formal semantics of the formalism. Comments are welcome through 05 July. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6623">
<h3>
<a href="#entry-6623">
Note: Requirements for Japanese Text Layout
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-04T00:00:00-05:00">04 June 2009</span></p>
<div id="item97"><p> Participants in the <a href="/2007/02/japanese-layout/">Japanese Layout Task Force</a> (from four W3C Groups (<a href="/Style/CSS/">CSS</a>, <a href="/International/core/">Internationalization Core</a>, <a href="/Graphics/SVG/">SVG</a> and <a href="/Style/XSL/">XSL</a> Working Groups) published a Group Note of <a href="/TR/2009/NOTE-jlreq-20090604/">Requirements of Japanese Text Layout</a>. This document describes requirements for general Japanese layout realized with technologies like CSS, SVG and XSL-FO. 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. A <a hreflang="ja" href="/TR/2009/NOTE-jlreq-20090604/ja/">Japanese version</a> is also available. Learn more about W3C's <a href="/International/">Internationalization Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6630">
<h3>
<a href="#entry-6630">
Last Call: Timed Text (TT) Authoring Format 1.0 – Distribution Format Exchange Profile (DFXP)
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-03T00:00:00-05:00">03 June 2009</span></p>
<div id="item90"><p> The <a href="/AudioVideo/TT/">Timed Text Working Group</a> has published a third Last Call Draft of <a href="/TR/2009/WD-ttaf1-dfxp-20090602/">Timed Text (TT) Authoring Format 1.0 – Distribution Format Exchange Profile (DFXP)</a>. Timed text is textual information that is intrinsically or extrinsically associated with timing information. The timed text authoring format is a content type that represents timed text media for the purpose of interchange among authoring systems. See <a href="/TR/2009/WD-ttaf1-dfxp-20090602/#change-history-cr1-to-lc3">changes in this draft</a>. Comments are welcome through 30 June 2009. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6632">
<h3>
<a href="#entry-6632">
W3C Advisory Committee Elects Advisory Board
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-02T00:00:00-05:00">02 June 2009</span></p>
<div id="item88"><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, the nine Advisory Board participants are Jean-François Abramatic (IBM), Ann Bassetti (The Boeing Company), Jim Bell (HP), Don Deutsch (Oracle), Eduardo Gutentag (Sun Microsystems), Ora Lassila (Nokia), Charles McCathieNevile (Opera Software), Takeshi Natsuno (Keio University), and Arun Ranganathan (Mozilla). Steve Zilles continues as interim Advisory Board Chair. Read more about the <a href="/2002/ab/">Advisory Board</a>.</p></div>
</div>
<div class="entry" id="entry-6631">
<h3>
<a href="#entry-6631">
Voice Extensible Markup Language (VoiceXML) 3.0 Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-02T00:00:00-05:00">02 June 2009</span></p>
<div id="item89"><p> The <a href="/Voice/">Voice Browser Working Group</a> has published an updated Working Draft of <a href="/TR/2009/WD-voicexml30-20090602/">Voice Extensible Markup Language (VoiceXML) 3.0</a>. VoiceXML 3.0 is a modular XML language for creating interactive media dialogs that feature synthesized speech, recognition of spoken and DTMF key input, telephony, mixed initiative conversations, and recording and presentation of a variety of media formats including digitized audio, and digitized video. The primary goal of this version 3.0 is to bring the advantages of Web-based development and content delivery to interactive voice response applications. See the <a href="/TR/2009/WD-voicexml30-20090602/diff.html">diff-marked version</a> showing changes made since the <a href="/TR/2008/WD-voicexml30-20081219/"> 19 December 2008 draft</a>. Learn more about the <a href="/Voice/">Voice Browser Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6633">
<h3>
<a href="#entry-6633">
W3C Talks in June
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-06-01T00:00:00-05:00">01 June 2009</span></p>
<div id="item87"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">4 June, Rabat, Morocco: </span><span class="talktitle">Content for All: Web Accessibility Guidelines</span><span class="talkdesc">Shadi Abou-Zahra gives a keynote at <a href="http://www.e-ngn.org/ngns09/">International Conference on Next Generation Networks and Services</a>. </span></li><li><span class="talkstart">6 June, Danbury, CT, USA: </span><span class="talktitle">Digital Media for All </span><span class="talkdesc">Jeanne Spellman presents at <a href="http://www.ctfilmfest.com/">Connecticut Film Festival</a>. </span></li><li><span class="talkstart">9 June, Premantura, Croatia: </span><span class="talktitle">International Standards for Web Accessibility</span><span class="talkdesc">Shadi Abou-Zahra presents at <a lang="hr" xml:lang="hr">Pristupačnost ili informacijske barijere?</a>. </span></li><li><span class="talkstart">11 June, Santander, Spain: </span><span class="talktitle">Guidelines for Mobile Web Content Adaptation by Third-party Proxies</span><span class="talkdesc">François Daoust presents at <a href="http://www.ict-mobilesummit.eu/2009/">ICT-MobileSummit 2009</a>. </span></li><li><span class="talkstart">11 June, London, United Kingdom: </span><span class="talktitle">De-Fragmentation & Apps in the Cloud</span><span class="talkdesc">Philipp Hoschka participates in a panel at <a href="http://www.openmobilesummit.com/index.aspx">Open Mobile Summit 09</a>. </span></li><li><span class="talkstart">15 June, San Jose, CA, USA: </span><span class="talktitle">Introduction to the Semantic Web</span><span class="talkdesc">Ivan Herman gives a tutorial at <a href="http://www.semantic-conference.com/">2009 Semantic Technology Conference</a>. </span></li><li><span class="talkstart">15 June, San Jose, CA, USA: </span><span class="talktitle">What is New in W3C Land?</span><span class="talkdesc">Ivan Herman presents at <a href="http://www.semantic-conference.com/">2009 Semantic Technology Conference</a>. </span></li><li><span class="talkstart">16 June, San Jose, CA, USA: </span><span class="talktitle">Introducing OWL 2</span><span class="talkdesc">Ivan Herman participates in a panel at <a href="http://www.semantic-conference.com/">2009 Semantic Technology Conference</a>. </span></li><li><span class="talkstart">17 June, San Jose, USA: </span><span class="talktitle">XBRL and the Semantic Web</span><span class="talkdesc">Dave Raggett, Diane Mueller present at <a href="http://www.semantic-conference.com/">2009 Semantic Technology Conference</a>. </span></li><li><span class="talkstart">30 June, Amsterdam, The Netherlands: </span><span class="talktitle">The Future of Code</span><span class="talkdesc">Steven Pemberton presents at <a href="http://www.kingsofcode.nl/">Kings of Code</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6635">
<h3>
<a href="#entry-6635">
Last Call: Widgets 1.0: Packaging and Configuration
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-28T00:00:00-05:00">28 May 2009</span></p>
<div id="item85"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published the Last Call Working Draft of <a href="/TR/2009/WD-widgets-20090528/">Widgets 1.0: Packaging and Configuration</a>. This document standardizes a packaging format for a class of software application known as a widget. Widgets are full-fledged client-side applications that are authored using Web standards and packaged for distribution. They are typically downloaded and installed on a client machine or device where they run as stand-alone applications, but they can also be embedded into Web pages and run in a Web browser. 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 19 June. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6634">
<h3>
<a href="#entry-6634">
Candidate Recommendation Updated: XProc: An XML Pipeline Language
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-28T00:00:00-05:00">28 May 2009</span></p>
<div id="item86"><p> The <a href="/XML/Processing/">XML Processing Model Working Group</a> has published an updated Candidate Recommendation of <a href="/TR/2009/CR-xproc-20090528/">XProc: An XML Pipeline Language</a>. This specification describes the syntax and semantics of a language for describing operations to be performed on XML documents. The status section of the document summarizes the list of changes since the Candidate Recommendation was first published. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6637">
<h3>
<a href="#entry-6637">
W3C Opens Senegal Office
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-26T00:00:00-05:00">26 May 2009</span></p>
<div id="item83"><p class="newsImage"><a class="imageLink" href="http://www.w3c.sn/"><img alt="Ecole Supérieure Polytechnique (ESP)" src="/2003/09/24-join/images/office-senegal.jpeg" /></a> W3C announces today the launch of the <a href="http://www.w3c.sn/">W3C Senegal Office</a>, hosted by the Ecole Supérieure Polytechnique (<a href="http://www.esp.sn/">ESP</a>), attached to the <a href="http://www.ucad.sn/">UCAD</a> (Université Cheikh Anta Diop), in Dakar, Senegal. Ibrahima Ngom (ESP) and Alex Corenthin (ISOC Senegal) will jointly manage this new W3C Office. W3C looks forward to increasing interaction with the French-speaking community, especially neighboring countries in West Africa. The <a href="/2009/05/sn-launch.html">opening ceremony</a> will take place 27 May. Read the <a href="/2009/05/senegal-pressrelease">press release</a> and learn more about the <a href="/Consortium/Offices/">W3C Offices</a>, which assist W3C with promotion efforts in local languages, help broaden W3C’s geographical base, and encourage international participation in W3C Activities.</p></div>
</div>
<div class="entry" id="entry-6636">
<h3>
<a href="#entry-6636">
Relationship Between Mobile Web and Web Content Accessibility Working Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-26T00:00:00-05:00">26 May 2009</span></p>
<div id="item84"><p> The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> and the <a href="/WAI/EO/"><acronym title="Web Accessibility Initiative">WAI</acronym> Education and Outreach Working Group</a> have published an updated Working Draft of <a href="/TR/2009/WD-mwbp-wcag-20090526/">Relationship between Mobile Web Best Practices (MWBP) and Web Content Accessibility Guidelines (WCAG)</a>. This draft is complete and is provided as a last opportunity for public review and comment before publication as a W3C Working Group Note. See the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009AprJun/0127.html">announcement email</a>.</p> <p>The groups encourage people to start by reading <a href="/WAI/mobile/">Web Content Accessibility and Mobile Web: Making a Web Site Accessible Both for People with Disabilities and for Mobile Devices</a>, which shows how design goals for accessibility and mobile access overlap. A third document, <a href="/WAI/mobile/experiences">Shared Web Experiences: Barriers Common to Mobile Device Users and People with Disabilities</a>, provides examples of barriers that people (without disabilities) face when interacting with Web content via mobile devices, and similar barriers for people with disabilities using desktop computers. Learn more about the <a href="/Mobile/">Mobile Web Initiative</a> and the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p></div>
</div>
<div class="entry" id="entry-6639">
<h3>
<a href="#entry-6639">
Report Evokes Promise of Mobile to Foster Social Development; Need for Cooperation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-25T00:00:00-05:00">25 May 2009</span></p>
<div id="item81"><p class="newsImage"><a class="imageLink" href="/2008/10/MW4D_WS/"><img alt="Workshop Poster" src="/2009/04/poster-maputo" /></a> Today W3C publishes the <a href="/2008/10/MW4D_WS/exec_summary.html">report</a> from the April 2009 <a href="/2008/10/MW4D_WS/">Workshop on the Role of Mobile Technologies in Fostering Social Development</a>. Participants discussed how numerous services available on mobile phones could help people in underserved regions. Discussion underlined the need for a concerted effort among all the stakeholders (including practitioners, academics, regulators, governments, and the mobile industry) to build a shared view of the future of the mobile platform as a tool to bridge the digital divide. The Workshop was jointly organized by the <a href="/Mobile/">W3C Mobile Web Initiative</a> and the Ministry of Science and Technology of the Government of Mozambique, with the generous support of Gold Sponsors UNDP, the Web Foundation, Nokia, and Bharti Telesoft; and Silver Sponsors Opera Software, UNESCO, Microsoft Research, and MIT Legatum Center for Development and Entrepreneurship. This work is part of the <a href="http://www.digitalworldforum.eu">Digital World Forum project</a> (European Union's FP7). Learn more about the <a href="/2008/MW4d"> W3C Mobile Web for Social Development Interest Group</a> and the <a href="/Mobile/">W3C Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6638">
<h3>
<a href="#entry-6638">
Online Training Course: An Introduction to W3C's Mobile Web Best Practices
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-25T00:00:00-05:00">25 May 2009</span></p>
<div id="item82"><p> W3C announces today an <a href="/2009/04/MobiWeb102/">online course</a> to introduce Web developers and designers to its Mobile Web Best Practices. The course runs from 1 June to 31 July 2009. Participants will:</p> <ul><li> learn about the specific promises and challenges of the mobile platform</li><li>learn how to use W3C's Mobile Web Best Practices to design mobile-friendly Web content and to adapt existing content for mobile</li><li>discover the relevant W3C resources for mobile Web design</li></ul> <p>Participants will have access to lectures and assignments that provide hands-on practical experience of using W3C's Mobile Web Best Practices. Participants will work with both W3C experts on this topic (the instructors) and peers who can share experiences about the real-world challenges of mobile Web design. More information is available about the <a href="/2009/04/MobiWeb102/">course material</a> (including a free sample), registration fee, and intended audience. Learn more about the <a href="/Mobile/">Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6640">
<h3>
<a href="#entry-6640">
Authoring Tool Accessibility Guidelines (ATAG) 2.0: Updated Working Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-21T00:00:00-05:00">21 May 2009</span></p>
<div id="item80"><p> The <a href="/WAI/AU/">Authoring Tool Accessibility Guidelines Working Group</a> has published an updated Working Draft of <a href="http://www.w3.org/TR/2008/WD-ATAG20-20090521/">Authoring Tool Accessibility Guidelines (ATAG) 2.0</a> in preparation for the Last Call Working Draft. ATAG defines how authoring tools should help Web developers produce Web content that is accessible and conforms to Web Content Accessibility Guidelines (WCAG) 2.0. ATAG also defines how to make authoring tools accessible so that people with disabilities can use them. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009AprJun/0122.html">invitation to review the ATAG 2.0 Working Draft</a> and about the <a href="/WAI/">Web Accessibility Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6641">
<h3>
<a href="#entry-6641">
W3C Rescinds Four Proposed Edited Recommendations for XHTML Documents
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-19T00:00:00-05:00">19 May 2009</span></p>
<div id="item79"><p> In response to comments about potential unresolved issues on four Proposed Edited Recommendations published earlier this month, W3C has rescinded the drafts and closed the review period. The rescinded drafts are: </p> <ul><li><a href="/TR/2009/PER-xhtml11-20090507/"> XHTML™ 1.1 - Module-based XHTML - Second Edition</a></li><li><a href="/TR/2009/PER-xhtml-basic-20090507/">XHTML™ Basic 1.1 - Second Edition</a></li><li><a href="/TR/2009/PER-xhtml-print-20090507/">XHTML-Print - Second Edition</a></li><li><a href="/TR/2009/PER-xhtml1-20090507/">XHTML™ 1.0</a></li></ul> <p>The W3C Process indicates that <a href="/2005/10/Process-20051014/tr.html#cfr-edited">Proposed Edited Recommendations</a> must formally address all issues raised about the documents since the previous Recommendations. Open issues against the XHTML documents were not cited during the process of deciding to advance the documents. The <a href="/MarkUp/">XHTML2 Working Group</a> may request publication of the four Proposed Edited Recommendations later on, based on proper review of outstanding issues. The decision to rescind these specifications has no bearing on existing Recommendations for these technologies.</p></div>
</div>
<div class="entry" id="entry-6642">
<h3>
<a href="#entry-6642">
W3C to Participate in SVG Open 2009
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-13T00:00:00-05:00">13 May 2009</span></p>
<div id="item78"><p> W3C will again this year sponsor <a href="http://www.svgopen.org/2009/">SVG Open 2009</a>, the 7th international conference on <a href="/Graphics/SVG/">Scalable Vector Graphics</a>, hosted by Google in Mountain View, California on 2-4 October 2009. SVG Open provides an opportunity for designers, developers and implementers to share ideas, experiences, products and strategies. Members of the <a href="/Graphics/SVG/">W3C SVG Working Group</a> will be attending and presenting at the conference, which will include a Working Group panel session on future SVG developments. A day of workshops will also be scheduled adjacent to the main conference. The conference organizers have indicated that <a href="https://www.svgopen.org/2009/participate.shtml">proposals</a> for presentation abstracts and course outlines are welcome through 15 May. Learn more about the <a href="/Graphics/">W3C Graphics Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6646">
<h3>
<a href="#entry-6646">
Service Modeling Standards Extend Reach of XML Family
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-12T00:00:00-05:00">12 May 2009</span></p>
<div id="item74"><p> Today W3C announces new standards that make it possible to use XML tools to improve the quality of increasingly sophisticated systems and services built from the XML family of standards. Now developers can validate sets of XML documents, either in place, using <a href="/TR/2009/REC-sml-20090512/">Service Modeling Language 1.1 (SML)</a>, or as a package, using <a href="/TR/2009/REC-sml-if-20090512/">SML Interchange Format 1.1 (SML-IF)</a>. Read the <a href="/2009/04/sml-pressrelease">press release</a> and <a href="/2009/04/sml-testimonial">testimonials</a>, and learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6645">
<h3>
<a href="#entry-6645">
Guidelines for Writing Device Independent Tests Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-12T00:00:00-05:00">12 May 2009</span></p>
<div id="item75"><p> The <a href="/2005/MWI/Tests/">Mobile Web Initiative Test Suites Working Group</a> has published a Group Note of <a href="/TR/2009/NOTE-di-testing-20090512/">Guidelines for writing device independent tests</a>. As support for Web technologies grows, it is important that tests writers develop test suites that will work as well as possible across devices. This document offers guidance in the form of simple guidelines to follow to create device-independent tests. Learn more about the <a href="/Mobile/">Mobile Web Initiative Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6644">
<h3>
<a href="#entry-6644">
Improving Access to Government through Better Use of the Web Note Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-12T00:00:00-05:00">12 May 2009</span></p>
<div id="item76"><p> The <a href="/2007/eGov/IG/">eGovernment Interest Group</a> has published a Group Note of <a href="/TR/2009/NOTE-egov-improving-20090512/">Improving Access to Government through Better Use of the Web</a>. This document is an attempt to describe, but not yet solve, the variety of issues and challenges faced by governments in their efforts to apply 21st century capabilities to eGovernment initiatives. It provides examples of existing, applicable open Web standards. Where government needs in the development of eGovernment services are not currently met by existing standards, those gaps are noted. Learn more about the <a href="/2007/eGov/">eGovernment Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6643">
<h3>
<a href="#entry-6643">
Draft Published of Timed Text (TT) Authoring Format 1.0 – Distribution Format Exchange Profile (DFXP)
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-12T00:00:00-05:00">12 May 2009</span></p>
<div id="item77"><p> The <a href="/AudioVideo/TT/">Timed Text Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-ttaf1-dfxp-20090511/">Timed Text (TT) Authoring Format 1.0 – Distribution Format Exchange Profile (DFXP)</a>. Timed text is textual information that is intrinsically or extrinsically associated with timing information. The timed text authoring format is a content type that represents timed text media for the purpose of interchange among authoring systems. The Distribution Format Exchange Profile (DFXP) provides a standardized representation of a particular subset of textual information with which stylistic, layout, and timing semantics are associated by an author or an authoring system for the purpose of interchange and potential presentation. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6649">
<h3>
<a href="#entry-6649">
Mobile Web Application Best Practices Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-07T00:00:00-05:00">07 May 2009</span></p>
<div id="item71"><p> The <a href="/2005/MWI/BPWG/">Mobile Web Best Practices Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-mwabp-20090507/">Mobile Web Application Best Practices</a>. This document specifies Best Practices for the development and delivery of Web applications on mobile devices. The recommendations expand upon statements made in the Mobile Web Best Practices 1.0 (BP1), especially those that relate to the exploitation of device capabilities and awareness of the delivery context. Learn more about the <a href="/Mobile/">Mobile Web Initiative Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6648">
<h3>
<a href="#entry-6648">
State Chart XML (SCXML) Working Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-07T00:00:00-05:00">07 May 2009</span></p>
<div id="item72"><p> The <a href="/Voice/">Voice Browser Working Group</a> has published an updated Working Draft of <a href="/TR/2009/WD-scxml-20090507/">State Chart XML (SCXML): State Machine Notation for Control Abstraction</a>. <abbr title="State Chart eXtensible Markup Language">SCXML</abbr> is a general-purpose event-based state machine language that may be used in a number of ways, including as a high-level dialog language controlling VoiceXML 3.0's encapsulated speech modules, or as a multimodal control language in the MultiModal Interaction framework. The main differences from the previous draft are (1) a revision of the <code>send</code> and <code>invoke</code> elements and (2) the introduction of Event I/O processors to support them. Learn more about the <a href="/Voice/">Voice Browser Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6647">
<h3>
<a href="#entry-6647">
Four XHTML Documents Published as Proposed Edited Recommendations
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-07T00:00:00-05:00">07 May 2009</span></p>
<div id="item73"><p> The <a href="/MarkUp/">XHTML2 Working Group</a> has published four Proposed Edited Recommendations:</p> <ul><li><a href="/TR/2009/PER-xhtml11-20090507/"> XHTML™ 1.1 - Module-based XHTML - Second Edition</a>, which serve as the basis for future extended XHTML 'family' document types</li><li><a href="/TR/2009/PER-xhtml-basic-20090507/">XHTML™ Basic 1.1 - Second Edition</a>, includes the minimal set of modules required to be an XHTML host language document type, and in addition it includes images, forms, basic tables, and object support.</li><li><a href="/TR/2009/PER-xhtml-print-20090507/">XHTML-Print - Second Edition</a>, designed for mobile printers and in environments where it is not feasible or desirable to install a printer-specific driver and where some variability in the formatting of the output is acceptable.</li><li><a href="/TR/2009/PER-xhtml1-20090507/">XHTML™ 1.0</a></li></ul> <p>These updates incorporate known errata; each document links to a list of changes. The review period is open until 4 June. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6650">
<h3>
<a href="#entry-6650">
Notes Published: Basic, Advanced XML Schema Patterns for Databinding Version 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-05T00:00:00-05:00">05 May 2009</span></p>
<div id="item70"><p> The <a href="/2002/ws/databinding/">XML Schema Patterns for Databinding Working Group</a> has published two Group Notes: <a href="/TR/2009/NOTE-xmlschema-patterns-20090505/">Basic XML Schema Patterns for Databinding Version 1.0</a> and <a href="/TR/2009/NOTE-xmlschema-patterns-advanced-20090505/">Advanced XML Schema Patterns for Databinding Version 1.0</a>. Schema patterns describe the ways people use XML for common data structures in programming languages. The data structures described are intended to be independent of any particular programming language, database or modelling environment. Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6652">
<h3>
<a href="#entry-6652">
W3C Talks in May
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-04T00:00:00-05:00">04 May 2009</span></p>
<div id="item68"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">4 May, Atlanta, GA, USA: </span><span class="talktitle">Advancing Web Accessibility</span><span class="talkdesc">Shawn Henry presents at <a href="http://conference.stc.org/">STC Technical Communication Summit</a>. </span></li><li><span class="talkstart">7 May, Hammamet, Tunisia: </span><span class="talktitle">Web Accessibility with WCAG 2.0: International Cooperation, Local Implementation</span><span class="talkdesc">Shawn Henry gives a keynote at <a href="http://www.icta.rnu.tn/">ICTA 2009 International Conference on Information and Communication Technology & Accessibility</a>. </span></li><li><span class="talkstart">7 May, Oslo, Norway: </span><span class="talktitle">WCAG 2.0 - addressing the needs of people with disabilities and older people.</span><span class="talkdesc">Andrew Arch presents at <a href="http://www.medialt.no/news/en-US/international-conference-do-web-accessibility-guidelines-guarantee-universal-design/589.aspx">Do Web Accessibility Guidelines guarantee Universal Design?</a>. </span></li><li><span class="talkstart">9 May, Hammamet, Tunisia: </span><span class="talktitle">Improving Your Web Site with WCAG 2.0</span><span class="talkdesc">Shawn Henry gives a tutorial at <a href="http://www.icta.rnu.tn/">ICTA 2009 International Conference on Information and Communication Technology & Accessibility</a>. </span></li><li><span class="talkstart">26 May, Amsterdam, The Netherlands: </span><span class="talktitle">Introduction to the Semantic Web</span><span class="talkdesc">Ivan Herman gives a tutorial at <a href="http://www.nbic.nl/biowise/school/EduProg/InfoMan09">PhD School Course, Netherlands Bioinformation Centre</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6651">
<h3>
<a href="#entry-6651">
W3C Invites Implementations of W3C XML Schema Definition Language (XSD) 1.1
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-04T00:00:00-05:00">04 May 2009</span></p>
<div id="item69"><p> The <a href="/XML/Schema">XML Schema Working Group</a> invites implementation of the Candidate Recommendation of XML Schema Definition Language (XSD) 1.1. The specification consists of <a href="/TR/2009/CR-xmlschema11-1-20090430/">Part 1: Structures</a> and <a href="/TR/2009/CR-xmlschema11-2-20090430/">Part 2: Datatypes</a>. XSD provides tools for describing the structure of XML content and constraining the contents of XML documents. Part 2 provides tools for defining datatypes (dates, times, numbers, strings, etc.) to be used in XML Schemas as well as other XML specifications. Information about <a href="/TR/2009/CR-xmlschema11-1-20090430/#changes">changes to structures</a> and <a href="/TR/2009/CR-xmlschema11-2-20090430/#changes">changes to datatypes</a> since XML Schema 1.0 is available. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6653">
<h3>
<a href="#entry-6653">
W3C Organizes Workshop on using Ink in Multimodal Applications
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-05-01T00:00:00-05:00">01 May 2009</span></p>
<div id="item67"><p> W3C invites people to participate in a <a href="/2009/03/ink/cfp.html">Workshop on using Ink in Multimodal Applications within the W3C's Multimodal Architecture and Interfaces </a> on 10-11 July 2009 in Grand Bend, Ontario (Canada), hosted by the University of Western Ontario. The goal of the Workshop is to help the Multimodal Interaction Working Group integrate handwriting modality components (Ink Modality Components) into the <a href="/TR/mmi-arch/">MMI Architecture</a> and clarify what should be added to the Multimodal specifications to enable applications to adapt to various modality combinations including Ink. Attendees will discuss requirements for changes, extensions and additions to Ink standards especially in Multimodal Applications developed based on the W3C's MMI Architecture as a means of making InkML more useful in current and emerging markets. Position papers are due 1 June 2009. Read about the <a href="/TR/InkML/"> Ink Markup Language (InkML)</a> and W3C's <a href="/2002/mmi/">Multimodal Interaction Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6657">
<h3>
<a href="#entry-6657">
XML Signature Properties Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-30T00:00:00-05:00">30 April 2009</span></p>
<div id="item63"><p> The <a href="/2008/xmlsec/">XML Security Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-xmldsig-properties-20090430/">XML Signature Properties</a>. This document outlines proposed standard XML Signature Properties syntax and processing rules and an associated namespace for these properties. The intent is these can be composed with any version of XML Signature using the XML SignatureProperties element. Learn more about the <a href="/Security/">Security Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6656">
<h3>
<a href="#entry-6656">
First Draft of Use cases and requirements for Media Fragments
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-30T00:00:00-05:00">30 April 2009</span></p>
<div id="item64"><p> The <a href="/2008/WebVideo/Fragments/">Media Fragments Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-media-frags-reqs-20090430/">Use cases and requirements for Media Fragments</a>. The aim of this specification is to enhance the Web infrastructure for supporting the addressing and retrieval of subparts of time-based Web resources. Example uses are the sharing of such fragment URIs with friends via email, the automated creation of such fragment URIs in a search engine interface, or the annotation of media fragments with RDF. This specification will help make video a first-class citizen of the World Wide Web. In addition to describing use cases for the Media Fragments 1.0 specification, this document discusses syntax and processing of media fragment URIs, and offers survey of technologies that address multimedia fragments. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6655">
<h3>
<a href="#entry-6655">
Last Call: Widgets 1.0: Digital Signatures; Widgets Requirements Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-30T00:00:00-05:00">30 April 2009</span></p>
<div id="item65"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published the Last Call Working Draft of <a href="/TR/2009/WD-widgets-digsig-20090430/">Widgets 1.0: Digital Signatures</a>. This document defines a profile of the XML Signature Syntax and Processing 1.1 specification to allow a widget package to be digitally signed. Widget authors and distributors can digitally sign widgets as a mechanism to ensure continuity of authorship and distributorship. A user agent can use the digital signature to verify the integrity of the widget package and to confirm the signing key(s). Comments are welcome through 01 June. The Working Group also published an updated Working Draft of <a href="/TR/2009/WD-widgets-reqs-20090430/">Widgets 1.0: Requirements</a>. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6654">
<h3>
<a href="#entry-6654">
Three First Drafts of SVG Modules Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-30T00:00:00-05:00">30 April 2009</span></p>
<div id="item66"><p> The <a href="/Graphics/SVG">Scalable Vector Graphics (SVG) Working Group</a> published three first public drafts today. SVG is a language for describing vector graphics, but it is typically rendered to a display or some form of print medium. The first new publication, <a href="/TR/2009/WD-SVGCompositing-20090430/">SVG Compositing</a>, adds support for raster and vector objects to be combined to produce eye catching effects via advanced alpha compositing, masks, and clipping paths. The other specifications are for SVG Referenced Parameter Variables: <a href="/TR/2009/WD-SVGParamPrimer-20090430/">Part 1: Primer</a> and <a href="/TR/2009/WD-SVGParam-20090430/">Part 2: Language</a>. The Referenced Parameter Variables specification provides a declarative way to incorporate parameter values into SVG content. Often, users may wish to create a single resource, and reuse it several times with specified variations, and this specification provides a means to do so without the use of script. Learn more about the <a href="/Graphics/">Graphics Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6658">
<h3>
<a href="#entry-6658">
Evaluation and Report Language (EARL) 1.0 Schema: Working Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-28T00:00:00-05:00">28 April 2009</span></p>
<div id="item62"><p> The <a href="/WAI/ER">Evaluation and Repair Tools Working Group (ERT WG)</a> today published an updated Working Draft of <a href="/TR/2009/WD-EARL10-Schema-20090428/">Evaluation and Report Language (EARL) 1.0 Schema</a>. This document provides the formal schema of EARL 1.0, a vocabulary to express test results. EARL is a format to exchange, combine, and analyze results from different evaluation tools. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009AprJun/0082.html">invitation to review EARL 1.0 Schema</a> and learn more about the <a href="http://www.w3.org/WAI/">Web Accessibility Initiative (WAI)</a>. </p></div>
</div>
<div class="entry" id="entry-6663">
<h3>
<a href="#entry-6663">
CSS 2.1 Candidate Recommendation Updated
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-23T00:00:00-05:00">23 April 2009</span></p>
<div id="item57"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a>
updated the Candidate Recommendation of <a href="/TR/2009/CR-CSS2-20090423/">Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</a>. 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). CSS 2.1 corrects a few errors in CSS2 (the most important being a new definition of the height/width of absolutely positioned elements, more influence for HTML's "style" attribute and a new calculation of the 'clip' property), and adds a few highly requested features which have already been widely implemented. But most of all CSS 2.1 represents a "snapshot" of CSS usage: it consists of all CSS features that are implemented interoperably.
This draft
incorporates <a href="/Style/css2-updates/CR-CSS21-20070719-errata.html">errata</a> resulting from implementation experience since the previous publication.
Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6662">
<h3>
<a href="#entry-6662">
W3C Invites Implementations of Media Queries
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-23T00:00:00-05:00">23 April 2009</span></p>
<div id="item58"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-css3-mediaqueries-20090423/">Media Queries</a>. HTML4 and CSS2 currently support media-dependent style sheets tailored for different media types. For example, a document may use sans-serif fonts when displayed on a screen and serif fonts when printed. ‘screen’ and ‘print’ are two media types that have been defined. Media Queries extend the functionality of media types by allowing presentations to be tailored more precisely to device characteristics. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6661">
<h3>
<a href="#entry-6661">
Widgets 1.0: APIs and Events Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-23T00:00:00-05:00">23 April 2009</span></p>
<div id="item59"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-widgets-apis-20090423/">Widgets 1.0: APIs and Events</a>. Widgets are full-fledged client-side applications that are authored using Web standards. Examples range from simple clocks, stock tickers, news streamers, 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 The APIs and Events specification defines a set of APIs and events for the Widgets 1.0 family of specifications. The specification allows application writers to access widget configuration information, monitor changes in the widget display, determine locale information, monitor updates to the widget, and more. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6660">
<h3>
<a href="#entry-6660">
Four Web Application API Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-23T00:00:00-05:00">23 April 2009</span></p>
<div id="item60"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published four First Public Working Drafts of specifications for APIs that enhance the open Web platform as a runtime environment for full-featured applications:</p> <ul><li><a href="http://www.w3.org/TR/2009/WD-webstorage-20090423/">Web Storage</a> provides APIs for persistent client-side data storage by Web applications.</li><li><a href="http://www.w3.org/TR/2009/WD-workers-20090423/">Web Workers</a> defines an API for enabling thread-like operations (using message-passing) in Web applications, so that certain application tasks can be run in parallel. </li><li><a href="http://www.w3.org/TR/2009/WD-websockets-20090423/">Web Sockets API</a> provides an API for full-duplex communication between a Web application and a remote host.</li><li><a href="http://www.w3.org/TR/2009/WD-eventsource-20090423/">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.</li></ul> <p>The Web Storage, Web Sockets API, and Server-Sent Events specifications were previously published as parts of the <a href="http://www.w3.org/TR/2009/WD-html5-20090423/">HTML 5</a> specification, but will now each become Recommendation-track deliverables within the Web Applications Working Group. Learn more about the <a href="/2006/rwc/Activity.html">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6659">
<h3>
<a href="#entry-6659">
HTML 5, Differences from HTML 4 Drafts Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-23T00:00:00-05:00">23 April 2009</span></p>
<div id="item61"><p> The <a href="/html/wg/">HTML Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-html5-20090423/">HTML 5</a>. HTML 5 adds to the language of the Web: features to help Web application authors, new elements based on research into prevailing authoring practices, and clear conformance criteria for user agents in an effort to improve interoperability.
This particular draft specifies how authors can embed SVG in non-XML text/html content, and how browsers and other UAs should handle such embedded SVG content.
See also the <a href="#item60">news</a> about moving some parts of HTML 5 to individual drafts. The <a href="/TR/2009/WD-html5-diff-20090423/#changes-2009-02-12">full list of changes</a> since the previous draft are listed in the updated companion document <a href="/TR/2009/WD-html5-diff-20090423/">HTML 5 differences from HTML 4</a>. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6664">
<h3>
<a href="#entry-6664">
WWW2009 Opens with Tim Berners-Lee Keynote "Twenty Years"
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-22T00:00:00-05:00">22 April 2009</span></p>
<div id="item56"><p class="newsImage"><a class="imageLink" href="/2009/04/w3c-track"><img alt="Tim Berners-Lee During WWW2009 Keynote" src="/2009/04/timbl-WWW2009.jpg" /></a> <a href="/People/Berners-Lee">Tim Berners-Lee</a>, W3C Director and inventor of the Web, delivered the opening keynote address at the <a href="http://www2009.org/">WWW2009 Conference</a> earlier today in Madrid, Spain; <a href="/2009/Talks/0422-www2009-tbl/">keynote slides</a> are available. During his talk, titled "Twenty Years," he touched on the future as well, including topics such as Web applications, open social networking and open linked data. Shortly before his keynote, Berners-Lee joined Dame Wendy Hall, Robert Caillau, Vint Cerf, Dale Dougherty and Mike Shaver on a panel to share thoughts on the twentieth anniversary of the Web. W3C encourages people to join the <a href="/2009/04/w3c-track.html">W3C track</a>, which this year features two "camps": the <a href="http://esw.w3.org/topic/MobileWidgetsCampW3CTrack">Mobile Widgets camps</a> on 23 April and the <a href="http://esw.w3.org/topic/SocialWebCampW3CTrack">Social Web Camp</a> on 24 April. Follow discussion on the #w3ctrack twitter feed.</p></div>
</div>
<div class="entry" id="entry-6667">
<h3>
<a href="#entry-6667">
Last Call: OWL 2
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-21T00:00:00-05:00">21 April 2009</span></p>
<div id="item53"><p> The <a href="/2007/OWL">OWL Working Group</a> has published new Working Drafts for OWL 2, a language for building Semantic Web ontologies. An ontology is a set of terms that a particular community finds useful for organizing data (e.g., for data about a book, useful terms include "title" and "author"). OWL 2 (a compatible extension of <a href="/TR/2004/REC-owl-features-20040210/">OWL 1</a>) consists of 13 documents (7 technical, 4 instructional, and 2 group Notes). For descriptions and links to all the documents, see the <a href="/TR/2009/WD-owl2-overview-20090421/#Documentation_Roadmap">OWL 2 Documentation Roadmap</a>. This is a "Last Call" for the technical materials and is an opportunity for the community to confirm that these documents satisfy requirements for an ontology language. This is a second Last Call for six of the documents, but because the <a href="/2007/OWL/wiki/Changes_Since_December_2008">changes since the first Last Call</a> are limited in scope, the review period lasts only 21 days. For an introduction to OWL 2, see the four instructional documents: an <a href="/TR/2009/WD-owl2-overview-20090421/">overview</a>, <a href="/TR/2009/WD-owl2-primer-20090421/">primer</a>, <a href="/TR/2009/WD-owl2-new-features-20090421/">list of new features</a>, and <a href="/TR/2009/WD-owl2-quick-reference-20090421/">quick reference</a>. Learn more about the <a href="/2001/sw">Semantic Web</a>. </p></div>
</div>
<div class="entry" id="entry-6666">
<h3>
<a href="#entry-6666">
Last Call: "rdf:text Primitive Datatype"
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-21T00:00:00-05:00">21 April 2009</span></p>
<div id="item54"><p> The <a href="/2007/OWL">OWL Working Group</a> and the <a href="/2005/rules">Rule Interchance Format (RIF) Working Group</a> have jointly published a Last Call Working Draft of <a href="/TR/2009/WD-rdf-text-20090421/">rdf:text: A Datatype for Internationalized Text</a>. This datatype, compatible with <a href="/TR/xmlschema11-2/">XML Schema 1.1 Datatypes</a>, is used within RIF and OWL 2 to provide support for text in various languages and scripts (identified by a <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt">BCP 47</a> tag such as "fr" for French). The document defines the datatype, discusses its relationship to <a href="/TR/rdf-concepts/#dfn-plain-literal">RDF Plain Literals</a> and the <a href="/TR/xmlschema11-2/#string">XML Schema string datatype</a>, and specifies functions (compatible with <a href="/TR/xpath-functions/">XPath</a>) for operating on rdf:text data values. It also discusses how to use this feature within RDF serializations. Learn more about the <a href="/2001/sw/">Semantic Web</a>.</p></div>
</div>
<div class="entry" id="entry-6665">
<h3>
<a href="#entry-6665">
Eight Proposed Recommendations for XSLT, XPath, XQuery Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-21T00:00:00-05:00">21 April 2009</span></p>
<div id="item55"><p> The <a href="/Style/XSL/">XSL</a> and <a href="/XML/Query/">XML Query</a> Working Groups have published eight Proposed Edited Recommendations for Second Editions of <a href="/TR/2009/PER-xslt20-20090421/">XSL Transformations (XSLT)</a>, <a href="/TR/2009/PER-xquery-20090421/">XQuery 1.0: An XML Query Language</a>, <a href="/TR/2009/PER-xqueryx-20090421/">XML Syntax for XQuery 1.0 (XQueryX)</a> and <a href="/TR/2009/PER-xpath20-20090421/">XML Path Language (XPath) 2.0</a>, together with their supporting documents, <a href="/TR/2009/PER-xpath-datamodel-20090421/">XQuery 1.0 and XPath 2.0 Data Model (XDM)</a>, <a href="/TR/2009/PER-xquery-semantics-20090421/">XQuery 1.0 and XPath 2.0 Formal Semantics</a>, <a href="/TR/2009/PER-xslt-xquery-serialization-20090421/">XSLT 2.0 and XQuery 1.0 Serialization</a> and <a href="/TR/2009/PER-xpath-functions-20090421/">XQuery 1.0 and XPath 2.0 Functions and Operators</a>. The second editions, if approved, will add the <code>generate-id</code> function from XSLT to XPath and XQuery, and will also incorporate the outstanding errata, including a number of clarifications that may affect implementations. Enhanced test suites are being augmented and will be published shortly. Review welcome by 31 May 2009. Learn more about <a href="/XML/">XML</a>.</p></div>
</div>
<div class="entry" id="entry-6668">
<h3>
<a href="#entry-6668">
First Draft: Usage Patterns For Client-Side URI parameters
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-16T00:00:00-05:00">16 April 2009</span></p>
<div id="item52"><p> The <a href="/2001/tag/">Technical Architecture Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-hash-in-uri-20090415/">Usage Patterns For Client-Side URI parameters</a>. The goal of this draft TAG finding is to initially collect the various usage scenarios that are leading to innovative uses of client-side URI parameters, along with the solutions that have been developed by the Web community. As highly interactive applications get built using Web parts (HTML, CSS and JavaScript component resources) that are themselves Web addressable, there is an increasing need for encoding interaction state as part of the URI. The Web is beginning to discover and codify design patterns based on fragment identifiers for many of these use cases. Learn more about the <a href="/2001/tag/">Technical Architecture Group</a>.</p></div>
</div>
<div class="entry" id="entry-6670">
<h3>
<a href="#entry-6670">
Note Published: W3C Personalization Roadmap: Ubiquitous Web Integration of AccessForAll 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-09T00:00:00-05:00">09 April 2009</span></p>
<div id="item50"><p> The <a href="/2007/uwa/">Ubiquitous Web Applications Working Group</a> has published the Group Note of <a href="/TR/2009/NOTE-UWA-personalization-roadmap-20090409/">W3C Personalization Roadmap: Ubiquitous Web Integration of AccessForAll 1.0</a>. This document describes an activity of integrating personalization with device context for the delivery of content materials and interface components that are customized to meet both individual personal needs and preferences and delivery context. It brings together the work of separate standards and specifications organizations and working groups, notably W3C Ubiquitous Web Applications working group, IMS Global Learning Consortium Accessibility Special Interest group, ISO/IEC JTC1 SC36 Information Technology for Learning, Education and Training: Human Diversity and Access For All working group and associated working groups in SC36. The document should be viewed as a roadmap for the work to be undertaken and includes description of the basis for the work, the organizational context, the likely technologies and a partially complete description of how the technologies fit together. Learn more about the <a href="/2007/uwa/">Ubiquitous Web Applications Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6669">
<h3>
<a href="#entry-6669">
W3C Germany and Austria Office Moves to Potsdam
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-09T00:00:00-05:00">09 April 2009</span></p>
<div id="item51"><p> After 12 years of successful work at <a href="http://www.iais.fraunhofer.de/">Fraunhofer</a> (or former GMD) the <a href="http://www.w3c.de/">W3C Germany and Austria Office</a> moves from Sankt Augustin (near Bonn) to Potsdam (near Berlin). The <a href="http://www.fh-potsdam.de/">University of Applied Sciences in Potsdam</a> (FHP) is the new host of the Office. A ceremonial launch is planned for September 2009. Felix Sasaki will be the new Office Manager at FHP. </p> <p>W3C would like to thank Fraunhofer and the W3C Germany and Austria Office staff, led by Thomas Tikwinski and Klaus Birkenbihl before him, for their contributions to W3C and the Web during the past 12 years. Learn more about the <a href="/Consortium/Offices/">W3C Offices</a>, regional W3C representatives that help promote the <a href="/Consortium/">W3C mission</a>.</p></div>
</div>
<div class="entry" id="entry-6672">
<h3>
<a href="#entry-6672">
Efficient XML Interchange Evaluation Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-07T00:00:00-05:00">07 April 2009</span></p>
<div id="item48"><p> The <a href="/XML/EXI/">Efficient XML Interchange Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-exi-evaluation-20090407/">Efficient XML Interchange Evaluation</a>. This document presents the anticipated benefits of the EXI format 1.0 compared to XML and gzipped XML. Additionally, tests for compactness include comparison to ASN.1 PER. The points of comparison are the requirements set by the EXI Working Group charter, based on the results of the XML Binary Characterization Working Group. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6671">
<h3>
<a href="#entry-6671">
W3C Invites Developers to Mobile Widgets, Social Web Camps During WWW2009
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-07T00:00:00-05:00">07 April 2009</span></p>
<div id="item49"><p> W3C invites people to attend the <a href="/2009/04/w3c-track">W3C Track at WWW2009</a>, in Madrid, Spain on 23-24 April 2009. Part of <a href="http://www2009.org/">WWW2009</a>, the first day of the track is a Mobile Widgets Camp and the second a Social Web Camp. Conference participants and the local developer community are invited to submit topics of discussion in advance, via the <a href="http://esw.w3.org/topic/W3CTrack@WWW09">W3C Track wikis</a>. In addition to the W3C Track, Tim Berners-Lee, W3C Director and inventor of the Web, will deliver the WWW2009 opening keynote titled "Twenty Years: Looking Forward, Looking Back". Read the <a href="/2009/04/w3ctrack-pressrelease.html">press release</a>. </p></div>
</div>
<div class="entry" id="entry-6673">
<h3>
<a href="#entry-6673">
W3C Launches Social Web Incubator Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-06T00:00:00-05:00">06 April 2009</span></p>
<div id="item47"><p> W3C is pleased to announce the creation of the <a href="/2005/Incubator/socialweb/">Social Web Incubator Group</a>. The group's mission is to understand the systems and technologies that permit the description and identification of people, groups, organizations, and user-generated content in extensible and privacy-respecting ways. The group will be co-chaired by Dan Appelquist (Vodafone), Dan Brickley (Vrije Universiteit), Harry Halpin (W3C Fellow from the University of Edinburgh with support from Eduserv). The following W3C Members have sponsored the <a href="/2005/Incubator/socialweb/charter">charter</a> for this group: ASemantics, Boeing, Cisco, DERI Galway at the National University of Ireland, Garlik, Institut National de Recherche en Informatique et en Automatique (INRIA), Institute of Informatics and Telecommunications (IIT-NCSR), NICTA, Rochester Institute of Technology, SUN Microsystems, Talis, Telecom Italia, University of Bristol, University of Edinburgh, Universidad Politécnica de Madrid, University of Versailles, Vrije Universiteit, and Vodafone. 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.</p></div>
</div>
<div class="entry" id="entry-6674">
<h3>
<a href="#entry-6674">
Five POWDER Documents published; Three Last Call Drafts
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-04T00:00:00-05:00">04 April 2009</span></p>
<div id="item46"><p> The <a href="/2007/powder/">Protocol for Web Description Resources (POWDER) Working Group</a> published five Working Drafts today. The purpose of the Protocol for Web Description Resources (POWDER) is to provide a means for individuals or organizations to describe a group of resources through the publication of machine-readable metadata. The primary change in these publications relates to the IRI canonicalization sections of the Grouping of Resources document (sections 2.1.3 - 2.1.5). The group published these documents: </p> <ul><li><a href="/TR/2009/WD-powder-dr-20090403/">Description Resources</a> (Last Call); which details the creation and lifecycle of Description Resources (DRs), which encapsulate metadata</li><li><a href="/TR/2009/WD-powder-grouping-20090403/">Grouping of Resources</a> (Last Call); which describes how sets of IRIs can be defined such that descriptions or other data can be applied to the resources obtained by dereferencing IRIs that are elements of the set.</li><li><a href="/TR/2009/WD-powder-formal-20090403/">Formal Semantics</a> (Last Call); which describes how the relatively simple operational format of a POWDER document can be transformed for processing by Semantic Web tools</li><li><a href="/TR/2009/WD-powder-primer-20090403/">Primer</a> </li><li><a href="/TR/2009/WD-powder-test-20090403/">Test Suite</a></li></ul> <p>Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6676">
<h3>
<a href="#entry-6676">
CSS Template Layout Module
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-02T00:00:00-05:00">02 April 2009</span></p>
<div id="item44"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published the Working Draft of <a href="/TR/2009/WD-css3-layout-20090402/">CSS Template Layout Module</a>. This specification is part of level 3 of CSS (“CSS3”) and contains 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, in particular when the desired visual order is different from the order of the elements in the source document. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6675">
<h3>
<a href="#entry-6675">
W3C Talks in April
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-02T00:00:00-05:00">02 April 2009</span></p>
<div id="item45"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">1 April, Maputo, Mozambique: </span><span class="talktitle">A Web that Empowers All People</span><span class="talkdesc">Steve Bratt gives a keynote at <a href="http://www.w3.org/2008/10/MW4D_WS/agenda.html">Africa Perspective on the Role of Mobile Technologies in Fostering Social Development</a>. </span></li><li><span class="talkstart">17 April, Washington, DC, USA: </span><span class="talktitle">Interoperability and Web Applications</span><span class="talkdesc">Kevin Novak presents at <a href="http://events.oasis-open.org/home/egov-dc-workshop/2009/">eGov Washington Workshop: Putting Open Standards to Work for Transparency, Security and Interoperability</a>. </span></li><li><span class="talkstart">21 April, Madrid, Spain: </span><span class="talktitle">Web Accessibility and Older Users - We Are There!</span><span class="talkdesc">Andrew Arch gives a keynote at <a href="http://www.w4a.info/2009/">W4A2009 - International Cross-Disciplinary Conference on Web Accessibility</a>. </span></li><li><span class="talkstart">23 April, Madrid, Spain: </span><span class="talktitle">Panel on Multilingual Web Sites</span><span class="talkdesc">Richard Ishida participates in a panel at <a href="http://www2009.org/">18th World Wide Web Conference (WWW2009)</a>. </span></li><li><span class="talkstart">23 April, Lisbon, Portugal: </span><span class="talktitle">Improving Society through Better Use of Web Standards</span><span class="talkdesc">Daniel Dardailler participates in a panel at <a href="http://www.itu.int/osg/csd/wtpf/wtpf2009/">ITU World Telecommunication Policy Forum</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6678">
<h3>
<a href="#entry-6678">
W3C Opens Maputo Workshop on Fostering Development through Mobile Technologies
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-01T00:00:00-05:00">01 April 2009</span></p>
<div id="item42"><p class="newsImage"><a class="imageLink" href="/2008/10/MW4D_WS"><img alt="Poster of Workshop" src="/2009/04/poster-maputo" /></a> Today is the first day of the W3C Workshop on the <a href="/2008/10/MW4D_WS/">Africa Perspective on the Role of Mobile Technologies in Fostering Social and Economic Development</a>, in Maputo, Mozambique. The <a href="/2008/10/MW4D_WS/agenda">agenda</a> of the Workshop focuses on the challenges of using mobile phones and Web technologies to deliver services to underprivileged populations of developing countries. International experts, local actors, researchers, and NGOs are participating in the meeting, hosted by the Ministry of Science and Technology of the Government of Mozambique and organized as part of the <a href="http://www.digitalworldforum.eu/">Digital World Forum project</a> (European Union's FP7). The <a href="/Mobile/">W3C Mobile Web Initiative (MWI)</a> thanks the Workshop sponsors for their support.</p></div>
</div>
<div class="entry" id="entry-6677">
<h3>
<a href="#entry-6677">
eGovernment Stakeholder Meeting Summary Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-04-01T00:00:00-05:00">01 April 2009</span></p>
<div id="item43"><p> The W3C's <a href="/2007/eGov/IG/">eGovernment Interest Group</a> has published a <a href="/2009/03/eGov_F2F2_report">Meeting Summary</a> from its 12-13 March <a href="/2007/eGov/IG/wiki/F2F2">eGovernment stakeholder meeting</a> in Washington, D.C. The purpose of the meeting was to obtain feedback on the First Public Working Draft of the group's <a href="/TR/2009/WD-egov-improving-20090310/">Improving Access to Government through Better Use of the Web</a>, published on 1 March 2009. Featured speakers at the meeting included Beth Noveck, US Office of Science and Technology Policy, Ellen Miller, Sunlight Foundation, and Steve Ressler, GovLoop, as well as meeting co-chairs Kevin Novak, American Institute of Architects, John Sheridan, UK National Archives, and W3C Team contact Jose Alonso. Key subject areas addressed by participants were: Openness and Transparency in Government; Social Networking; Data Interoperability and Semantic Web in Government; and Multi-Channel Deliver and Information Access via Mobile Platforms. The term "eGovernment" refers to the use of the Web or other information technologies by governing bodies (local, state, federal, multi-national) to interact with their citizenry, between departments and divisions, and between governments themselves. Learn more about the <a href="/2007/eGov/">W3C's eGovernment Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6679">
<h3>
<a href="#entry-6679">
Widgets 1.0: Digital Signatures Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-31T00:00:00-05:00">31 March 2009</span></p>
<div id="item41"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-widgets-digsig-20090331/">Widgets 1.0: Digital Signatures</a>. This document defines a profile of the XML Signature Syntax and Processing 1.1 specification to allow a widget package to be digitally signed. Widget authors and distributors can digitally sign widgets as a trust and quality assurance mechanism. Prior to instantiation, a user agent can use the digital signature to verify the integrity of the widget package and perform source authentication. This document specifies conformance requirements on both widget packages and user agents. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6681">
<h3>
<a href="#entry-6681">
OWL 2 Web Ontology Language Document Overview
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-27T00:00:00-05:00">27 March 2009</span></p>
<div id="item39"><p> The <a href="/2007/OWL/">OWL Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-owl2-overview-20090327/">OWL 2 Web Ontology Language Document Overview</a>. This document, part 1 of 13 in the OWL 2 document set, serves as an introduction to OWL 2 and the various other OWL 2 documents. It describes the various syntaxes for OWL 2, the different kinds of semantics, the defined profiles (sub-languages), and the differences between OWL 1 and OWL 2. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6680">
<h3>
<a href="#entry-6680">
Patent Advisory Group Launched for "Widgets 1.0: Updates"
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-27T00:00:00-05:00">27 March 2009</span></p>
<div id="item40"><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 <a href="/2004/01/pp-impl/p66">disclosure</a> related to the <a href="/TR/widgets-updates/">Widgets 1.0: Updates</a> specification; see the <a href="/2009/03/widgets-pag-charter">PAG charter</a>. The <a href="/2008/webapps/">WebApps 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>. Learn more about <a href="/Consortium/Patent-Policy-20040205/#sec-Exception">Patent Advisory Groups</a>.</p></div>
</div>
<div class="entry" id="entry-6683">
<h3>
<a href="#entry-6683">
W3C Welcomes Feedback on Redesigned Web Site
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-20T00:00:00-05:00">20 March 2009</span></p>
<div id="item37"><p class="newsImage"><a class="imageLink" href="http://dotsub.com/view/41e149bd-8b98-4103-a9f8-c96787497211"><img alt="screencast thumbnail" src="http://beta.w3.org/Help/screencast-thumb" /></a> W3C invites public feedback on a beta release of a <a href="http://beta.w3.org/">W3C site redesign</a>. The new site features a harmonized design, simplified information architecture, new style for technical reports, and new content, including calendars and aggregated blogs. W3C welcomes feedback on the usability of the site, links to useful information, contributions of content to new pages, and bug fixes. Take a 10-minute <a href="http://dotsub.com/view/41e149bd-8b98-4103-a9f8-c96787497211">screencast tour</a> of the site, learn more <a href="http://beta.w3.org/Help/about-redesign">about the redesign</a>, and find out <a href="http://beta.w3.org/Help/about-redesign#howtohelp">how you can help</a>. </p></div>
</div>
<div class="entry" id="entry-6682">
<h3>
<a href="#entry-6682">
Exploring Richer Web Content Authoring with CSS and SVG: Five First Public Drafts
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-20T00:00:00-05:00">20 March 2009</span></p>
<div id="item38"><p>
The <a href="/Style/CSS/members">CSS</a> and
<a href="/Graphics/SVG/">SVG Working Groups</a> delivered today
five new
specifications for public review, aimed at enabling more compelling
content creation with open Web technologies. The five drafts are:
<a href="/TR/2009/WD-SVG-Transforms-20090320/">SVG Transforms 1.0, Part 2: Language</a>, <a href="/TR/2009/WD-css3-2d-transforms-20090320/">CSS 2D Transforms Module Level 3</a>, <a href="/TR/2009/WD-css3-3d-transforms-20090320/">CSS 3D Transforms Module Level 3</a>, <a href="/TR/2009/WD-css3-animations-20090320/">CSS Animations Module Level 3</a>, and <a href="/TR/2009/WD-css3-transitions-20090320/">CSS Transitions Module Level 3</a>.
SVG Transforms allows two-dimensional objects to be transformed using three-dimensional transformations.
CSS 2D Transforms allows elements rendered by CSS to be transformed in two-dimensional space. CSS 3D Transforms extends CSS Transforms to allow elements rendered by CSS to be transformed in three-dimensional space. CSS Animations allow an author to modify CSS property values over time. CSS Transitions allows property changes in CSS values to occur smoothly over a specified duration.
The groups are
working closely together to make implementing and authoring these
features easy and consistent across Web languages.
Learn more about the <a href="/Style/">Style Activity</a> and <a href="/Graphics/Activity">Graphics Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6684">
<h3>
<a href="#entry-6684">
Cross-Origin Resource Sharing Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-18T00:00:00-05:00">18 March 2009</span></p>
<div id="item36"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published the Working Draft of <a href="/TR/2009/WD-cors-20090317/">Cross-Origin Resource Sharing</a>. This document defines a mechanism to enable client-side cross-origin requests. Specifications that want to enable cross-origin requests in an API they define can use the algorithms defined by this specification. If such an API is used on http://example.org resources, a resource on http://hello-world.example can opt in using the mechanism described by this specification (e.g., specifying Access-Control-Allow-Origin: http://example.org as response header), which would allow that resource to be fetched cross-origin from http://example.org. Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6686">
<h3>
<a href="#entry-6686">
Five First Public Drafts of Web Services Specifications
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-17T00:00:00-05:00">17 March 2009</span></p>
<div id="item34"><p> The <a href="/2002/ws/ra/">Web Services Resource Access Working Group</a> published five First Public Working Drafts: <a href="/TR/2009/WD-ws-enumeration-20090317/">Web Services Enumeration (WS-Enumeration)</a>, <a href="/TR/2009/WD-ws-eventing-20090317/">Web Services Eventing (WS-Eventing)</a>, <a href="/TR/2009/WD-ws-resource-transfer-20090317/">Web Services Resource Transfer (WS-RT)</a>, <a href="/TR/2009/WD-ws-transfer-20090317">Web Services Transfer (WS-Transfer)</a>, and <a href="/TR/2009/WD-ws-metadata-exchange-20090317 ">Web Services Metadata Exchange (WS-MetadataExchange)</a>. The first describes a general SOAP-based protocol for enumerating a sequence of XML elements that is suitable for traversing logs, message queues, or other linear information models. The second describes a protocol that allows Web services to subscribe to or accept subscriptions for event notification. The third defines extensions to WS-Transfer that deal primarily with fragment-based access to resources to satisfy the common requirements of WS-ResourceFramework and WS-Management. The fourth describes a general SOAP-based protocol for accessing XML representations of Web service-based resources. The fifth
defines how metadata associated with a Web service endpoint can be represented as resources, how metadata can be embedded in endpoint references, and how metadata could be retrieved from a Web service endpoint.
Learn more about the <a href="/2002/ws/">Web Services Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6685">
<h3>
<a href="#entry-6685">
W3C Invites Implementations of SKOS (Simple Knowledge Organization System) Reference; Primer Also Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-17T00:00:00-05:00">17 March 2009</span></p>
<div id="item35"><p> The <a href="/2006/07/SWD/">Semantic Web Deployment Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-skos-reference-20090317/">SKOS Simple Knowledge Organization System Reference</a>. This document defines the Simple Knowledge Organization System (SKOS), a common data model for sharing and linking knowledge organization systems via the Web. SKOS—Simple Knowledge Organization System—provides a model for expressing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, folksonomies, and other similar types of controlled vocabulary. As an application of the Resource Description Framework (RDF), SKOS allows concepts to be composed and published on the World Wide Web, linked with data on the Web and integrated into other concept schemes. The Working Group also published today a Working Draft of <a href="/TR/2009/WD-skos-primer-20090317/">SKOS Simple Knowledge Organization System Primer</a>. Learn more about the <a href="/2001/sw/">Semantic Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6687">
<h3>
<a href="#entry-6687">
Video of Tim Berners-Lee's TED Talk Available
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-13T00:00:00-05:00">13 March 2009</span></p>
<div id="item33"><p> In February, W3C Director Tim Berners-Lee spoke at <a href="http://conferences.ted.com/">TED 2009</a> about the <a href="/2001/sw/">Semantic Web</a> and linked data (see <a href="/2009/Talks/0204-ted-tbl/">slides</a>). The <a href="http://www.ted.com/index.php/talks/tim_berners_lee_on_the_next_web.html">video of his TED talk</a> is now available.</p></div>
</div>
<div class="entry" id="entry-6688">
<h3>
<a href="#entry-6688">
User Agent Accessibility Guidelines (UAAG) 2.0: Updated Working Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-11T00:00:00-05:00">11 March 2009</span></p>
<div id="item32"><p> The <a href="/WAI/UA/">User Agent Accessibility Guidelines Working Group</a> has published an updated Working Draft of the <a href="/TR/2008/WD-UAAG20-20080312/">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. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009JanMar/0057.html">invitation to review the UAAG 2.0 Working Draft</a> and about the <a href="/WAI/">Web Accessibility Initiative</a>. </p></div>
</div>
<div class="entry" id="entry-6691">
<h3>
<a href="#entry-6691">
Last Call: Selectors Level 3
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-10T00:00:00-05:00">10 March 2009</span></p>
<div id="item29"><p> The <a href="/Style/CSS/members">Cascading Style Sheets (CSS) Working Group</a> has published the Last Call Working Draft of <a href="/TR/2009/WD-css3-selectors-20090310/">Selectors Level 3</a>. Selectors are patterns that match against elements in a tree, and as such form one of several technologies that can be used to select nodes in an XML document. Selectors have been optimized for use with HTML and XML, and are designed to be usable in performance-critical code. Comments are welcome through 07 April. Learn more about the <a href="/Style/">Style Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6690">
<h3>
<a href="#entry-6690">
Pointer Methods in RDF: First Draft Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-10T00:00:00-05:00">10 March 2009</span></p>
<div id="item30"><p> The <a href="/WAI/ER/">Evaluation and Repair Tools Working Group</a> today published <a href="/TR/Pointers-in-RDF">Pointer Methods in RDF</a> as a First Public Working Draft. This document provides a framework for representing pointers to identify locations in content or portions of content, using Resource Description Framework (RDF). This document is part of <a href="/WAI/intro/earl">Evaluation and Report Language (EARL)</a> and can be used to extend the <a href="/TR/EARL10-Schema/">EARL 1.0 Schema</a>. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009JanMar/0053.html">invitation to review Pointer Methods in RDF</a> and learn more about the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p></div>
</div>
<div class="entry" id="entry-6689">
<h3>
<a href="#entry-6689">
Improving Access to Government through Better Use of the Web: First Public Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-10T00:00:00-05:00">10 March 2009</span></p>
<div id="item31"><p> The <a href="/2007/eGov/IG/">eGovernment Interest Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-egov-improving-20090310/">Improving Access to Government through Better Use of the Web</a>. The term "eGovernment" refers to the use of the Web or other information technologies by governing bodies (local, state, federal, multi-national) to interact with their citizenry, between departments and divisions, and between governments themselves. Recognizing that governments throughout the World need assistance and guidance in achieving the promises of electronic government through technology and the Web, this document seeks to define and call forth, but not yet solve, the variety of issues and challenges faced by governments. The use cases, documentation, and explanation are focused on the available or needed technical standards but additionally provide context to note and describe the additional challenges and issues which exist before success can be realized. This document has been published in time for W3C's <a href="/2007/eGov/IG/wiki/F2F2">eGovernment stakeholder meeting in Washington, D.C.</a>. Learn more about the <a href="/2007/eGov/">eGovernment Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6692">
<h3>
<a href="#entry-6692">
W3C Launches Semantic Sensor Network Incubator Group
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-04T00:00:00-05:00">04 March 2009</span></p>
<div id="item28"><p> W3C is pleased to announce the creation of the <a href="/2005/Incubator/ssn/">Semantic Sensor Network Incubator Group</a>, sponsored by W3C Members CSIRO, Wright State University, and OGC. The group's mission is to begin the formal process of producing ontologies that define the capabilities of sensors and sensor networks, and to develop semantic annotations of a key language used by services based sensor networks. 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 <a href="/TR/">W3C standards track</a>.</p></div>
</div>
<div class="entry" id="entry-6693">
<h3>
<a href="#entry-6693">
Authorized Translations of WCAG 2.0 Target International Deployment
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-03T00:00:00-05:00">03 March 2009</span></p>
<div id="item27"><p> The W3C Web Accessibility Initiative (WAI) announced <a href="/WAI/WCAG20/translations">Translations of Web Content Accessibility Guidelines (WCAG) 2.0</a>, including draft Authorized W3C Translations. W3C's <a href="/2005/02/TranslationPolicy">Policy for Authorized W3C Translations</a> provides a process for stakeholder review and designation as an official translation. Learn more about <a href="/WAI/WCAG20/translations">WCAG 2.0 Translations in-progress</a>, <a href="/WAI/intro/wcag">WCAG 2.0</a>, and the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p></div>
</div>
<div class="entry" id="entry-6694">
<h3>
<a href="#entry-6694">
W3C Talks in March
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-03-01T00:00:00-05:00">01 March 2009</span></p>
<div id="item26"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">2 March, San Diego, USA: </span><span class="talktitle">Frontiers in Interaction: The Power of Multimodal Standards</span><span class="talkdesc">Deborah Dahl presents at <a href="http://www.w3.org/2004/08/TalkFiles/2009/www.voicesearchconference.com">Voice Search 2009</a>. </span></li><li><span class="talkstart">6 March, Utrecht, The Netherlands: </span><span class="talktitle">XForms and Declarative Applications</span><span class="talkdesc">Steven Pemberton presents at <a href="https://wiki.mozilla.org/MozCamp/Utrecht">MozCamp</a>. </span></li><li><span class="talkstart">14 March, Austin, TX, USA: </span><span class="talktitle">Making Web Widgets Accessible: Tools and Techniques</span><span class="talkdesc">Michael Cooper participates in a panel at <a href="http://sxsw.com/interactive/">South by Southwest Conference</a>. </span></li><li><span class="talkstart">19 March, Los Angeles, CA, USA: </span><span class="talktitle">The New WCAG 2: Web Accessibility Q&A with the Editors</span><span class="talkdesc">Shawn Henry, Michael Cooper, Loretta Guarino Reid participate in a panel at <a href="http://www.csunconference.org/">CSUN International Technology and Persons with Disabilities Conference</a>. </span></li><li><span class="talkstart">19 March, Los Angeles, CA, USA: </span><span class="talktitle">Towards a More Accessible Browser</span><span class="talkdesc">Jeanne Spellman, Jim Allan present at <a href="http://csunconference.org/index.cfm?EID=80000144&p=88">CSUN Center on Disabilities 24th Annual International Technology and Persons with Disabilities Conference</a>. </span></li><li><span class="talkstart">21 March, Prague, Czech Republic: </span><span class="talktitle">XML Processing and Choreography</span><span class="talkdesc">Mohamed Zergaoui presents at <a href="http://www.xmlprague.cz">XML Prague 2009</a>. </span></li><li><span class="talkstart">22 March, Prague, Czech Republic: </span><span class="talktitle">Exploring XProc</span><span class="talkdesc">Norman Walsh presents at <a href="http://www.xmlprague.cz/2009/">XML Prague 2009</a>. </span></li><li><span class="talkstart">27 March, Frankfurt, Germany: </span><span class="talktitle">Mobile Access – Device-independent or Accessible</span><span class="talkdesc">Dominique Hazaël-Massieux participates in a panel at <a href="http://eafra.eu/2009/programme/">European Accessibility Forum</a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6697">
<h3>
<a href="#entry-6697">
Last Call: Web Security Context: User Interface Guidelines
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-26T00:00:00-05:00">26 February 2009</span></p>
<div id="item23"><p> The <a href="/2006/WSC/">Web Security Context Working Group</a> has published the second Last Call Working Draft of <a href="/TR/2009/WD-wsc-ui-20090226/">Web Security Context: User Interface Guidelines</a>. This specification deals with the trust decisions that users must make online, and with ways to support them in making safe and informed decisions where possible. In order to achieve that goal, this specification includes recommendations on the presentation of identity information by Web user agents. It also includes recommendations for handling errors in security protocols. This second Last Call Working Draft incorporates feedback gathered during the first Last Call period, both from the public and from implementers participating in the Working Group. Comments are welcome through 19 March 2009. Learn more about the <a href="/Security/">Security Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6696">
<h3>
<a href="#entry-6696">
Web Forms 2.0 Draft Superseded by HTML 5
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-26T00:00:00-05:00">26 February 2009</span></p>
<div id="item24"><p> The <a href="/html/wg">HTML Working Group</a> has announced that <a href="/TR/web-forms-2/">Web Forms 2.0</a> has been superseded by material published in drafts of <a href="/TR/html5/">HTML 5</a>. Learn more about <a href="/html/">HTML</a>. </p></div>
</div>
<div class="entry" id="entry-6695">
<h3>
<a href="#entry-6695">
XML Security Working Group Releases Eight Working Drafts
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-26T00:00:00-05:00">26 February 2009</span></p>
<div id="item25"><p> The <a href="/2008/xmlsec">XML Security Working Group</a> has published a set of eight Working Drafts. The <a href="/TR/2009/WD-xmldsig-core1-20090226/">XML Signature 1.1</a> and <a href="/TR/2009/WD-xmlenc-core1-20090226/">XML Encryption 1.1</a> First Public Working Drafts make changes to the default sets of cryptographic algorithms in both specifications. <a href="/TR/2009/WD-xmlsec-reqs-20090226/">XML Security Use Cases and Requirements</a> and <a href="/TR/2009/WD-xmldsig-simplify-20090226/">XML Signature Transform Simplification: Requirements and Design</a> are documents that we expect to help guide the group's work on a future version of the XML Security specifications that might make more radical changes than the 1.1 series of these specifications. The Working Group would like to receive early feedback on these four drafts.</p>
<p>Additionally, the <a href="/TR/2009/WD-xmlsec- derivedkeys-20090226/">XML Security Derived Keys</a> specification
introduces mark-up for key derivation, for use with both XML Signature
and XML Encryption. <a href="/TR/2009/WD-xmldsig- properties-20090226/">XML Signature Properties</a> defines commonly
used signature properties. <a href="/TR/2009/WD-xmlsec- algorithms-20090226/">XML Security Algorithms</a> is a cross-reference
for the algorithms and their identifiers used with the XML security specifications, bringing in one place information located in a number of documents.
<a href="/TR/2009/WD-xmldsig-bestpractices-20090226/">XML
Signature Best Practices</a> is a revised Working Draft for Best
Practices in using the XML Signature specification.</p></div>
</div>
<div class="entry" id="entry-6698">
<h3>
<a href="#entry-6698">
W3C Open Meeting: Realizing Government Transparency and Openness
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-25T00:00:00-05:00">25 February 2009</span></p>
<div id="item22"><p> On 12-13 March, W3C's <a href="/2007/eGov/IG/wiki/Main_Page">eGovernment Interest Group</a> will hold a special <a href="http://www.w3.org/2007/eGov/IG/wiki/F2F2">stakeholder meeting</a> in Washington, DC to address a number of issues of high interest to government policy makers, elected officials, and managers of government information technology. Participants will document progressive solutions for electronic government and develop a road map for developing Web standards related to topics such as participation and citizen engagement, open government data, identification and authentication, and long-term data management. The meeting is open to the public, but advance registration is required and seating is limited. W3C thanks the <a href="http://www.aia.org/">American Institute of Architects</a> for hosting this meeting. Read the <a href="/2009/02/eGov-mediaadvisory.html.en">media advisory</a> and learn more about the <a href="/2007/eGov/">W3C eGovernment Activity</a>. </p></div>
</div>
<div class="entry" id="entry-6699">
<h3>
<a href="#entry-6699">
Last Call: Accessible Rich Internet Applications (WAI-ARIA); Best Practices and Implementation Guide Drafts Also Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-24T00:00:00-05:00">24 February 2009</span></p>
<div id="item21"><p> The <a href="/WAI/PF/">Protocols and Formats Working Group</a> published the Last Call Working Draft of <a href="/TR/wai-aria">Accessible Rich Internet Applications (WAI-ARIA)</a>. WAI-ARIA defines a way to make Web content and Web applications more accessible to people with disabilities. It especially helps with dynamic content and advanced user interface controls developed with Ajax, HTML, JavaScript, and related technologies.</p> <p>The Working Group also published a First Public Working Draft of the <a href="/TR/2009/WD-wai-aria-implementation-20090224/">WAI-ARIA User Agent Implementation Guide</a> that provides guidance on how browsers and other user agents should expose WAI-ARIA features to platform accessibility <acronym title="application programming interfaces">APIs</acronym>. The updated Working Draft of <a href="/TR/2009/WD-wai-aria-practices-20090224/">WAI-ARIA Best Practices</a> that was published today describes how Web content developers can develop accessible rich Web applications using WAI-ARIA. These WAI-ARIA documents are described in the <a href="/WAI/intro/aria">WAI-ARIA Overview</a>. Read <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009JanMar/0037.html">details in the review announcement</a>, and about the <a href="/WAI/">Web Accessibility Initiative (WAI)</a>.</p></div>
</div>
<div class="entry" id="entry-6700">
<h3>
<a href="#entry-6700">
Authoring Tool Accessibility Guidelines (ATAG) 2.0: Updated Working Draft
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-17T00:00:00-05:00">17 February 2009</span></p>
<div id="item20"><p> The <a href="/WAI/AU/">Authoring Tool Accessibility Guidelines Working Group</a> has published an updated Working Draft of <a href="/TR/2009/WD-ATAG20-20090217/"> Authoring Tool Accessibility Guidelines (ATAG) 2.0</a> that is synchronized with the finalized <a href="/TR/WCAG20/">WCAG 2.0</a>. ATAG defines how authoring tools should help Web developers produce Web content that is accessible and conforms to Web Content Accessibility Guidelines (WCAG) 2.0. ATAG also defines how to make authoring tools accessible so that people with disabilities can use them. Read the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2009JanMar/0033.html">invitation to review the ATAG 2.0 Working Draft</a> and about the <a href="/WAI/">Web Accessibility Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6701">
<h3>
<a href="#entry-6701">
Call for Review: Service Modeling Language, Version 1.1 Proposed Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-13T00:00:00-05:00">13 February 2009</span></p>
<div id="item19"><p> The <a href="/XML/SML/">Service Modeling Language Working Group</a> has published the Proposed Recommendations of <a href="/TR/2009/PR-sml-20090212/">Service Modeling Language, Version 1.1</a> and <a href="/TR/2009/PR-sml-if-20090212/">Service Modeling Language Interchange Format Version 1.1</a>. SML extends the coherence-checking mechanisms of W3C XML Schema from individual documents to collections of documents. SML-IF extends the utility of SML by providing mechanisms for gathering together a set of documents whose coherence is guaranteed by an SML schema, which itself is part of the resulting package. Comments are welcome through 12 March. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6702">
<h3>
<a href="#entry-6702">
Drafts of HTML 5, Differences from HTML 4 Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-12T00:00:00-05:00">12 February 2009</span></p>
<div id="item18"><p> The <a href="/html/wg/">HTML Working Group</a> has published Working Drafts of <a href="/TR/2009/WD-html5-20090212/">HTML 5</a> and <a href="/TR/2009/WD-html5-diff-20090212/">HTML 5 differences from HTML 4</a>. In this version of HTML5, new features are introduced to help Web application authors, new elements are introduced based on research into prevailing authoring practices, and special attention has been given to defining clear conformance criteria for user agents in an effort to improve interoperability. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6705">
<h3>
<a href="#entry-6705">
W3C Multimodal Standard Brings Web to More People, More Ways
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-10T00:00:00-05:00">10 February 2009</span></p>
<div id="item15"><p> As part of ensuring the Web is available to all people on any device, W3C published a new standard today to enable interactions beyond the familiar keyboard and mouse. EMMA, the <a href="/TR/2009/REC-emma-20090210/">EMMA: Extensible MultiModal Annotation Markup Language</a>, promotes the development of rich Web applications that can be adapted to more input modes (such as handwriting, natural language, and gestures) and output modes (such as synthesized speech) at lower cost. The document, published by the <a href="/2002/mmi/">Multimodal Interaction Working Group</a>, is part of a set of specifications for multimodal systems, and provides details of an XML markup language for containing and annotating the interpretation of user input. Read the <a href="/2009/02/emma-pressrelease.html.en">press release</a> and <a href="/2009/02/emma-testimonial">testimonials</a>, and learn more about the <a href="/2002/mmi/">Multimodal Interaction Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6704">
<h3>
<a href="#entry-6704">
Widgets 1.0: APIs and Events
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-10T00:00:00-05:00">10 February 2009</span></p>
<div id="item16"><p> The <a href="/2008/webapps/">Web Applications Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-widgets-apis-20090205/">Widgets 1.0: APIs and Events</a>. This specification defines a set of APIs and events for the Widgets 1.0 Family of Specifications that enable baseline functionality for widgets. The APIs and Events defined by this specification defines, amongst other things, the means to:</p> <ul><li>access the metadata declared in a widget's configuration document,</li><li>receive events related to changes in the view state of a widget,</li><li>determine the locale under which a widget is currently running, </li><li> be notified of events relating to the widget being updated,</li><li>invoke a widget to open a URL on the system's default browser, </li><li>requests the user's attention in a device independent manner, </li><li>and check if any additional APIs requested via the configuration document's feature element have successfully loaded.</li></ul> <p>Learn more about the <a href="/2006/rwc/">Rich Web Client Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6703">
<h3>
<a href="#entry-6703">
Incubator Group Report: RDB2RDF
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-10T00:00:00-05:00">10 February 2009</span></p>
<div id="item17"><p> The <a href="/2005/Incubator/rdb2rdf/">RDB2RDF Incubator Group</a> published their <a href="/2005/Incubator/rdb2rdf/XGR-rdb2rdf-20090126/">final report</a>. In the report, the group recommends that the W3C initiate a WG to standardize a language for mapping Relational Database schemas into RDF and OWL. 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>
<div class="entry" id="entry-6577">
<h3>
<a href="#entry-6577">
Incubator Group Report: Emergency Information Interoperability Framework (EIIF)
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-10T00:00:00-05:00">10 February 2009</span></p>
<div id="item143"><p> The <a href="/2005/Incubator/eiif/">Emergency Information Interoperability Framework (EIIF) Incubator Group</a> published their <a href="/2005/Incubator/eiif/XGR-EIIF-20090806/">final report</a>. The group also published <a href="/2005/Incubator/eiif/XGR-framework-20090806/">Emergency Information Interoperability Frameworks</a>, which describes some critical requirements for an interoperability information framework for emergency management, and provides candidate components of an ontology that can support interoperability for some common use cases. The approach discussed outlines how one can achieve information interoperability across the stakeholder functions within the area of emergency management. The group recommends that W3C initiate an Interest Group to continue the work of the Incubator Group and expand the outreach to standards development through partnerships with professional communities and interoperability workshops. 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>
<div class="entry" id="entry-6706">
<h3>
<a href="#entry-6706">
Security for Access to Device APIs from the Web: Workshop Report Published
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-05T00:00:00-05:00">05 February 2009</span></p>
<div id="item14"><p> W3C published today a <a href="/2008/security-ws/report">report</a> from the <a href="/2008/security-ws/">W3C Workshop on Security for Access to Device APIs from the Web</a>. Workshop participants identified a number of challenges as high-priority work items, including:</p> <ul><li>Declaration of APIs used by web applications and widgets</li><li>Policy description</li><li>API patterns and concrete APIs</li></ul> <p>W3C invites follow-up discussion on the public mailing list public-device-apis@w3.org (<a href="http://lists.w3.org/Archives/Public/public-device-apis/">public archive</a>). Learn more about the <a href="/Mobile/">W3C Mobile Web Initiative</a>.</p></div>
</div>
<div class="entry" id="entry-6707">
<h3>
<a href="#entry-6707">
Tim Berners-Lee Speaks at TED2009
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-04T00:00:00-05:00">04 February 2009</span></p>
<div id="item13"><p class="newsImage"><a class="imageLink" href="/2009/Talks/0204-ted-tbl/"><img alt="Excerpt from Tim Berners-Lee's TED talk" src="/2009/02/ted-flowers.png" /></a></p><p> <a href="/People/Berners-Lee/">Tim Berners-Lee</a>, Director of W3C, addresses <a href="http://conferences.ted.com/">TED2009</a> today in Long Beach, California on the subject of Linked Data. Berners-Lee's <a title="Slides from TBL TED talk" href="/2009/Talks/0204-ted-tbl/">talk</a> highlights the many possibilities that arise when governments, enterprises, scientists, and others in the community choose to share and link data on the Web using <a href="/2001/sw/">Web standards</a>.</p></div>
</div>
<div class="entry" id="entry-6708">
<h3>
<a href="#entry-6708">
Social Networking Challenges Identified by Industry Leaders in W3C Workshop
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-03T00:00:00-05:00">03 February 2009</span></p>
<div id="item12"><p class="newsImage"><a class="imageLink" href="/2008/09/msnws/"><img style="border: none" alt="Social Networking Logo" src="/2008/09/msnws/logo-sm.png" /></a> W3C has published a <a href="/2008/09/msnws/report">report</a> from the <a href="/2008/09/msnws/">Workshop on the Future of Social Networking</a>. Observations from the fifty-five organizations that participated (and submitted <a href="/2008/09/msnws/papers/">72 position papers</a>) include:</p> <ul style="clear: left"><li>By enabling users to share profiles and data across networks, social networking sites can grow further and open possibilities for a decentralized architecture for the Social Web.</li><li>Contextual information, especially for mobile device users, can significantly enrich the social networking user experience.</li><li>Many users remain unaware of the impact of social networking on their privacy.</li></ul> <p>The report highlights the need for an interoperable distributed social Web framework and suggests <a href="/2008/09/msnws/report#Next">concrete next steps</a> for W3C. W3C now welcomes interested parties to contribute to <a href="http://lists.w3.org/Archives/Public/public-social-web-talk/">public discussion</a>. See <a href="http://www.ustream.tv/oripekelman/videos">video highlights</a> from the Workshop, read the <a href="/2009/02/socialnetworks-pressrelease.html.en">press release</a> and learn more about the <a href="/Mobile/">Mobile Web Initiative (MWI)</a>.</p></div>
</div>
<div class="entry" id="entry-6711">
<h3>
<a href="#entry-6711">
Working Draft: WebCGM 2.1
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-02T00:00:00-05:00">02 February 2009</span></p>
<div id="item9"><p> The <a href="/Graphics/WebCGM/WG/">WebCGM Working Group</a> has published a Working Draft of <a href="/TR/2009/WD-webcgm21-20090130/">WebCGM 2.1</a>. Computer Graphics Metafile (CGM) is an ISO standard, defined by ISO/IEC 8632:1999, for the interchange of 2D vector and mixed vector/raster graphics. WebCGM is a profile of CGM, which adds Web linking and is optimized for Web applications in technical illustration, electronic documentation, geophysical data visualization, and similar fields. First published (1.0) in 1999, WebCGM unifies potentially diverse approaches to CGM utilization in Web document applications. It therefore represents a significant interoperability agreement amongst major users and implementers of the ISO CGM standard. Learn more about the <a href="/Graphics/">Graphics Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6710">
<h3>
<a href="#entry-6710">
Last Call: W3C XML Schema Definition Language (XSD) 1.1
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-02T00:00:00-05:00">02 February 2009</span></p>
<div id="item10"><p> The <a href="/XML/Schema">XML Schema Working Group</a> has published the Last Call Working Drafts of <a href="/TR/2009/WD-xmlschema11-1-20090130/">W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures</a> and <a href="/TR/2009/WD-xmlschema11-2-20090130/">Part 2: Datatypes</a>. This former 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). The latter defines facilities for defining datatypes to be used in XML Schemas as well as other XML specifications. The datatype language, which is itself represented in XML, provides a superset of the capabilities found in XML document type definitions (DTDs) for specifying datatypes on elements and attributes. Comments are welcome through 20 February. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6709">
<h3>
<a href="#entry-6709">
HTML 5 Receives Support for Authoring Materials
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-02T00:00:00-05:00">02 February 2009</span></p>
<div id="item11"><p> Dan Connolly, an active member of the HTML community for many years, has received support from Adobe to work on HTML 5 materials for authors. The <a href="/html/wg/">HTML Working Group</a> Chairs have requested additional resources to ensure that HTML 5 meets the needs of authors and browser developers alike. As a provider of Web development and authoring tools, W3C Member Adobe is not only participating in the Working Group, they have also provided financial support for the open standards process. Learn more about <a href="/html/">HTML</a>. </p></div>
</div>
<div class="entry" id="entry-6712">
<h3>
<a href="#entry-6712">
W3C Talks in February
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-02-01T00:00:00-05:00">01 February 2009</span></p>
<div id="item8"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">2 February, Denver, Colorado, USA: </span><span class="talktitle">(TBD)</span><span class="talkdesc">Dan Connolly gives a keynote at <a href="http://north.webdirections.org/">Web Directions North</a>. </span></li><li><span class="talkstart">4 February, Malmö, Sweden: </span><span class="talktitle" lang="sv" xml:lang="sv">Standarder och Open Source</span><span class="talkdesc">Olle Olsson presents at <a href="http://kalender.dfs.se/node/501" lang="sv" xml:lang="sv">DFS-seminarium</a>. </span></li><li><span class="talkstart">6 February, Paris, France: </span><span class="talktitle">World Wide Web 2010</span><span class="talkdesc">Steve Bratt gives a keynote at <a href="http://www.netexplorateur.org/Programme.php">Netexplorateur Forum 2009</a>. </span></li><li><span class="talkstart">12 February, Gijón, Spain: </span><span class="talktitle">Innovative Uses of Mobile ICTs for Development</span><span class="talkdesc">José Manuel Alonso participates in a panel at <a href="http://encuentro2009.fundacionctic.org/?q=en">II International Meeting on ICT for Development Cooperation</a>. </span></li><li><span class="talkstart">25 February, Cambridge, MA, USA: </span><span class="talktitle">W3C's Semantic Web in Heath Care and Life Sciences Interest Group</span><span class="talkdesc">Lee Feigenbaum, Susie Stephens, Eric Prud'hommeaux give a tutorial at <a href="http://www.iscb.org/cms_addon/conferences/cshals2009/HCLS-tutorial.php">Conference on Semantics in Healthcare and Life Sciences (C-SHALS) </a>. </span></li></ul></div>
</div>
<div class="entry" id="entry-6714">
<h3>
<a href="#entry-6714">
Note: XHTML Media Types - Second Edition
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-28T00:00:00-05:00">28 January 2009</span></p>
<div id="item6"><p> The <a href="/MarkUp/">XHTML2 Working Group</a> has published the Group Note of <a href="/TR/2009/NOTE-xhtml-media-types-20090116/">XHTML Media Types - Second Edition</a>. Many people want to use XHTML to author their Web pages, but are confused about the best ways to deliver those pages in such a way that they will be processed correctly by various user agents. This Note contains suggestions about how to format XHTML to ensure it is maximally portable, and how to deliver XHTML to various user agents - even those that do not yet support XHTML natively. This document is intended to be used by document authors who want to use XHTML today, but want to be confident that their XHTML content is going to work in the greatest number of environments. Learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6713">
<h3>
<a href="#entry-6713">
XML Base (Second Edition) Is a W3C Recommendation
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-28T00:00:00-05:00">28 January 2009</span></p>
<div id="item7"><p> The <a href="/XML/Core/">XML Core Working Group</a> has published the W3C Recommendation of <a href="/TR/2009/REC-xmlbase-20090128/">XML Base (Second Edition)</a>. This document describes a mechanism for providing base URI services to XLink, but as a modular specification so that other XML applications benefiting from additional control over relative URIs but not built upon XLink can also make use of it. The syntax consists of a single XML attribute named xml:base. The functionality is similar to the <code>base</code> element in HTML. This document is part of W3C's ongoing work to maintain the core XML technologies. Learn more about the <a href="/XML/">Extensible Markup Language (XML) Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6715">
<h3>
<a href="#entry-6715">
Use Cases and Requirements for Ontology and API for Media Object 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-20T00:00:00-05:00">20 January 2009</span></p>
<div id="item5"><p> The <a href="/2008/WebVideo/Annotations/">Media Annotations Working Group</a> has published the First Public Working Draft of <a href="/TR/2009/WD-media-annot-reqs-20090119/">Use Cases and Requirements for Ontology and API for Media Object 1.0</a>. This document specifies use cases and requirements as an input for the development of the "Ontology for Media Object 1.0" and the "API for Media Object 1.0". The ontology will be a simple ontology to support cross-community data integration of information related to media objects on the Web. The API will provide read access and potentially write access to media objects, relying on the definitions from the ontology. Learn more about the <a href="/2008/WebVideo/">Video in the Web Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6716">
<h3>
<a href="#entry-6716">
W3C Invites Implementations of CURIE Syntax 1.0
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-16T00:00:00-05:00">16 January 2009</span></p>
<div id="item4"><p> The <a href="/MarkUp/">XHTML2 Working Group</a> invites implementation of the Candidate Recommendation of <a href="/TR/2009/CR-curie-20090116/">CURIE Syntax 1.0</a>. This document defines a generic, abbreviated syntax for expressing URIs. This syntax is intended to be used as a common element by language designers. The intended audience for this document is Language designers, not the users of those Languages. Track implementations in an ongoing <a href="/MarkUp/2009/curie-impl-report.html">implementation report</a> and learn more about the <a href="/MarkUp/Activity">HTML Activity</a>.</p></div>
</div>
<div class="entry" id="entry-6717">
<h3>
<a href="#entry-6717">
Future of Social Networking Workshop Begins
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-15T00:00:00-05:00">15 January 2009</span></p>
<div id="item3"><p class="newsImage"><a class="imageLink" href="/2008/09/msnws/"><img style="border: none" alt="Social Networking Logo" src="/2008/09/msnws/logo-sm.png" /></a> Today began a 2-day <a href="/2008/09/msnws/">Workshop on the Future of Social Networking</a>, organized by W3C to explore the landscape of social networking technologies. Participants submitted <a href="/2008/09/msnws/papers/">72 position papers</a> on a wide range of topics regarding the growth and future of social networking, including, but not limited to, the mobile context. The meeting is hosted in Barcelona, Spain by Universitat Politècnica de Catalunya and ReadyPeople. Many thanks to the hosts and to <a href="/2008/09/msnws/sponsorship">Silver Sponsors</a> Ayuntamiento de Zaragoza, Flock, and Peperoni for their support.</p></div>
</div>
<div class="entry" id="entry-6718">
<h3>
<a href="#entry-6718">
W3C Advisory Committee Elects TAG Participants
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-13T00:00:00-05:00">13 January 2009</span></p>
<div id="item2"><p> The W3C Advisory Committee has elected John Kemp (Nokia), Larry Masinter (Adobe), and T.V. Raman (Google) to the W3C <a href="/2001/tag/">Technical Architecture Group (TAG)</a>. Continuing TAG participants are Ashok Malhotra (Oracle), Noah Mendelsohn (IBM, appointed), Jonathan Rees (Science Commons, appointed), and Henry Thompson (U. of Edinburgh). The Director is expected to appoint one individual as well. The <a href="/2004/10/27-tag-charter.html#Mission">mission</a> of the TAG is to build consensus around principles of Web architecture and to interpret and clarify these principles when necessary, to resolve issues involving general Web architecture brought to the TAG, and to help coordinate cross-technology architecture developments inside and outside W3C.</p></div>
</div>
<div class="entry" id="entry-6719">
<h3>
<a href="#entry-6719">
W3C Talks in January
</a>
</h3>
<p class="date"><span class="dtstart published" title="2009-01-05T00:00:00-05:00">05 January 2009</span></p>
<div id="item1"><p> Browse <a href="/Talks/">W3C presentations and events</a> also available as an <abbr title="RDF Site Summary"><a href="/2004/08/TalkFiles/Talks.rss">RSS channel</a></abbr>. </p><ul><li><span class="talkstart">9 January, Amsterdam, The Netherlands: </span><span class="talktitle">Never is a long time - Disruptive technology and the Web</span><span class="talkdesc">Steven Pemberton presents at <a href="http://freelancefactory.ning.com/events/freelance-factory-never-is-a">Freelance Factory</a>. </span></li><li><span class="talkstart">29 January, Orlando, USA: </span><span class="talktitle">Update on Accessibility Guidelines for Browsers, Media Players, Cell phones, PDAs and Other User Agents</span><span class="talkdesc">Jeanne Spellman presents at <a href="http://www.atia.org/i4a/pages/index.cfm?pageid=3280">Assistive Technology Industry Association Conference 2009</a>. </span></li><li><span class="talkstart">30 January, Orlando, USA: </span><span class="talktitle">Web Accessibility Update 2009: WCAG 2.0, WAI-ARIA, Section 508</span><span class="talkdesc">Shawn Henry presents at <a href="http://www.atia.org/i4a/pages/index.cfm?pageid=3280">Assistive Technology Industry Association </a>. </span></li><li><span class="talkstart">31 January, Orlando, USA: </span><span class="talktitle">Accessible Social Networking and Web 2.0 Content</span><span class="talkdesc">Jeanne Spellman presents at <a href="http://www.atia.org/i4a/pages/index.cfm?pageid=3280">Assistive Technology Industry Association</a>. </span></li></ul></div>
</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>