index.html
196 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
<!DOCTYPE html>
<html dir="ltr" lang="en-US" class="no-js" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, nofollow" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<link rel="shortcut icon" href="/community/src/img/favicon.ico" type="image/x-icon" />
<title>Current Groups | Community and Business Groups</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" media="all" href="http://www.w3.org/community/wp-content/themes/ttfv/style.css" />
<link rel="pingback" href="http://www.w3.org/community/xmlrpc.php" />
<link rel="alternate" type="application/rss+xml" title="Community and Business Groups » Feed" href="http://www.w3.org/community/feed/" />
<link rel="alternate" type="application/rss+xml" title="Community and Business Groups » Comments Feed" href="http://www.w3.org/community/comments/feed/" />
<link rel='stylesheet' id='wp-polls-css' href='http://www.w3.org/community/wp-content/plugins/wp-polls/polls-css.css?ver=2.50' type='text/css' media='all' />
<script type='text/javascript' src='http://www.w3.org/community/wp-content/themes/ttfv/js/modernizr-1.7.min.js?ver=3.3.1'></script>
<script type='text/javascript' src='http://www.w3.org/community/wp-includes/js/jquery/jquery.js?ver=1.7.1'></script>
<script type='text/javascript' src='http://www.w3.org/community/wp-content/themes/ttfv/js/jquery.tinysort.min.js?ver=1.1.1'></script>
<script type='text/javascript' src='http://www.w3.org/community/wp-includes/js/comment-reply.js?ver=20090102'></script>
<script type='text/javascript' src='http://www.w3.org/community/wp-content/plugins/wordpress-faq-manager/inc/js/faq-collapse.js'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.w3.org/community/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.w3.org/community/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Comparison of Group Types' href='http://www.w3.org/community/about/agreements/compare/' />
<link rel='next' title='Propose a Community Group' href='http://www.w3.org/community/groups/propose_cg/' />
<meta name="generator" content="WordPress 3.3.1" />
<link rel='canonical' href='http://www.w3.org/community/groups/' />
<link rel="stylesheet" href="http://www.w3.org/community/wp-content/plugins/wp-hashtag/css/wp_hashtag.css" type="text/css" media="screen" />
<style type="text/css">
.wp-polls .pollbar {
margin: 1px;
font-size: 6px;
line-height: 8px;
height: 8px;
background-image: url('http://www.w3.org/community/wp-content/plugins/wp-polls/images/default/pollbg.gif');
border: 1px solid #c8c8c8;
}
</style>
<meta id="syntaxhighlighteranchor" name="syntaxhighlighter-version" content="3.1.3" />
</head>
<body class="page page-id-217 page-parent page-template page-template-threecolumn-page-php clearfix">
<!--[if lte IE 8 ]>
<noscript><strong>JavaScript is required for this website to be displayed correctly. Please enable JavaScript before continuing...</strong></noscript>
<![endif]-->
<header class="community_group_header">
<a class="logo w3c_logo" tabindex="2" accesskey="1" href="http://www.w3.org" title="W3C">
<img src="http://www.w3.org/community/wp-content/themes/ttfv/img/logo.png" alt="W3C Logo"/>
</a>
<h1 id="site-title" class="page_title">
<a href="/community/" class="logo community_logo">
<img src="http://www.w3.org/community/wp-content/themes/ttfv/img/community-group-logo.png" alt="Community Group Logo" />
<span>W3C Community and Business Groups</span>
</a>
</h1>
<!-- Uncomment if needed -->
<!--<h2 id="site-description">A W3C Community Group</h2>-->
<div id="search-form-container">
<form role="search" method="get" id="search-form" action="http://www.w3.org/community/">
<div>
<label class="screen-reader-text" for="s">Search for:</label>
<input placeholder="Search blogs" type="text" value="" name="s" id="s" class="search-box" />
<button type="submit" id="search-submit">
<img class="submit" src="http://www.w3.org/community/wp-content/themes/ttfv/img/search-icon.png" alt="search icon" width="17" height="17" />
</button>
</div>
</form>
</div>
<ul class="secondary_navigation secondary_navigation_links">
<li>
<a class="skip_link_border" href="http://www.w3.org/community/wp-login.php?redirect_to=http://www.w3.org/community/groups/">Log in</a>
<a class="skip_link_border" href="http://www.w3.org/community/account/request" title="Get an Account">Get an Account</a>
</li>
<li><a class="skip_link_border" href="http://www.w3.org/Systems/db/userInfo">My Account</a></li>
<li><a class="skip_link" tabindex="1" accesskey="2" title="Skip to content (e.g., when browsing via audio)" href="#content">Skip</a></li>
</ul>
<nav id="access" role="navigation" class="top_navigation">
<ul id="menu-top-menu" class="menu"><li id="menu-item-231" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-217 current_page_item menu-item-231"><a href="http://www.w3.org/community/groups/">Current Groups</a></li>
<li id="menu-item-67" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-67"><a href="http://www.w3.org/community/reports/">Reports</a></li>
<li id="menu-item-59" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-59"><a title="About" href="http://www.w3.org/community/about/">About</a></li>
</ul> </nav><!-- #access -->
</header><!-- #header -->
<div id="main">
<div id="secondary" class="leftCol" role="complementary">
<div id="text-5" class="widget-container widget_text"> <div class="textwidget"><ul class="social_menu">
<li><a title="Find tweets tagged #w3ccommunity" href="http://search.twitter.com/search?q=%23w3ccommunity" class="twitter_icon social_links">Twitter</a></li>
<li><a href="http://www.facebook.com/thew3c" class="facebook_icon social_links" title="Facebook">Facebook</a></li>
<li><a href="http://www.w3.org/community?feed=rss" class="rss_icon social_links" title="RSS">RSS</a></li>
</ul></div>
</div><div id="text-6" class="widget-container widget_text"> <div class="textwidget"><ul class="social_menu">
<li><a title="Contact W3C Staff on a public list about Community and Business Groups" href="mailto:site-comments@w3.org" class="mail_icon">Question? Bug?</a></li>
</ul></div>
</div> </div><!-- #secondary .widget-area -->
<div id="primary" class="mainCol" role="complementary">
<div class="breadcrumbs">
<ul>
<li><a href="/community/" title="Community & Business Groups">Community & Business Groups</a></li>
<li class="arrow_inactive">→</li>
<li> Current Groups</li>
</ul>
</div>
<div class="line">
<div class="unit size2on3">
<div id="content" role="main">
<h2 class="first_header">Current Groups</h2>
<article id="post-217" class="post-217 page type-page status-publish hentry">
<div class="entry-content">
<p>This is the list of current Community and Business Groups. <strong>Anyone may join</strong>; W3C Membership is not required. However, you must have a <a href="/community/account/request">W3C account</a>.</p>
<p>See also the list of <a href="/community/groups/proposed/">proposed groups</a> and <a href="/community/groups/past/">past groups</a>.</p>
<form id="filtering" action="" method="">
<div class="upper-filters clearfix">
<ul>
<li>
<a href="javascript:void(0)" class="sort-button title" id="sort-title"><span></span>Title</a>
</li>
<li>
<a href="javascript:void(0)" class="sort-button date" id="sort-date"><span></span>Creation Date</a>
</li>
<li>
<a href="javascript:void(0)" class="sort-button participants" id="sort-participants"><span></span>No. of Participants</a>
</li>
<li id="live-search">
<input type="text" id="filter" class="text-input" value="" placeholder="Live search..." name="search"/>
<a class="clear" href="javascript:void(0)">x</a>
</li>
</ul></div>
<div class="lower-filters clearfix">
<ul id="types">
<li>
<input id="cgroups" type="checkbox" checked="checked" alt=" Community Groups" />
<label for="cgroups">Community Groups</label>
</li>
<li>
<input id="bgroups" type="checkbox" checked="checked" alt=" Business Groups" />
<label for="bgroups">Business Groups</label>
</li>
</ul></div>
<div class="status">
<p id="filter-count">
</p></div>
</form>
<hr />
<div id="groups">
<div class="groupa cg shown" data-no-participants="13" data-creation-date="2011-12-06 ">
<a id="infographics"></a>
<header class="tMargin header_article">
<a href="#infographics" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Accessible Infographics
</a>
<em class="groupParticipants">13 participants</em>
<em class="groupDate">Date Created: 2011-12-06 </em>
</header>
<div class="group news_content news_content_open">
<p>The goal of the Accessible Infographics CG is to make information graphics, like bar charts and maps, as accessible as possible to all. The plan is to bring together experts and pioneers in the fields of data visualization and accessibility, to create use cases and requirements in a systematic manner, to devise and propose additions to SVG that improve accessible options for data in that and other graphics formats, and to document best practices and tutorials for making infographics accessible.</p>
<p>News, publications, and more on the <a href="/community/infographics/" class="link-home">Accessible Infographics Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/infographics/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/39558ae31a54-tn.jpg" width="36" height="48" alt="Photo of Bruce Walker" />
<span class="tooltip">Bruce Walker</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ade42a0a0d16-tn.jpg" width="36" height="48" alt="Photo of Gerardo Capiel" />
<span class="tooltip">Gerardo Capiel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f586651d2223-tn.jpg" width="36" height="48" alt="Photo of Ed Summers" />
<span class="tooltip">Ed Summers</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Richard Baldwin" />
<span class="tooltip">Richard Baldwin</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Matthew Turvey" />
<span class="tooltip">Matthew Turvey</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Matt Garrish" />
<span class="tooltip">Matt Garrish</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/75fc3849eb5d-tn.jpg" width="36" height="48" alt="Photo of Jonathan Metz" />
<span class="tooltip">Jonathan Metz</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e5015552b603-tn.jpg" width="36" height="48" alt="Photo of Karla Kmetz" />
<span class="tooltip">Karla Kmetz</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/infographics/wp-login.php?redirect_to=/community/infographics/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%69%6e%66%6f%67%72%61%70%68%69%63%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="16" data-creation-date="2011-08-19 ">
<a id="ar"></a>
<header class="tMargin header_article">
<a href="#ar" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Augmented Reality
</a>
<em class="groupParticipants">16 participants</em>
<em class="groupDate">Date Created: 2011-08-19 </em>
</header>
<div class="group news_content news_content_open">
<p>W3C is about an Open Web Platform; https://wiki.mozilla.org/WebAPI is about the development and further W3C standardization of open API's. On synergy of Open Hardware API's, hardware sensors, and Open Web Platform - is the work of this W3C AR Community. Purpose for this W3C AR Community is, respectively, in connecting these initiatives with AR related communities and initiatives like Open AR, Open ARWeb, AR Standards, AR Forum, W3C POI WG, WebRTC, WHATWG, Web Applications WGs, Khronos WG's, IETF WG's, ROS, PointClouds, OpenNI, OpenCV etc. on the topic of Augmented Reality Web. W3C AR Community development should help the development of the reference AR Web platform, dedicated to testing and experimenting with a reference implementations of W3C's and other open industry standards; evaluating a possibility of the secure data schemes for storing the Point Clouds (a set of colored points in 3D space, usually achieved in the process of 3D scanning) and other social-related GIS AR data; discussing, developing and proposing the open standards for hardware and software interfaces of open standards based Augmented Reality Web; developing the propositions for healthy conditions of Augmented Reality use.</p>
<p>News, publications, and more on the <a href="/community/ar/" class="link-home">Augmented Reality Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/ar/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/45c16503292f-tn.jpg" width="36" height="48" alt="Photo of Don Brutzman" />
<span class="tooltip">Don Brutzman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/08f863b6fdb8-tn.jpg" width="36" height="48" alt="Photo of Rob Manson" />
<span class="tooltip">Rob Manson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/aabda10a0476-tn.jpg" width="36" height="48" alt="Photo of Alex Hill" />
<span class="tooltip">Alex Hill</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e72e0bf86457-tn.jpg" width="36" height="48" alt="Photo of Sreejumon Purayil" />
<span class="tooltip">Sreejumon Purayil</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Jens de Smit" />
<span class="tooltip">Jens de Smit</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/576b3d1b80f2-tn.jpg" width="36" height="48" alt="Photo of Jonathan Jeon" />
<span class="tooltip">Jonathan Jeon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/5714065f5a4e-tn.jpg" width="36" height="48" alt="Photo of Damon Oehlman" />
<span class="tooltip">Damon Oehlman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8db2f7294bf3-tn.jpg" width="36" height="48" alt="Photo of Robin Berjon" />
<span class="tooltip">Robin Berjon</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/ar/wp-login.php?redirect_to=/community/ar/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%61%72" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="16" data-creation-date="2011-10-12 ">
<a id="cssacc"></a>
<header class="tMargin header_article">
<a href="#cssacc" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />CSS Accessibility
</a>
<em class="groupParticipants">16 participants</em>
<em class="groupDate">Date Created: 2011-10-12 </em>
</header>
<div class="group news_content news_content_open">
<p>Document and describe how browsers and assistive technology currently implement CSS in regards to accessibility and guidance on how they should. The documentation and guidance will be directed at both CSS implementers and developers who use CSS.</p>
<p>News, publications, and more on the <a href="/community/cssacc/" class="link-home">CSS Accessibility Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/cssacc/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bc9790530858-tn.jpg" width="36" height="48" alt="Photo of Nestor Rojas" />
<span class="tooltip">Nestor Rojas</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c8457341b8a1-tn.jpg" width="36" height="48" alt="Photo of Joseph Scheuhammer" />
<span class="tooltip">Joseph Scheuhammer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a728f4555b39-tn.jpg" width="36" height="48" alt="Photo of Guillermo Sanchez" />
<span class="tooltip">Guillermo Sanchez</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/89d787fe217f-tn.jpg" width="36" height="48" alt="Photo of Jason Kiss" />
<span class="tooltip">Jason Kiss</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b63e110d7f20-tn.jpg" width="36" height="48" alt="Photo of Frederico Cerdeira" />
<span class="tooltip">Frederico Cerdeira</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f27a99c41415-tn.jpg" width="36" height="48" alt="Photo of John Foliot" />
<span class="tooltip">John Foliot</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/990711e0c64d-tn.jpg" width="36" height="48" alt="Photo of Steve Faulkner" />
<span class="tooltip">Steve Faulkner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d208bd58d85b-tn.jpg" width="36" height="48" alt="Photo of Kazuhito Kidachi" />
<span class="tooltip">Kazuhito Kidachi</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1a699ed67031-tn.jpg" width="36" height="48" alt="Photo of Emmanuelle Gutiérrez y Restrepo" />
<span class="tooltip">Emmanuelle Gutiérrez y Restrepo</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0eb65af63ff1-tn.jpg" width="36" height="48" alt="Photo of Sandra Kallmeyer" />
<span class="tooltip">Sandra Kallmeyer</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/cssacc/wp-login.php?redirect_to=/community/cssacc/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%63%73%73%61%63%63" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="9" data-creation-date="2011-11-03 ">
<a id="cloud"></a>
<header class="tMargin header_article">
<a href="#cloud" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Cloud Computing
</a>
<em class="groupParticipants">9 participants</em>
<em class="groupDate">Date Created: 2011-11-03 </em>
</header>
<div class="group news_content news_content_open">
<p>The group will examine and create specifications related to distributed computation and storage, with an XML network transport layer and possible mapping to RDF.</p>
<p>News, publications, and more on the <a href="/community/cloud/" class="link-home">Cloud Computing Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/cloud/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Mathieu Baudet" />
<span class="tooltip">Mathieu Baudet</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/206d8a643a20-tn.jpg" width="36" height="48" alt="Photo of Mohanraj Balasubramaniam" />
<span class="tooltip">Mohanraj Balasubramaniam</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/11c20f2ad682-tn.jpg" width="36" height="48" alt="Photo of g dupont" />
<span class="tooltip">g dupont</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1f88a15881b7-tn.jpg" width="36" height="48" alt="Photo of András Micsik" />
<span class="tooltip">András Micsik</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/57cc9a1b7d3d-tn.jpg" width="36" height="48" alt="Photo of Russell Potter" />
<span class="tooltip">Russell Potter</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Henri Binsztok" />
<span class="tooltip">Henri Binsztok</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9f86bc0edfee-tn.jpg" width="36" height="48" alt="Photo of Michael Hausenblas" />
<span class="tooltip">Michael Hausenblas</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Kangchan Lee" />
<span class="tooltip">Kangchan Lee</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/cloud/wp-login.php?redirect_to=/community/cloud/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%63%6c%6f%75%64" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="29" data-creation-date="2011-09-06 ">
<a id="council"></a>
<header class="tMargin header_article">
<a href="#council" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Community Council
</a>
<em class="groupParticipants">29 participants</em>
<em class="groupDate">Date Created: 2011-09-06 </em>
</header>
<div class="group news_content news_content_open">
<p>The mission of the Community Council is to promote Community and Business Groups and ensure that they function smoothly. The Council's activities include: documenting good community practices, reaching out to new communities, identifying opportunities for collaboration between groups, helping groups transition to the standards track if they so desire, and routine group maintenance. The Community Council will also discuss existing and new features and other ways to enhance the Community Group experience. Anyone may join the Community Council. In particular, W3C encourages Chairs of other Community and Business Groups to participate (e.g., in monthly meetings that will include W3C staff). This group will seek to make decisions when there is consensus and with due process.</p>
<p>News, publications, and more on the <a href="/community/council/" class="link-home">Community Council home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/council/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/851547a2a0c3-tn.jpg" width="36" height="48" alt="Photo of Coralie Mercier" />
<span class="tooltip">Coralie Mercier</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/42c4f8989cbf-tn.jpg" width="36" height="48" alt="Photo of Philipp Cimiano" />
<span class="tooltip">Philipp Cimiano</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2f28c69ce36d-tn.jpg" width="36" height="48" alt="Photo of Ted Guild" />
<span class="tooltip">Ted Guild</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f592bc2388f1-tn.jpg" width="36" height="48" alt="Photo of Dominique Hazaël-Massieux" />
<span class="tooltip">Dominique Hazaël-Massieux</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7de930e0ef54-tn.jpg" width="36" height="48" alt="Photo of Wayne Carr" />
<span class="tooltip">Wayne Carr</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b34566d28307-tn.jpg" width="36" height="48" alt="Photo of Paul Buitelaar" />
<span class="tooltip">Paul Buitelaar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e85a1d18b2ee-tn.jpg" width="36" height="48" alt="Photo of Manu Sporny" />
<span class="tooltip">Manu Sporny</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/council/wp-login.php?redirect_to=/community/council/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%63%6f%75%6e%63%69%6c" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="11" data-creation-date="2011-09-01 ">
<a id="community-io"></a>
<header class="tMargin header_article">
<a href="#community-io" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Community I/O
</a>
<em class="groupParticipants">11 participants</em>
<em class="groupDate">Date Created: 2011-09-01 </em>
</header>
<div class="group news_content news_content_open">
<p>This group will focus on applying current information technologies to create a foundation of infrastructure for organizing the flow of resources and support with services within human community.
All peers (individuals or projects) can state their needs (input) and offers (output).
Using Semantic Web, Federated Social Web and other related technologies people can develop various approaches of connecting those needs and offers. Including variants with and without use of currencies.</p>
<p>News, publications, and more on the <a href="/community/community-io/" class="link-home">Community I/O Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/community-io/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Elisabeth Robson" />
<span class="tooltip">Elisabeth Robson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f0e2a552dc58-tn.jpg" width="36" height="48" alt="Photo of Mark Janssen" />
<span class="tooltip">Mark Janssen</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Black Dragon" />
<span class="tooltip">Black Dragon</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Hellekin Wolf" />
<span class="tooltip">Hellekin Wolf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ee5de5f29c14-tn.jpg" width="36" height="48" alt="Photo of Markus Sabadello" />
<span class="tooltip">Markus Sabadello</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Fabio Barone" />
<span class="tooltip">Fabio Barone</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/be8ed5b551ef-tn.jpg" width="36" height="48" alt="Photo of Daniel Harris" />
<span class="tooltip">Daniel Harris</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/46b496bdc1aa-tn.jpg" width="36" height="48" alt="Photo of Melvin Carvalho" />
<span class="tooltip">Melvin Carvalho</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/community-io/wp-login.php?redirect_to=/community/community-io/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%63%6f%6d%6d%75%6e%69%74%79%2d%69%6f" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="12" data-creation-date="2011-11-07 ">
<a id="data-driven-standards"></a>
<header class="tMargin header_article">
<a href="#data-driven-standards" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Data Driven Standards
</a>
<em class="groupParticipants">12 participants</em>
<em class="groupDate">Date Created: 2011-11-07 </em>
</header>
<div class="group news_content news_content_open">
<p>The Data Driven Standards Community Group focuses on researching, analyzing and publicly documenting current usage patterns on the Internet. Inspired by the Microformats Process, the goal of this group is to enlighten standards development with real-world data. This group will collect and report data from large Web crawls, produce detailed reports on protocol usage across the Internet, document yearly changes in usage patterns and promote findings that demonstrate that the current direction of a particular specification should be changed based on publicly available data. All data, research, and analysis will be made publicly available to ensure the scientific rigor of the findings. The group will be a collection of search engine companies, academic researchers, hobbyists, protocol designers and specification editors in search of data that will guide the Internet toward a brighter future.</p>
<p>News, publications, and more on the <a href="/community/data-driven-standards/" class="link-home">Data Driven Standards Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/data-driven-standards/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/862c19e91965-tn.jpg" width="36" height="48" alt="Photo of Gregg Kellogg" />
<span class="tooltip">Gregg Kellogg</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/990711e0c64d-tn.jpg" width="36" height="48" alt="Photo of Steve Faulkner" />
<span class="tooltip">Steve Faulkner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/59cc8f2e1eac-tn.jpg" width="36" height="48" alt="Photo of TH Schee" />
<span class="tooltip">TH Schee</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/15746995b69a-tn.jpg" width="36" height="48" alt="Photo of Marcos Caceres" />
<span class="tooltip">Marcos Caceres</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e85a1d18b2ee-tn.jpg" width="36" height="48" alt="Photo of Manu Sporny" />
<span class="tooltip">Manu Sporny</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bdfa9afd9b08-tn.jpg" width="36" height="48" alt="Photo of Niklas Lindström" />
<span class="tooltip">Niklas Lindström</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Antonio Garrote" />
<span class="tooltip">Antonio Garrote</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Francisco J. Lopez-Pellicer" />
<span class="tooltip">Francisco J. Lopez-Pellicer</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/data-driven-standards/wp-login.php?redirect_to=/community/data-driven-standards/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%64%61%74%61%2d%64%72%69%76%65%6e%2d%73%74%61%6e%64%61%72%64%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="28" data-creation-date="2011-06-29 ">
<a id="declarative3d"></a>
<header class="tMargin header_article">
<a href="#declarative3d" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Declarative 3D for the Web Architecture
</a>
<em class="groupParticipants">28 participants</em>
<em class="groupDate">Date Created: 2011-06-29 </em>
</header>
<div class="group news_content news_content_open">
<p>The mission of the Declarative 3D for the Web Architecture Community Group is to determine the requirements, options, and use cases for an integration of interactive 3D graphics capabilities into the W3C technology stack. This group is aimed to extract core features out of the requirements as foundation to propose feasible technical solutions. These should cover the majority of 3D use cases for the Web - but not necessarily all of them. There are upcoming open (e.g., WebGL) and proprietary (e.g., Adobe) proposals for imperative graphics APIs in the Web context but we are missing an easy way to add interactive high-level declarative 3D objects to the HTML-DOM to allow anyone to easily create, share, and experience interactive 3D graphics - with possibly wide ranging effects similar to those caused by the broad availability of video on the Web. The goal of this CG is to evaluate the necessary requirements for a successful standardization of a declarative approach to interactive 3D graphics as part of HTML documents.</p>
<p>News, publications, and more on the <a href="/community/declarative3d/" class="link-home">Declarative 3D for the Web Architecture Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/declarative3d/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e37886ceef9d-tn.jpg" width="36" height="48" alt="Photo of Kristian Sons" />
<span class="tooltip">Kristian Sons</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d407c5063a1c-tn.jpg" width="36" height="48" alt="Photo of Jerome Royan" />
<span class="tooltip">Jerome Royan</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7bdf66dc101d-tn.jpg" width="36" height="48" alt="Photo of Johannes Behr" />
<span class="tooltip">Johannes Behr</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1eec28c60919-tn.jpg" width="36" height="48" alt="Photo of Sandra Murg" />
<span class="tooltip">Sandra Murg</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7cc2036d7bd2-tn.jpg" width="36" height="48" alt="Photo of Yvonne Jung" />
<span class="tooltip">Yvonne Jung</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/45c16503292f-tn.jpg" width="36" height="48" alt="Photo of Don Brutzman" />
<span class="tooltip">Don Brutzman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/eae848793dfe-tn.jpg" width="36" height="48" alt="Photo of Christophe MOUTON" />
<span class="tooltip">Christophe MOUTON</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e2e2beffefb-tn.jpg" width="36" height="48" alt="Photo of Ivan Herman" />
<span class="tooltip">Ivan Herman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/6d32addf2500-tn.jpg" width="36" height="48" alt="Photo of Jean Vanderdonckt" />
<span class="tooltip">Jean Vanderdonckt</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/81b586a7acc6-tn.jpg" width="36" height="48" alt="Photo of Sandy Ressler" />
<span class="tooltip">Sandy Ressler</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/declarative3d/wp-login.php?redirect_to=/community/declarative3d/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%64%65%63%6c%61%72%61%74%69%76%65%33%64" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="3" data-creation-date="2011-12-04 ">
<a id="d-tasks"></a>
<header class="tMargin header_article">
<a href="#d-tasks" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Distributed Tasks
</a>
<em class="groupParticipants">3 participants</em>
<em class="groupDate">Date Created: 2011-12-04 </em>
</header>
<div class="group news_content news_content_open">
<p>Common ground for people developing various collaboration software with notion of "tasks." Aiming for increasing interoperability across all such software and improving experience of a person contributing to big number of projects. Emphasis on interoperability, portability and extensibility!</p>
<p>News, publications, and more on the <a href="/community/d-tasks/" class="link-home">Distributed Tasks Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/d-tasks/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/297b65ee6e12-tn.jpg" width="36" height="48" alt="Photo of chetan jain" />
<span class="tooltip">chetan jain</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Fabio Barone" />
<span class="tooltip">Fabio Barone</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/d-tasks/wp-login.php?redirect_to=/community/d-tasks/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%64%2d%74%61%73%6b%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="9" data-creation-date="2011-10-28 ">
<a id="dntrack"></a>
<header class="tMargin header_article">
<a href="#dntrack" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Do-Not-Track
</a>
<em class="groupParticipants">9 participants</em>
<em class="groupDate">Date Created: 2011-10-28 </em>
</header>
<div class="group news_content news_content_open">
<p>This community group, started by Lee Tien of the Electronic Frontier Foundation, is intended as a companion to the Tracking Protection Working Group with the goal of enabling consumer and privacy groups to participate meaningfully in the WG even if they do not participate in WG conference calls, mailing lists, or in-person workshops. In the short term, this community group's major goal will be to analyze and respond to the First Public Working Draft, which is expected soon.</p>
<p>News, publications, and more on the <a href="/community/dntrack/" class="link-home">Do-Not-Track Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/dntrack/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/642aa27679ca-tn.jpg" width="36" height="48" alt="Photo of Jeremy Malcolm" />
<span class="tooltip">Jeremy Malcolm</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Lee Tien" />
<span class="tooltip">Lee Tien</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/fae855c2f6eb-tn.jpg" width="36" height="48" alt="Photo of John Simpson" />
<span class="tooltip">John Simpson</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Guilherme Roschke" />
<span class="tooltip">Guilherme Roschke</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/24046d934667-tn.jpg" width="36" height="48" alt="Photo of Karl Dubost" />
<span class="tooltip">Karl Dubost</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/53f519c25fe9-tn.jpg" width="36" height="48" alt="Photo of Nick Doty" />
<span class="tooltip">Nick Doty</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Carmen Balber" />
<span class="tooltip">Carmen Balber</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Melissa Ngo" />
<span class="tooltip">Melissa Ngo</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/dntrack/wp-login.php?redirect_to=/community/dntrack/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%64%6e%74%72%61%63%6b" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="5" data-creation-date="2011-12-08 ">
<a id="learnonline"></a>
<header class="tMargin header_article">
<a href="#learnonline" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />E-learning: Evolving technologies and growing reach
</a>
<em class="groupParticipants">5 participants</em>
<em class="groupDate">Date Created: 2011-12-08 </em>
</header>
<div class="group news_content news_content_open">
<p>This Community Group focuses on e-learning. Participants will discuss new and existing technologies for e-learning and M-learning. The group will also talk about the reach, social change and impact of e-learning.</p>
<p>News, publications, and more on the <a href="/community/learnonline/" class="link-home">E-learning: Evolving technologies and growing reach Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/learnonline/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e5015552b603-tn.jpg" width="36" height="48" alt="Photo of Karla Kmetz" />
<span class="tooltip">Karla Kmetz</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Clint Hill" />
<span class="tooltip">Clint Hill</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1a699ed67031-tn.jpg" width="36" height="48" alt="Photo of Emmanuelle Gutiérrez y Restrepo" />
<span class="tooltip">Emmanuelle Gutiérrez y Restrepo</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Damian Sweeney" />
<span class="tooltip">Damian Sweeney</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/learnonline/wp-login.php?redirect_to=/community/learnonline/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6c%65%61%72%6e%6f%6e%6c%69%6e%65" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="3" data-creation-date="2011-09-02 ">
<a id="elvisml"></a>
<header class="tMargin header_article">
<a href="#elvisml" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Electrophysiology of Vision Markup Language
</a>
<em class="groupParticipants">3 participants</em>
<em class="groupDate">Date Created: 2011-09-02 </em>
</header>
<div class="group news_content news_content_open">
<p>Exchange of electrophysiological data for post-processing including in clinical trials is gaining increasing importance. Although manufacturers of electrophysiological devices usually provide means for exporting data, these are often restricted to either proprietary or ASCII-based formats which do not provide access to raw data or protocol details. With the need for central reading in multi-centre trials this becomes a major problem. The reading process usually requires all details of a measurement, to allow for properly monitoring compliance with study protocols. Standards for exchanging data have already been approved for other applications of electrmophysiology including EEG or ECG. However, these standards are usually focused on their specific field of application. Common standards are also available, like GDF (General Data Format for Biosignals), EDF (European Data Format), or HL7 and DICOM; however, these standards either do not match the specific requirements of ophthalmic electrophysiology or the efforts to adapt them are very high. Therefore we are proposing an open standard for the exchange of data for electrophysiology of vision based on the Extensible Markup Language (XML).</p>
<p>News, publications, and more on the <a href="/community/elvisml/" class="link-home">Electrophysiology of Vision Markup Language Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/elvisml/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Manuel Glaser" />
<span class="tooltip">Manuel Glaser</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/25aa98dcacc1-tn.jpg" width="36" height="48" alt="Photo of Torsten Straßer" />
<span class="tooltip">Torsten Straßer</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of tobias peters" />
<span class="tooltip">tobias peters</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/elvisml/wp-login.php?redirect_to=/community/elvisml/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%65%6c%76%69%73%6d%6c" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="20" data-creation-date="2012-01-12 ">
<a id="fedsocweb"></a>
<header class="tMargin header_article">
<a href="#fedsocweb" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Federated Social Web
</a>
<em class="groupParticipants">20 participants</em>
<em class="groupDate">Date Created: 2012-01-12 </em>
</header>
<div class="group news_content news_content_open">
<p>This group continues the work of the W3C Federated Social Web Incubator Group (http://www.w3.org/2005/Incubator/federatedsocialweb/)</p>
<p>News, publications, and more on the <a href="/community/fedsocweb/" class="link-home">Federated Social Web Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/fedsocweb/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/eb58013b432e-tn.jpg" width="36" height="48" alt="Photo of Rowan Thorpe" />
<span class="tooltip">Rowan Thorpe</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ee5de5f29c14-tn.jpg" width="36" height="48" alt="Photo of Markus Sabadello" />
<span class="tooltip">Markus Sabadello</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/966b0b281b92-tn.jpg" width="36" height="48" alt="Photo of Jan Wildeboer" />
<span class="tooltip">Jan Wildeboer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/36908c311a0d-tn.jpg" width="36" height="48" alt="Photo of Renato Iannella" />
<span class="tooltip">Renato Iannella</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1e3f34f3dd47-tn.jpg" width="36" height="48" alt="Photo of James Walker" />
<span class="tooltip">James Walker</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2e1cfc2440ac-tn.jpg" width="36" height="48" alt="Photo of Evan Prodromou" />
<span class="tooltip">Evan Prodromou</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9f3f61a30ef9-tn.jpg" width="36" height="48" alt="Photo of Luca Lamorte" />
<span class="tooltip">Luca Lamorte</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/fedsocweb/wp-login.php?redirect_to=/community/fedsocweb/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%66%65%64%73%6f%63%77%65%62" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="10" data-creation-date="2011-11-06 ">
<a id="fixing-appcache"></a>
<header class="tMargin header_article">
<a href="#fixing-appcache" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Fixing Application Cache
</a>
<em class="groupParticipants">10 participants</em>
<em class="groupDate">Date Created: 2011-11-06 </em>
</header>
<div class="group news_content news_content_open">
<p>This is a group for coordination between developers in the broader community, browser vendors, and specification writers about addressing the existing issues with Application Cache.</p>
<p>News, publications, and more on the <a href="/community/fixing-appcache/" class="link-home">Fixing Application Cache Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/fixing-appcache/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f65c8212ef33-tn.jpg" width="36" height="48" alt="Photo of Arthur Barstow" />
<span class="tooltip">Arthur Barstow</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbf7cb725a58-tn.jpg" width="36" height="48" alt="Photo of Tobie Langel" />
<span class="tooltip">Tobie Langel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f592bc2388f1-tn.jpg" width="36" height="48" alt="Photo of Dominique Hazaël-Massieux" />
<span class="tooltip">Dominique Hazaël-Massieux</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/862c19e91965-tn.jpg" width="36" height="48" alt="Photo of Gregg Kellogg" />
<span class="tooltip">Gregg Kellogg</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/39d9da92abdc-tn.jpg" width="36" height="48" alt="Photo of Michael[tm] Smith" />
<span class="tooltip">Michael[tm] Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Matt Womer" />
<span class="tooltip">Matt Womer</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of John Allsopp" />
<span class="tooltip">John Allsopp</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8db2f7294bf3-tn.jpg" width="36" height="48" alt="Photo of Robin Berjon" />
<span class="tooltip">Robin Berjon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Vidhya Gholkar" />
<span class="tooltip">Vidhya Gholkar</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/fixing-appcache/wp-login.php?redirect_to=/community/fixing-appcache/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%66%69%78%69%6e%67%2d%61%70%70%63%61%63%68%65" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="54" data-creation-date="2011-09-26 ">
<a id="games"></a>
<header class="tMargin header_article">
<a href="#games" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Games
</a>
<em class="groupParticipants">54 participants</em>
<em class="groupDate">Date Created: 2011-09-26 </em>
</header>
<div class="group news_content news_content_open">
<p>The goal of the games community group is to improve the quality of open web standards that game developers rely on to create games. This is done by:
* Tracking specifications and vendor implementations related to open web games.
* Recommending new specifications to be produced and finding working group homes for them.
* Refining use cases to communicate specific needs of games.
* Suggesting refinements or fixes to existing specifications to better meet the needs of the game development community
* Evangelizing specifications to browser vendors.
* Documenting how to best use open web standards for games
* Evangelizing open web standards to game developers and game development best practices to web developers
The games community group will not develop any specifications, and thus, there will not be any Essential Claims under the W3C Contributor License Agreement or Final Specification Agreement.</p>
<p>News, publications, and more on the <a href="/community/games/" class="link-home">Games Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/games/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1ccc5bb6e19c-tn.jpg" width="36" height="48" alt="Photo of Charles McCathieNevile" />
<span class="tooltip">Charles McCathieNevile</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9f80a97b61ba-tn.jpg" width="36" height="48" alt="Photo of Rob Hawkes" />
<span class="tooltip">Rob Hawkes</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e6ddfba61129-tn.jpg" width="36" height="48" alt="Photo of Lars Knudsen" />
<span class="tooltip">Lars Knudsen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/4f7bbe155487-tn.jpg" width="36" height="48" alt="Photo of Alvar Laigna" />
<span class="tooltip">Alvar Laigna</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d68b496e4c9e-tn.jpg" width="36" height="48" alt="Photo of Erik Möller" />
<span class="tooltip">Erik Möller</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/39d9da92abdc-tn.jpg" width="36" height="48" alt="Photo of Michael[tm] Smith" />
<span class="tooltip">Michael[tm] Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/be593732284c-tn.jpg" width="36" height="48" alt="Photo of Jonathan Chetwynd" />
<span class="tooltip">Jonathan Chetwynd</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/fc1335493645-tn.jpg" width="36" height="48" alt="Photo of Grady Laksmono" />
<span class="tooltip">Grady Laksmono</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/949b710805ec-tn.jpg" width="36" height="48" alt="Photo of Szymon Pilkowski" />
<span class="tooltip">Szymon Pilkowski</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/games/wp-login.php?redirect_to=/community/games/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%67%61%6d%65%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="17" data-creation-date="2011-08-16 ">
<a id="editing"></a>
<header class="tMargin header_article">
<a href="#editing" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />HTML Editing APIs
</a>
<em class="groupParticipants">17 participants</em>
<em class="groupDate">Date Created: 2011-08-16 </em>
</header>
<div class="group news_content news_content_open">
<p>A group to work on APIs and other functionality related to rich-text HTML editing, such as (1) the contenteditable and designMode attributes (2)The execCommand(), queryCommandEnabled(), queryCommandIndeterm(), queryCommandState(), queryCommandSupported(), and queryCommandValue() methods on the Document interface (3) what exact effect user actions (such as typing text or hitting Enter) should have on rich-text editable regions (4) the Selection interface (5) spellcheck for rich-text editable regions, and (6) other functionality related to the foregoing. The group is expected to work on writing high-quality, detailed technical specifications suited for implementation by major browsers. It will start work with the preliminary specification hosted at http://aryeh.name/spec/editing/editing.html, and later add the Selection part of http://html5.org/specs/dom-range.html, both of which are currently developed entirely outside the W3C and are not close to interoperable implementation. The group's deliverables are expected to be submitted to the Recommendation track in the WebApps WG after they mature sufficiently.</p>
<p>News, publications, and more on the <a href="/community/editing/" class="link-home">HTML Editing APIs Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/editing/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/81b3b1ad81a4-tn.jpg" width="36" height="48" alt="Photo of J. Randall Owens" />
<span class="tooltip">J. Randall Owens</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/24046d934667-tn.jpg" width="36" height="48" alt="Photo of Karl Dubost" />
<span class="tooltip">Karl Dubost</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ae712882c023-tn.jpg" width="36" height="48" alt="Photo of Raanan Avidor" />
<span class="tooltip">Raanan Avidor</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/39d9da92abdc-tn.jpg" width="36" height="48" alt="Photo of Michael[tm] Smith" />
<span class="tooltip">Michael[tm] Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Ankit Thakkar" />
<span class="tooltip">Ankit Thakkar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/44fd8dfdc582-tn.jpg" width="36" height="48" alt="Photo of Dewi Wardani" />
<span class="tooltip">Dewi Wardani</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8db2f7294bf3-tn.jpg" width="36" height="48" alt="Photo of Robin Berjon" />
<span class="tooltip">Robin Berjon</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Thaddee Tyl" />
<span class="tooltip">Thaddee Tyl</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Anne van Kesteren" />
<span class="tooltip">Anne van Kesteren</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/editing/wp-login.php?redirect_to=/community/editing/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%65%64%69%74%69%6e%67" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="12" data-creation-date="2011-09-06 ">
<a id="hpcweb"></a>
<header class="tMargin header_article">
<a href="#hpcweb" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />High-Performance Computing
</a>
<em class="groupParticipants">12 participants</em>
<em class="groupDate">Date Created: 2011-09-06 </em>
</header>
<div class="group news_content news_content_open">
<p>This community group is focused on bringing high performance computing (HPC) to the web. In particular, we're interested in making the computing and data resources that underlie simulation science, scientific computing, and data-centric science easily accessible through web browsers. Our members are working on APIs that expose HPC resources via the web, as well as gateways and web applications that take advantage of these APIs. The major goal of this community is to accelerate the pace of development of web-based HPC applications. Recognizing that we can build on each other's work, and that a consistent approach to developing such tools can enable features that require communication across multiple computing centers, we are interested in sharing technologies and ideas.</p>
<p>News, publications, and more on the <a href="/community/hpcweb/" class="link-home">High-Performance Computing Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/hpcweb/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Shreyas Cholia" />
<span class="tooltip">Shreyas Cholia</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Vas Vasiliadis" />
<span class="tooltip">Vas Vasiliadis</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e31372ab44e9-tn.jpg" width="36" height="48" alt="Photo of David Skinner" />
<span class="tooltip">David Skinner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c4478c1e9e6a-tn.jpg" width="36" height="48" alt="Photo of Joel Martinez" />
<span class="tooltip">Joel Martinez</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a5f32dc4ea58-tn.jpg" width="36" height="48" alt="Photo of Brian Schott" />
<span class="tooltip">Brian Schott</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/74995877cf7d-tn.jpg" width="36" height="48" alt="Photo of Mark L Green" />
<span class="tooltip">Mark L Green</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Richard Gerber" />
<span class="tooltip">Richard Gerber</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/37d41b540cb5-tn.jpg" width="36" height="48" alt="Photo of Annette Greiner" />
<span class="tooltip">Annette Greiner</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of John R Neely Rob Neely" />
<span class="tooltip">John R Neely Rob Neely</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/hpcweb/wp-login.php?redirect_to=/community/hpcweb/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%68%70%63%77%65%62" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="30" data-creation-date="2011-09-01 ">
<a id="json-ld"></a>
<header class="tMargin header_article">
<a href="#json-ld" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />JSON for Linking Data
</a>
<em class="groupParticipants">30 participants</em>
<em class="groupDate">Date Created: 2011-09-01 </em>
</header>
<div class="group news_content news_content_open">
<p>JSON-LD (JavaScript Object Notation for Linking Data) is a lightweight Linked Data format that gives your data context. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on the already successful JSON format and provides a way to help JSON data interoperate at Web-scale. If you are already familiar with JSON, writing JSON-LD is very easy. These properties make JSON-LD an ideal Linked Data interchange language for JavaScript environments, Web service, and unstructured databases such as CouchDB and MongoDB.</p>
<p>News, publications, and more on the <a href="/community/json-ld/" class="link-home">JSON for Linking Data Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/json-ld/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e2e2beffefb-tn.jpg" width="36" height="48" alt="Photo of Ivan Herman" />
<span class="tooltip">Ivan Herman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e85a1d18b2ee-tn.jpg" width="36" height="48" alt="Photo of Manu Sporny" />
<span class="tooltip">Manu Sporny</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d8090dda9e4e-tn.jpg" width="36" height="48" alt="Photo of Jeff Sayre" />
<span class="tooltip">Jeff Sayre</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9d8c15fdc388-tn.jpg" width="36" height="48" alt="Photo of Omar ISBAITAN" />
<span class="tooltip">Omar ISBAITAN</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7b249ef22c8a-tn.jpg" width="36" height="48" alt="Photo of Dominik Tomaszuk" />
<span class="tooltip">Dominik Tomaszuk</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bdfa9afd9b08-tn.jpg" width="36" height="48" alt="Photo of Niklas Lindström" />
<span class="tooltip">Niklas Lindström</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/json-ld/wp-login.php?redirect_to=/community/json-ld/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6a%73%6f%6e%2d%6c%64" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="8" data-creation-date="2011-11-30 ">
<a id="mobindic"></a>
<header class="tMargin header_article">
<a href="#mobindic" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Mobile Web in Indian Languages
</a>
<em class="groupParticipants">8 participants</em>
<em class="groupDate">Date Created: 2011-11-30 </em>
</header>
<div class="group news_content news_content_open">
<p>The W3C India Office is setting up this Community Group on Mobile Web in Indian Languages with the objective of addressing the issues concerning with the enablement of mobile, smartphones and next generation wireless devices with Indian Languages support, seamless SMS and MMS sending and receiving in Indian Language , Uniform user experience on the mobile through using Indian Languages, and access to Indian Languages websites from mobiles. The goal is to achieve seamless access and operation irrespective of the mobile manufacturers and service providers. This group will help in building the ecosystem for enhancing the penetration of mobiles in the country to the rural areas using the Indian Languages enablement. The Group will also explore and develop the Indian Language requirements in existing and future Mobile Communication standards.</p>
<p>News, publications, and more on the <a href="/community/mobindic/" class="link-home">Mobile Web in Indian Languages Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/mobindic/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d06d3cc9dad4-tn.jpg" width="36" height="48" alt="Photo of J. Alan Bird" />
<span class="tooltip">J. Alan Bird</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8e6b30e382f6-tn.jpg" width="36" height="48" alt="Photo of Naitik Tyagi Tyagi" />
<span class="tooltip">Naitik Tyagi Tyagi</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/88f43f625252-tn.jpg" width="36" height="48" alt="Photo of Prashant Verma Prashant" />
<span class="tooltip">Prashant Verma Prashant</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Swaran Lata" />
<span class="tooltip">Swaran Lata</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/297b65ee6e12-tn.jpg" width="36" height="48" alt="Photo of chetan jain" />
<span class="tooltip">chetan jain</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Arun Tanksali" />
<span class="tooltip">Arun Tanksali</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Vijay Narayanan-Saroja" />
<span class="tooltip">Vijay Narayanan-Saroja</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Somnath Chandra" />
<span class="tooltip">Somnath Chandra</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/mobindic/wp-login.php?redirect_to=/community/mobindic/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6d%6f%62%69%6e%64%69%63" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="50" data-creation-date="2011-08-19 ">
<a id="native-web-apps"></a>
<header class="tMargin header_article">
<a href="#native-web-apps" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Native Web Apps
</a>
<em class="groupParticipants">50 participants</em>
<em class="groupDate">Date Created: 2011-08-19 </em>
</header>
<div class="group news_content news_content_open">
<p>A community driven take on the concepts driving the Widgets and Device APIs. Collectively understood these technologies form the basis for installable web apps. Living in a secured context these applications give the web access to traditionally native capabilities. </p>
<p>News, publications, and more on the <a href="/community/native-web-apps/" class="link-home">Native Web Apps Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/native-web-apps/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f592bc2388f1-tn.jpg" width="36" height="48" alt="Photo of Dominique Hazaël-Massieux" />
<span class="tooltip">Dominique Hazaël-Massieux</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/5714065f5a4e-tn.jpg" width="36" height="48" alt="Photo of Damon Oehlman" />
<span class="tooltip">Damon Oehlman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/166d79779607-tn.jpg" width="36" height="48" alt="Photo of Manrique Lopez" />
<span class="tooltip">Manrique Lopez</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f2ba7db576a0-tn.jpg" width="36" height="48" alt="Photo of David B. Nelson" />
<span class="tooltip">David B. Nelson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/3f3f3443b890-tn.jpg" width="36" height="48" alt="Photo of Garret Alfert" />
<span class="tooltip">Garret Alfert</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/53a841dbfe61-tn.jpg" width="36" height="48" alt="Photo of Lewis Nyman" />
<span class="tooltip">Lewis Nyman</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1851f70098ce-tn.jpg" width="36" height="48" alt="Photo of Nikolai Onken" />
<span class="tooltip">Nikolai Onken</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/58da5d81cdd0-tn.jpg" width="36" height="48" alt="Photo of Sorin Stefan" />
<span class="tooltip">Sorin Stefan</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e084676dca6-tn.jpg" width="36" height="48" alt="Photo of Sakari Poussa" />
<span class="tooltip">Sakari Poussa</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/native-web-apps/wp-login.php?redirect_to=/community/native-web-apps/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6e%61%74%69%76%65%2d%77%65%62%2d%61%70%70%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="3" data-creation-date="2011-11-21 ">
<a id="networkfriendly"></a>
<header class="tMargin header_article">
<a href="#networkfriendly" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Network-Friendly App and WebApp Best Bractices
</a>
<em class="groupParticipants">3 participants</em>
<em class="groupDate">Date Created: 2011-11-21 </em>
</header>
<div class="group news_content news_content_open">
<p>This group will work on best practices and developer guidelines for building apps and webapps that use Web technologies in a "network-friendly" way.</p>
<p>News, publications, and more on the <a href="/community/networkfriendly/" class="link-home">Network-Friendly App and WebApp Best Bractices Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/networkfriendly/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f592bc2388f1-tn.jpg" width="36" height="48" alt="Photo of Dominique Hazaël-Massieux" />
<span class="tooltip">Dominique Hazaël-Massieux</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/3f3f3443b890-tn.jpg" width="36" height="48" alt="Photo of Garret Alfert" />
<span class="tooltip">Garret Alfert</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/297b65ee6e12-tn.jpg" width="36" height="48" alt="Photo of chetan jain" />
<span class="tooltip">chetan jain</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/networkfriendly/wp-login.php?redirect_to=/community/networkfriendly/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6e%65%74%77%6f%72%6b%66%72%69%65%6e%64%6c%79" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="10" data-creation-date="2011-10-12 ">
<a id="networked-data"></a>
<header class="tMargin header_article">
<a href="#networked-data" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Networked Data
</a>
<em class="groupParticipants">10 participants</em>
<em class="groupDate">Date Created: 2011-10-12 </em>
</header>
<div class="group news_content news_content_open">
<p>The recent years have shown the need to deal with networked data in large-scale, distributed settings. Not only must the systems be scalable, elastic and performant, but also address *ability (usability, manageability, etc.). One key component is doing it the webby way. The Web is the leading concrete exemplar of RESTful design, being the result of posthumous analysis of what was already working with URIs, HTTP and HTML for a system of interlinked documents. Unfortunately the machine equivalent of HTML is still emerging. LinkedData has achieved some powerful results; automated navigation by querying the Linked Open Data cloud shows some of the potential. However many systems also need to evolve and be evolved. This can be expressed as 'service capability' and also needs to be supported with consistency. This should aim to eliminate the wide range of non-interoperable approaches muddling the current landscape of REST APIs through exploiting hypermedia concepts.
The Networked Data Community Group aims to provide a forum for collecting use cases including but not limited to the fields of science data (such as biology, astronomy, etc.), economics data (financial markets, etc.), health care, configuration and systems management, Green IT, and smart infrastructures (cities, etc.). Based on the collection of use cases the CG will derive requirements and write up best practices for dealing with the dynamics of the data.</p>
<p>News, publications, and more on the <a href="/community/networked-data/" class="link-home">Networked Data Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/networked-data/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/615fb82875b7-tn.jpg" width="36" height="48" alt="Photo of Christophe Gueret" />
<span class="tooltip">Christophe Gueret</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Loredana Laera" />
<span class="tooltip">Loredana Laera</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Kurt Cagle" />
<span class="tooltip">Kurt Cagle</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2adf5fa3f41b-tn.jpg" width="36" height="48" alt="Photo of Roger Menday" />
<span class="tooltip">Roger Menday</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Mark Baker" />
<span class="tooltip">Mark Baker</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Andy Seaborne" />
<span class="tooltip">Andy Seaborne</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/114336a7b278-tn.jpg" width="36" height="48" alt="Photo of Daniel Lewis" />
<span class="tooltip">Daniel Lewis</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9f86bc0edfee-tn.jpg" width="36" height="48" alt="Photo of Michael Hausenblas" />
<span class="tooltip">Michael Hausenblas</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/networked-data/wp-login.php?redirect_to=/community/networked-data/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6e%65%74%77%6f%72%6b%65%64%2d%64%61%74%61" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="15" data-creation-date="2011-06-29 ">
<a id="odrl"></a>
<header class="tMargin header_article">
<a href="#odrl" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />ODRL
</a>
<em class="groupParticipants">15 participants</em>
<em class="groupDate">Date Created: 2011-06-29 </em>
</header>
<div class="group news_content news_content_open">
<p> The Open Digital Rights Language (ODRL) Initiative is an international effort aimed at developing and promoting an open standard for policy expressions. ODRL provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution and consumption of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media.</p>
<p>News, publications, and more on the <a href="/community/odrl/" class="link-home">ODRL Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/odrl/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a311c8239829-tn.jpg" width="36" height="48" alt="Photo of Michael Steidl" />
<span class="tooltip">Michael Steidl</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/36908c311a0d-tn.jpg" width="36" height="48" alt="Photo of Renato Iannella" />
<span class="tooltip">Renato Iannella</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/10264d6aa199-tn.jpg" width="36" height="48" alt="Photo of Silvia Llorente" />
<span class="tooltip">Silvia Llorente</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c5f487e4da22-tn.jpg" width="36" height="48" alt="Photo of Stuart Myles" />
<span class="tooltip">Stuart Myles</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Philip Laszkowicz" />
<span class="tooltip">Philip Laszkowicz</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/3e09898d5ce5-tn.jpg" width="36" height="48" alt="Photo of Rigo Wenning" />
<span class="tooltip">Rigo Wenning</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/5126df5f4fc0-tn.jpg" width="36" height="48" alt="Photo of Ray Gauss II" />
<span class="tooltip">Ray Gauss II</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/acc979d39454-tn.jpg" width="36" height="48" alt="Photo of Daniel Pähler" />
<span class="tooltip">Daniel Pähler</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/56aea87214e1-tn.jpg" width="36" height="48" alt="Photo of Jean-Noel Colin" />
<span class="tooltip">Jean-Noel Colin</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/odrl/wp-login.php?redirect_to=/community/odrl/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6f%64%72%6c" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="7" data-creation-date="2012-01-11 ">
<a id="ostatus"></a>
<header class="tMargin header_article">
<a href="#ostatus" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />OStatus
</a>
<em class="groupParticipants">7 participants</em>
<em class="groupDate">Date Created: 2012-01-11 </em>
</header>
<div class="group news_content news_content_open">
<p>OStatus is a suite of protocols that lets people on different social networks interact. This group will develop the next version of the protocol.</p>
<p>News, publications, and more on the <a href="/community/ostatus/" class="link-home">OStatus Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/ostatus/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Laurent Walter Goix" />
<span class="tooltip">Laurent Walter Goix</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1e3f34f3dd47-tn.jpg" width="36" height="48" alt="Photo of James Walker" />
<span class="tooltip">James Walker</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Claudio Venezia" />
<span class="tooltip">Claudio Venezia</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9f3f61a30ef9-tn.jpg" width="36" height="48" alt="Photo of Luca Lamorte" />
<span class="tooltip">Luca Lamorte</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Daniel Renfer" />
<span class="tooltip">Daniel Renfer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2e1cfc2440ac-tn.jpg" width="36" height="48" alt="Photo of Evan Prodromou" />
<span class="tooltip">Evan Prodromou</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/ostatus/wp-login.php?redirect_to=/community/ostatus/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6f%73%74%61%74%75%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa bg shown" data-no-participants="6" data-creation-date="2011-08-09 ">
<a id="oilgaschem"></a>
<header class="tMargin header_article">
<a href="#oilgaschem" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Oil, Gas and Chemicals Business Group
</a>
<em class="groupParticipants">6 participants</em>
<em class="groupDate">Date Created: 2011-08-09 </em>
</header>
<div class="group news_content news_content_open">
<p>The Oil, Gas and Chemicals Business Group is intended to study and possibly demonstrate applications of Semantic Web technology to business issues in those industries. An example of the topics the Business Group could focus on is information describing the equipment used in major capital projects, with an eye to integration of that information with other major parts of the value chain such as production, maintenance and facilities engineering information systems. Another possibility is open publishing of catalog or metadata records according to published ontologies so that the published records can be queried, aggregated and analyzed in order to improve the efficiency and intelligence of searching for relevant resources.</p>
<p>News, publications, and more on the <a href="/community/oilgaschem/" class="link-home">Oil, Gas and Chemicals Business Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/oilgaschem/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1960013f9d47-tn.jpg" width="36" height="48" alt="Photo of Jennifer Sampson" />
<span class="tooltip">Jennifer Sampson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8e0d684a2211-tn.jpg" width="36" height="48" alt="Photo of Randy McKee" />
<span class="tooltip">Randy McKee</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Dan Brickley" />
<span class="tooltip">Dan Brickley</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/fd8571246388-tn.jpg" width="36" height="48" alt="Photo of Roger Cutler" />
<span class="tooltip">Roger Cutler</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bc0f6a908c26-tn.jpg" width="36" height="48" alt="Photo of Frank Chum" />
<span class="tooltip">Frank Chum</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/4b6a8e252ab0-tn.jpg" width="36" height="48" alt="Photo of Neil McNaughton" />
<span class="tooltip">Neil McNaughton</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/oilgaschem/wp-login.php?redirect_to=/community/oilgaschem/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6f%69%6c%67%61%73%63%68%65%6d" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="35" data-creation-date="2011-07-03 ">
<a id="ontolex"></a>
<header class="tMargin header_article">
<a href="#ontolex" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Ontology-Lexica
</a>
<em class="groupParticipants">35 participants</em>
<em class="groupDate">Date Created: 2011-07-03 </em>
</header>
<div class="group news_content news_content_open">
<p>The mission of the Ontology-Lexicon community group is to: (1) Develop models for the representation of lexica (and machine readable dictionaries) relative to ontologies. These lexicon models are intended to represent lexical entries containing information about how ontology elements (classes, properties, individuals etc.) are realized in multiple languages. In addition, the lexical entries contain appropriate linguistic (syntactic, morphological, semantic and pragmatic) information that constrains the usage of the entry. (2) Demonstrate the added value of representing lexica on the Semantic Web, in particularly focusing on how the use of linked data principles can allow for the re-use of existing linguistic information from resource such as WordNet. (3) Provide best practices for the use of linguistic data categories in combination with lexica. (4) Demonstrate that the creation of such lexica in combination with the semantics contained in ontologies can improve the performance of NLP tools. (5) Bring together people working on standards for representing linguistic information (syntactic, morphological, semantic and pragmatic) building on existing initiatives, and identifying collaboration tracks for the future. (6) Cater for interoperability among existing models to represent and structure linguistic information. (7) Demonstrate the added value of applications relying on the use of the combination of lexica and ontologies. </p>
<p>News, publications, and more on the <a href="/community/ontolex/" class="link-home">Ontology-Lexica Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/ontolex/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bf926da53569-tn.jpg" width="36" height="48" alt="Photo of John McCrae" />
<span class="tooltip">John McCrae</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/5afb0c937431-tn.jpg" width="36" height="48" alt="Photo of Gil Francopoulo" />
<span class="tooltip">Gil Francopoulo</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e456acfe739a-tn.jpg" width="36" height="48" alt="Photo of Maxime Lefrançois" />
<span class="tooltip">Maxime Lefrançois</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/164861d8619e-tn.jpg" width="36" height="48" alt="Photo of Elena Montiel Ponsoda" />
<span class="tooltip">Elena Montiel Ponsoda</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9d8c15fdc388-tn.jpg" width="36" height="48" alt="Photo of Omar ISBAITAN" />
<span class="tooltip">Omar ISBAITAN</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/42c4f8989cbf-tn.jpg" width="36" height="48" alt="Photo of Philipp Cimiano" />
<span class="tooltip">Philipp Cimiano</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0bf7a9196ff7-tn.jpg" width="36" height="48" alt="Photo of Piek Vossen" />
<span class="tooltip">Piek Vossen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1232da71202f-tn.jpg" width="36" height="48" alt="Photo of Tobias Wunner" />
<span class="tooltip">Tobias Wunner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/4392c91a8b86-tn.jpg" width="36" height="48" alt="Photo of Jorge Gracia" />
<span class="tooltip">Jorge Gracia</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0b8fabe7458e-tn.jpg" width="36" height="48" alt="Photo of Gerard de Melo" />
<span class="tooltip">Gerard de Melo</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/ontolex/wp-login.php?redirect_to=/community/ontolex/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6f%6e%74%6f%6c%65%78" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="11" data-creation-date="2011-12-08 ">
<a id="openannotation"></a>
<header class="tMargin header_article">
<a href="#openannotation" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Open Annotation
</a>
<em class="groupParticipants">11 participants</em>
<em class="groupDate">Date Created: 2011-12-08 </em>
</header>
<div class="group news_content news_content_open">
<p>The purpose of the Open Annotation Community Group is to work towards a common, RDF-based, specification for annotating digital resources. The effort will start by working towards a reconciliation of two proposals that have emerged over the past two years: the Annotation Ontology [1] and the Open Annotation Model [2]. Initially, editors of these proposals will closely collaborate to devise a common draft specification that addresses requirements and use cases that were identified in the course of their respective efforts. The goal is to make this draft available for public feedback and experimentation in the second quarter of 2012. The final deliverable of the Open Annotation Community Group will be a specification, published under an appropriate open license, that is informed by the existing proposals, the common draft specification, and the community feedback.
[1] http://code.google.com/p/annotation-ontology/
[2] http://www.openannotation.org/spec/beta/</p>
<p>News, publications, and more on the <a href="/community/openannotation/" class="link-home">Open Annotation Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/openannotation/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of James Smith" />
<span class="tooltip">James Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/53f519c25fe9-tn.jpg" width="36" height="48" alt="Photo of Nick Doty" />
<span class="tooltip">Nick Doty</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d1b665b892bf-tn.jpg" width="36" height="48" alt="Photo of Herbert Van De Sompel" />
<span class="tooltip">Herbert Van De Sompel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/29929ba39bc4-tn.jpg" width="36" height="48" alt="Photo of Paolo Ciccarese" />
<span class="tooltip">Paolo Ciccarese</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Bernhard Haslhofer" />
<span class="tooltip">Bernhard Haslhofer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1227beab161d-tn.jpg" width="36" height="48" alt="Photo of Tim Clark" />
<span class="tooltip">Tim Clark</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a04be927eb19-tn.jpg" width="36" height="48" alt="Photo of Robert Sanderson" />
<span class="tooltip">Robert Sanderson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/effef0d87ad9-tn.jpg" width="36" height="48" alt="Photo of Stian Soiland-Reyes" />
<span class="tooltip">Stian Soiland-Reyes</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/20a03c5b444d-tn.jpg" width="36" height="48" alt="Photo of Philip Desenne" />
<span class="tooltip">Philip Desenne</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8b6184c38145-tn.jpg" width="36" height="48" alt="Photo of Tom Habing" />
<span class="tooltip">Tom Habing</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/openannotation/wp-login.php?redirect_to=/community/openannotation/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%6f%70%65%6e%61%6e%6e%6f%74%61%74%69%6f%6e" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="2" data-creation-date="2011-12-30 ">
<a id="simplyseo"></a>
<header class="tMargin header_article">
<a href="#simplyseo" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Open Source SEO
</a>
<em class="groupParticipants">2 participants</em>
<em class="groupDate">Date Created: 2011-12-30 </em>
</header>
<div class="group news_content news_content_open">
<p>A group sharing related interests in the world of Open Source SEO; software, tools, tips, tricks, plugins, coding, scripting and more.</p>
<p>News, publications, and more on the <a href="/community/simplyseo/" class="link-home">Open Source SEO Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/simplyseo/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Ned Horton" />
<span class="tooltip">Ned Horton</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8624da373da1-tn.jpg" width="36" height="48" alt="Photo of nawaz Maraikayar" />
<span class="tooltip">nawaz Maraikayar</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/simplyseo/wp-login.php?redirect_to=/community/simplyseo/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%69%6d%70%6c%79%73%65%6f" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="18" data-creation-date="2012-01-11 ">
<a id="pubsub"></a>
<header class="tMargin header_article">
<a href="#pubsub" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />PubSubHubbub
</a>
<em class="groupParticipants">18 participants</em>
<em class="groupDate">Date Created: 2012-01-11 </em>
</header>
<div class="group news_content news_content_open">
<p>The group will promote and design a Publish-Subscribe pattern and protocol for the web. The current de-facto protocol for it, PubSubHubbub is already widely used but has a couple issues that we need to address.
We hope this protocol can be used in wide range of applications, from social web, to e-commerce or even search engines.</p>
<p>News, publications, and more on the <a href="/community/pubsub/" class="link-home">PubSubHubbub Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/pubsub/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1e3f34f3dd47-tn.jpg" width="36" height="48" alt="Photo of James Walker" />
<span class="tooltip">James Walker</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/6e86d3ac8963-tn.jpg" width="36" height="48" alt="Photo of Charl van Niekerk" />
<span class="tooltip">Charl van Niekerk</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a4140cfaae36-tn.jpg" width="36" height="48" alt="Photo of Ralph Meijer" />
<span class="tooltip">Ralph Meijer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/46b496bdc1aa-tn.jpg" width="36" height="48" alt="Photo of Melvin Carvalho" />
<span class="tooltip">Melvin Carvalho</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ee5de5f29c14-tn.jpg" width="36" height="48" alt="Photo of Markus Sabadello" />
<span class="tooltip">Markus Sabadello</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/792dadd6c027-tn.jpg" width="36" height="48" alt="Photo of Michiel de Jong" />
<span class="tooltip">Michiel de Jong</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b551de5560cf-tn.jpg" width="36" height="48" alt="Photo of Antoine Imbert" />
<span class="tooltip">Antoine Imbert</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/pubsub/wp-login.php?redirect_to=/community/pubsub/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%70%75%62%73%75%62" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="29" data-creation-date="2011-08-16 ">
<a id="rww"></a>
<header class="tMargin header_article">
<a href="#rww" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Read Write Web
</a>
<em class="groupParticipants">29 participants</em>
<em class="groupDate">Date Created: 2011-08-16 </em>
</header>
<div class="group news_content news_content_open">
<p>Focus on Read-Write aspect of the WWW via use of WebID protocol and ACLs.
</p>
<p>News, publications, and more on the <a href="/community/rww/" class="link-home">Read Write Web Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/rww/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b83ee28b5b86-tn.jpg" width="36" height="48" alt="Photo of Andrei Sambra" />
<span class="tooltip">Andrei Sambra</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/576b3d1b80f2-tn.jpg" width="36" height="48" alt="Photo of Jonathan Jeon" />
<span class="tooltip">Jonathan Jeon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/792dadd6c027-tn.jpg" width="36" height="48" alt="Photo of Michiel de Jong" />
<span class="tooltip">Michiel de Jong</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1696edd07008-tn.jpg" width="36" height="48" alt="Photo of Danny Ayers" />
<span class="tooltip">Danny Ayers</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8db2f7294bf3-tn.jpg" width="36" height="48" alt="Photo of Robin Berjon" />
<span class="tooltip">Robin Berjon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d5872b681a72-tn.jpg" width="36" height="48" alt="Photo of Sebastian Schaffert" />
<span class="tooltip">Sebastian Schaffert</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ae712882c023-tn.jpg" width="36" height="48" alt="Photo of Raanan Avidor" />
<span class="tooltip">Raanan Avidor</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ac37428330fa-tn.jpg" width="36" height="48" alt="Photo of Bob Ferris" />
<span class="tooltip">Bob Ferris</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/rww/wp-login.php?redirect_to=/community/rww/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%72%77%77" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="19" data-creation-date="2011-11-03 ">
<a id="w3process"></a>
<header class="tMargin header_article">
<a href="#w3process" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Revising W3C Process
</a>
<em class="groupParticipants">19 participants</em>
<em class="groupDate">Date Created: 2011-11-03 </em>
</header>
<div class="group news_content news_content_open">
<p>Examine the way W3C works. Propose improvements to the formal processes. These will be given to the Advisory Board, which currently manages that process.</p>
<p>News, publications, and more on the <a href="/community/w3process/" class="link-home">Revising W3C Process Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/w3process/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/15746995b69a-tn.jpg" width="36" height="48" alt="Photo of Marcos Caceres" />
<span class="tooltip">Marcos Caceres</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/990711e0c64d-tn.jpg" width="36" height="48" alt="Photo of Steve Faulkner" />
<span class="tooltip">Steve Faulkner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/59cc8f2e1eac-tn.jpg" width="36" height="48" alt="Photo of TH Schee" />
<span class="tooltip">TH Schee</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/76b20a35dff2-tn.jpg" width="36" height="48" alt="Photo of Jeff Jaffe" />
<span class="tooltip">Jeff Jaffe</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7de930e0ef54-tn.jpg" width="36" height="48" alt="Photo of Wayne Carr" />
<span class="tooltip">Wayne Carr</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f65c8212ef33-tn.jpg" width="36" height="48" alt="Photo of Arthur Barstow" />
<span class="tooltip">Arthur Barstow</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/39d9da92abdc-tn.jpg" width="36" height="48" alt="Photo of Michael[tm] Smith" />
<span class="tooltip">Michael[tm] Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2699092468a3-tn.jpg" width="36" height="48" alt="Photo of Kai Scheppe" />
<span class="tooltip">Kai Scheppe</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbf7cb725a58-tn.jpg" width="36" height="48" alt="Photo of Tobie Langel" />
<span class="tooltip">Tobie Langel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/285a6af4dd13-tn.jpg" width="36" height="48" alt="Photo of Olivier Thereaux" />
<span class="tooltip">Olivier Thereaux</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/w3process/wp-login.php?redirect_to=/community/w3process/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%77%33%70%72%6f%63%65%73%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="10" data-creation-date="2011-10-27 ">
<a id="svgopentype"></a>
<header class="tMargin header_article">
<a href="#svgopentype" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />SVG glyphs for OpenType
</a>
<em class="groupParticipants">10 participants</em>
<em class="groupDate">Date Created: 2011-10-27 </em>
</header>
<div class="group news_content news_content_open">
<p>Extension of OpenType to allow multicolor, animated SVG glyphs while reusing the OpenType layout facilities.</p>
<p>News, publications, and more on the <a href="/community/svgopentype/" class="link-home">SVG glyphs for OpenType Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/svgopentype/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/10a7185b9e62-tn.jpg" width="36" height="48" alt="Photo of Cameron McCormack" />
<span class="tooltip">Cameron McCormack</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Tal Leming" />
<span class="tooltip">Tal Leming</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Christopher Slye" />
<span class="tooltip">Christopher Slye</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Sairus Patel" />
<span class="tooltip">Sairus Patel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1b5de9efaf00-tn.jpg" width="36" height="48" alt="Photo of Vincent Hardy" />
<span class="tooltip">Vincent Hardy</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Vladimir Levantovsky" />
<span class="tooltip">Vladimir Levantovsky</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/5341b617d606-tn.jpg" width="36" height="48" alt="Photo of Chris Lilley" />
<span class="tooltip">Chris Lilley</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Leonard Rosenthol" />
<span class="tooltip">Leonard Rosenthol</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/svgopentype/wp-login.php?redirect_to=/community/svgopentype/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%76%67%6f%70%65%6e%74%79%70%65" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="26" data-creation-date="2011-11-02 ">
<a id="scriptlib"></a>
<header class="tMargin header_article">
<a href="#scriptlib" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Script Library
</a>
<em class="groupParticipants">26 participants</em>
<em class="groupDate">Date Created: 2011-11-02 </em>
</header>
<div class="group news_content news_content_open">
<p>A forum for improved communication between script library authors and users, and W3C working groups working on relevant specifications.</p>
<p>News, publications, and more on the <a href="/community/scriptlib/" class="link-home">Script Library Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/scriptlib/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c1ec1434fec8-tn.jpg" width="36" height="48" alt="Photo of John Resig" />
<span class="tooltip">John Resig</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f592bc2388f1-tn.jpg" width="36" height="48" alt="Photo of Dominique Hazaël-Massieux" />
<span class="tooltip">Dominique Hazaël-Massieux</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c18e8ddde3ff-tn.jpg" width="36" height="48" alt="Photo of Anssi Kostiainen" />
<span class="tooltip">Anssi Kostiainen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/297b65ee6e12-tn.jpg" width="36" height="48" alt="Photo of chetan jain" />
<span class="tooltip">chetan jain</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/39d9da92abdc-tn.jpg" width="36" height="48" alt="Photo of Michael[tm] Smith" />
<span class="tooltip">Michael[tm] Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/40c34940d6d4-tn.jpg" width="36" height="48" alt="Photo of Rick Waldron" />
<span class="tooltip">Rick Waldron</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/10a7185b9e62-tn.jpg" width="36" height="48" alt="Photo of Cameron McCormack" />
<span class="tooltip">Cameron McCormack</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bca060abcd91-tn.jpg" width="36" height="48" alt="Photo of Mike Taylor" />
<span class="tooltip">Mike Taylor</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e64ebc69790f-tn.jpg" width="36" height="48" alt="Photo of Richard Worth" />
<span class="tooltip">Richard Worth</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/scriptlib/wp-login.php?redirect_to=/community/scriptlib/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%63%72%69%70%74%6c%69%62" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="40" data-creation-date="2011-07-08 ">
<a id="semnews"></a>
<header class="tMargin header_article">
<a href="#semnews" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Semantic News
</a>
<em class="groupParticipants">40 participants</em>
<em class="groupDate">Date Created: 2011-07-08 </em>
</header>
<div class="group news_content news_content_open">
<p>The Semantic News Community Group is a forum for exploring the intersection of W3C semantic technologies and news gathering, production, distribution and consumption.
It will focus on a common representation for abstract ideas in the news domain such as a 'news event' or a domain ontology for news. This includes the following subject areas:
1. Review, test and comment on existing and proposed standards for semantic technologies in the news domain.
2. Encourage the reuse of well-known datasets and ontologies and propose mappings between them as required.
3. Best practices for publishing, exchanging and linking data, including use cases.
4. Development of prototypes to help build the business case for this approach.
5. Discuss design principles of schemas and ontologies.</p>
<p>News, publications, and more on the <a href="/community/semnews/" class="link-home">Semantic News Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/semnews/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a59ce895c917-tn.jpg" width="36" height="48" alt="Photo of Philip Dudchuk" />
<span class="tooltip">Philip Dudchuk</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/777dce94baa3-tn.jpg" width="36" height="48" alt="Photo of Stefane Fermigier" />
<span class="tooltip">Stefane Fermigier</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/84d5493ba0c7-tn.jpg" width="36" height="48" alt="Photo of Paul Wilton" />
<span class="tooltip">Paul Wilton</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f17f02c09df2-tn.jpg" width="36" height="48" alt="Photo of Fabien Gandon" />
<span class="tooltip">Fabien Gandon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/93783a57a754-tn.jpg" width="36" height="48" alt="Photo of Anthony Rifkin" />
<span class="tooltip">Anthony Rifkin</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/55a04dc72d88-tn.jpg" width="36" height="48" alt="Photo of Roger Macdonald" />
<span class="tooltip">Roger Macdonald</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/95a0fa294343-tn.jpg" width="36" height="48" alt="Photo of Alexandre Bertails" />
<span class="tooltip">Alexandre Bertails</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ae712882c023-tn.jpg" width="36" height="48" alt="Photo of Raanan Avidor" />
<span class="tooltip">Raanan Avidor</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9d8c15fdc388-tn.jpg" width="36" height="48" alt="Photo of Omar ISBAITAN" />
<span class="tooltip">Omar ISBAITAN</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/semnews/wp-login.php?redirect_to=/community/semnews/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%65%6d%6e%65%77%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="6" data-creation-date="2011-11-03 ">
<a id="semwebprog"></a>
<header class="tMargin header_article">
<a href="#semwebprog" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Semantic Web Programming Languages
</a>
<em class="groupParticipants">6 participants</em>
<em class="groupDate">Date Created: 2011-11-03 </em>
</header>
<div class="group news_content news_content_open">
<p>A community focused on the adoption of Semantic Web concepts within contemporary and new programming languages. These will incorporate W3C Semantic Web standards for Ontology, Linked data and representations as integral parts of the development tool chains. Particularly the group will aim to 1. Develop new semantically-aware programming languages, 2. Modify existing languages to be semantically-aware 3. Develop design patterns for semantically-aware programming. 4. Develop Ontologies for computer programming concepts to allow inter-lingual sharing of basic and domain-specific algorithms. </p>
<p>News, publications, and more on the <a href="/community/semwebprog/" class="link-home">Semantic Web Programming Languages Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/semwebprog/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0a96faefe4b7-tn.jpg" width="36" height="48" alt="Photo of Peter Birch" />
<span class="tooltip">Peter Birch</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Francisco J. Lopez-Pellicer" />
<span class="tooltip">Francisco J. Lopez-Pellicer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ac37428330fa-tn.jpg" width="36" height="48" alt="Photo of Bob Ferris" />
<span class="tooltip">Bob Ferris</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9d8c15fdc388-tn.jpg" width="36" height="48" alt="Photo of Omar ISBAITAN" />
<span class="tooltip">Omar ISBAITAN</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Daniel Renfer" />
<span class="tooltip">Daniel Renfer</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Kurt Cagle" />
<span class="tooltip">Kurt Cagle</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/semwebprog/wp-login.php?redirect_to=/community/semwebprog/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%65%6d%77%65%62%70%72%6f%67" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="0" data-creation-date="2011-12-08 ">
<a id="spade"></a>
<header class="tMargin header_article">
<a href="#spade" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Smart Phone Application Developer
</a>
<em class="groupParticipants">0 participants</em>
<em class="groupDate">Date Created: 2011-12-08 </em>
</header>
<div class="group news_content news_content_open">
<p>This Group will help developers create Internet based Smart Phone applications. Participants will collaborate and code to make the web equally and easily accessible through Smart Phones. This group will document the new research papers created by group members regarding Internet based Phone applications.</p>
<p>News, publications, and more on the <a href="/community/spade/" class="link-home">Smart Phone Application Developer Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/spade/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li class="w-msg">No participants at this time</li>
</ul>
<p class="bMargin">
<a href="/community/spade/wp-login.php?redirect_to=/community/spade/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%70%61%64%65" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="9" data-creation-date="2012-01-10 ">
<a id="socbizcg"></a>
<header class="tMargin header_article">
<a href="#socbizcg" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Social Business
</a>
<em class="groupParticipants">9 participants</em>
<em class="groupDate">Date Created: 2012-01-10 </em>
</header>
<div class="group news_content news_content_open">
<p>This group will focus on social business use cases and application of those use cases to standards, standards improvements, and standards gaps. Initial conversations will be based on the W3C Jam Results recommendations:
http://www.w3.org/2011/socialbusiness-jam/report.html</p>
<p>News, publications, and more on the <a href="/community/socbizcg/" class="link-home">Social Business Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/socbizcg/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Alberto Manuel" />
<span class="tooltip">Alberto Manuel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/6808baa9fb2d-tn.jpg" width="36" height="48" alt="Photo of Matthew Marum" />
<span class="tooltip">Matthew Marum</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Andy Smith" />
<span class="tooltip">Andy Smith</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of oliver marks" />
<span class="tooltip">oliver marks</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/76f4e3597159-tn.jpg" width="36" height="48" alt="Photo of David Robinson" />
<span class="tooltip">David Robinson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e68816d0babf-tn.jpg" width="36" height="48" alt="Photo of Thomas Roessler" />
<span class="tooltip">Thomas Roessler</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/59cc8f2e1eac-tn.jpg" width="36" height="48" alt="Photo of TH Schee" />
<span class="tooltip">TH Schee</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Danny Bishop" />
<span class="tooltip">Danny Bishop</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2e1cfc2440ac-tn.jpg" width="36" height="48" alt="Photo of Evan Prodromou" />
<span class="tooltip">Evan Prodromou</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/socbizcg/wp-login.php?redirect_to=/community/socbizcg/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%73%6f%63%62%69%7a%63%67" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="9" data-creation-date="2011-10-14 ">
<a id="timed-text"></a>
<header class="tMargin header_article">
<a href="#timed-text" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Timed Text
</a>
<em class="groupParticipants">9 participants</em>
<em class="groupDate">Date Created: 2011-10-14 </em>
</header>
<div class="group news_content news_content_open">
<p>A number of organisations are now working with the TTML specification, and a degree of parallel discussion is happening. Some of that discussion is behind closed doors. There is a need to cross fertilize such groups so that the standard does not diverge, in addition new features and errata are being developed. This group is established to act as a forum for individuals, companies and consortia that are working with the TTML specification to address such issues.
The core activities of the group will be as follows:
- To act as a central forum for technical questions and answers on TTML
- To act as a point of coordination for extensions and features being created in other organizations.
- To identify issues, gaps and errata in the specification for future standardization.
- Support the Timed Text Working Group (TTWG)) to develop a community standard which updates TTML 1.0 to address issues, gaps, and errata.
- To develop and document tutorials, examples and best practice workflows
- To host example code, templates, test data, and implementation code</p>
<p>News, publications, and more on the <a href="/community/timed-text/" class="link-home">Timed Text Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/timed-text/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8624da373da1-tn.jpg" width="36" height="48" alt="Photo of nawaz Maraikayar" />
<span class="tooltip">nawaz Maraikayar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f27a99c41415-tn.jpg" width="36" height="48" alt="Photo of John Foliot" />
<span class="tooltip">John Foliot</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/990711e0c64d-tn.jpg" width="36" height="48" alt="Photo of Steve Faulkner" />
<span class="tooltip">Steve Faulkner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/285a6af4dd13-tn.jpg" width="36" height="48" alt="Photo of Olivier Thereaux" />
<span class="tooltip">Olivier Thereaux</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Christopher Johnson" />
<span class="tooltip">Christopher Johnson</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1116be0402b9-tn.jpg" width="36" height="48" alt="Photo of John Birch" />
<span class="tooltip">John Birch</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Andreas Tai" />
<span class="tooltip">Andreas Tai</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bb9400dd1422-tn.jpg" width="36" height="48" alt="Photo of Michael Jordan" />
<span class="tooltip">Michael Jordan</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/timed-text/wp-login.php?redirect_to=/community/timed-text/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%74%69%6d%65%64%2d%74%65%78%74" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="17" data-creation-date="2011-08-17 ">
<a id="unctsw"></a>
<header class="tMargin header_article">
<a href="#unctsw" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Uncertainty, Trust and the Semantic Web
</a>
<em class="groupParticipants">17 participants</em>
<em class="groupDate">Date Created: 2011-08-17 </em>
</header>
<div class="group news_content news_content_open">
<p>Focus on trust and uncertainty aspect of the Semantic Web.
The trust and uncertainty domains, although having different meanings, but can be represented in a similar manner.</p>
<p>News, publications, and more on the <a href="/community/unctsw/" class="link-home">Uncertainty, Trust and the Semantic Web Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/unctsw/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/9d8c15fdc388-tn.jpg" width="36" height="48" alt="Photo of Omar ISBAITAN" />
<span class="tooltip">Omar ISBAITAN</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ae712882c023-tn.jpg" width="36" height="48" alt="Photo of Raanan Avidor" />
<span class="tooltip">Raanan Avidor</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b83ee28b5b86-tn.jpg" width="36" height="48" alt="Photo of Andrei Sambra" />
<span class="tooltip">Andrei Sambra</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/46b496bdc1aa-tn.jpg" width="36" height="48" alt="Photo of Melvin Carvalho" />
<span class="tooltip">Melvin Carvalho</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7b249ef22c8a-tn.jpg" width="36" height="48" alt="Photo of Dominik Tomaszuk" />
<span class="tooltip">Dominik Tomaszuk</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7b38c08262f0-tn.jpg" width="36" height="48" alt="Photo of Aaron Bradley" />
<span class="tooltip">Aaron Bradley</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e2e2beffefb-tn.jpg" width="36" height="48" alt="Photo of Ivan Herman" />
<span class="tooltip">Ivan Herman</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/unctsw/wp-login.php?redirect_to=/community/unctsw/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%75%6e%63%74%73%77" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="25" data-creation-date="2011-09-06 ">
<a id="unhosted"></a>
<header class="tMargin header_article">
<a href="#unhosted" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Unhosted Web
</a>
<em class="groupParticipants">25 participants</em>
<em class="groupDate">Date Created: 2011-09-06 </em>
</header>
<div class="group news_content news_content_open">
<p>We propose per-user cross-origin cloud storage, much in the sense described in http://www.w3.org/DesignIssues/CloudStorage.html We are a non-profit project and have so far defined a first draft of our standard for this: http://unhosted.org/spec/dav/0.1 We have researched a lot of aspects in the last few months, and are about move to version 0.2 of our standard. People are starting to implement this with significant user base sizes, and other people are starting to develop apps that rely on it, which is now would be a good time to make this into a w3c cg.</p>
<p>News, publications, and more on the <a href="/community/unhosted/" class="link-home">Unhosted Web Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/unhosted/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/792dadd6c027-tn.jpg" width="36" height="48" alt="Photo of Michiel de Jong" />
<span class="tooltip">Michiel de Jong</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/46b496bdc1aa-tn.jpg" width="36" height="48" alt="Photo of Melvin Carvalho" />
<span class="tooltip">Melvin Carvalho</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/615fb82875b7-tn.jpg" width="36" height="48" alt="Photo of Christophe Gueret" />
<span class="tooltip">Christophe Gueret</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c70cca4f2c51-tn.jpg" width="36" height="48" alt="Photo of Daniel Fahlke" />
<span class="tooltip">Daniel Fahlke</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/3f3f3443b890-tn.jpg" width="36" height="48" alt="Photo of Garret Alfert" />
<span class="tooltip">Garret Alfert</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/576b3d1b80f2-tn.jpg" width="36" height="48" alt="Photo of Jonathan Jeon" />
<span class="tooltip">Jonathan Jeon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b879925f9e7b-tn.jpg" width="36" height="48" alt="Photo of Jan-Christoph Borchardt" />
<span class="tooltip">Jan-Christoph Borchardt</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/unhosted/wp-login.php?redirect_to=/community/unhosted/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%75%6e%68%6f%73%74%65%64" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="6" data-creation-date="2011-09-26 ">
<a id="userix"></a>
<header class="tMargin header_article">
<a href="#userix" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />User Interaction and Experience
</a>
<em class="groupParticipants">6 participants</em>
<em class="groupDate">Date Created: 2011-09-26 </em>
</header>
<div class="group news_content news_content_open">
<p>As the number of Web applications is exponential, the capability to link user activity from application to another is also growing. However, these connections are more or less relying on specific models and APIs and set-up of a new connected application needs a tons of one-to-one configuration. This group will try to gather from these experience in order to build a more coherent model for sharing - semantically enabled & privacy safe - interaction data in order to provide better user experience among web applications.</p>
<p>News, publications, and more on the <a href="/community/userix/" class="link-home">User Interaction and Experience Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/userix/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/4f7bbe155487-tn.jpg" width="36" height="48" alt="Photo of Alvar Laigna" />
<span class="tooltip">Alvar Laigna</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Romain NOEL" />
<span class="tooltip">Romain NOEL</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/11c20f2ad682-tn.jpg" width="36" height="48" alt="Photo of g dupont" />
<span class="tooltip">g dupont</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Aurélien Saint Requier" />
<span class="tooltip">Aurélien Saint Requier</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Natan Santolo" />
<span class="tooltip">Natan Santolo</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Ankit Thakkar" />
<span class="tooltip">Ankit Thakkar</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/userix/wp-login.php?redirect_to=/community/userix/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%75%73%65%72%69%78" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="11" data-creation-date="2011-09-09 ">
<a id="vivo"></a>
<header class="tMargin header_article">
<a href="#vivo" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />VIVO Open Research Networking
</a>
<em class="groupParticipants">11 participants</em>
<em class="groupDate">Date Created: 2011-09-09 </em>
</header>
<div class="group news_content news_content_open">
<p>VIVO (http://vivoweb.org, http://vivo.sourceforge.net) is an open source semantic web platform and ontology for representing researchers and their associated training, background, activities, organizations, and outputs including publications and research resources. VIVO publishes linked open data integrated from a variety of authoritative sources as well as from direct user input. This group will bring together developers, ontologists, adopters, outreach and policy strategists, end users, and members of closely related communities (e.g., http://orcid.org, https://www.eagle-i.org/home/) to collaborate in the production and use of semantic data for research representation and networking.</p>
<p>News, publications, and more on the <a href="/community/vivo/" class="link-home">VIVO Open Research Networking Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/vivo/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Jonathan Corson-Rikert" />
<span class="tooltip">Jonathan Corson-Rikert</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Miles Worthington" />
<span class="tooltip">Miles Worthington</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/33692d524b61-tn.jpg" width="36" height="48" alt="Photo of David Lyons" />
<span class="tooltip">David Lyons</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Nicholas Rejack" />
<span class="tooltip">Nicholas Rejack</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Rowan Wilson" />
<span class="tooltip">Rowan Wilson</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Nick Cappadona" />
<span class="tooltip">Nick Cappadona</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Stella Mitchell" />
<span class="tooltip">Stella Mitchell</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bea560678a52-tn.jpg" width="36" height="48" alt="Photo of Erich Bremer" />
<span class="tooltip">Erich Bremer</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Georgeta Bordea" />
<span class="tooltip">Georgeta Bordea</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Leslie McIntosh" />
<span class="tooltip">Leslie McIntosh</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/vivo/wp-login.php?redirect_to=/community/vivo/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%76%69%76%6f" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="8" data-creation-date="2011-08-31 ">
<a id="webcryptoapi"></a>
<header class="tMargin header_article">
<a href="#webcryptoapi" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Web Crypto API
</a>
<em class="groupParticipants">8 participants</em>
<em class="groupDate">Date Created: 2011-08-31 </em>
</header>
<div class="group news_content news_content_open">
<p>This group discusses Web Crypto APIs for signing the message by the user certificate issuing from the certificate authority for SSL communications. It is based on http://html5.creation.net/webcrypto-api/</p>
<p>News, publications, and more on the <a href="/community/webcryptoapi/" class="link-home">Web Crypto API Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/webcryptoapi/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Yann MATHIEU" />
<span class="tooltip">Yann MATHIEU</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7dd9b7d89107-tn.jpg" width="36" height="48" alt="Photo of Channy Yun" />
<span class="tooltip">Channy Yun</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Nathan Rixham" />
<span class="tooltip">Nathan Rixham</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/15746995b69a-tn.jpg" width="36" height="48" alt="Photo of Marcos Caceres" />
<span class="tooltip">Marcos Caceres</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Håvard Molland" />
<span class="tooltip">Håvard Molland</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1c94510bf471-tn.jpg" width="36" height="48" alt="Photo of Henry Story" />
<span class="tooltip">Henry Story</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Harry Halpin" />
<span class="tooltip">Harry Halpin</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/webcryptoapi/wp-login.php?redirect_to=/community/webcryptoapi/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%77%65%62%63%72%79%70%74%6f%61%70%69" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="80" data-creation-date="2011-06-29 ">
<a id="webed"></a>
<header class="tMargin header_article">
<a href="#webed" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Web Education
</a>
<em class="groupParticipants">80 participants</em>
<em class="groupDate">Date Created: 2011-06-29 </em>
</header>
<div class="group news_content news_content_open">
<p>The Web Education Community Group (CG) aims to evolve the Web and improve the overall skill set of the web industry by improving the quality of available web education resources and courses around the world. To do this, we are engaging in several activities, which are the responsibilities of different projects inside the CG:
1. Learning material: Creating a comprehensive series of tutorial articles to teach all the W3C technologies, which will constantly be updated so that it remains current and best practice. The main basis of this is currently the Web standards curriculum.
2. Curriculum: Creating a series of structured courses based on the learning material, which educators from around the world can use to teach web design and development in a consistent, effective way.
3. Outreach: Contacting educators, companies and trainers and getting them to adopt our learning material and curricula.
4. Training and certification: Training the trainers to help them teach web design and development more effectively, and formulating a plan to, and researching the feasibility of, partnering with them to provide W3C endorsed qualifications.
5. Membership and policy: Dealing with issues of membership and policy.
6. International Education: Different groups responsible for outreach and translations into specific languages to serve groups for whom English is not the primary language.
For more information, follow the relevant links in the Pages list.
Please note that the Web Education Community Group will not be developing any specifications.
</p>
<p>News, publications, and more on the <a href="/community/webed/" class="link-home">Web Education Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/webed/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/41978b200899-tn.jpg" width="36" height="48" alt="Photo of Andrew Cooper" />
<span class="tooltip">Andrew Cooper</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d01f84e57a83-tn.jpg" width="36" height="48" alt="Photo of Jose De Loera" />
<span class="tooltip">Jose De Loera</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e0446f4c9c85-tn.jpg" width="36" height="48" alt="Photo of Ankit Bahuguna" />
<span class="tooltip">Ankit Bahuguna</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/be916e0638fc-tn.jpg" width="36" height="48" alt="Photo of Carlos Cecconi" />
<span class="tooltip">Carlos Cecconi</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4184ca3be2-tn.jpg" width="36" height="48" alt="Photo of Schalk Neethling" />
<span class="tooltip">Schalk Neethling</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/eff840713dc4-tn.jpg" width="36" height="48" alt="Photo of Paolo Moreno" />
<span class="tooltip">Paolo Moreno</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b84b0cdcbf70-tn.jpg" width="36" height="48" alt="Photo of Mark DuBois" />
<span class="tooltip">Mark DuBois</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e64ebc69790f-tn.jpg" width="36" height="48" alt="Photo of Richard Worth" />
<span class="tooltip">Richard Worth</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/4e0bc1a2fdf2-tn.jpg" width="36" height="48" alt="Photo of Delphine Malassingne" />
<span class="tooltip">Delphine Malassingne</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/b9d0fa8545b8-tn.jpg" width="36" height="48" alt="Photo of Alexander Dawson" />
<span class="tooltip">Alexander Dawson</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/webed/wp-login.php?redirect_to=/community/webed/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%77%65%62%65%64" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="42" data-creation-date="2011-09-30 ">
<a id="texttracks"></a>
<header class="tMargin header_article">
<a href="#texttracks" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Web Media Text Tracks
</a>
<em class="groupParticipants">42 participants</em>
<em class="groupDate">Date Created: 2011-09-30 </em>
</header>
<div class="group news_content news_content_open">
<p>This group will work on text tracks for video on the Web, applied to captioning, subtitling and other purposes. This group plans to work initially on:
1) Documenting a semantic model underlying the caption formats in use, notably TTML, CEA 608/708, EBU STL, and WebVTT.
2) Creating a community specification for WebVTT.
3) Defining the mappings between WebVTT and some selected formats, including at least TTML (W3C/SMPTE), and CEA 608/708.
4) Creating web developer reference and tutorial material, including worked examples.
5) Creating a test suite and/or tools.
A possible transition to REC-track for some of these document(s) is envisaged and that possibility will be used to guide the work and procedures.
The group may produce recommendations for work in other groups, such as CSS, HTML5, and TTWG.</p>
<p>News, publications, and more on the <a href="/community/texttracks/" class="link-home">Web Media Text Tracks Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/texttracks/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/dc81b76fa09b-tn.jpg" width="36" height="48" alt="Photo of Giuseppe Pascale" />
<span class="tooltip">Giuseppe Pascale</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/e050f706277d-tn.jpg" width="36" height="48" alt="Photo of Julien Villetorte" />
<span class="tooltip">Julien Villetorte</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c0c76eed53a3-tn.jpg" width="36" height="48" alt="Photo of Jeroen Wijering" />
<span class="tooltip">Jeroen Wijering</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/91dd5deecb67-tn.jpg" width="36" height="48" alt="Photo of James King" />
<span class="tooltip">James King</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/bba9c6054705-tn.jpg" width="36" height="48" alt="Photo of Raphaël Troncy" />
<span class="tooltip">Raphaël Troncy</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/990711e0c64d-tn.jpg" width="36" height="48" alt="Photo of Steve Faulkner" />
<span class="tooltip">Steve Faulkner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/55a04dc72d88-tn.jpg" width="36" height="48" alt="Photo of Roger Macdonald" />
<span class="tooltip">Roger Macdonald</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/6982a9215001-tn.jpg" width="36" height="48" alt="Photo of David Singer" />
<span class="tooltip">David Singer</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/1bf7a89eebef-tn.jpg" width="36" height="48" alt="Photo of Thomas Steiner" />
<span class="tooltip">Thomas Steiner</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/f416f38f9fe1-tn.jpg" width="36" height="48" alt="Photo of Ralph Giles" />
<span class="tooltip">Ralph Giles</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/texttracks/wp-login.php?redirect_to=/community/texttracks/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%74%65%78%74%74%72%61%63%6b%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="29" data-creation-date="2011-06-29 ">
<a id="webpayments"></a>
<header class="tMargin header_article">
<a href="#webpayments" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Web Payments
</a>
<em class="groupParticipants">29 participants</em>
<em class="groupDate">Date Created: 2011-06-29 </em>
</header>
<div class="group news_content news_content_open">
<p>The purpose of the Web Payments Community Group is to discuss, research,
prototype, and create working systems that enable Universal Payment for
the Web. The goal is to create a safe, decentralized system and a set of
open, patent and royalty-free specifications that allow people on the
Web to send each other money as easily as they exchange instant messages
and e-mail today. The group will focus on transforming the way we reward
each other on the Web as well as how we organize financial resources to
enhance our personal lives and pursue endeavors that improve upon the
human condition.</p>
<p>News, publications, and more on the <a href="/community/webpayments/" class="link-home">Web Payments Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/webpayments/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/416d6ea6241e-tn.jpg" width="36" height="48" alt="Photo of Ted Thibodeau" />
<span class="tooltip">Ted Thibodeau</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/862c19e91965-tn.jpg" width="36" height="48" alt="Photo of Gregg Kellogg" />
<span class="tooltip">Gregg Kellogg</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8dea78e4cf51-tn.jpg" width="36" height="48" alt="Photo of Doug Schepers" />
<span class="tooltip">Doug Schepers</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/cbbbf297444e-tn.jpg" width="36" height="48" alt="Photo of Kingsley Idehen" />
<span class="tooltip">Kingsley Idehen</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/46b496bdc1aa-tn.jpg" width="36" height="48" alt="Photo of Melvin Carvalho" />
<span class="tooltip">Melvin Carvalho</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d01f84e57a83-tn.jpg" width="36" height="48" alt="Photo of Jose De Loera" />
<span class="tooltip">Jose De Loera</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8db2f7294bf3-tn.jpg" width="36" height="48" alt="Photo of Robin Berjon" />
<span class="tooltip">Robin Berjon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/32b0a5d4657b-tn.jpg" width="36" height="48" alt="Photo of Pelle Braendgaard" />
<span class="tooltip">Pelle Braendgaard</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/d8090dda9e4e-tn.jpg" width="36" height="48" alt="Photo of Jeff Sayre" />
<span class="tooltip">Jeff Sayre</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/webpayments/wp-login.php?redirect_to=/community/webpayments/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%77%65%62%70%61%79%6d%65%6e%74%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="10" data-creation-date="2011-08-16 ">
<a id="webskillprofiles"></a>
<header class="tMargin header_article">
<a href="#webskillprofiles" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Web Skill Profiles
</a>
<em class="groupParticipants">10 participants</em>
<em class="groupDate">Date Created: 2011-08-16 </em>
</header>
<div class="group news_content news_content_open">
<p>This group has the mission to extend the discussion and development of the Web Skill Profiles originally developed by IWA/HWG (http://www.skillprofiles.eu) based on the EU Framework for education and outreach.</p>
<p>News, publications, and more on the <a href="/community/webskillprofiles/" class="link-home">Web Skill Profiles Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/webskillprofiles/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/411e4618d3e0-tn.jpg" width="36" height="48" alt="Photo of darios Dario Salvelli" />
<span class="tooltip">darios Dario Salvelli</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/179e8c909e76-tn.jpg" width="36" height="48" alt="Photo of Simone Onofri" />
<span class="tooltip">Simone Onofri</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Pasquale Popolizio" />
<span class="tooltip">Pasquale Popolizio</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Philip Laszkowicz" />
<span class="tooltip">Philip Laszkowicz</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Gian Angelo Geminiani" />
<span class="tooltip">Gian Angelo Geminiani</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Roberto Scano" />
<span class="tooltip">Roberto Scano</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Ankit Thakkar" />
<span class="tooltip">Ankit Thakkar</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Pietro Russo" />
<span class="tooltip">Pietro Russo</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/ae712882c023-tn.jpg" width="36" height="48" alt="Photo of Raanan Avidor" />
<span class="tooltip">Raanan Avidor</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Rosa De Vivo" />
<span class="tooltip">Rosa De Vivo</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/webskillprofiles/wp-login.php?redirect_to=/community/webskillprofiles/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%77%65%62%73%6b%69%6c%6c%70%72%6f%66%69%6c%65%73" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="4" data-creation-date="2011-12-08 ">
<a id="autowebtest"></a>
<header class="tMargin header_article">
<a href="#autowebtest" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />Web Test Automation
</a>
<em class="groupParticipants">4 participants</em>
<em class="groupDate">Date Created: 2011-12-08 </em>
</header>
<div class="group news_content news_content_open">
<p>This group aims at developing common tools, technologies, frameworks and platforms for automating tests in Web applications. </p>
<p>News, publications, and more on the <a href="/community/autowebtest/" class="link-home">Web Test Automation Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/autowebtest/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/7c4cd1dd6afa-tn.jpg" width="36" height="48" alt="Photo of Pavlik elf" />
<span class="tooltip">Pavlik elf</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Bilal Mohamed" />
<span class="tooltip">Bilal Mohamed</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/6d32addf2500-tn.jpg" width="36" height="48" alt="Photo of Jean Vanderdonckt" />
<span class="tooltip">Jean Vanderdonckt</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Juan Manuel Gonzalez Calleros" />
<span class="tooltip">Juan Manuel Gonzalez Calleros</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/autowebtest/wp-login.php?redirect_to=/community/autowebtest/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%61%75%74%6f%77%65%62%74%65%73%74" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<div class="groupa cg shown" data-no-participants="12" data-creation-date="2011-06-29 ">
<a id="xmlperf"></a>
<header class="tMargin header_article">
<a href="#xmlperf" class="h3">
<img src="/community/src/img/icon-minus.png" class="icon_plus_minus" width="14" height="14" alt="icon-minus" />XML Performance
</a>
<em class="groupParticipants">12 participants</em>
<em class="groupDate">Date Created: 2011-06-29 </em>
</header>
<div class="group news_content news_content_open">
<p>The Mission of the XML Performance Community Group is to determine the requirements, use cases to get performance measurements of the whole XML technology stack.
One of the goal is to be able to understand how XML (versus other technologies) could be used as ground to make efficient processing and identifies bottlenecks and features of this XML stack. One later goal will be to compare XML implementations among them. To do so, we might give hint on defining Efficient Profiles of existing Specifications.</p>
<p>News, publications, and more on the <a href="/community/xmlperf/" class="link-home">XML Performance Community Group home page</a>.</p>
<h4 class="tMargin bMarginSml cTitle">Participants (<a href="/community/xmlperf/participants">details</a>)</h4>
<ul class="participants_pics tMarginSml">
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Dennis Knochenwefel" />
<span class="tooltip">Dennis Knochenwefel</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/0e28cbd9e634-tn.jpg" width="36" height="48" alt="Photo of Ya Knygar" />
<span class="tooltip">Ya Knygar</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Till Westmann" />
<span class="tooltip">Till Westmann</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Mehdi HAYANI" />
<span class="tooltip">Mehdi HAYANI</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/8db2f7294bf3-tn.jpg" width="36" height="48" alt="Photo of Robin Berjon" />
<span class="tooltip">Robin Berjon</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/2bbc44eddc13-tn.jpg" width="36" height="48" alt="Photo of Mohamed ZERGAOUI" />
<span class="tooltip">Mohamed ZERGAOUI</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/a0c61e0f527c-tn.jpg" width="36" height="48" alt="Photo of Rob Walpole" />
<span class="tooltip">Rob Walpole</span>
</a>
</li>
<li>
<a href="#">
<img src="/community/src/img/default-pic.png" width="36" height="48" alt="Photo of Alexander Philippou" />
<span class="tooltip">Alexander Philippou</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/c563e8daac71-tn.jpg" width="36" height="48" alt="Photo of Liam Quin" />
<span class="tooltip">Liam Quin</span>
</a>
</li>
<li>
<a href="#">
<img src="http://www.w3.org/2006/05/u/45c16503292f-tn.jpg" width="36" height="48" alt="Photo of Don Brutzman" />
<span class="tooltip">Don Brutzman</span>
</a>
</li>
</ul>
<p class="bMargin">
<a href="/community/xmlperf/wp-login.php?redirect_to=/community/xmlperf/join" title="Join this group" class="more-button small_text">Join this group</a>
<a title="Let the W3C staff know that there is a potential issue with this group, such as an inappropriate topic" href="mailto:team-community-process@w3.org?Subject=Problem%20reported%20for%20%78%6d%6c%70%65%72%66" class="report-button small_text">Report a problem</a></p>
</div>
</div>
<!--
<hr/>
<p><em>Total of 49 groups.</em></p>
-->
</div></p>
<div class="post-revisions">
<h4>Post Revisions:</h4>
<ul class="post-revisions">
<li>6 December, 2011 @ 3:02 [Current Revision] by Jean-Guilhem Rouel</li>
<li><a href="http://www.w3.org/community/groups/?rev=1197">5 December, 2011 @ 15:49</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1195">30 November, 2011 @ 2:45</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1189">29 November, 2011 @ 5:14</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1179">29 November, 2011 @ 4:32</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1178">29 November, 2011 @ 4:23</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1177">29 November, 2011 @ 4:21</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1176">29 November, 2011 @ 4:14</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1175">9 November, 2011 @ 3:25</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1140">9 November, 2011 @ 3:24</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1139">9 November, 2011 @ 3:21</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=1138">19 August, 2011 @ 21:09</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=859">23 June, 2011 @ 19:47</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=271">23 June, 2011 @ 19:47</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=270">23 June, 2011 @ 19:06</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=264">23 June, 2011 @ 17:31</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=257">23 June, 2011 @ 17:30</a> by Jean-Guilhem Rouel</li>
<li><a href="http://www.w3.org/community/groups/?rev=256">23 June, 2011 @ 15:19</a> by Jean-Guilhem Rouel</li>
<li><a href="http://www.w3.org/community/groups/?rev=249">23 June, 2011 @ 15:19</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=248">23 June, 2011 @ 13:36</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=230">23 June, 2011 @ 13:19</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=228">23 June, 2011 @ 13:18</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=227">23 June, 2011 @ 12:06</a> by Ian Jacobs</li>
<li><a href="http://www.w3.org/community/groups/?rev=220">23 June, 2011 @ 12:06</a> by Jean-Guilhem Rouel</li>
<li><a href="http://www.w3.org/community/groups/?rev=219">23 June, 2011 @ 12:03</a> by Jean-Guilhem Rouel</li>
</ul>
</div>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<div id="comments">
</div><!-- #comments -->
</div><!-- #content -->
<div class="unit size1on3 lastUnit">
</div> <!-- #rightnavg -->
</div>
<div class="unit size1on3 lastUnit">
<div id="text-3" class="widget-container widget_text"> <div class="textwidget"><div class="join_box">
<aside>
<h3>How do I start a group?</h3>
<p>Anyone with a <a href="http://www.w3.org/community/account/request">W3C account</a> may create a group:</p>
<ol>
<li>Push one of the buttons below and provide a name and description for the group.</li>
<li>Once four other people support the group (by pushing a button), W3C creates it.</li>
<li>Join the group and start using the <a href="http://www.w3.org/community/about/tool/">tools and infrastructure</a> to build your community.</li>
</ol>
<a href="/community/groups/propose_cg" title="Start a community group" class="action_button">Start a community group</a> <a href="/community/groups/propose_bg" title="Start a business group" class="action_button second">Start a business group</a> </aside>
<aside>
<h3>Where can I share ideas?</h3>
<p>The <a href="/community/forum/">W3C Forum</a> is a general forum where you can generate support for your ideas.</p>
</aside>
</div></div>
</div> </div><!-- .last unit -->
</div><!-- .line -->
</div><!-- #primary -->
</div><!-- #main -->
<aside id="w3c_footer" class="unit clearfix">
<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="/community/src/img/twitter-bird.png" alt="Twitter" class="social-icon" width="78" height="83" /></a> <a href="http://identi.ca/w3c" title="See W3C on Identica"><img src="/community/src/img/identica-logo.png" alt="Identica" class="social-icon" width="91" height="83" /></a></li>
</ul>
</div>
<!-- #footer address / page signature -->
<footer class="copyright">Copyright © 2011 W3C <sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.eu/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>) <a href="/Consortium/Legal/ipr-notice">Usage policies apply</a>.</footer>
</div><!-- #w3c_footer-inner -->
</aside><!-- #w3c_footer -->
<script type="text/javascript" src="/community/src/js/functions.js"></script>
<script type='text/javascript'>
/* <![CDATA[ */
var pollsL10n = {"ajax_url":"http:\/\/www.w3.org\/community\/wp-content\/plugins\/wp-polls\/wp-polls.php","text_wait":"Your last request is still being processed. Please wait a while ...","text_valid":"Please choose a valid poll answer.","text_multiple":"Maximum number of choices allowed: ","show_loading":"1","show_fading":"1"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.w3.org/community/wp-content/plugins/wp-polls/polls-js.js?ver=2.50'></script>
</body>
</html>