index.html
306 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="/2005/06/tracker/webui.css" media="screen" />
<title> Actions - Media Annotations Working Group Tracker</title>
<script type='text/javascript' src='/2007/08/datepicker/js/datepicker.js'></script>
<script src='/2005/06/tracker/ui.js' type='text/javascript'></script>
<link href='/2007/08/datepicker/css/datepicker.css' rel='stylesheet' type='text/css' />
</head>
<body>
<div id="sidebar">
<div id="navigation">
<h3><a href='http://www.w3.org/2008/WebVideo/Annotations/'>Media Annotations Working Group</a> Issue Tracking</h3>
<ul>
<li><a href="/2008/WebVideo/Annotations/track/">Summary</a></li>
<li>Issues:
<ul>
<li><a href="/2008/WebVideo/Annotations/track/issues/open">Open</a></li>
<li><a href="/2008/WebVideo/Annotations/track/issues/closed">Closed</a></li>
<li><a href="/2008/WebVideo/Annotations/track/issues">All</a></li>
<li><a href="/2008/WebVideo/Annotations/track/issues/new">Create</a></li>
</ul>
</li>
<li>Actions:
<ul>
<li><a href="/2008/WebVideo/Annotations/track/actions/open">Open</a></li>
<li><a href="/2008/WebVideo/Annotations/track/actions/overdue">Overdue</a></li>
<li><a href="/2008/WebVideo/Annotations/track/actions/closed">Closed</a></li>
<li><a href="/2008/WebVideo/Annotations/track/actions/pendingreview">Pending Review</a></li>
<li><a href="/2008/WebVideo/Annotations/track/actions/new">Raise</a></li>
</ul>
</li>
<li><a href="/2008/WebVideo/Annotations/track/users">Users</a>
<ul><li><a href='/2005/06/tracker/users/my'><em>My</em> Tracker</a></li></ul>
</li>
<li><a href="/2008/WebVideo/Annotations/track/products">Products</a></li>
<li><a href="/2008/WebVideo/Annotations/track/agenda">Agenda planning</a></li>
<li><a href="/2008/WebVideo/Annotations/track/changelog">Recent activity</a></li>
</ul>
</div>
</div>
<div id="content">
<h1> Actions</h1>
<form action='' method='post'> <fieldset class='actions'>
<legend>Apply the following changes to selected action items:</legend>
<ul><li><label>Mark as <select name='status'>
<option value='-1'>No status change</option>
<option value='0'>Open</option>
<option value='2'>Pending review</option>
<option value='1'>Closed</option>
</select></label></li>
<li><label>Update due date to:
<input class="w8em format-y-m-d divider-dash highlight-days-67 no-transparency"
type="text" name="due" value="No change" size="10" /></label></li>
<li><label>Associate to issue: <select name='issue'>
<option value='-1'>No change</option>
<optgroup label="Open issues">
<option value="1">ISSUE-1: Structured API</option>
<option value="2">ISSUE-2: Tobias</option>
</optgroup>
<optgroup label="Closed issues">
</optgroup></select></label>
</li>
<li><label>Associate to product: <select name='product'>
<option value='-1'>No change</option>
</select></label></li>
</ul>
<p><input type='submit' value='Apply' /></p>
</fieldset>
<p>There are 454 actions.</p>
<table id='_action' summary='List of action items sorted by id'>
<thead>
<tr>
<th><span class="sort">↓</span>ID</th>
<th><a class="sort" title="sort by status" href="?sort=status">↓</a>State</th>
<th>Title</th>
<th><a class="sort" title="sort by owner" href="?sort=owner">↓</a>Person</th>
<th><a class="sort" title="sort by due" href="?sort=due">↓</a>Due Date</th>
<th>Associated with</th>
</tr>
</thead>
<tbody>
<tr class="closed even"><td class='action'><input title='Check to select action "Book the bridge for the weekly telecon" for en-masse editing'
name='actions[1]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/1">ACTION-1</a><a href='/2008/WebVideo/Annotations/track/actions/1/edit' title='Edit ACTION-1'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/1">Book the bridge for the weekly telecon</a></td>
<td>Felix Sasaki</td>
<td>2008-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Give a cvs access to Daniel and to the editors" for en-masse editing'
name='actions[2]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/2">ACTION-2</a><a href='/2008/WebVideo/Annotations/track/actions/2/edit' title='Edit ACTION-2'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/2">Give a cvs access to Daniel and to the editors</a></td>
<td>Felix Sasaki</td>
<td>2008-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Prepare the editing environment including templates, directories, etc." for en-masse editing'
name='actions[3]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/3">ACTION-3</a><a href='/2008/WebVideo/Annotations/track/actions/3/edit' title='Edit ACTION-3'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/3">Prepare the editing environment including templates, directories, etc.</a></td>
<td>Felix Sasaki</td>
<td>2008-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Pull out requirements of one standard (to be decided which), AI also for Erik" for en-masse editing'
name='actions[4]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/4">ACTION-4</a><a href='/2008/WebVideo/Annotations/track/actions/4/edit' title='Edit ACTION-4'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/4">Pull out requirements of one standard (to be decided which), AI also for Erik</a></td>
<td>Véronique Malaisé</td>
<td>2008-09-19</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Extend "formats ... scope" for one more week" for en-masse editing'
name='actions[5]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/5">ACTION-5</a><a href='/2008/WebVideo/Annotations/track/actions/5/edit' title='Edit ACTION-5'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/5">Extend "formats ... scope" for one more week</a></td>
<td>Felix Sasaki</td>
<td>2008-09-30</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check WG participant mailing list subscription mechanism to make sure that new participants are subscribed automatically" for en-masse editing'
name='actions[6]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/6">ACTION-6</a><a href='/2008/WebVideo/Annotations/track/actions/6/edit' title='Edit ACTION-6'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/6">Check WG participant mailing list subscription mechanism to make sure that new participants are subscribed automatically</a></td>
<td>Felix Sasaki</td>
<td>2008-10-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Describe mobile aspects to use cases" for en-masse editing'
name='actions[7]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/7">ACTION-7</a><a href='/2008/WebVideo/Annotations/track/actions/7/edit' title='Edit ACTION-7'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/7">Describe mobile aspects to use cases</a></td>
<td>Joakim Söderberg</td>
<td>2008-10-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Put XG use cases into wiki" for en-masse editing'
name='actions[8]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/8">ACTION-8</a><a href='/2008/WebVideo/Annotations/track/actions/8/edit' title='Edit ACTION-8'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/8">Put XG use cases into wiki</a></td>
<td>Tobias Bürger</td>
<td>2008-10-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Elaborates on the video use case" for en-masse editing'
name='actions[9]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/9">ACTION-9</a><a href='/2008/WebVideo/Annotations/track/actions/9/edit' title='Edit ACTION-9'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/9">Elaborates on the video use case</a></td>
<td>Joakim Söderberg</td>
<td>2008-10-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Will work on 6084 and 6086" for en-masse editing'
name='actions[10]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/10">ACTION-10</a><a href='/2008/WebVideo/Annotations/track/actions/10/edit' title='Edit ACTION-10'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/10">Will work on 6084 and 6086</a></td>
<td>Frank Nack</td>
<td>2008-10-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Create information in wiki about 6067" for en-masse editing'
name='actions[11]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/11">ACTION-11</a><a href='/2008/WebVideo/Annotations/track/actions/11/edit' title='Edit ACTION-11'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/11">Create information in wiki about 6067</a></td>
<td>Werner Bailer</td>
<td>2008-10-08</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "(placeholder for dave) to elaborate 6066" for en-masse editing'
name='actions[12]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/12">ACTION-12</a><a href='/2008/WebVideo/Annotations/track/actions/12/edit' title='Edit ACTION-12'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/12">(placeholder for dave) to elaborate 6066</a></td>
<td>Felix Sasaki</td>
<td>2008-10-08</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "(placeholder for dave) to work on 6113" for en-masse editing'
name='actions[13]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/13">ACTION-13</a><a href='/2008/WebVideo/Annotations/track/actions/13/edit' title='Edit ACTION-13'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/13">(placeholder for dave) to work on 6113</a></td>
<td>Felix Sasaki</td>
<td>2008-10-08</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add text on video uc" for en-masse editing'
name='actions[14]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/14">ACTION-14</a><a href='/2008/WebVideo/Annotations/track/actions/14/edit' title='Edit ACTION-14'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/14">Add text on video uc</a></td>
<td>Joakim Söderberg</td>
<td>2008-10-14</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Elaborate on mobile uc" for en-masse editing'
name='actions[15]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/15">ACTION-15</a><a href='/2008/WebVideo/Annotations/track/actions/15/edit' title='Edit ACTION-15'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/15">Elaborate on mobile uc</a></td>
<td>Joakim Söderberg</td>
<td>2008-10-14</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Confirm that there should be a presentation about IMM" for en-masse editing'
name='actions[16]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/16">ACTION-16</a><a href='/2008/WebVideo/Annotations/track/actions/16/edit' title='Edit ACTION-16'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/16">Confirm that there should be a presentation about IMM</a></td>
<td>Felix Sasaki</td>
<td>2008-10-21</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And Vero to elaborate on the top-down approach about use cases" for en-masse editing'
name='actions[17]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/17">ACTION-17</a><a href='/2008/WebVideo/Annotations/track/actions/17/edit' title='Edit ACTION-17'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/17">And Vero to elaborate on the top-down approach about use cases</a></td>
<td>Frank Nack</td>
<td>2008-10-21</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "And others to elaborate on the top-down approach about use case" for en-masse editing'
name='actions[18]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/18">ACTION-18</a><a href='/2008/WebVideo/Annotations/track/actions/18/edit' title='Edit ACTION-18'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/18">And others to elaborate on the top-down approach about use case</a></td>
<td>Frank Nack</td>
<td>2008-10-21</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And others to look on the draft agenda for the TPAC meeting" for en-masse editing'
name='actions[19]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/19">ACTION-19</a><a href='/2008/WebVideo/Annotations/track/actions/19/edit' title='Edit ACTION-19'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/19">And others to look on the draft agenda for the TPAC meeting</a></td>
<td>Felix Sasaki</td>
<td>2008-10-21</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add a link from WG page to the "still alive" MMSEM wiki pages and to make sure that everybody can edit the pages" for en-masse editing'
name='actions[20]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/20">ACTION-20</a><a href='/2008/WebVideo/Annotations/track/actions/20/edit' title='Edit ACTION-20'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/20">Add a link from WG page to the "still alive" MMSEM wiki pages and to make sure that everybody can edit the pages</a></td>
<td>Felix Sasaki</td>
<td>2008-10-30</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Create a liaison to Geolocation WG" for en-masse editing'
name='actions[21]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/21">ACTION-21</a><a href='/2008/WebVideo/Annotations/track/actions/21/edit' title='Edit ACTION-21'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/21">Create a liaison to Geolocation WG</a></td>
<td>Felix Sasaki</td>
<td>2008-10-29</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Go back to Karen and check about " IPTV metadata specification" - what is it, is it available for us?" for en-masse editing'
name='actions[22]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/22">ACTION-22</a><a href='/2008/WebVideo/Annotations/track/actions/22/edit' title='Edit ACTION-22'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/22">Go back to Karen and check about " IPTV metadata specification" - what is it, is it available for us?</a></td>
<td>Felix Sasaki</td>
<td>2008-10-30</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Explain XMLSPEC to wonsuk" for en-masse editing'
name='actions[23]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/23">ACTION-23</a><a href='/2008/WebVideo/Annotations/track/actions/23/edit' title='Edit ACTION-23'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/23">Explain XMLSPEC to wonsuk</a></td>
<td>Felix Sasaki</td>
<td>2008-10-30</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Get CVS accounts for veronique and wonsuk" for en-masse editing'
name='actions[24]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/24">ACTION-24</a><a href='/2008/WebVideo/Annotations/track/actions/24/edit' title='Edit ACTION-24'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/24">Get CVS accounts for veronique and wonsuk</a></td>
<td>Felix Sasaki</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review XMP basic schema" for en-masse editing'
name='actions[25]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/25">ACTION-25</a><a href='/2008/WebVideo/Annotations/track/actions/25/edit' title='Edit ACTION-25'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/25">Review XMP basic schema</a></td>
<td>Felix Sasaki</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review XMP Dublin Core schema" for en-masse editing'
name='actions[26]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/26">ACTION-26</a><a href='/2008/WebVideo/Annotations/track/actions/26/edit' title='Edit ACTION-26'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/26">Review XMP Dublin Core schema</a></td>
<td>Thierry Michel</td>
<td>2008-10-30</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review XMP Rights Management schema" for en-masse editing'
name='actions[27]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/27">ACTION-27</a><a href='/2008/WebVideo/Annotations/track/actions/27/edit' title='Edit ACTION-27'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/27">Review XMP Rights Management schema</a></td>
<td>Felix Sasaki</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review XMP Media Management schema" for en-masse editing'
name='actions[28]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/28">ACTION-28</a><a href='/2008/WebVideo/Annotations/track/actions/28/edit' title='Edit ACTION-28'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/28">Review XMP Media Management schema</a></td>
<td>Véronique Malaisé</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Tell Wonsuk to review XMP Basic Job Ticket schema and Paged-Text schema" for en-masse editing'
name='actions[29]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/29">ACTION-29</a><a href='/2008/WebVideo/Annotations/track/actions/29/edit' title='Edit ACTION-29'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/29">Tell Wonsuk to review XMP Basic Job Ticket schema and Paged-Text schema</a></td>
<td>Felix Sasaki</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review XMP Dynamic Media schema" for en-masse editing'
name='actions[30]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/30">ACTION-30</a><a href='/2008/WebVideo/Annotations/track/actions/30/edit' title='Edit ACTION-30'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/30">Review XMP Dynamic Media schema</a></td>
<td>Joakim Söderberg</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Contact tom baker about dc liaison" for en-masse editing'
name='actions[31]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/31">ACTION-31</a><a href='/2008/WebVideo/Annotations/track/actions/31/edit' title='Edit ACTION-31'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/31">Contact tom baker about dc liaison</a></td>
<td>Felix Sasaki</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make a liaison with MPEG using information from the XP homepage" for en-masse editing'
name='actions[32]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/32">ACTION-32</a><a href='/2008/WebVideo/Annotations/track/actions/32/edit' title='Edit ACTION-32'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/32">Make a liaison with MPEG using information from the XP homepage</a></td>
<td>Soohong Daniel Park</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Evaluate if contact to IPTV Japan is valuable" for en-masse editing'
name='actions[33]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/33">ACTION-33</a><a href='/2008/WebVideo/Annotations/track/actions/33/edit' title='Edit ACTION-33'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/33">Evaluate if contact to IPTV Japan is valuable</a></td>
<td>Felix Sasaki</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact Open IPTV forum" for en-masse editing'
name='actions[34]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/34">ACTION-34</a><a href='/2008/WebVideo/Annotations/track/actions/34/edit' title='Edit ACTION-34'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/34">Contact Open IPTV forum</a></td>
<td>Soohong Daniel Park</td>
<td>2008-10-30</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check contacts to OMA" for en-masse editing'
name='actions[35]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/35">ACTION-35</a><a href='/2008/WebVideo/Annotations/track/actions/35/edit' title='Edit ACTION-35'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/35">Check contacts to OMA</a></td>
<td>Joakim Söderberg</td>
<td>2008-10-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make a liaison with OMA" for en-masse editing'
name='actions[36]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/36">ACTION-36</a><a href='/2008/WebVideo/Annotations/track/actions/36/edit' title='Edit ACTION-36'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/36">Make a liaison with OMA</a></td>
<td>Felix Sasaki</td>
<td>2008-11-18</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Write a mail about the general structure of the use cases / req document" for en-masse editing'
name='actions[37]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/37">ACTION-37</a><a href='/2008/WebVideo/Annotations/track/actions/37/edit' title='Edit ACTION-37'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/37">Write a mail about the general structure of the use cases / req document</a></td>
<td>Felix Sasaki</td>
<td>2008-11-18</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft a first agenda for the f2f meeting" for en-masse editing'
name='actions[38]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/38">ACTION-38</a><a href='/2008/WebVideo/Annotations/track/actions/38/edit' title='Edit ACTION-38'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/38">Draft a first agenda for the f2f meeting</a></td>
<td>Felix Sasaki</td>
<td>2008-11-25</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Put description about transmission cc in Wiki" for en-masse editing'
name='actions[39]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/39">ACTION-39</a><a href='/2008/WebVideo/Annotations/track/actions/39/edit' title='Edit ACTION-39'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/39">Put description about transmission cc in Wiki</a></td>
<td>Tobias Bürger</td>
<td>2008-11-25</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "to send around an exemple of what she means with "plugging into complex model"" for en-masse editing'
name='actions[40]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/40">ACTION-40</a><a href='/2008/WebVideo/Annotations/track/actions/40/edit' title='Edit ACTION-40'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/40">to send around an exemple of what she means with "plugging into complex model"</a></td>
<td>Véronique Malaisé</td>
<td>2008-11-25</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Look into the MPEG API" for en-masse editing'
name='actions[41]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/41">ACTION-41</a><a href='/2008/WebVideo/Annotations/track/actions/41/edit' title='Edit ACTION-41'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/41">Look into the MPEG API</a></td>
<td>Víctor Rodríguez</td>
<td>2008-11-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Look into flickr machine tags" for en-masse editing'
name='actions[42]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/42">ACTION-42</a><a href='/2008/WebVideo/Annotations/track/actions/42/edit' title='Edit ACTION-42'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/42">Look into flickr machine tags</a></td>
<td>Pierre-Antoine Champin</td>
<td>2008-12-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check XMP rating" for en-masse editing'
name='actions[43]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/43">ACTION-43</a><a href='/2008/WebVideo/Annotations/track/actions/43/edit' title='Edit ACTION-43'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/43">Check XMP rating</a></td>
<td>Thierry Michel</td>
<td>2008-12-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if xmp:history is applicable for the current use cases" for en-masse editing'
name='actions[44]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/44">ACTION-44</a><a href='/2008/WebVideo/Annotations/track/actions/44/edit' title='Edit ACTION-44'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/44">Check if xmp:history is applicable for the current use cases</a></td>
<td>Frank Nack</td>
<td>2008-12-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Look at how sony ericsson uses xmp" for en-masse editing'
name='actions[45]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/45">ACTION-45</a><a href='/2008/WebVideo/Annotations/track/actions/45/edit' title='Edit ACTION-45'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/45">Look at how sony ericsson uses xmp</a></td>
<td>Joakim Söderberg</td>
<td>2008-12-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Bother Eric so that he gives AI to Chris about the metadata model from IBBT" for en-masse editing'
name='actions[46]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/46">ACTION-46</a><a href='/2008/WebVideo/Annotations/track/actions/46/edit' title='Edit ACTION-46'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/46">Bother Eric so that he gives AI to Chris about the metadata model from IBBT</a></td>
<td>Felix Sasaki</td>
<td>2008-12-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Reminder to investigate approaches setting metadata on a "metamodel level" [KEEP OPEN]" for en-masse editing'
name='actions[47]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/47">ACTION-47</a><a href='/2008/WebVideo/Annotations/track/actions/47/edit' title='Edit ACTION-47'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/47">Reminder to investigate approaches setting metadata on a "metamodel level" [KEEP OPEN]</a></td>
<td>Werner Bailer</td>
<td>2010-12-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send pointer to media fragments WG for review of uc&req doc, when it is ready" for en-masse editing'
name='actions[48]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/48">ACTION-48</a><a href='/2008/WebVideo/Annotations/track/actions/48/edit' title='Edit ACTION-48'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/48">Send pointer to media fragments WG for review of uc&req doc, when it is ready</a></td>
<td>Felix Sasaki</td>
<td>2008-12-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check with Adobe about what properties of XMP are actually used" for en-masse editing'
name='actions[49]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/49">ACTION-49</a><a href='/2008/WebVideo/Annotations/track/actions/49/edit' title='Edit ACTION-49'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/49">Check with Adobe about what properties of XMP are actually used</a></td>
<td>Felix Sasaki</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "and Veronique and Hui to update the CH UC following the pattern of e.g. 2.6, 2.7 etc." for en-masse editing'
name='actions[50]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/50">ACTION-50</a><a href='/2008/WebVideo/Annotations/track/actions/50/edit' title='Edit ACTION-50'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/50">and Veronique and Hui to update the CH UC following the pattern of e.g. 2.6, 2.7 etc.</a></td>
<td>Werner Bailer</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make a drawing to make clear what we are not doing" for en-masse editing'
name='actions[51]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/51">ACTION-51</a><a href='/2008/WebVideo/Annotations/track/actions/51/edit' title='Edit ACTION-51'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/51">Make a drawing to make clear what we are not doing</a></td>
<td>Tobias Bürger</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make "Recommendation across different media types - Description / Example" part clearer" for en-masse editing'
name='actions[52]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/52">ACTION-52</a><a href='/2008/WebVideo/Annotations/track/actions/52/edit' title='Edit ACTION-52'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/52">Make "Recommendation across different media types - Description / Example" part clearer</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Revise the introduction, using material from the "video" UC section " for en-masse editing'
name='actions[53]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/53">ACTION-53</a><a href='/2008/WebVideo/Annotations/track/actions/53/edit' title='Edit ACTION-53'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/53">Revise the introduction, using material from the "video" UC section </a></td>
<td>Joakim Söderberg</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Consider revising the "multimedia presentation material" and turn it into a use case following the pattern of the UC & req document" for en-masse editing'
name='actions[54]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/54">ACTION-54</a><a href='/2008/WebVideo/Annotations/track/actions/54/edit' title='Edit ACTION-54'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/54">Consider revising the "multimedia presentation material" and turn it into a use case following the pattern of the UC & req document</a></td>
<td>Véronique Malaisé</td>
<td>2009-03-24</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Work on imaging life cycle use case and turn it into a use case following the pattern of the UC & req document" for en-masse editing'
name='actions[55]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/55">ACTION-55</a><a href='/2008/WebVideo/Annotations/track/actions/55/edit' title='Edit ACTION-55'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/55">Work on imaging life cycle use case and turn it into a use case following the pattern of the UC & req document</a></td>
<td>Víctor Rodríguez</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Create text for r06-r11 until Monday and send it to the list" for en-masse editing'
name='actions[56]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/56">ACTION-56</a><a href='/2008/WebVideo/Annotations/track/actions/56/edit' title='Edit ACTION-56'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/56">Create text for r06-r11 until Monday and send it to the list</a></td>
<td>Felix Sasaki</td>
<td>2008-12-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check with plh how he wants us to move the requirements document forward" for en-masse editing'
name='actions[57]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/57">ACTION-57</a><a href='/2008/WebVideo/Annotations/track/actions/57/edit' title='Edit ACTION-57'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/57">Check with plh how he wants us to move the requirements document forward</a></td>
<td>Thierry Michel</td>
<td>2008-12-22</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add the issue of returning String/URI value as an additional requirement" for en-masse editing'
name='actions[58]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/58">ACTION-58</a><a href='/2008/WebVideo/Annotations/track/actions/58/edit' title='Edit ACTION-58'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/58">Add the issue of returning String/URI value as an additional requirement</a></td>
<td>Felix Sasaki</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Investigate how the declaration of JSON could provide a solution for our return object" for en-masse editing'
name='actions[59]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/59">ACTION-59</a><a href='/2008/WebVideo/Annotations/track/actions/59/edit' title='Edit ACTION-59'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/59">Investigate how the declaration of JSON could provide a solution for our return object</a></td>
<td>Joakim Söderberg</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask Chris about the question of heterogeneous return values" for en-masse editing'
name='actions[60]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/60">ACTION-60</a><a href='/2008/WebVideo/Annotations/track/actions/60/edit' title='Edit ACTION-60'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/60">Ask Chris about the question of heterogeneous return values</a></td>
<td>Felix Sasaki</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Request short URI for the requirements document" for en-masse editing'
name='actions[61]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/61">ACTION-61</a><a href='/2008/WebVideo/Annotations/track/actions/61/edit' title='Edit ACTION-61'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/61">Request short URI for the requirements document</a></td>
<td>Thierry Michel</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the status of the requirements document" for en-masse editing'
name='actions[62]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/62">ACTION-62</a><a href='/2008/WebVideo/Annotations/track/actions/62/edit' title='Edit ACTION-62'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/62">Update the status of the requirements document</a></td>
<td>Thierry Michel</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Formulate a liason letter for the MPEG MXM group" for en-masse editing'
name='actions[63]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/63">ACTION-63</a><a href='/2008/WebVideo/Annotations/track/actions/63/edit' title='Edit ACTION-63'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/63">Formulate a liason letter for the MPEG MXM group</a></td>
<td>Víctor Rodríguez</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Request short URI for the requirements document" for en-masse editing'
name='actions[64]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/64">ACTION-64</a><a href='/2008/WebVideo/Annotations/track/actions/64/edit' title='Edit ACTION-64'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/64">Request short URI for the requirements document</a></td>
<td>Thierry Michel</td>
<td>2008-12-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Finish TYoutube and Media RSS , TXfeed for next week" for en-masse editing'
name='actions[65]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/65">ACTION-65</a><a href='/2008/WebVideo/Annotations/track/actions/65/edit' title='Edit ACTION-65'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/65">Finish TYoutube and Media RSS , TXfeed for next week</a></td>
<td>WonSuk Lee</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Do searchmonkeymedia" for en-masse editing'
name='actions[66]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/66">ACTION-66</a><a href='/2008/WebVideo/Annotations/track/actions/66/edit' title='Edit ACTION-66'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/66">Do searchmonkeymedia</a></td>
<td>Tobias Bürger</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review tvanytime" for en-masse editing'
name='actions[67]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/67">ACTION-67</a><a href='/2008/WebVideo/Annotations/track/actions/67/edit' title='Edit ACTION-67'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/67">Review tvanytime</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review EBU" for en-masse editing'
name='actions[68]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/68">ACTION-68</a><a href='/2008/WebVideo/Annotations/track/actions/68/edit' title='Edit ACTION-68'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/68">Review EBU</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review Cable Labs Video-On-Demand Content specification 2.0" for en-masse editing'
name='actions[69]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/69">ACTION-69</a><a href='/2008/WebVideo/Annotations/track/actions/69/edit' title='Edit ACTION-69'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/69">Review Cable Labs Video-On-Demand Content specification 2.0</a></td>
<td>Joakim Söderberg</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review IPTC" for en-masse editing'
name='actions[70]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/70">ACTION-70</a><a href='/2008/WebVideo/Annotations/track/actions/70/edit' title='Edit ACTION-70'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/70">Review IPTC</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ask AC rep of IBBT to nominate Chris" for en-masse editing'
name='actions[71]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/71">ACTION-71</a><a href='/2008/WebVideo/Annotations/track/actions/71/edit' title='Edit ACTION-71'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/71">Ask AC rep of IBBT to nominate Chris</a></td>
<td>Thierry Michel</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review MIX" for en-masse editing'
name='actions[72]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/72">ACTION-72</a><a href='/2008/WebVideo/Annotations/track/actions/72/edit' title='Edit ACTION-72'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/72">Review MIX</a></td>
<td>Felix Sasaki</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "review with werner MPEG-7" for en-masse editing'
name='actions[73]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/73">ACTION-73</a><a href='/2008/WebVideo/Annotations/track/actions/73/edit' title='Edit ACTION-73'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/73">review with werner MPEG-7</a></td>
<td>Frank Nack</td>
<td>2011-03-01</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review SMPTE" for en-masse editing'
name='actions[74]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/74">ACTION-74</a><a href='/2008/WebVideo/Annotations/track/actions/74/edit' title='Edit ACTION-74'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/74">Review SMPTE</a></td>
<td>Werner Bailer</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review METS " for en-masse editing'
name='actions[75]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/75">ACTION-75</a><a href='/2008/WebVideo/Annotations/track/actions/75/edit' title='Edit ACTION-75'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/75">Review METS </a></td>
<td>Tobias Bürger</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review LOM" for en-masse editing'
name='actions[76]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/76">ACTION-76</a><a href='/2008/WebVideo/Annotations/track/actions/76/edit' title='Edit ACTION-76'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/76">Review LOM</a></td>
<td>Tobias Bürger</td>
<td>2009-01-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Merge the contributions to the mapping table on the wiki" for en-masse editing'
name='actions[77]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/77">ACTION-77</a><a href='/2008/WebVideo/Annotations/track/actions/77/edit' title='Edit ACTION-77'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/77">Merge the contributions to the mapping table on the wiki</a></td>
<td>Joakim Söderberg</td>
<td>2009-01-27</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Start a discussion on the wiki about the DC vs. DCterms issue" for en-masse editing'
name='actions[78]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/78">ACTION-78</a><a href='/2008/WebVideo/Annotations/track/actions/78/edit' title='Edit ACTION-78'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/78">Start a discussion on the wiki about the DC vs. DCterms issue</a></td>
<td>Pierre-Antoine Champin</td>
<td>2009-01-27</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Write an example about using SKOS" for en-masse editing'
name='actions[79]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/79">ACTION-79</a><a href='/2008/WebVideo/Annotations/track/actions/79/edit' title='Edit ACTION-79'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/79">Write an example about using SKOS</a></td>
<td>Véronique Malaisé</td>
<td>2009-01-27</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "With Felix to read http://www.adobe.com/devnet/xmp/pdfs/DynamicMediaXMPPartnerGuide.pdf and use it to see how XMP is actually used" for en-masse editing'
name='actions[80]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/80">ACTION-80</a><a href='/2008/WebVideo/Annotations/track/actions/80/edit' title='Edit ACTION-80'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/80">With Felix to read http://www.adobe.com/devnet/xmp/pdfs/DynamicMediaXMPPartnerGuide.pdf and use it to see how XMP is actually used</a></td>
<td>Joakim Söderberg</td>
<td>2009-02-10</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make a toy implementation of mappings" for en-masse editing'
name='actions[81]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/81">ACTION-81</a><a href='/2008/WebVideo/Annotations/track/actions/81/edit' title='Edit ACTION-81'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/81">Make a toy implementation of mappings</a></td>
<td>Pierre-Antoine Champin</td>
<td>2009-02-10</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Wey to provide mapping for itunes and quicktime" for en-masse editing'
name='actions[82]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/82">ACTION-82</a><a href='/2008/WebVideo/Annotations/track/actions/82/edit' title='Edit ACTION-82'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/82">Wey to provide mapping for itunes and quicktime</a></td>
<td>Thai Wey Then</td>
<td>2009-02-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review ID3" for en-masse editing'
name='actions[83]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/83">ACTION-83</a><a href='/2008/WebVideo/Annotations/track/actions/83/edit' title='Edit ACTION-83'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/83">Review ID3</a></td>
<td>Pierre-Antoine Champin</td>
<td>2009-02-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Set up questionnaire for format selection" for en-masse editing'
name='actions[84]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/84">ACTION-84</a><a href='/2008/WebVideo/Annotations/track/actions/84/edit' title='Edit ACTION-84'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/84">Set up questionnaire for format selection</a></td>
<td>Thierry Michel</td>
<td>2009-02-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Implement agreed changes in requirements document" for en-masse editing'
name='actions[85]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/85">ACTION-85</a><a href='/2008/WebVideo/Annotations/track/actions/85/edit' title='Edit ACTION-85'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/85">Implement agreed changes in requirements document</a></td>
<td>Felix Sasaki</td>
<td>2009-02-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update Excel sheet to support description of properties" for en-masse editing'
name='actions[86]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/86">ACTION-86</a><a href='/2008/WebVideo/Annotations/track/actions/86/edit' title='Edit ACTION-86'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/86">Update Excel sheet to support description of properties</a></td>
<td>Joakim Söderberg</td>
<td>2009-02-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And Werner will look into the Google Dataset API" for en-masse editing'
name='actions[87]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/87">ACTION-87</a><a href='/2008/WebVideo/Annotations/track/actions/87/edit' title='Edit ACTION-87'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/87">And Werner will look into the Google Dataset API</a></td>
<td>Joakim Söderberg</td>
<td>2009-02-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Gather material for publishing a recommendation track working draft" for en-masse editing'
name='actions[88]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/88">ACTION-88</a><a href='/2008/WebVideo/Annotations/track/actions/88/edit' title='Edit ACTION-88'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/88">Gather material for publishing a recommendation track working draft</a></td>
<td>Felix Sasaki</td>
<td>2009-02-24</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Provide the list of all formats considered in the mapping table with the person who did the mapping, leading each sub-group" for en-masse editing'
name='actions[89]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/89">ACTION-89</a><a href='/2008/WebVideo/Annotations/track/actions/89/edit' title='Edit ACTION-89'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/89">Provide the list of all formats considered in the mapping table with the person who did the mapping, leading each sub-group</a></td>
<td>Thierry Michel</td>
<td>2009-03-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Re-open the questionnaire and invite people to really respond even if they have no preferences, in order to get a quorum of responses" for en-masse editing'
name='actions[90]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/90">ACTION-90</a><a href='/2008/WebVideo/Annotations/track/actions/90/edit' title='Edit ACTION-90'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/90">Re-open the questionnaire and invite people to really respond even if they have no preferences, in order to get a quorum of responses</a></td>
<td>Thierry Michel</td>
<td>2009-03-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Chase the non-responders" for en-masse editing'
name='actions[91]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/91">ACTION-91</a><a href='/2008/WebVideo/Annotations/track/actions/91/edit' title='Edit ACTION-91'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/91">Chase the non-responders</a></td>
<td>Thierry Michel</td>
<td>2009-03-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask Larry Masinter or other Adobe's contact in order to know if there is an XMP schema we can have access too" for en-masse editing'
name='actions[92]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/92">ACTION-92</a><a href='/2008/WebVideo/Annotations/track/actions/92/edit' title='Edit ACTION-92'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/92">Ask Larry Masinter or other Adobe's contact in order to know if there is an XMP schema we can have access too</a></td>
<td>Felix Sasaki</td>
<td>2009-03-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Work on the Ontology Draft to include the mapping table, conforming to pubrules." for en-masse editing'
name='actions[93]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/93">ACTION-93</a><a href='/2008/WebVideo/Annotations/track/actions/93/edit' title='Edit ACTION-93'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/93">Work on the Ontology Draft to include the mapping table, conforming to pubrules.</a></td>
<td>Thierry Michel</td>
<td>2009-03-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Talk about the liaison with the WebApps WG about their document "The Media Object Specification" and relation with our API." for en-masse editing'
name='actions[94]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/94">ACTION-94</a><a href='/2008/WebVideo/Annotations/track/actions/94/edit' title='Edit ACTION-94'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/94">Talk about the liaison with the WebApps WG about their document "The Media Object Specification" and relation with our API.</a></td>
<td>Joakim Söderberg</td>
<td>2009-03-24</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Invite david to the phone conference" for en-masse editing'
name='actions[95]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/95">ACTION-95</a><a href='/2008/WebVideo/Annotations/track/actions/95/edit' title='Edit ACTION-95'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/95">Invite david to the phone conference</a></td>
<td>Thierry Michel</td>
<td>2009-03-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the Media Ontology 1.0 draft" for en-masse editing'
name='actions[96]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/96">ACTION-96</a><a href='/2008/WebVideo/Annotations/track/actions/96/edit' title='Edit ACTION-96'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/96">Update the Media Ontology 1.0 draft</a></td>
<td>Joakim Söderberg</td>
<td>2009-03-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send a mail to ask if people would like to see QT and iTunes to be included in the short list of formats " for en-masse editing'
name='actions[97]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/97">ACTION-97</a><a href='/2008/WebVideo/Annotations/track/actions/97/edit' title='Edit ACTION-97'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/97">Send a mail to ask if people would like to see QT and iTunes to be included in the short list of formats </a></td>
<td>Thierry Michel</td>
<td>2009-03-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask the group for consensus on publishing the new version of the requirements draft" for en-masse editing'
name='actions[98]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/98">ACTION-98</a><a href='/2008/WebVideo/Annotations/track/actions/98/edit' title='Edit ACTION-98'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/98">Ask the group for consensus on publishing the new version of the requirements draft</a></td>
<td>Thierry Michel</td>
<td>2009-03-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Daniel to send an e-mail to volunteer implementors to request feedback" for en-masse editing'
name='actions[99]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/99">ACTION-99</a><a href='/2008/WebVideo/Annotations/track/actions/99/edit' title='Edit ACTION-99'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/99">Daniel to send an e-mail to volunteer implementors to request feedback</a></td>
<td>Soohong Daniel Park</td>
<td>2009-04-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Daniel to draft an agenda for the F2F" for en-masse editing'
name='actions[100]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/100">ACTION-100</a><a href='/2008/WebVideo/Annotations/track/actions/100/edit' title='Edit ACTION-100'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/100">Daniel to draft an agenda for the F2F</a></td>
<td>Soohong Daniel Park</td>
<td>2009-04-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Clarify arrow + descriptions for the diagram in section 3 of UC & req dcouments" for en-masse editing'
name='actions[101]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/101">ACTION-101</a><a href='/2008/WebVideo/Annotations/track/actions/101/edit' title='Edit ACTION-101'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/101">Clarify arrow + descriptions for the diagram in section 3 of UC & req dcouments</a></td>
<td>Felix Sasaki</td>
<td>2009-04-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update canonical processes use cases" for en-masse editing'
name='actions[102]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/102">ACTION-102</a><a href='/2008/WebVideo/Annotations/track/actions/102/edit' title='Edit ACTION-102'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/102">Update canonical processes use cases</a></td>
<td>Véronique Malaisé</td>
<td>2009-04-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Daniel to ask Felix for the relationship in dc:relation" for en-masse editing'
name='actions[103]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/103">ACTION-103</a><a href='/2008/WebVideo/Annotations/track/actions/103/edit' title='Edit ACTION-103'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/103">Daniel to ask Felix for the relationship in dc:relation</a></td>
<td>Soohong Daniel Park</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Provide information about language identification, in addition to RFC 4646" for en-masse editing'
name='actions[104]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/104">ACTION-104</a><a href='/2008/WebVideo/Annotations/track/actions/104/edit' title='Edit ACTION-104'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/104">Provide information about language identification, in addition to RFC 4646</a></td>
<td>Felix Sasaki</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Daniel to ask members for the definition of contributor types" for en-masse editing'
name='actions[105]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/105">ACTION-105</a><a href='/2008/WebVideo/Annotations/track/actions/105/edit' title='Edit ACTION-105'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/105">Daniel to ask members for the definition of contributor types</a></td>
<td>Soohong Daniel Park</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Editing team to come up with the initial Ontology document" for en-masse editing'
name='actions[106]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/106">ACTION-106</a><a href='/2008/WebVideo/Annotations/track/actions/106/edit' title='Edit ACTION-106'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/106">Editing team to come up with the initial Ontology document</a></td>
<td>WonSuk Lee</td>
<td>2009-04-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the all excel format files according to the new initial MAWG attributes" for en-masse editing'
name='actions[107]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/107">ACTION-107</a><a href='/2008/WebVideo/Annotations/track/actions/107/edit' title='Edit ACTION-107'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/107">Update the all excel format files according to the new initial MAWG attributes</a></td>
<td>Joakim Söderberg</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make a *call for comments* to the mailing list in terms of mapping table" for en-masse editing'
name='actions[108]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/108">ACTION-108</a><a href='/2008/WebVideo/Annotations/track/actions/108/edit' title='Edit ACTION-108'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/108">Make a *call for comments* to the mailing list in terms of mapping table</a></td>
<td>Joakim Söderberg</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Elaborate on the description and the meaning of each attribute by April 28" for en-masse editing'
name='actions[109]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/109">ACTION-109</a><a href='/2008/WebVideo/Annotations/track/actions/109/edit' title='Edit ACTION-109'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/109">Elaborate on the description and the meaning of each attribute by April 28</a></td>
<td>David Singer</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Double check the next F2F meeting date for other complicated things" for en-masse editing'
name='actions[110]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/110">ACTION-110</a><a href='/2008/WebVideo/Annotations/track/actions/110/edit' title='Edit ACTION-110'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/110">Double check the next F2F meeting date for other complicated things</a></td>
<td>Joakim Söderberg</td>
<td>2009-04-24</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ping doug after use case document is updated" for en-masse editing'
name='actions[111]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/111">ACTION-111</a><a href='/2008/WebVideo/Annotations/track/actions/111/edit' title='Edit ACTION-111'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/111">Ping doug after use case document is updated</a></td>
<td>Felix Sasaki</td>
<td>2009-05-05</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Inform Doug when the updates are ready" for en-masse editing'
name='actions[112]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/112">ACTION-112</a><a href='/2008/WebVideo/Annotations/track/actions/112/edit' title='Edit ACTION-112'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/112">Inform Doug when the updates are ready</a></td>
<td>Felix Sasaki</td>
<td>2009-05-05</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review the introduction of Ontology for Media Entity 1.0" for en-masse editing'
name='actions[113]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/113">ACTION-113</a><a href='/2008/WebVideo/Annotations/track/actions/113/edit' title='Edit ACTION-113'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/113">Review the introduction of Ontology for Media Entity 1.0</a></td>
<td>Joakim Söderberg</td>
<td>2009-05-19</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add a Wiki Page for Candidate Metadata elements to be added" for en-masse editing'
name='actions[114]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/114">ACTION-114</a><a href='/2008/WebVideo/Annotations/track/actions/114/edit' title='Edit ACTION-114'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/114">Add a Wiki Page for Candidate Metadata elements to be added</a></td>
<td>Werner Bailer</td>
<td>2009-05-19</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review of section 4 of the Ontology for Media Entity 1.0 document" for en-masse editing'
name='actions[115]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/115">ACTION-115</a><a href='/2008/WebVideo/Annotations/track/actions/115/edit' title='Edit ACTION-115'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/115">Review of section 4 of the Ontology for Media Entity 1.0 document</a></td>
<td>Víctor Rodríguez</td>
<td>2009-05-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change terminology (section 2.1 of the Ontology for Media Entity 1.0 document) in accordance with the initial draft of the fragment group (Review will be done by Veronique)" for en-masse editing'
name='actions[116]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/116">ACTION-116</a><a href='/2008/WebVideo/Annotations/track/actions/116/edit' title='Edit ACTION-116'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/116">Change terminology (section 2.1 of the Ontology for Media Entity 1.0 document) in accordance with the initial draft of the fragment group (Review will be done by Veronique)</a></td>
<td>Florian Stegmaier</td>
<td>2009-05-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review of the introduction of the Ontology for Media Entity 1.0 document" for en-masse editing'
name='actions[117]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/117">ACTION-117</a><a href='/2008/WebVideo/Annotations/track/actions/117/edit' title='Edit ACTION-117'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/117">Review of the introduction of the Ontology for Media Entity 1.0 document</a></td>
<td>Joakim Söderberg</td>
<td>2009-05-18</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Put terminology discussion on the agenda for next telecon" for en-masse editing'
name='actions[118]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/118">ACTION-118</a><a href='/2008/WebVideo/Annotations/track/actions/118/edit' title='Edit ACTION-118'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/118">Put terminology discussion on the agenda for next telecon</a></td>
<td>Joakim Söderberg</td>
<td>2009-05-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review the Ontology document" for en-masse editing'
name='actions[119]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/119">ACTION-119</a><a href='/2008/WebVideo/Annotations/track/actions/119/edit' title='Edit ACTION-119'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/119">Review the Ontology document</a></td>
<td>Felix Sasaki</td>
<td>2009-05-26</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Submit our vocabulary to the Media Fragment WG for comments" for en-masse editing'
name='actions[120]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/120">ACTION-120</a><a href='/2008/WebVideo/Annotations/track/actions/120/edit' title='Edit ACTION-120'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/120">Submit our vocabulary to the Media Fragment WG for comments</a></td>
<td>Soohong Daniel Park</td>
<td>2009-05-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Remind doug to publish requirements document" for en-masse editing'
name='actions[121]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/121">ACTION-121</a><a href='/2008/WebVideo/Annotations/track/actions/121/edit' title='Edit ACTION-121'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/121">Remind doug to publish requirements document</a></td>
<td>Joakim Söderberg</td>
<td>2009-06-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Talk to with Phillipe about the delay of the publication" for en-masse editing'
name='actions[122]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/122">ACTION-122</a><a href='/2008/WebVideo/Annotations/track/actions/122/edit' title='Edit ACTION-122'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/122">Talk to with Phillipe about the delay of the publication</a></td>
<td>Joakim Söderberg</td>
<td>2009-06-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ask the mailing list to provide descriptions for targetAudience/locator" for en-masse editing'
name='actions[123]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/123">ACTION-123</a><a href='/2008/WebVideo/Annotations/track/actions/123/edit' title='Edit ACTION-123'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/123">Ask the mailing list to provide descriptions for targetAudience/locator</a></td>
<td>Joakim Söderberg</td>
<td>2009-06-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Reminder: Check - everybody responsible for a format: add a column describing syntactic information ("data types", see cable lab column "Type") to his table" for en-masse editing'
name='actions[124]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/124">ACTION-124</a><a href='/2008/WebVideo/Annotations/track/actions/124/edit' title='Edit ACTION-124'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/124">Reminder: Check - everybody responsible for a format: add a column describing syntactic information ("data types", see cable lab column "Type") to his table</a></td>
<td>Felix Sasaki</td>
<td>2009-06-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make wiki page for the improvements of the ontology document (type column, ...)" for en-masse editing'
name='actions[125]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/125">ACTION-125</a><a href='/2008/WebVideo/Annotations/track/actions/125/edit' title='Edit ACTION-125'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/125">Make wiki page for the improvements of the ontology document (type column, ...)</a></td>
<td>Florian Stegmaier</td>
<td>2009-06-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send link to Thierry for laste version of UC docuemtn" for en-masse editing'
name='actions[126]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/126">ACTION-126</a><a href='/2008/WebVideo/Annotations/track/actions/126/edit' title='Edit ACTION-126'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/126">Send link to Thierry for laste version of UC docuemtn</a></td>
<td>Joakim Söderberg</td>
<td>2009-06-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send email to mailing list about publication of Ontology doc" for en-masse editing'
name='actions[127]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/127">ACTION-127</a><a href='/2008/WebVideo/Annotations/track/actions/127/edit' title='Edit ACTION-127'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/127">Send email to mailing list about publication of Ontology doc</a></td>
<td>Thierry Michel</td>
<td>2009-06-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action " to make a reference HTML version of the mapping table" for en-masse editing'
name='actions[128]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/128">ACTION-128</a><a href='/2008/WebVideo/Annotations/track/actions/128/edit' title='Edit ACTION-128'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/128"> to make a reference HTML version of the mapping table</a></td>
<td>WonSuk Lee</td>
<td>2009-06-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Copy the format sheets into the wiki" for en-masse editing'
name='actions[129]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/129">ACTION-129</a><a href='/2008/WebVideo/Annotations/track/actions/129/edit' title='Edit ACTION-129'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/129">Copy the format sheets into the wiki</a></td>
<td>Thierry Michel</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Create an XSL transformation for the format mapping sheets" for en-masse editing'
name='actions[130]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/130">ACTION-130</a><a href='/2008/WebVideo/Annotations/track/actions/130/edit' title='Edit ACTION-130'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/130">Create an XSL transformation for the format mapping sheets</a></td>
<td>Thierry Michel</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add a datatype column to the format mapping sheets" for en-masse editing'
name='actions[131]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/131">ACTION-131</a><a href='/2008/WebVideo/Annotations/track/actions/131/edit' title='Edit ACTION-131'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/131">Add a datatype column to the format mapping sheets</a></td>
<td>Thierry Michel</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add a column for XPath expressions to the format sheets" for en-masse editing'
name='actions[132]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/132">ACTION-132</a><a href='/2008/WebVideo/Annotations/track/actions/132/edit' title='Edit ACTION-132'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/132">Add a column for XPath expressions to the format sheets</a></td>
<td>Thierry Michel</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Copy the format sheets into the Wiki." for en-masse editing'
name='actions[133]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/133">ACTION-133</a><a href='/2008/WebVideo/Annotations/track/actions/133/edit' title='Edit ACTION-133'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/133">Copy the format sheets into the Wiki.</a></td>
<td>Thierry Michel</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Revise e-mail on issues/updates of property description" for en-masse editing'
name='actions[134]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/134">ACTION-134</a><a href='/2008/WebVideo/Annotations/track/actions/134/edit' title='Edit ACTION-134'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/134">Revise e-mail on issues/updates of property description</a></td>
<td>David Singer</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "update description of location to represent shot location" for en-masse editing'
name='actions[135]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/135">ACTION-135</a><a href='/2008/WebVideo/Annotations/track/actions/135/edit' title='Edit ACTION-135'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/135">update description of location to represent shot location</a></td>
<td>David Singer</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Will refine the subtypes, like ma:contributor, ma:publisher etc." for en-masse editing'
name='actions[136]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/136">ACTION-136</a><a href='/2008/WebVideo/Annotations/track/actions/136/edit' title='Edit ACTION-136'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/136">Will refine the subtypes, like ma:contributor, ma:publisher etc.</a></td>
<td>Joakim Söderberg</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update attributes table" for en-masse editing'
name='actions[137]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/137">ACTION-137</a><a href='/2008/WebVideo/Annotations/track/actions/137/edit' title='Edit ACTION-137'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/137">Update attributes table</a></td>
<td>Werner Bailer</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the candidate additional elements" for en-masse editing'
name='actions[138]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/138">ACTION-138</a><a href='/2008/WebVideo/Annotations/track/actions/138/edit' title='Edit ACTION-138'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/138">Update the candidate additional elements</a></td>
<td>Werner Bailer</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check with Veronique (and Victor) the improvements 9-11 in the list." for en-masse editing'
name='actions[139]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/139">ACTION-139</a><a href='/2008/WebVideo/Annotations/track/actions/139/edit' title='Edit ACTION-139'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/139">Check with Veronique (and Victor) the improvements 9-11 in the list.</a></td>
<td>Florian Stegmaier</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Come up with examples" for en-masse editing'
name='actions[140]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/140">ACTION-140</a><a href='/2008/WebVideo/Annotations/track/actions/140/edit' title='Edit ACTION-140'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/140">Come up with examples</a></td>
<td>Chris Poppe</td>
<td>2009-07-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update rationale of r09 " for en-masse editing'
name='actions[141]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/141">ACTION-141</a><a href='/2008/WebVideo/Annotations/track/actions/141/edit' title='Edit ACTION-141'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/141">Update rationale of r09 </a></td>
<td>Tobias Bürger</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Provide examples for our set of properties" for en-masse editing'
name='actions[142]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/142">ACTION-142</a><a href='/2008/WebVideo/Annotations/track/actions/142/edit' title='Edit ACTION-142'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/142">Provide examples for our set of properties</a></td>
<td>Chris Poppe</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Sent mail about the upload of tables as html-pages" for en-masse editing'
name='actions[143]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/143">ACTION-143</a><a href='/2008/WebVideo/Annotations/track/actions/143/edit' title='Edit ACTION-143'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/143">Sent mail about the upload of tables as html-pages</a></td>
<td>Thierry Michel</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Fill out the datatype column for mpeg-7 to set an example for other mapping table editors" for en-masse editing'
name='actions[144]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/144">ACTION-144</a><a href='/2008/WebVideo/Annotations/track/actions/144/edit' title='Edit ACTION-144'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/144">Fill out the datatype column for mpeg-7 to set an example for other mapping table editors</a></td>
<td>Werner Bailer</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Elaborate on the API return types (structured and unstructured) by providing examples" for en-masse editing'
name='actions[145]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/145">ACTION-145</a><a href='/2008/WebVideo/Annotations/track/actions/145/edit' title='Edit ACTION-145'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/145">Elaborate on the API return types (structured and unstructured) by providing examples</a></td>
<td>Chris Poppe</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Define sub-types for the different properties" for en-masse editing'
name='actions[146]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/146">ACTION-146</a><a href='/2008/WebVideo/Annotations/track/actions/146/edit' title='Edit ACTION-146'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/146">Define sub-types for the different properties</a></td>
<td>Joakim Söderberg</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check status of Web IDL for web api's" for en-masse editing'
name='actions[147]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/147">ACTION-147</a><a href='/2008/WebVideo/Annotations/track/actions/147/edit' title='Edit ACTION-147'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/147">Check status of Web IDL for web api's</a></td>
<td>Thierry Michel</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Start work and collaboration on the API draft document" for en-masse editing'
name='actions[148]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/148">ACTION-148</a><a href='/2008/WebVideo/Annotations/track/actions/148/edit' title='Edit ACTION-148'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/148">Start work and collaboration on the API draft document</a></td>
<td>WonSuk Lee</td>
<td>2009-07-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review of whole of ontology doc with veronique" for en-masse editing'
name='actions[149]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/149">ACTION-149</a><a href='/2008/WebVideo/Annotations/track/actions/149/edit' title='Edit ACTION-149'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/149">Review of whole of ontology doc with veronique</a></td>
<td>David Singer</td>
<td>2009-07-28</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review the Media Fragments WD" for en-masse editing'
name='actions[150]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/150">ACTION-150</a><a href='/2008/WebVideo/Annotations/track/actions/150/edit' title='Edit ACTION-150'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/150">Review the Media Fragments WD</a></td>
<td>Felix Sasaki</td>
<td>2009-09-08</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Formulate an answer on the feed back from PFWG (Protocols and Formats WG)" for en-masse editing'
name='actions[151]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/151">ACTION-151</a><a href='/2008/WebVideo/Annotations/track/actions/151/edit' title='Edit ACTION-151'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/151">Formulate an answer on the feed back from PFWG (Protocols and Formats WG)</a></td>
<td>Werner Bailer</td>
<td>2009-09-08</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Look into web idl with victor and others" for en-masse editing'
name='actions[152]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/152">ACTION-152</a><a href='/2008/WebVideo/Annotations/track/actions/152/edit' title='Edit ACTION-152'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/152">Look into web idl with victor and others</a></td>
<td>Thierry Michel</td>
<td>2009-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Look into comments from werner on PFWG review" for en-masse editing'
name='actions[153]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/153">ACTION-153</a><a href='/2008/WebVideo/Annotations/track/actions/153/edit' title='Edit ACTION-153'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/153">Look into comments from werner on PFWG review</a></td>
<td>Joakim Söderberg</td>
<td>2009-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask dave about the relationship of digital data exchange with Apple stuff, ID3, iTunesXML, etc" for en-masse editing'
name='actions[154]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/154">ACTION-154</a><a href='/2008/WebVideo/Annotations/track/actions/154/edit' title='Edit ACTION-154'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/154">Ask dave about the relationship of digital data exchange with Apple stuff, ID3, iTunesXML, etc</a></td>
<td>Joakim Söderberg</td>
<td>2009-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And co-editors (wonsuk, florian, victor, werner) to come up for a proposal for a return type for all properties, i.e. structured or unstructured?" for en-masse editing'
name='actions[155]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/155">ACTION-155</a><a href='/2008/WebVideo/Annotations/track/actions/155/edit' title='Edit ACTION-155'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/155">And co-editors (wonsuk, florian, victor, werner) to come up for a proposal for a return type for all properties, i.e. structured or unstructured?</a></td>
<td>Chris Poppe</td>
<td>2009-09-22</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask Jean-Pierre about the rationale in EBU to redefine the notion of Person rather than reuse an existing one" for en-masse editing'
name='actions[156]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/156">ACTION-156</a><a href='/2008/WebVideo/Annotations/track/actions/156/edit' title='Edit ACTION-156'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/156">Ask Jean-Pierre about the rationale in EBU to redefine the notion of Person rather than reuse an existing one</a></td>
<td>Tobias Bürger</td>
<td>2009-09-29</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send email about representing date in WebIDL" for en-masse editing'
name='actions[157]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/157">ACTION-157</a><a href='/2008/WebVideo/Annotations/track/actions/157/edit' title='Edit ACTION-157'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/157">Send email about representing date in WebIDL</a></td>
<td>Chris Poppe</td>
<td>2009-10-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review the API document" for en-masse editing'
name='actions[158]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/158">ACTION-158</a><a href='/2008/WebVideo/Annotations/track/actions/158/edit' title='Edit ACTION-158'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/158">Review the API document</a></td>
<td>Pierre-Antoine Champin</td>
<td>2009-10-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send review of the API document" for en-masse editing'
name='actions[159]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/159">ACTION-159</a><a href='/2008/WebVideo/Annotations/track/actions/159/edit' title='Edit ACTION-159'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/159">Send review of the API document</a></td>
<td>Werner Bailer</td>
<td>2009-10-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Daniel to send an email to the list to get more feedback and reviews for the API document" for en-masse editing'
name='actions[160]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/160">ACTION-160</a><a href='/2008/WebVideo/Annotations/track/actions/160/edit' title='Edit ACTION-160'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/160">Daniel to send an email to the list to get more feedback and reviews for the API document</a></td>
<td>Soohong Daniel Park</td>
<td>2009-10-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And joakim to collect in a wiki page all issues to be discussed at the F2F" for en-masse editing'
name='actions[161]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/161">ACTION-161</a><a href='/2008/WebVideo/Annotations/track/actions/161/edit' title='Edit ACTION-161'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/161">And joakim to collect in a wiki page all issues to be discussed at the F2F</a></td>
<td>Werner Bailer</td>
<td>2009-10-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact W3C staff to put the API working draft on TR" for en-masse editing'
name='actions[162]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/162">ACTION-162</a><a href='/2008/WebVideo/Annotations/track/actions/162/edit' title='Edit ACTION-162'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/162">Contact W3C staff to put the API working draft on TR</a></td>
<td>Joakim Söderberg</td>
<td>2009-10-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update some of the descriptions to make them more precise and highlight the difference with DC" for en-masse editing'
name='actions[163]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/163">ACTION-163</a><a href='/2008/WebVideo/Annotations/track/actions/163/edit' title='Edit ACTION-163'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/163">Update some of the descriptions to make them more precise and highlight the difference with DC</a></td>
<td>David Singer</td>
<td>2009-10-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the wiki with the rationale for not reusing DC properties" for en-masse editing'
name='actions[164]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/164">ACTION-164</a><a href='/2008/WebVideo/Annotations/track/actions/164/edit' title='Edit ACTION-164'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/164">Update the wiki with the rationale for not reusing DC properties</a></td>
<td>Joakim Söderberg</td>
<td>2009-10-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send a mail to the wap WG" for en-masse editing'
name='actions[165]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/165">ACTION-165</a><a href='/2008/WebVideo/Annotations/track/actions/165/edit' title='Edit ACTION-165'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/165">Send a mail to the wap WG</a></td>
<td>Joakim Söderberg</td>
<td>2009-10-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add issues to API open issues wiki page" for en-masse editing'
name='actions[166]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/166">ACTION-166</a><a href='/2008/WebVideo/Annotations/track/actions/166/edit' title='Edit ACTION-166'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/166">Add issues to API open issues wiki page</a></td>
<td>Pierre-Antoine Champin</td>
<td>2009-10-27</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ask team contact about access to pages for invited experts (e.g. pierre-antoine cannot access the list of tpac attendees)" for en-masse editing'
name='actions[167]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/167">ACTION-167</a><a href='/2008/WebVideo/Annotations/track/actions/167/edit' title='Edit ACTION-167'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/167">Ask team contact about access to pages for invited experts (e.g. pierre-antoine cannot access the list of tpac attendees)</a></td>
<td>Joakim Söderberg</td>
<td>2009-10-27</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask Veronique to send an email to the group to define an implementation approach of ontology with four suggested approaches" for en-masse editing'
name='actions[168]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/168">ACTION-168</a><a href='/2008/WebVideo/Annotations/track/actions/168/edit' title='Edit ACTION-168'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/168">Ask Veronique to send an email to the group to define an implementation approach of ontology with four suggested approaches</a></td>
<td>Joakim Söderberg</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "veronique to update text on in scope formats in ontology doc (formats not in mapping table)" for en-masse editing'
name='actions[169]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/169">ACTION-169</a><a href='/2008/WebVideo/Annotations/track/actions/169/edit' title='Edit ACTION-169'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/169">veronique to update text on in scope formats in ontology doc (formats not in mapping table)</a></td>
<td>Véronique Malaisé</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update 4.1.1 of ontology doc (put text on voring etc there)" for en-masse editing'
name='actions[170]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/170">ACTION-170</a><a href='/2008/WebVideo/Annotations/track/actions/170/edit' title='Edit ACTION-170'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/170">Update 4.1.1 of ontology doc (put text on voring etc there)</a></td>
<td>WonSuk Lee</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "improve description of properties (together with veronique)" for en-masse editing'
name='actions[171]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/171">ACTION-171</a><a href='/2008/WebVideo/Annotations/track/actions/171/edit' title='Edit ACTION-171'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/171">improve description of properties (together with veronique)</a></td>
<td>David Singer</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "rewrite intro to be clear on what we mean by ontology" for en-masse editing'
name='actions[172]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/172">ACTION-172</a><a href='/2008/WebVideo/Annotations/track/actions/172/edit' title='Edit ACTION-172'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/172">rewrite intro to be clear on what we mean by ontology</a></td>
<td>Véronique Malaisé</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "chase mapping table editors to restructure (following summary table) and update their tables" for en-masse editing'
name='actions[173]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/173">ACTION-173</a><a href='/2008/WebVideo/Annotations/track/actions/173/edit' title='Edit ACTION-173'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/173">chase mapping table editors to restructure (following summary table) and update their tables</a></td>
<td>Soohong Daniel Park</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "check if ontology document says that type of mapping specifies if there is a loss in semantics" for en-masse editing'
name='actions[174]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/174">ACTION-174</a><a href='/2008/WebVideo/Annotations/track/actions/174/edit' title='Edit ACTION-174'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/174">check if ontology document says that type of mapping specifies if there is a loss in semantics</a></td>
<td>Véronique Malaisé</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Define data type mappings as soon as the data types for the formats are defined" for en-masse editing'
name='actions[175]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/175">ACTION-175</a><a href='/2008/WebVideo/Annotations/track/actions/175/edit' title='Edit ACTION-175'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/175">Define data type mappings as soon as the data types for the formats are defined</a></td>
<td>Felix Sasaki</td>
<td>2009-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact browser implementors to review the API document" for en-masse editing'
name='actions[176]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/176">ACTION-176</a><a href='/2008/WebVideo/Annotations/track/actions/176/edit' title='Edit ACTION-176'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/176">Contact browser implementors to review the API document</a></td>
<td>Joakim Söderberg</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make schematic pictures of sample applications" for en-masse editing'
name='actions[177]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/177">ACTION-177</a><a href='/2008/WebVideo/Annotations/track/actions/177/edit' title='Edit ACTION-177'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/177">Make schematic pictures of sample applications</a></td>
<td>Werner Bailer</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add this open issue to the wiki " for en-masse editing'
name='actions[178]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/178">ACTION-178</a><a href='/2008/WebVideo/Annotations/track/actions/178/edit' title='Edit ACTION-178'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/178">Add this open issue to the wiki </a></td>
<td>Chris Poppe</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add the subtype problem as an open issue to the wiki" for en-masse editing'
name='actions[179]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/179">ACTION-179</a><a href='/2008/WebVideo/Annotations/track/actions/179/edit' title='Edit ACTION-179'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/179">Add the subtype problem as an open issue to the wiki</a></td>
<td>Chris Poppe</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add the metadata on metadata issue to the open issues on the wiki" for en-masse editing'
name='actions[180]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/180">ACTION-180</a><a href='/2008/WebVideo/Annotations/track/actions/180/edit' title='Edit ACTION-180'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/180">Add the metadata on metadata issue to the open issues on the wiki</a></td>
<td>Chris Poppe</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add the proposed solution to include URIs and strings to the wiki" for en-masse editing'
name='actions[181]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/181">ACTION-181</a><a href='/2008/WebVideo/Annotations/track/actions/181/edit' title='Edit ACTION-181'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/181">Add the proposed solution to include URIs and strings to the wiki</a></td>
<td>Chris Poppe</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add the use of seconds to the proposed solutions" for en-masse editing'
name='actions[182]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/182">ACTION-182</a><a href='/2008/WebVideo/Annotations/track/actions/182/edit' title='Edit ACTION-182'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/182">Add the use of seconds to the proposed solutions</a></td>
<td>Chris Poppe</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the requirements document based on the proposed updates" for en-masse editing'
name='actions[183]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/183">ACTION-183</a><a href='/2008/WebVideo/Annotations/track/actions/183/edit' title='Edit ACTION-183'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/183">Update the requirements document based on the proposed updates</a></td>
<td>WonSuk Lee</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Explain the link, difference or relation of our work with the Media Queries" for en-masse editing'
name='actions[184]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/184">ACTION-184</a><a href='/2008/WebVideo/Annotations/track/actions/184/edit' title='Edit ACTION-184'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/184">Explain the link, difference or relation of our work with the Media Queries</a></td>
<td>David Singer</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "rigo@w3.org to ask pling wg to provide text on including policy information" for en-masse editing'
name='actions[185]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/185">ACTION-185</a><a href='/2008/WebVideo/Annotations/track/actions/185/edit' title='Edit ACTION-185'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/185">rigo@w3.org to ask pling wg to provide text on including policy information</a></td>
<td>Véronique Malaisé</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask Doug for the alternative implementation/syntx for the API doc" for en-masse editing'
name='actions[186]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/186">ACTION-186</a><a href='/2008/WebVideo/Annotations/track/actions/186/edit' title='Edit ACTION-186'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/186">Ask Doug for the alternative implementation/syntx for the API doc</a></td>
<td>Joakim Söderberg</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Create a WebIDL specifiction to the generic GET Method" for en-masse editing'
name='actions[187]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/187">ACTION-187</a><a href='/2008/WebVideo/Annotations/track/actions/187/edit' title='Edit ACTION-187'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/187">Create a WebIDL specifiction to the generic GET Method</a></td>
<td>Chris Poppe</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Put the "Error Handling" topic into the agenda of the next telecon" for en-masse editing'
name='actions[188]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/188">ACTION-188</a><a href='/2008/WebVideo/Annotations/track/actions/188/edit' title='Edit ACTION-188'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/188">Put the "Error Handling" topic into the agenda of the next telecon</a></td>
<td>Joakim Söderberg</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Postponed: Work on the the subproperties" for en-masse editing'
name='actions[189]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/189">ACTION-189</a><a href='/2008/WebVideo/Annotations/track/actions/189/edit' title='Edit ACTION-189'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/189">Postponed: Work on the the subproperties</a></td>
<td>Tobias Bürger</td>
<td>2010-12-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "make a first draft for a rights disclaimer and add it to the API doc" for en-masse editing'
name='actions[190]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/190">ACTION-190</a><a href='/2008/WebVideo/Annotations/track/actions/190/edit' title='Edit ACTION-190'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/190">make a first draft for a rights disclaimer and add it to the API doc</a></td>
<td>Soohong Daniel Park</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make a first draft for a rights disclaimer and add it to the API doc" for en-masse editing'
name='actions[191]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/191">ACTION-191</a><a href='/2008/WebVideo/Annotations/track/actions/191/edit' title='Edit ACTION-191'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/191">Make a first draft for a rights disclaimer and add it to the API doc</a></td>
<td>Soohong Daniel Park</td>
<td>2009-11-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "And everyone to review the Requirements document before 1/12" for en-masse editing'
name='actions[192]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/192">ACTION-192</a><a href='/2008/WebVideo/Annotations/track/actions/192/edit' title='Edit ACTION-192'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/192">And everyone to review the Requirements document before 1/12</a></td>
<td>Joakim Söderberg</td>
<td>2009-12-01</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Test TPAC attendees page to see if it is accessible to IE now" for en-masse editing'
name='actions[193]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/193">ACTION-193</a><a href='/2008/WebVideo/Annotations/track/actions/193/edit' title='Edit ACTION-193'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/193">Test TPAC attendees page to see if it is accessible to IE now</a></td>
<td>Pierre-Antoine Champin</td>
<td>2009-12-01</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send a mail to silvia about the implementation of the API in browsers and the need to address several metadata sources" for en-masse editing'
name='actions[194]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/194">ACTION-194</a><a href='/2008/WebVideo/Annotations/track/actions/194/edit' title='Edit ACTION-194'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/194">Send a mail to silvia about the implementation of the API in browsers and the need to address several metadata sources</a></td>
<td>Chris Poppe</td>
<td>2009-12-01</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the API document regarding error management" for en-masse editing'
name='actions[195]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/195">ACTION-195</a><a href='/2008/WebVideo/Annotations/track/actions/195/edit' title='Edit ACTION-195'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/195">Update the API document regarding error management</a></td>
<td>Chris Poppe</td>
<td>2009-12-01</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "update scribe list" for en-masse editing'
name='actions[196]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/196">ACTION-196</a><a href='/2008/WebVideo/Annotations/track/actions/196/edit' title='Edit ACTION-196'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/196">update scribe list</a></td>
<td>Soohong Daniel Park</td>
<td>2009-12-08</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Daniel to remind table editors to update" for en-masse editing'
name='actions[197]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/197">ACTION-197</a><a href='/2008/WebVideo/Annotations/track/actions/197/edit' title='Edit ACTION-197'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/197">Daniel to remind table editors to update</a></td>
<td>Soohong Daniel Park</td>
<td>2009-12-08</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Prepare 3rd working draft of UC & Rec document" for en-masse editing'
name='actions[198]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/198">ACTION-198</a><a href='/2008/WebVideo/Annotations/track/actions/198/edit' title='Edit ACTION-198'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/198">Prepare 3rd working draft of UC & Rec document</a></td>
<td>WonSuk Lee</td>
<td>2009-12-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Daniel to check availability of phone conference bridge and send info to joakim" for en-masse editing'
name='actions[199]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/199">ACTION-199</a><a href='/2008/WebVideo/Annotations/track/actions/199/edit' title='Edit ACTION-199'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/199">Daniel to check availability of phone conference bridge and send info to joakim</a></td>
<td>Soohong Daniel Park</td>
<td>2009-12-08</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send a mail to the group explaining the different document spaces and why some documents are to be removed" for en-masse editing'
name='actions[200]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/200">ACTION-200</a><a href='/2008/WebVideo/Annotations/track/actions/200/edit' title='Edit ACTION-200'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/200">Send a mail to the group explaining the different document spaces and why some documents are to be removed</a></td>
<td>Thierry Michel</td>
<td>2009-12-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update acknowledgements section of uc& req document and to notify chairs when it's ready for publication" for en-masse editing'
name='actions[201]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/201">ACTION-201</a><a href='/2008/WebVideo/Annotations/track/actions/201/edit' title='Edit ACTION-201'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/201">Update acknowledgements section of uc& req document and to notify chairs when it's ready for publication</a></td>
<td>WonSuk Lee</td>
<td>2009-12-22</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Include security part in api document" for en-masse editing'
name='actions[202]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/202">ACTION-202</a><a href='/2008/WebVideo/Annotations/track/actions/202/edit' title='Edit ACTION-202'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/202">Include security part in api document</a></td>
<td>WonSuk Lee</td>
<td>2009-12-22</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Come up with a proposal of methods that allow to identify the media resource and metadata documents" for en-masse editing'
name='actions[203]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/203">ACTION-203</a><a href='/2008/WebVideo/Annotations/track/actions/203/edit' title='Edit ACTION-203'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/203">Come up with a proposal of methods that allow to identify the media resource and metadata documents</a></td>
<td>Chris Poppe</td>
<td>2009-12-22</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "give informations about the workshop in korea" for en-masse editing'
name='actions[204]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/204">ACTION-204</a><a href='/2008/WebVideo/Annotations/track/actions/204/edit' title='Edit ACTION-204'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/204">give informations about the workshop in korea</a></td>
<td>Soohong Daniel Park</td>
<td>2010-01-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "resend the email with the updated ontology document to the editorial team" for en-masse editing'
name='actions[205]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/205">ACTION-205</a><a href='/2008/WebVideo/Annotations/track/actions/205/edit' title='Edit ACTION-205'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/205">resend the email with the updated ontology document to the editorial team</a></td>
<td>Véronique Malaisé</td>
<td>1970-01-01</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "new F2F near the MPEG Meeting (mpeg in geneva: 10/07/26-30 & mpeg in dresden: 10/04/19-23)" for en-masse editing'
name='actions[206]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/206">ACTION-206</a><a href='/2008/WebVideo/Annotations/track/actions/206/edit' title='Edit ACTION-206'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/206">new F2F near the MPEG Meeting (mpeg in geneva: 10/07/26-30 & mpeg in dresden: 10/04/19-23)</a></td>
<td>Joakim Söderberg</td>
<td>1970-01-01</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Fish for good ideas in the minutes and collect them in the wiki about the test suite" for en-masse editing'
name='actions[207]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/207">ACTION-207</a><a href='/2008/WebVideo/Annotations/track/actions/207/edit' title='Edit ACTION-207'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/207">Fish for good ideas in the minutes and collect them in the wiki about the test suite</a></td>
<td>Florian Stegmaier</td>
<td>2010-01-26</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Read and sumarize test-methodolofy for the group" for en-masse editing'
name='actions[208]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/208">ACTION-208</a><a href='/2008/WebVideo/Annotations/track/actions/208/edit' title='Edit ACTION-208'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/208">Read and sumarize test-methodolofy for the group</a></td>
<td>Pierre-Antoine Champin</td>
<td>2010-02-09</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Share his image metadata with the group (when he has it)" for en-masse editing'
name='actions[209]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/209">ACTION-209</a><a href='/2008/WebVideo/Annotations/track/actions/209/edit' title='Edit ACTION-209'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/209">Share his image metadata with the group (when he has it)</a></td>
<td>Florian Stegmaier</td>
<td>2010-02-09</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask someone of the webapps group to review our ontology document" for en-masse editing'
name='actions[210]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/210">ACTION-210</a><a href='/2008/WebVideo/Annotations/track/actions/210/edit' title='Edit ACTION-210'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/210">Ask someone of the webapps group to review our ontology document</a></td>
<td>Joakim Söderberg</td>
<td>2010-02-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Formulate a text regarding the client-server picture" for en-masse editing'
name='actions[211]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/211">ACTION-211</a><a href='/2008/WebVideo/Annotations/track/actions/211/edit' title='Edit ACTION-211'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/211">Formulate a text regarding the client-server picture</a></td>
<td>Werner Bailer</td>
<td>2010-02-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Synchronize the api document with the open issues in the wiki entry" for en-masse editing'
name='actions[212]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/212">ACTION-212</a><a href='/2008/WebVideo/Annotations/track/actions/212/edit' title='Edit ACTION-212'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/212">Synchronize the api document with the open issues in the wiki entry</a></td>
<td>Chris Poppe</td>
<td>2010-02-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make a test suite example, before the f2f" for en-masse editing'
name='actions[213]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/213">ACTION-213</a><a href='/2008/WebVideo/Annotations/track/actions/213/edit' title='Edit ACTION-213'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/213">Make a test suite example, before the f2f</a></td>
<td>Felix Sasaki</td>
<td>2010-02-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Request review from MXM during last working draft call" for en-masse editing'
name='actions[214]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/214">ACTION-214</a><a href='/2008/WebVideo/Annotations/track/actions/214/edit' title='Edit ACTION-214'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/214">Request review from MXM during last working draft call</a></td>
<td>WonSuk Lee</td>
<td>2010-03-02</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the Wiki with information on the next F2F (possibly 3-day meeting?)" for en-masse editing'
name='actions[215]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/215">ACTION-215</a><a href='/2008/WebVideo/Annotations/track/actions/215/edit' title='Edit ACTION-215'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/215">Update the Wiki with information on the next F2F (possibly 3-day meeting?)</a></td>
<td>Werner Bailer</td>
<td>2010-03-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the API document with the service description proposed at http://lists.w3.org/Archives/Public/public-media-annotation/2010Feb/att-0070/ma-api-service-approach.pdf , after getting the latest version of the doc from Chris" for en-masse editing'
name='actions[216]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/216">ACTION-216</a><a href='/2008/WebVideo/Annotations/track/actions/216/edit' title='Edit ACTION-216'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/216">Update the API document with the service description proposed at http://lists.w3.org/Archives/Public/public-media-annotation/2010Feb/att-0070/ma-api-service-approach.pdf , after getting the latest version of the doc from Chris</a></td>
<td>Felix Sasaki</td>
<td>2010-03-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ask Sylvia to review the doc" for en-masse editing'
name='actions[217]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/217">ACTION-217</a><a href='/2008/WebVideo/Annotations/track/actions/217/edit' title='Edit ACTION-217'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/217">Ask Sylvia to review the doc</a></td>
<td>Joakim Söderberg</td>
<td>2010-03-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact the webapps, geolocation WGs to review the API document" for en-masse editing'
name='actions[218]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/218">ACTION-218</a><a href='/2008/WebVideo/Annotations/track/actions/218/edit' title='Edit ACTION-218'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/218">Contact the webapps, geolocation WGs to review the API document</a></td>
<td>Joakim Söderberg</td>
<td>2010-03-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the API doc e with the service description " for en-masse editing'
name='actions[219]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/219">ACTION-219</a><a href='/2008/WebVideo/Annotations/track/actions/219/edit' title='Edit ACTION-219'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/219">Update the API doc e with the service description </a></td>
<td>Felix Sasaki</td>
<td>2010-03-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Investigate into the tool to transform WebIDL example intoi testsuite" for en-masse editing'
name='actions[220]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/220">ACTION-220</a><a href='/2008/WebVideo/Annotations/track/actions/220/edit' title='Edit ACTION-220'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/220">Investigate into the tool to transform WebIDL example intoi testsuite</a></td>
<td>Thierry Michel</td>
<td>2010-03-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check how many standards support content location" for en-masse editing'
name='actions[221]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/221">ACTION-221</a><a href='/2008/WebVideo/Annotations/track/actions/221/edit' title='Edit ACTION-221'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/221">Check how many standards support content location</a></td>
<td>Bennett Marks</td>
<td>2010-03-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send mail to list about adding syntactic mappings" for en-masse editing'
name='actions[222]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/222">ACTION-222</a><a href='/2008/WebVideo/Annotations/track/actions/222/edit' title='Edit ACTION-222'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/222">Send mail to list about adding syntactic mappings</a></td>
<td>Soohong Daniel Park</td>
<td>2010-03-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check for overlap between html5 and mawg issues" for en-masse editing'
name='actions[223]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/223">ACTION-223</a><a href='/2008/WebVideo/Annotations/track/actions/223/edit' title='Edit ACTION-223'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/223">Check for overlap between html5 and mawg issues</a></td>
<td>Soohong Daniel Park</td>
<td>2010-03-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "check together with other ontology doc editors results from webapps review and make updates" for en-masse editing'
name='actions[224]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/224">ACTION-224</a><a href='/2008/WebVideo/Annotations/track/actions/224/edit' title='Edit ACTION-224'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/224">check together with other ontology doc editors results from webapps review and make updates</a></td>
<td>Véronique Malaisé</td>
<td>2010-03-30</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Inclusion of mapping table into ontology document" for en-masse editing'
name='actions[225]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/225">ACTION-225</a><a href='/2008/WebVideo/Annotations/track/actions/225/edit' title='Edit ACTION-225'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/225">Inclusion of mapping table into ontology document</a></td>
<td>Véronique Malaisé</td>
<td>2010-03-30</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review mapping table and identify which formats are up to date" for en-masse editing'
name='actions[226]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/226">ACTION-226</a><a href='/2008/WebVideo/Annotations/track/actions/226/edit' title='Edit ACTION-226'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/226">Review mapping table and identify which formats are up to date</a></td>
<td>Joakim Söderberg</td>
<td>2010-03-30</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Propose how to implement table from felix for one or 2 function" for en-masse editing'
name='actions[227]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/227">ACTION-227</a><a href='/2008/WebVideo/Annotations/track/actions/227/edit' title='Edit ACTION-227'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/227">Propose how to implement table from felix for one or 2 function</a></td>
<td>Chris Poppe</td>
<td>2010-03-30</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Investigate how to create def elements with class "idl" in the generated XML" for en-masse editing'
name='actions[228]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/228">ACTION-228</a><a href='/2008/WebVideo/Annotations/track/actions/228/edit' title='Edit ACTION-228'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/228">Investigate how to create def elements with class "idl" in the generated XML</a></td>
<td>Thierry Michel</td>
<td>2010-04-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Inform reviewers about the deadline" for en-masse editing'
name='actions[229]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/229">ACTION-229</a><a href='/2008/WebVideo/Annotations/track/actions/229/edit' title='Edit ACTION-229'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/229">Inform reviewers about the deadline</a></td>
<td>Soohong Daniel Park</td>
<td>2010-04-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Convert the API document to html+script format" for en-masse editing'
name='actions[230]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/230">ACTION-230</a><a href='/2008/WebVideo/Annotations/track/actions/230/edit' title='Edit ACTION-230'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/230">Convert the API document to html+script format</a></td>
<td>WonSuk Lee</td>
<td>2010-04-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Look at Silvia's comment" for en-masse editing'
name='actions[231]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/231">ACTION-231</a><a href='/2008/WebVideo/Annotations/track/actions/231/edit' title='Edit ACTION-231'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/231">Look at Silvia's comment</a></td>
<td>Chris Poppe</td>
<td>2010-04-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check the impact on use cases of excluding setter operations" for en-masse editing'
name='actions[232]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/232">ACTION-232</a><a href='/2008/WebVideo/Annotations/track/actions/232/edit' title='Edit ACTION-232'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/232">Check the impact on use cases of excluding setter operations</a></td>
<td>Pierre-Antoine Champin</td>
<td>2010-04-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add mapping table for OGG (see http://lists.w3.org/Archives/Public/public-media-annotation/2010Apr/att-0008/OggMetadata.html ) to the mapping table" for en-masse editing'
name='actions[233]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/233">ACTION-233</a><a href='/2008/WebVideo/Annotations/track/actions/233/edit' title='Edit ACTION-233'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/233">Add mapping table for OGG (see http://lists.w3.org/Archives/Public/public-media-annotation/2010Apr/att-0008/OggMetadata.html ) to the mapping table</a></td>
<td>Thierry Michel</td>
<td>2010-04-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact Google" for en-masse editing'
name='actions[234]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/234">ACTION-234</a><a href='/2008/WebVideo/Annotations/track/actions/234/edit' title='Edit ACTION-234'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/234">Contact Google</a></td>
<td>Joakim Söderberg</td>
<td>2010-05-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And tobiasb to check the datatypes used in the ontology doc" for en-masse editing'
name='actions[235]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/235">ACTION-235</a><a href='/2008/WebVideo/Annotations/track/actions/235/edit' title='Edit ACTION-235'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/235">And tobiasb to check the datatypes used in the ontology doc</a></td>
<td>Florian Stegmaier</td>
<td>2010-05-03</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make table 4.1.2 same format as the mapping table (using the same template)" for en-masse editing'
name='actions[236]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/236">ACTION-236</a><a href='/2008/WebVideo/Annotations/track/actions/236/edit' title='Edit ACTION-236'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/236">Make table 4.1.2 same format as the mapping table (using the same template)</a></td>
<td>Véronique Malaisé</td>
<td>2010-05-03</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "examples missing for getDiagnosis, getOriginalData, getSourceFormatsWithValues, selectMAResource" for en-masse editing'
name='actions[237]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/237">ACTION-237</a><a href='/2008/WebVideo/Annotations/track/actions/237/edit' title='Edit ACTION-237'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/237">examples missing for getDiagnosis, getOriginalData, getSourceFormatsWithValues, selectMAResource</a></td>
<td>Chris Poppe</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add example regarding column 11" for en-masse editing'
name='actions[238]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/238">ACTION-238</a><a href='/2008/WebVideo/Annotations/track/actions/238/edit' title='Edit ACTION-238'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/238">Add example regarding column 11</a></td>
<td>Chris Poppe</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Convert the image in the API doc to svg " for en-masse editing'
name='actions[239]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/239">ACTION-239</a><a href='/2008/WebVideo/Annotations/track/actions/239/edit' title='Edit ACTION-239'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/239">Convert the image in the API doc to svg </a></td>
<td>Werner Bailer</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change the name of method "setMAResource"" for en-masse editing'
name='actions[240]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/240">ACTION-240</a><a href='/2008/WebVideo/Annotations/track/actions/240/edit' title='Edit ACTION-240'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/240">Change the name of method "setMAResource"</a></td>
<td>WonSuk Lee</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change the name of method "setMAResource"" for en-masse editing'
name='actions[241]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/241">ACTION-241</a><a href='/2008/WebVideo/Annotations/track/actions/241/edit' title='Edit ACTION-241'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/241">Change the name of method "setMAResource"</a></td>
<td>WonSuk Lee</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the service examples with apropriate structured JSON " for en-masse editing'
name='actions[242]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/242">ACTION-242</a><a href='/2008/WebVideo/Annotations/track/actions/242/edit' title='Edit ACTION-242'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/242">Update the service examples with apropriate structured JSON </a></td>
<td>Felix Sasaki</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Adding units to the framesize" for en-masse editing'
name='actions[243]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/243">ACTION-243</a><a href='/2008/WebVideo/Annotations/track/actions/243/edit' title='Edit ACTION-243'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/243">Adding units to the framesize</a></td>
<td>WonSuk Lee</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the doc regarding item 40" for en-masse editing'
name='actions[244]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/244">ACTION-244</a><a href='/2008/WebVideo/Annotations/track/actions/244/edit' title='Edit ACTION-244'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/244">Update the doc regarding item 40</a></td>
<td>Chris Poppe</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the doc regarding item 41" for en-masse editing'
name='actions[245]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/245">ACTION-245</a><a href='/2008/WebVideo/Annotations/track/actions/245/edit' title='Edit ACTION-245'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/245">Update the doc regarding item 41</a></td>
<td>Chris Poppe</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the change the bitrate into averagebitrate" for en-masse editing'
name='actions[246]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/246">ACTION-246</a><a href='/2008/WebVideo/Annotations/track/actions/246/edit' title='Edit ACTION-246'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/246">Update the change the bitrate into averagebitrate</a></td>
<td>WonSuk Lee</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Discuss possible error messages as an input for the diagnosis section" for en-masse editing'
name='actions[247]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/247">ACTION-247</a><a href='/2008/WebVideo/Annotations/track/actions/247/edit' title='Edit ACTION-247'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/247">Discuss possible error messages as an input for the diagnosis section</a></td>
<td>Florian Stegmaier</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask dominique regarding item 53 (WebIDL) " for en-masse editing'
name='actions[248]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/248">ACTION-248</a><a href='/2008/WebVideo/Annotations/track/actions/248/edit' title='Edit ACTION-248'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/248">Ask dominique regarding item 53 (WebIDL) </a></td>
<td>Joakim Söderberg</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Come up with an ontology proposal on the basis of the Task Force Meeting in the 7th MAWG F2F" for en-masse editing'
name='actions[249]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/249">ACTION-249</a><a href='/2008/WebVideo/Annotations/track/actions/249/edit' title='Edit ACTION-249'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/249">Come up with an ontology proposal on the basis of the Task Force Meeting in the 7th MAWG F2F</a></td>
<td>Tobias Bürger</td>
<td>2010-05-04</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Prepare a document containing the examples from thes introduction (to be used for test cases)" for en-masse editing'
name='actions[250]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/250">ACTION-250</a><a href='/2008/WebVideo/Annotations/track/actions/250/edit' title='Edit ACTION-250'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/250">Prepare a document containing the examples from thes introduction (to be used for test cases)</a></td>
<td>Joakim Söderberg</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Supply jpeg images with exif " for en-masse editing'
name='actions[251]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/251">ACTION-251</a><a href='/2008/WebVideo/Annotations/track/actions/251/edit' title='Edit ACTION-251'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/251">Supply jpeg images with exif </a></td>
<td>Florian Stegmaier</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Provide mp3 file with id3 info" for en-masse editing'
name='actions[252]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/252">ACTION-252</a><a href='/2008/WebVideo/Annotations/track/actions/252/edit' title='Edit ACTION-252'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/252">Provide mp3 file with id3 info</a></td>
<td>Tobias Bürger</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Provide mpeg-7 describing a movie" for en-masse editing'
name='actions[253]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/253">ACTION-253</a><a href='/2008/WebVideo/Annotations/track/actions/253/edit' title='Edit ACTION-253'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/253">Provide mpeg-7 describing a movie</a></td>
<td>Werner Bailer</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Propose namespace URI for mawg" for en-masse editing'
name='actions[254]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/254">ACTION-254</a><a href='/2008/WebVideo/Annotations/track/actions/254/edit' title='Edit ACTION-254'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/254">Propose namespace URI for mawg</a></td>
<td>Felix Sasaki</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft text concerning mawg namespace and ma prefix" for en-masse editing'
name='actions[255]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/255">ACTION-255</a><a href='/2008/WebVideo/Annotations/track/actions/255/edit' title='Edit ACTION-255'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/255">Draft text concerning mawg namespace and ma prefix</a></td>
<td>Joakim Söderberg</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Integrate felix' "usage as a service" changes into the api doc" for en-masse editing'
name='actions[256]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/256">ACTION-256</a><a href='/2008/WebVideo/Annotations/track/actions/256/edit' title='Edit ACTION-256'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/256">Integrate felix' "usage as a service" changes into the api doc</a></td>
<td>WonSuk Lee</td>
<td>2010-05-05</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update summary mapping table with revised property type definitions and descriptions from ontology document" for en-masse editing'
name='actions[257]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/257">ACTION-257</a><a href='/2008/WebVideo/Annotations/track/actions/257/edit' title='Edit ACTION-257'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/257">Update summary mapping table with revised property type definitions and descriptions from ontology document</a></td>
<td>Werner Bailer</td>
<td>2010-05-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask thierry about javascript solution for automatically integrating mapping tables into ontology doc" for en-masse editing'
name='actions[258]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/258">ACTION-258</a><a href='/2008/WebVideo/Annotations/track/actions/258/edit' title='Edit ACTION-258'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/258">Ask thierry about javascript solution for automatically integrating mapping tables into ontology doc</a></td>
<td>Joakim Söderberg</td>
<td>2010-05-18</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Create a namespace doc" for en-masse editing'
name='actions[259]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/259">ACTION-259</a><a href='/2008/WebVideo/Annotations/track/actions/259/edit' title='Edit ACTION-259'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/259">Create a namespace doc</a></td>
<td>Joakim Söderberg</td>
<td>2010-05-25</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask thierry of how to make a version that works woth IE" for en-masse editing'
name='actions[260]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/260">ACTION-260</a><a href='/2008/WebVideo/Annotations/track/actions/260/edit' title='Edit ACTION-260'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/260">Ask thierry of how to make a version that works woth IE</a></td>
<td>Joakim Söderberg</td>
<td>2010-05-25</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Provide xslt stylesheet for including tables into ontology doc before candidate rec publication" for en-masse editing'
name='actions[261]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/261">ACTION-261</a><a href='/2008/WebVideo/Annotations/track/actions/261/edit' title='Edit ACTION-261'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/261">Provide xslt stylesheet for including tables into ontology doc before candidate rec publication</a></td>
<td>Thierry Michel</td>
<td>2010-06-08</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Correct css of tables in ontology doc" for en-masse editing'
name='actions[262]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/262">ACTION-262</a><a href='/2008/WebVideo/Annotations/track/actions/262/edit' title='Edit ACTION-262'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/262">Correct css of tables in ontology doc</a></td>
<td>Thierry Michel</td>
<td>2010-06-08</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Provide info on hotel and logistics for upcoming f2f" for en-masse editing'
name='actions[263]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/263">ACTION-263</a><a href='/2008/WebVideo/Annotations/track/actions/263/edit' title='Edit ACTION-263'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/263">Provide info on hotel and logistics for upcoming f2f</a></td>
<td>Thierry Michel</td>
<td>2010-06-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Edit the spec with the 3 changes proposed above." for en-masse editing'
name='actions[264]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/264">ACTION-264</a><a href='/2008/WebVideo/Annotations/track/actions/264/edit' title='Edit ACTION-264'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/264">Edit the spec with the 3 changes proposed above.</a></td>
<td>Florian Stegmaier</td>
<td>2010-06-22</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make a review of media fragments LC doc" for en-masse editing'
name='actions[265]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/265">ACTION-265</a><a href='/2008/WebVideo/Annotations/track/actions/265/edit' title='Edit ACTION-265'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/265">Make a review of media fragments LC doc</a></td>
<td>Tobias Bürger</td>
<td>2010-07-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make change of the namespace document, with the "#" URI" for en-masse editing'
name='actions[266]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/266">ACTION-266</a><a href='/2008/WebVideo/Annotations/track/actions/266/edit' title='Edit ACTION-266'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/266">Make change of the namespace document, with the "#" URI</a></td>
<td>Thierry Michel</td>
<td>2010-07-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Organize a call asap, e.g. next week" for en-masse editing'
name='actions[267]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/267">ACTION-267</a><a href='/2008/WebVideo/Annotations/track/actions/267/edit' title='Edit ACTION-267'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/267">Organize a call asap, e.g. next week</a></td>
<td>Joakim Söderberg</td>
<td>2010-07-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send mail to remind for volunteers taking care of LC comments" for en-masse editing'
name='actions[268]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/268">ACTION-268</a><a href='/2008/WebVideo/Annotations/track/actions/268/edit' title='Edit ACTION-268'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/268">Send mail to remind for volunteers taking care of LC comments</a></td>
<td>Thierry Michel</td>
<td>2010-07-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Report about "library to extract test cases for JavaScript" at next call" for en-masse editing'
name='actions[269]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/269">ACTION-269</a><a href='/2008/WebVideo/Annotations/track/actions/269/edit' title='Edit ACTION-269'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/269">Report about "library to extract test cases for JavaScript" at next call</a></td>
<td>Florian Stegmaier</td>
<td>2010-07-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft an answer for the comment 2389" for en-masse editing'
name='actions[270]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/270">ACTION-270</a><a href='/2008/WebVideo/Annotations/track/actions/270/edit' title='Edit ACTION-270'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/270">Draft an answer for the comment 2389</a></td>
<td>Werner Bailer</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Contact the SW Coordination Group about how to do semantic annotation with ma:description and ma:relation alternatives" for en-masse editing'
name='actions[271]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/271">ACTION-271</a><a href='/2008/WebVideo/Annotations/track/actions/271/edit' title='Edit ACTION-271'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/271">Contact the SW Coordination Group about how to do semantic annotation with ma:description and ma:relation alternatives</a></td>
<td>Raphaël Troncy</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Start a new section in the Ontology document providing example of usage (e.g. subtitles, powder, etc.)" for en-masse editing'
name='actions[272]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/272">ACTION-272</a><a href='/2008/WebVideo/Annotations/track/actions/272/edit' title='Edit ACTION-272'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/272">Start a new section in the Ontology document providing example of usage (e.g. subtitles, powder, etc.)</a></td>
<td>WonSuk Lee</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Prepare the mapping table for the media container formats" for en-masse editing'
name='actions[273]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/273">ACTION-273</a><a href='/2008/WebVideo/Annotations/track/actions/273/edit' title='Edit ACTION-273'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/273">Prepare the mapping table for the media container formats</a></td>
<td>Thierry Michel</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check all mapping tables and add N/A when it is needed" for en-masse editing'
name='actions[274]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/274">ACTION-274</a><a href='/2008/WebVideo/Annotations/track/actions/274/edit' title='Edit ACTION-274'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/274">Check all mapping tables and add N/A when it is needed</a></td>
<td>Thierry Michel</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "And Wonsuk to deal with with the editorial comments of the LC comment 2405" for en-masse editing'
name='actions[275]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/275">ACTION-275</a><a href='/2008/WebVideo/Annotations/track/actions/275/edit' title='Edit ACTION-275'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/275">And Wonsuk to deal with with the editorial comments of the LC comment 2405</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change the type definition into the new syntax" for en-masse editing'
name='actions[276]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/276">ACTION-276</a><a href='/2008/WebVideo/Annotations/track/actions/276/edit' title='Edit ACTION-276'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/276">Change the type definition into the new syntax</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add a line for the "broadcastDate" property attribute " for en-masse editing'
name='actions[277]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/277">ACTION-277</a><a href='/2008/WebVideo/Annotations/track/actions/277/edit' title='Edit ACTION-277'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/277">Add a line for the "broadcastDate" property attribute </a></td>
<td>Chris Poppe</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft a response to the comment LC-2417" for en-masse editing'
name='actions[278]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/278">ACTION-278</a><a href='/2008/WebVideo/Annotations/track/actions/278/edit' title='Edit ACTION-278'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/278">Draft a response to the comment LC-2417</a></td>
<td>Werner Bailer</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Look into problems with the CSS rule" for en-masse editing'
name='actions[279]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/279">ACTION-279</a><a href='/2008/WebVideo/Annotations/track/actions/279/edit' title='Edit ACTION-279'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/279">Look into problems with the CSS rule</a></td>
<td>Thierry Michel</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check the normative parts of the document according to comment 2418" for en-masse editing'
name='actions[280]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/280">ACTION-280</a><a href='/2008/WebVideo/Annotations/track/actions/280/edit' title='Edit ACTION-280'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/280">Check the normative parts of the document according to comment 2418</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Follow up the comment of Robin about the HTML 5 compatibility issue by contacting Florian" for en-masse editing'
name='actions[281]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/281">ACTION-281</a><a href='/2008/WebVideo/Annotations/track/actions/281/edit' title='Edit ACTION-281'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/281">Follow up the comment of Robin about the HTML 5 compatibility issue by contacting Florian</a></td>
<td>Werner Bailer</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Follow up the comment on the namespaces " for en-masse editing'
name='actions[282]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/282">ACTION-282</a><a href='/2008/WebVideo/Annotations/track/actions/282/edit' title='Edit ACTION-282'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/282">Follow up the comment on the namespaces </a></td>
<td>WonSuk Lee</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send mail to Geolocation WG for an example, or controlled voca that can be used for the ma:location property" for en-masse editing'
name='actions[283]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/283">ACTION-283</a><a href='/2008/WebVideo/Annotations/track/actions/283/edit' title='Edit ACTION-283'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/283">Send mail to Geolocation WG for an example, or controlled voca that can be used for the ma:location property</a></td>
<td>Soohong Daniel Park</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Mail David Singer about the inclusion of media type parameters in the ma:format property" for en-masse editing'
name='actions[284]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/284">ACTION-284</a><a href='/2008/WebVideo/Annotations/track/actions/284/edit' title='Edit ACTION-284'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/284">Mail David Singer about the inclusion of media type parameters in the ma:format property</a></td>
<td>Werner Bailer</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check the normative statemens according to the editorial comment of Robin" for en-masse editing'
name='actions[285]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/285">ACTION-285</a><a href='/2008/WebVideo/Annotations/track/actions/285/edit' title='Edit ACTION-285'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/285">Check the normative statemens according to the editorial comment of Robin</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the XPATH columns of the mapping tables" for en-masse editing'
name='actions[286]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/286">ACTION-286</a><a href='/2008/WebVideo/Annotations/track/actions/286/edit' title='Edit ACTION-286'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/286">Update the XPATH columns of the mapping tables</a></td>
<td>Thierry Michel</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Include information to the introduction of 5.2.2 to describe the tables and columns" for en-masse editing'
name='actions[287]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/287">ACTION-287</a><a href='/2008/WebVideo/Annotations/track/actions/287/edit' title='Edit ACTION-287'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/287">Include information to the introduction of 5.2.2 to describe the tables and columns</a></td>
<td>Felix Sasaki</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Unify the XPATH expressions in the mapping tables according to the last substantial comment of Robin" for en-masse editing'
name='actions[288]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/288">ACTION-288</a><a href='/2008/WebVideo/Annotations/track/actions/288/edit' title='Edit ACTION-288'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/288">Unify the XPATH expressions in the mapping tables according to the last substantial comment of Robin</a></td>
<td>Felix Sasaki</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Deal with the last editorial comment of Robin" for en-masse editing'
name='actions[289]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/289">ACTION-289</a><a href='/2008/WebVideo/Annotations/track/actions/289/edit' title='Edit ACTION-289'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/289">Deal with the last editorial comment of Robin</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make updates to api document related to dropping type attribute of identifier" for en-masse editing'
name='actions[290]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/290">ACTION-290</a><a href='/2008/WebVideo/Annotations/track/actions/290/edit' title='Edit ACTION-290'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/290">Make updates to api document related to dropping type attribute of identifier</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Put agreed version of ontology to url pointed to by namespace" for en-masse editing'
name='actions[291]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/291">ACTION-291</a><a href='/2008/WebVideo/Annotations/track/actions/291/edit' title='Edit ACTION-291'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/291">Put agreed version of ontology to url pointed to by namespace</a></td>
<td>Thierry Michel</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft response to ivan" for en-masse editing'
name='actions[292]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/292">ACTION-292</a><a href='/2008/WebVideo/Annotations/track/actions/292/edit' title='Edit ACTION-292'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/292">Draft response to ivan</a></td>
<td>Thierry Michel</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "work with chris and raphael to update the properties of the ontology doc" for en-masse editing'
name='actions[293]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/293">ACTION-293</a><a href='/2008/WebVideo/Annotations/track/actions/293/edit' title='Edit ACTION-293'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/293">work with chris and raphael to update the properties of the ontology doc</a></td>
<td>Véronique Malaisé</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "check together with other table editors option for clarifying type/role attributes" for en-masse editing'
name='actions[294]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/294">ACTION-294</a><a href='/2008/WebVideo/Annotations/track/actions/294/edit' title='Edit ACTION-294'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/294">check together with other table editors option for clarifying type/role attributes</a></td>
<td>Véronique Malaisé</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Chanage title to plural in api doc" for en-masse editing'
name='actions[295]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/295">ACTION-295</a><a href='/2008/WebVideo/Annotations/track/actions/295/edit' title='Edit ACTION-295'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/295">Chanage title to plural in api doc</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change title to plural in ontology doc" for en-masse editing'
name='actions[296]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/296">ACTION-296</a><a href='/2008/WebVideo/Annotations/track/actions/296/edit' title='Edit ACTION-296'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/296">Change title to plural in ontology doc</a></td>
<td>Thierry Michel</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send mail to HTML WG chairs" for en-masse editing'
name='actions[297]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/297">ACTION-297</a><a href='/2008/WebVideo/Annotations/track/actions/297/edit' title='Edit ACTION-297'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/297">Send mail to HTML WG chairs</a></td>
<td>Thierry Michel</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact WebIDL for requesting information about the planned direction for the webservices (REMINDER for future developments)" for en-masse editing'
name='actions[298]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/298">ACTION-298</a><a href='/2008/WebVideo/Annotations/track/actions/298/edit' title='Edit ACTION-298'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/298">Contact WebIDL for requesting information about the planned direction for the webservices (REMINDER for future developments)</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change the API interface about Date" for en-masse editing'
name='actions[299]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/299">ACTION-299</a><a href='/2008/WebVideo/Annotations/track/actions/299/edit' title='Edit ACTION-299'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/299">Change the API interface about Date</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact the Geolocation WG and see if they'd be OK to make the accuracy optional" for en-masse editing'
name='actions[300]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/300">ACTION-300</a><a href='/2008/WebVideo/Annotations/track/actions/300/edit' title='Edit ACTION-300'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/300">Contact the Geolocation WG and see if they'd be OK to make the accuracy optional</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check out the compression property of the Ontology document " for en-masse editing'
name='actions[301]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/301">ACTION-301</a><a href='/2008/WebVideo/Annotations/track/actions/301/edit' title='Edit ACTION-301'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/301">Check out the compression property of the Ontology document </a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check out the consistency in the property names in the Ontology document's table" for en-masse editing'
name='actions[302]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/302">ACTION-302</a><a href='/2008/WebVideo/Annotations/track/actions/302/edit' title='Edit ACTION-302'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/302">Check out the consistency in the property names in the Ontology document's table</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Inform the Media Capture WG about our LC document" for en-masse editing'
name='actions[303]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/303">ACTION-303</a><a href='/2008/WebVideo/Annotations/track/actions/303/edit' title='Edit ACTION-303'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/303">Inform the Media Capture WG about our LC document</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft answer for lc-2395" for en-masse editing'
name='actions[304]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/304">ACTION-304</a><a href='/2008/WebVideo/Annotations/track/actions/304/edit' title='Edit ACTION-304'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/304">Draft answer for lc-2395</a></td>
<td>Thierry Michel</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Invite doug to telecon to discuss his lc comments" for en-masse editing'
name='actions[305]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/305">ACTION-305</a><a href='/2008/WebVideo/Annotations/track/actions/305/edit' title='Edit ACTION-305'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/305">Invite doug to telecon to discuss his lc comments</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add paragraph to section 2 about support for several metadata sources" for en-masse editing'
name='actions[306]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/306">ACTION-306</a><a href='/2008/WebVideo/Annotations/track/actions/306/edit' title='Edit ACTION-306'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/306">Add paragraph to section 2 about support for several metadata sources</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Fix description of parameters in getoriginaldata (LC-2410)" for en-masse editing'
name='actions[307]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/307">ACTION-307</a><a href='/2008/WebVideo/Annotations/track/actions/307/edit' title='Edit ACTION-307'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/307">Fix description of parameters in getoriginaldata (LC-2410)</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Take care of editorial issues in comment LC-2394" for en-masse editing'
name='actions[308]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/308">ACTION-308</a><a href='/2008/WebVideo/Annotations/track/actions/308/edit' title='Edit ACTION-308'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/308">Take care of editorial issues in comment LC-2394</a></td>
<td>Chris Poppe</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Improve markup of nomative/informative, probably with specific class to visualise" for en-masse editing'
name='actions[309]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/309">ACTION-309</a><a href='/2008/WebVideo/Annotations/track/actions/309/edit' title='Edit ACTION-309'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/309">Improve markup of nomative/informative, probably with specific class to visualise</a></td>
<td>WonSuk Lee</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add hyphens in Java-Script in the figure" for en-masse editing'
name='actions[310]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/310">ACTION-310</a><a href='/2008/WebVideo/Annotations/track/actions/310/edit' title='Edit ACTION-310'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/310">Add hyphens in Java-Script in the figure</a></td>
<td>Werner Bailer</td>
<td>2010-09-16</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "ontology doc editing particularly table, etc" for en-masse editing'
name='actions[311]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/311">ACTION-311</a><a href='/2008/WebVideo/Annotations/track/actions/311/edit' title='Edit ACTION-311'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/311">ontology doc editing particularly table, etc</a></td>
<td>Raphaël Troncy</td>
<td>2010-09-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send to the group the list of LC Comments that needs to be reviewed for moving on" for en-masse editing'
name='actions[312]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/312">ACTION-312</a><a href='/2008/WebVideo/Annotations/track/actions/312/edit' title='Edit ACTION-312'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/312">Send to the group the list of LC Comments that needs to be reviewed for moving on</a></td>
<td>Thierry Michel</td>
<td>2010-09-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update definition of ma:policy according to comments from PLING" for en-masse editing'
name='actions[313]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/313">ACTION-313</a><a href='/2008/WebVideo/Annotations/track/actions/313/edit' title='Edit ACTION-313'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/313">Update definition of ma:policy according to comments from PLING</a></td>
<td>WonSuk Lee</td>
<td>2010-09-28</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Update the description of the ma:format in the ontology doc using the input from Dave Singer (see Werner email)" for en-masse editing'
name='actions[314]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/314">ACTION-314</a><a href='/2008/WebVideo/Annotations/track/actions/314/edit' title='Edit ACTION-314'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/314">Update the description of the ma:format in the ontology doc using the input from Dave Singer (see Werner email)</a></td>
<td>WonSuk Lee</td>
<td>2010-09-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Update the group web site to reflect the plural in the title and to make working his cvs" for en-masse editing'
name='actions[315]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/315">ACTION-315</a><a href='/2008/WebVideo/Annotations/track/actions/315/edit' title='Edit ACTION-315'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/315">Update the group web site to reflect the plural in the title and to make working his cvs</a></td>
<td>Thierry Michel</td>
<td>2010-09-28</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Pursue development of WebIDL for REST at the Coordination Group meeting (Reminder to check for future developments)" for en-masse editing'
name='actions[316]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/316">ACTION-316</a><a href='/2008/WebVideo/Annotations/track/actions/316/edit' title='Edit ACTION-316'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/316">Pursue development of WebIDL for REST at the Coordination Group meeting (Reminder to check for future developments)</a></td>
<td>Joakim Söderberg</td>
<td>2010-09-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ping tobias about reply to media fragments guys comments" for en-masse editing'
name='actions[317]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/317">ACTION-317</a><a href='/2008/WebVideo/Annotations/track/actions/317/edit' title='Edit ACTION-317'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/317">Ping tobias about reply to media fragments guys comments</a></td>
<td>Thierry Michel</td>
<td>2010-10-05</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Respond to unsolved issues of lc 2419 (with help of wonsuk)" for en-masse editing'
name='actions[318]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/318">ACTION-318</a><a href='/2008/WebVideo/Annotations/track/actions/318/edit' title='Edit ACTION-318'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/318">Respond to unsolved issues of lc 2419 (with help of wonsuk)</a></td>
<td>Chris Poppe</td>
<td>2010-10-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft repsonse to open issues in lc 2395" for en-masse editing'
name='actions[319]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/319">ACTION-319</a><a href='/2008/WebVideo/Annotations/track/actions/319/edit' title='Edit ACTION-319'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/319">Draft repsonse to open issues in lc 2395</a></td>
<td>Thierry Michel</td>
<td>2010-10-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "draft response for open issues in lc 2418" for en-masse editing'
name='actions[320]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/320">ACTION-320</a><a href='/2008/WebVideo/Annotations/track/actions/320/edit' title='Edit ACTION-320'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/320">draft response for open issues in lc 2418</a></td>
<td>Véronique Malaisé</td>
<td>2010-10-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft repsonse for open issues in lc 2392" for en-masse editing'
name='actions[321]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/321">ACTION-321</a><a href='/2008/WebVideo/Annotations/track/actions/321/edit' title='Edit ACTION-321'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/321">Draft repsonse for open issues in lc 2392</a></td>
<td>Thierry Michel</td>
<td>2010-10-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send mail to api doc editors to attend call next week" for en-masse editing'
name='actions[322]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/322">ACTION-322</a><a href='/2008/WebVideo/Annotations/track/actions/322/edit' title='Edit ACTION-322'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/322">Send mail to api doc editors to attend call next week</a></td>
<td>Joakim Söderberg</td>
<td>2010-10-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Book telecon bridge for api call" for en-masse editing'
name='actions[323]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/323">ACTION-323</a><a href='/2008/WebVideo/Annotations/track/actions/323/edit' title='Edit ACTION-323'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/323">Book telecon bridge for api call</a></td>
<td>Thierry Michel</td>
<td>2010-10-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check out whether James attends the F2F" for en-masse editing'
name='actions[324]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/324">ACTION-324</a><a href='/2008/WebVideo/Annotations/track/actions/324/edit' title='Edit ACTION-324'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/324">Check out whether James attends the F2F</a></td>
<td>Thierry Michel</td>
<td>2010-10-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make a new schedule of working plan during f2f and following milestones" for en-masse editing'
name='actions[325]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/325">ACTION-325</a><a href='/2008/WebVideo/Annotations/track/actions/325/edit' title='Edit ACTION-325'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/325">Make a new schedule of working plan during f2f and following milestones</a></td>
<td>Thierry Michel</td>
<td>2010-10-26</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check out with Silvia about the WebM container mapping table" for en-masse editing'
name='actions[326]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/326">ACTION-326</a><a href='/2008/WebVideo/Annotations/track/actions/326/edit' title='Edit ACTION-326'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/326">Check out with Silvia about the WebM container mapping table</a></td>
<td>Thierry Michel</td>
<td>2010-10-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Response james once again and set a deadline for a response" for en-masse editing'
name='actions[327]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/327">ACTION-327</a><a href='/2008/WebVideo/Annotations/track/actions/327/edit' title='Edit ACTION-327'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/327">Response james once again and set a deadline for a response</a></td>
<td>Thierry Michel</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2389 is in the document" for en-masse editing'
name='actions[328]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/328">ACTION-328</a><a href='/2008/WebVideo/Annotations/track/actions/328/edit' title='Edit ACTION-328'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/328">Check if comment 2389 is in the document</a></td>
<td>WonSuk Lee</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2389 is in the document" for en-masse editing'
name='actions[329]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/329">ACTION-329</a><a href='/2008/WebVideo/Annotations/track/actions/329/edit' title='Edit ACTION-329'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/329">Check if comment 2389 is in the document</a></td>
<td>Werner Bailer</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2398 is in the document" for en-masse editing'
name='actions[330]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/330">ACTION-330</a><a href='/2008/WebVideo/Annotations/track/actions/330/edit' title='Edit ACTION-330'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/330">Check if comment 2398 is in the document</a></td>
<td>Tobias Bürger</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2398 is in the document" for en-masse editing'
name='actions[331]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/331">ACTION-331</a><a href='/2008/WebVideo/Annotations/track/actions/331/edit' title='Edit ACTION-331'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/331">Check if comment 2398 is in the document</a></td>
<td>Florian Stegmaier</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2403 is in the document" for en-masse editing'
name='actions[332]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/332">ACTION-332</a><a href='/2008/WebVideo/Annotations/track/actions/332/edit' title='Edit ACTION-332'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/332">Check if comment 2403 is in the document</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2403 is in the document" for en-masse editing'
name='actions[333]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/333">ACTION-333</a><a href='/2008/WebVideo/Annotations/track/actions/333/edit' title='Edit ACTION-333'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/333">Check if comment 2403 is in the document</a></td>
<td>Thierry Michel</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2404 is in the document" for en-masse editing'
name='actions[334]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/334">ACTION-334</a><a href='/2008/WebVideo/Annotations/track/actions/334/edit' title='Edit ACTION-334'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/334">Check if comment 2404 is in the document</a></td>
<td>Soohong Daniel Park</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2404 is in the document" for en-masse editing'
name='actions[335]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/335">ACTION-335</a><a href='/2008/WebVideo/Annotations/track/actions/335/edit' title='Edit ACTION-335'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/335">Check if comment 2404 is in the document</a></td>
<td>Pierre-Antoine Champin</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2405 is in the document" for en-masse editing'
name='actions[336]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/336">ACTION-336</a><a href='/2008/WebVideo/Annotations/track/actions/336/edit' title='Edit ACTION-336'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/336">Check if comment 2405 is in the document</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2405 is in the document" for en-masse editing'
name='actions[337]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/337">ACTION-337</a><a href='/2008/WebVideo/Annotations/track/actions/337/edit' title='Edit ACTION-337'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/337">Check if comment 2405 is in the document</a></td>
<td>WonSuk Lee</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2411 is in the document" for en-masse editing'
name='actions[338]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/338">ACTION-338</a><a href='/2008/WebVideo/Annotations/track/actions/338/edit' title='Edit ACTION-338'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/338">Check if comment 2411 is in the document</a></td>
<td>Werner Bailer</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2411 is in the document" for en-masse editing'
name='actions[339]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/339">ACTION-339</a><a href='/2008/WebVideo/Annotations/track/actions/339/edit' title='Edit ACTION-339'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/339">Check if comment 2411 is in the document</a></td>
<td>Tobias Bürger</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2417 is in the document" for en-masse editing'
name='actions[340]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/340">ACTION-340</a><a href='/2008/WebVideo/Annotations/track/actions/340/edit' title='Edit ACTION-340'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/340">Check if comment 2417 is in the document</a></td>
<td>Florian Stegmaier</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2417 is in the document" for en-masse editing'
name='actions[341]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/341">ACTION-341</a><a href='/2008/WebVideo/Annotations/track/actions/341/edit' title='Edit ACTION-341'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/341">Check if comment 2417 is in the document</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2418 is in the document" for en-masse editing'
name='actions[342]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/342">ACTION-342</a><a href='/2008/WebVideo/Annotations/track/actions/342/edit' title='Edit ACTION-342'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/342">Check if comment 2418 is in the document</a></td>
<td>Thierry Michel</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2418 is in the document" for en-masse editing'
name='actions[343]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/343">ACTION-343</a><a href='/2008/WebVideo/Annotations/track/actions/343/edit' title='Edit ACTION-343'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/343">Check if comment 2418 is in the document</a></td>
<td>Soohong Daniel Park</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "check if comment 2394 is in the document" for en-masse editing'
name='actions[344]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/344">ACTION-344</a><a href='/2008/WebVideo/Annotations/track/actions/344/edit' title='Edit ACTION-344'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/344">check if comment 2394 is in the document</a></td>
<td>Véronique Malaisé</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2394 is in the document" for en-masse editing'
name='actions[345]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/345">ACTION-345</a><a href='/2008/WebVideo/Annotations/track/actions/345/edit' title='Edit ACTION-345'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/345">Check if comment 2394 is in the document</a></td>
<td>Chris Poppe</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2410 is in the document" for en-masse editing'
name='actions[346]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/346">ACTION-346</a><a href='/2008/WebVideo/Annotations/track/actions/346/edit' title='Edit ACTION-346'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/346">Check if comment 2410 is in the document</a></td>
<td>Chris Poppe</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2410 is in the document" for en-masse editing'
name='actions[347]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/347">ACTION-347</a><a href='/2008/WebVideo/Annotations/track/actions/347/edit' title='Edit ACTION-347'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/347">Check if comment 2410 is in the document</a></td>
<td>Véronique Malaisé</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if comment 2419 is in the document" for en-masse editing'
name='actions[348]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/348">ACTION-348</a><a href='/2008/WebVideo/Annotations/track/actions/348/edit' title='Edit ACTION-348'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/348">Check if comment 2419 is in the document</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check if comment 2419 is in the document" for en-masse editing'
name='actions[349]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/349">ACTION-349</a><a href='/2008/WebVideo/Annotations/track/actions/349/edit' title='Edit ACTION-349'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/349">Check if comment 2419 is in the document</a></td>
<td>Pierre-Antoine Champin</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Contact browser vendors to get their feedback" for en-masse editing'
name='actions[350]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/350">ACTION-350</a><a href='/2008/WebVideo/Annotations/track/actions/350/edit' title='Edit ACTION-350'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/350">Contact browser vendors to get their feedback</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change "issuer of classification" to "classification scheme" in Onto and API documents" for en-masse editing'
name='actions[351]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/351">ACTION-351</a><a href='/2008/WebVideo/Annotations/track/actions/351/edit' title='Edit ACTION-351'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/351">Change "issuer of classification" to "classification scheme" in Onto and API documents</a></td>
<td>WonSuk Lee</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Re-organize the API document so that the return type interfaces appear in a later section" for en-masse editing'
name='actions[352]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/352">ACTION-352</a><a href='/2008/WebVideo/Annotations/track/actions/352/edit' title='Edit ACTION-352'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/352">Re-organize the API document so that the return type interfaces appear in a later section</a></td>
<td>Chris Poppe</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Write an example of how the API is to be used, to appear in the API doc *before* the list of return type interfaces" for en-masse editing'
name='actions[353]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/353">ACTION-353</a><a href='/2008/WebVideo/Annotations/track/actions/353/edit' title='Edit ACTION-353'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/353">Write an example of how the API is to be used, to appear in the API doc *before* the list of return type interfaces</a></td>
<td>Chris Poppe</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "EVAIN to write a small paragraph in the Onto doc pointing to the RDF ontology" for en-masse editing'
name='actions[354]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/354">ACTION-354</a><a href='/2008/WebVideo/Annotations/track/actions/354/edit' title='Edit ACTION-354'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/354">EVAIN to write a small paragraph in the Onto doc pointing to the RDF ontology</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2010-11-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Provide example RDF files for the mapping target" for en-masse editing'
name='actions[355]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/355">ACTION-355</a><a href='/2008/WebVideo/Annotations/track/actions/355/edit' title='Edit ACTION-355'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/355">Provide example RDF files for the mapping target</a></td>
<td>Tobias Bürger</td>
<td>2010-11-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make more precise description of rating in ontology" for en-masse editing'
name='actions[356]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/356">ACTION-356</a><a href='/2008/WebVideo/Annotations/track/actions/356/edit' title='Edit ACTION-356'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/356">Make more precise description of rating in ontology</a></td>
<td>WonSuk Lee</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Restructure the list of "interfaces", as discussed on Thursday 4/11" for en-masse editing'
name='actions[357]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/357">ACTION-357</a><a href='/2008/WebVideo/Annotations/track/actions/357/edit' title='Edit ACTION-357'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/357">Restructure the list of "interfaces", as discussed on Thursday 4/11</a></td>
<td>Chris Poppe</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action " Add descriptive information to some sections for example 3.1.1, and what is an "interface"" for en-masse editing'
name='actions[358]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/358">ACTION-358</a><a href='/2008/WebVideo/Annotations/track/actions/358/edit' title='Edit ACTION-358'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/358"> Add descriptive information to some sections for example 3.1.1, and what is an "interface"</a></td>
<td>Chris Poppe</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action " Add type and value in all return types" for en-masse editing'
name='actions[359]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/359">ACTION-359</a><a href='/2008/WebVideo/Annotations/track/actions/359/edit' title='Edit ACTION-359'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/359"> Add type and value in all return types</a></td>
<td>Chris Poppe</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Provide an example of an automatic test routine (before x-mas break)" for en-masse editing'
name='actions[360]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/360">ACTION-360</a><a href='/2008/WebVideo/Annotations/track/actions/360/edit' title='Edit ACTION-360'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/360">Provide an example of an automatic test routine (before x-mas break)</a></td>
<td>Florian Stegmaier</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ask web browser vendors for feed-back on API spec" for en-masse editing'
name='actions[361]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/361">ACTION-361</a><a href='/2008/WebVideo/Annotations/track/actions/361/edit' title='Edit ACTION-361'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/361">Ask web browser vendors for feed-back on API spec</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Ask browser vendors for their opinion on the mawg documents." for en-masse editing'
name='actions[362]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/362">ACTION-362</a><a href='/2008/WebVideo/Annotations/track/actions/362/edit' title='Edit ACTION-362'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/362">Ask browser vendors for their opinion on the mawg documents.</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change the type from short to double value, min and max" for en-masse editing'
name='actions[363]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/363">ACTION-363</a><a href='/2008/WebVideo/Annotations/track/actions/363/edit' title='Edit ACTION-363'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/363">Change the type from short to double value, min and max</a></td>
<td>Chris Poppe</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Changed the description in 3.14.2 target audience interface; the name should be "identifier", and rating scheme should be used" for en-masse editing'
name='actions[364]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/364">ACTION-364</a><a href='/2008/WebVideo/Annotations/track/actions/364/edit' title='Edit ACTION-364'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/364">Changed the description in 3.14.2 target audience interface; the name should be "identifier", and rating scheme should be used</a></td>
<td>Chris Poppe</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Respond to the email in the archive 2419, from Paul Cotton" for en-masse editing'
name='actions[365]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/365">ACTION-365</a><a href='/2008/WebVideo/Annotations/track/actions/365/edit' title='Edit ACTION-365'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/365">Respond to the email in the archive 2419, from Paul Cotton</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "(with help of API editors) Add section in the specification: Sync Interface (for web service implmenters) and Async Interface (for web developers" for en-masse editing'
name='actions[366]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/366">ACTION-366</a><a href='/2008/WebVideo/Annotations/track/actions/366/edit' title='Edit ACTION-366'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/366">(with help of API editors) Add section in the specification: Sync Interface (for web service implmenters) and Async Interface (for web developers</a></td>
<td>Chris Poppe</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Verify what's the most exact word as (CreateDate or CreationDate) to a native" for en-masse editing'
name='actions[367]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/367">ACTION-367</a><a href='/2008/WebVideo/Annotations/track/actions/367/edit' title='Edit ACTION-367'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/367">Verify what's the most exact word as (CreateDate or CreationDate) to a native</a></td>
<td>Soohong Daniel Park</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Improve description text for ma:compression and ma:format" for en-masse editing'
name='actions[368]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/368">ACTION-368</a><a href='/2008/WebVideo/Annotations/track/actions/368/edit' title='Edit ACTION-368'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/368">Improve description text for ma:compression and ma:format</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "In 2nd LC, send spec to Ilkka. One UC: creation-date, creator technical properties, location" for en-masse editing'
name='actions[369]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/369">ACTION-369</a><a href='/2008/WebVideo/Annotations/track/actions/369/edit' title='Edit ACTION-369'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/369">In 2nd LC, send spec to Ilkka. One UC: creation-date, creator technical properties, location</a></td>
<td>Joakim Söderberg</td>
<td>2010-11-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send an e-mail about proposals from the RDF task-force" for en-masse editing'
name='actions[370]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/370">ACTION-370</a><a href='/2008/WebVideo/Annotations/track/actions/370/edit' title='Edit ACTION-370'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/370">Send an e-mail about proposals from the RDF task-force</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2010-11-23</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ping the editors about LC 2418" for en-masse editing'
name='actions[371]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/371">ACTION-371</a><a href='/2008/WebVideo/Annotations/track/actions/371/edit' title='Edit ACTION-371'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/371">Ping the editors about LC 2418</a></td>
<td>Thierry Michel</td>
<td>2010-11-23</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Upload veronique's version to CVS" for en-masse editing'
name='actions[372]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/372">ACTION-372</a><a href='/2008/WebVideo/Annotations/track/actions/372/edit' title='Edit ACTION-372'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/372">Upload veronique's version to CVS</a></td>
<td>WonSuk Lee</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review Chris' changes to API document" for en-masse editing'
name='actions[373]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/373">ACTION-373</a><a href='/2008/WebVideo/Annotations/track/actions/373/edit' title='Edit ACTION-373'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/373">Review Chris' changes to API document</a></td>
<td>Florian Stegmaier</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change createdate to creationdate in the api doc" for en-masse editing'
name='actions[374]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/374">ACTION-374</a><a href='/2008/WebVideo/Annotations/track/actions/374/edit' title='Edit ACTION-374'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/374">Change createdate to creationdate in the api doc</a></td>
<td>Chris Poppe</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change createdate to creationdate in the ontology doc" for en-masse editing'
name='actions[375]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/375">ACTION-375</a><a href='/2008/WebVideo/Annotations/track/actions/375/edit' title='Edit ACTION-375'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/375">Change createdate to creationdate in the ontology doc</a></td>
<td>Véronique Malaisé</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review LC 2393" for en-masse editing'
name='actions[376]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/376">ACTION-376</a><a href='/2008/WebVideo/Annotations/track/actions/376/edit' title='Edit ACTION-376'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/376">Review LC 2393</a></td>
<td>Joakim Söderberg</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review LC2393" for en-masse editing'
name='actions[377]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/377">ACTION-377</a><a href='/2008/WebVideo/Annotations/track/actions/377/edit' title='Edit ACTION-377'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/377">Review LC2393</a></td>
<td>Chris Poppe</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review LC 2395" for en-masse editing'
name='actions[378]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/378">ACTION-378</a><a href='/2008/WebVideo/Annotations/track/actions/378/edit' title='Edit ACTION-378'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/378">Review LC 2395</a></td>
<td>Werner Bailer</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review LC 2406" for en-masse editing'
name='actions[379]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/379">ACTION-379</a><a href='/2008/WebVideo/Annotations/track/actions/379/edit' title='Edit ACTION-379'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/379">Review LC 2406</a></td>
<td>Tobias Bürger</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Review LC 2406" for en-masse editing'
name='actions[380]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/380">ACTION-380</a><a href='/2008/WebVideo/Annotations/track/actions/380/edit' title='Edit ACTION-380'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/380">Review LC 2406</a></td>
<td>Felix Sasaki</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Review LC 2395" for en-masse editing'
name='actions[381]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/381">ACTION-381</a><a href='/2008/WebVideo/Annotations/track/actions/381/edit' title='Edit ACTION-381'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/381">Review LC 2395</a></td>
<td>Véronique Malaisé</td>
<td>2010-12-07</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add missing text in the API document for LC 2395 (about "no exception")" for en-masse editing'
name='actions[382]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/382">ACTION-382</a><a href='/2008/WebVideo/Annotations/track/actions/382/edit' title='Edit ACTION-382'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/382">Add missing text in the API document for LC 2395 (about "no exception")</a></td>
<td>Chris Poppe</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Write an addition to the definition of ma:language to mention sign language" for en-masse editing'
name='actions[383]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/383">ACTION-383</a><a href='/2008/WebVideo/Annotations/track/actions/383/edit' title='Edit ACTION-383'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/383">Write an addition to the definition of ma:language to mention sign language</a></td>
<td>Felix Sasaki</td>
<td>2011-01-21</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change creationDate to date" for en-masse editing'
name='actions[384]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/384">ACTION-384</a><a href='/2008/WebVideo/Annotations/track/actions/384/edit' title='Edit ACTION-384'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/384">Change creationDate to date</a></td>
<td>WonSuk Lee</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change float to double in the API document" for en-masse editing'
name='actions[385]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/385">ACTION-385</a><a href='/2008/WebVideo/Annotations/track/actions/385/edit' title='Edit ACTION-385'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/385">Change float to double in the API document</a></td>
<td>Chris Poppe</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change float to double in the RDF ontology" for en-masse editing'
name='actions[386]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/386">ACTION-386</a><a href='/2008/WebVideo/Annotations/track/actions/386/edit' title='Edit ACTION-386'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/386">Change float to double in the RDF ontology</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add URIs as allowed values for ma:language and ma:compression" for en-masse editing'
name='actions[387]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/387">ACTION-387</a><a href='/2008/WebVideo/Annotations/track/actions/387/edit' title='Edit ACTION-387'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/387">Add URIs as allowed values for ma:language and ma:compression</a></td>
<td>Thierry Michel</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Remove 'ma:' from the mapping table" for en-masse editing'
name='actions[388]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/388">ACTION-388</a><a href='/2008/WebVideo/Annotations/track/actions/388/edit' title='Edit ACTION-388'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/388">Remove 'ma:' from the mapping table</a></td>
<td>Thierry Michel</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Remove 'ma:' from the mapping table" for en-masse editing'
name='actions[389]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/389">ACTION-389</a><a href='/2008/WebVideo/Annotations/track/actions/389/edit' title='Edit ACTION-389'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/389">Remove 'ma:' from the mapping table</a></td>
<td>WonSuk Lee</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Remove 'ma:' from the ontology document" for en-masse editing'
name='actions[390]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/390">ACTION-390</a><a href='/2008/WebVideo/Annotations/track/actions/390/edit' title='Edit ACTION-390'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/390">Remove 'ma:' from the ontology document</a></td>
<td>WonSuk Lee</td>
<td>2010-12-28</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add subtitles example - lc comment 2403" for en-masse editing'
name='actions[391]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/391">ACTION-391</a><a href='/2008/WebVideo/Annotations/track/actions/391/edit' title='Edit ACTION-391'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/391">Add subtitles example - lc comment 2403</a></td>
<td>Véronique Malaisé</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send thierry the text to be included - lc 2404" for en-masse editing'
name='actions[392]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/392">ACTION-392</a><a href='/2008/WebVideo/Annotations/track/actions/392/edit' title='Edit ACTION-392'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/392">Send thierry the text to be included - lc 2404</a></td>
<td>Pierre-Antoine Champin</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Ask PLING for example - lc 2417" for en-masse editing'
name='actions[393]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/393">ACTION-393</a><a href='/2008/WebVideo/Annotations/track/actions/393/edit' title='Edit ACTION-393'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/393">Ask PLING for example - lc 2417</a></td>
<td>Thierry Michel</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check implementation of LC2418 - action 320" for en-masse editing'
name='actions[394]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/394">ACTION-394</a><a href='/2008/WebVideo/Annotations/track/actions/394/edit' title='Edit ACTION-394'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/394">Check implementation of LC2418 - action 320</a></td>
<td>Thierry Michel</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Make proposal for updated ontology by mail together with pierre-antoine, mari carmen and tobias" for en-masse editing'
name='actions[395]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/395">ACTION-395</a><a href='/2008/WebVideo/Annotations/track/actions/395/edit' title='Edit ACTION-395'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/395">Make proposal for updated ontology by mail together with pierre-antoine, mari carmen and tobias</a></td>
<td>Jean-Pierre EVAIN</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Discuss with joakim and send mail to doug (LC 2406)" for en-masse editing'
name='actions[396]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/396">ACTION-396</a><a href='/2008/WebVideo/Annotations/track/actions/396/edit' title='Edit ACTION-396'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/396">Discuss with joakim and send mail to doug (LC 2406)</a></td>
<td>Thierry Michel</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Implement issue from lc 2394 regarding HTML5 - HTMLMediaElement implements MediaResource" for en-masse editing'
name='actions[397]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/397">ACTION-397</a><a href='/2008/WebVideo/Annotations/track/actions/397/edit' title='Edit ACTION-397'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/397">Implement issue from lc 2394 regarding HTML5 - HTMLMediaElement implements MediaResource</a></td>
<td>Chris Poppe</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send reminder email to group to review ontology document" for en-masse editing'
name='actions[398]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/398">ACTION-398</a><a href='/2008/WebVideo/Annotations/track/actions/398/edit' title='Edit ACTION-398'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/398">Send reminder email to group to review ontology document</a></td>
<td>Thierry Michel</td>
<td>2011-01-18</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Change from string to string and/or URI in the ontology document" for en-masse editing'
name='actions[399]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/399">ACTION-399</a><a href='/2008/WebVideo/Annotations/track/actions/399/edit' title='Edit ACTION-399'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/399">Change from string to string and/or URI in the ontology document</a></td>
<td>WonSuk Lee</td>
<td>2011-01-25</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Publish the latest version of the RDF ontology in the repositories" for en-masse editing'
name='actions[400]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/400">ACTION-400</a><a href='/2008/WebVideo/Annotations/track/actions/400/edit' title='Edit ACTION-400'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/400">Publish the latest version of the RDF ontology in the repositories</a></td>
<td>Thierry Michel</td>
<td>2011-01-25</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Implement Felix's comment in the spec" for en-masse editing'
name='actions[401]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/401">ACTION-401</a><a href='/2008/WebVideo/Annotations/track/actions/401/edit' title='Edit ACTION-401'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/401">Implement Felix's comment in the spec</a></td>
<td>Thierry Michel</td>
<td>2011-02-01</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change creationdate to date in the api document" for en-masse editing'
name='actions[402]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/402">ACTION-402</a><a href='/2008/WebVideo/Annotations/track/actions/402/edit' title='Edit ACTION-402'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/402">Change creationdate to date in the api document</a></td>
<td>Florian Stegmaier</td>
<td>2011-02-01</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add in API spec, for compression; implementers are encouraged to return a URI" for en-masse editing'
name='actions[403]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/403">ACTION-403</a><a href='/2008/WebVideo/Annotations/track/actions/403/edit' title='Edit ACTION-403'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/403">Add in API spec, for compression; implementers are encouraged to return a URI</a></td>
<td>WonSuk Lee</td>
<td>2011-02-15</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Propose a draft for a "global URI recommedation" and send it to Florian" for en-masse editing'
name='actions[404]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/404">ACTION-404</a><a href='/2008/WebVideo/Annotations/track/actions/404/edit' title='Edit ACTION-404'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/404">Propose a draft for a "global URI recommedation" and send it to Florian</a></td>
<td>Werner Bailer</td>
<td>2011-03-29</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send the WebIDL document link (going for recommendation) to Florian when available" for en-masse editing'
name='actions[405]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/405">ACTION-405</a><a href='/2008/WebVideo/Annotations/track/actions/405/edit' title='Edit ACTION-405'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/405">Send the WebIDL document link (going for recommendation) to Florian when available</a></td>
<td>Thierry Michel</td>
<td>2011-03-29</td>
<td></td>
</tr>
<tr class="odd"><td class='action'><input title='Check to select action "Ping Apple if they could make an async implementation (e.g., as Safari extension)" for en-masse editing'
name='actions[406]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/406">ACTION-406</a><a href='/2008/WebVideo/Annotations/track/actions/406/edit' title='Edit ACTION-406'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/406">Ping Apple if they could make an async implementation (e.g., as Safari extension)</a></td>
<td>Soohong Daniel Park</td>
<td><span class="overdue">2011-03-29</span></td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send a proposal for changes in the type definitions of the core properties" for en-masse editing'
name='actions[407]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/407">ACTION-407</a><a href='/2008/WebVideo/Annotations/track/actions/407/edit' title='Edit ACTION-407'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/407">Send a proposal for changes in the type definitions of the core properties</a></td>
<td>Werner Bailer</td>
<td>2011-04-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Write a better description for property 'rating'" for en-masse editing'
name='actions[408]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/408">ACTION-408</a><a href='/2008/WebVideo/Annotations/track/actions/408/edit' title='Edit ACTION-408'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/408">Write a better description for property 'rating'</a></td>
<td>Joakim Söderberg</td>
<td>2011-04-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Or another editor of the ontology to implement the changes proposed for ACTION-407" for en-masse editing'
name='actions[409]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/409">ACTION-409</a><a href='/2008/WebVideo/Annotations/track/actions/409/edit' title='Edit ACTION-409'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/409">Or another editor of the ontology to implement the changes proposed for ACTION-407</a></td>
<td>Thierry Michel</td>
<td>2011-04-26</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Make a propsoal for a response to the html5 folks " for en-masse editing'
name='actions[410]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/410">ACTION-410</a><a href='/2008/WebVideo/Annotations/track/actions/410/edit' title='Edit ACTION-410'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/410">Make a propsoal for a response to the html5 folks </a></td>
<td>Werner Bailer</td>
<td>2011-04-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Gather the metadata files from Apple" for en-masse editing'
name='actions[411]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/411">ACTION-411</a><a href='/2008/WebVideo/Annotations/track/actions/411/edit' title='Edit ACTION-411'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/411">Gather the metadata files from Apple</a></td>
<td>Mari Carmen Suarez-Figueroa</td>
<td>2011-04-26</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Write a proposal explaining how/when to use incomplete dates" for en-masse editing'
name='actions[412]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/412">ACTION-412</a><a href='/2008/WebVideo/Annotations/track/actions/412/edit' title='Edit ACTION-412'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/412">Write a proposal explaining how/when to use incomplete dates</a></td>
<td>Pierre-Antoine Champin</td>
<td>2011-04-26</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Write an email to Silvia, cc the HTML WG to ask more details about their concerns" for en-masse editing'
name='actions[413]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/413">ACTION-413</a><a href='/2008/WebVideo/Annotations/track/actions/413/edit' title='Edit ACTION-413'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/413">Write an email to Silvia, cc the HTML WG to ask more details about their concerns</a></td>
<td>Thierry Michel</td>
<td>2011-05-10</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send a reminder about the missing metadata format files" for en-masse editing'
name='actions[414]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/414">ACTION-414</a><a href='/2008/WebVideo/Annotations/track/actions/414/edit' title='Edit ACTION-414'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/414">Send a reminder about the missing metadata format files</a></td>
<td>Thierry Michel</td>
<td>2011-05-10</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft exit criteria for CR" for en-masse editing'
name='actions[415]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/415">ACTION-415</a><a href='/2008/WebVideo/Annotations/track/actions/415/edit' title='Edit ACTION-415'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/415">Draft exit criteria for CR</a></td>
<td>Thierry Michel</td>
<td>2011-05-10</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft a response to the HTML WG to Henri Sivonen's email" for en-masse editing'
name='actions[416]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/416">ACTION-416</a><a href='/2008/WebVideo/Annotations/track/actions/416/edit' title='Edit ACTION-416'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/416">Draft a response to the HTML WG to Henri Sivonen's email</a></td>
<td>Werner Bailer</td>
<td>2011-05-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Add updates to the exit criteria" for en-masse editing'
name='actions[417]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/417">ACTION-417</a><a href='/2008/WebVideo/Annotations/track/actions/417/edit' title='Edit ACTION-417'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/417">Add updates to the exit criteria</a></td>
<td>Thierry Michel</td>
<td>2011-05-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Change TTL section in the Ontology as informative section 8" for en-masse editing'
name='actions[418]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/418">ACTION-418</a><a href='/2008/WebVideo/Annotations/track/actions/418/edit' title='Edit ACTION-418'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/418">Change TTL section in the Ontology as informative section 8</a></td>
<td>Thierry Michel</td>
<td>2011-05-17</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Sent the interface changes" for en-masse editing'
name='actions[419]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/419">ACTION-419</a><a href='/2008/WebVideo/Annotations/track/actions/419/edit' title='Edit ACTION-419'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/419">Sent the interface changes</a></td>
<td>Florian Stegmaier</td>
<td>2011-05-17</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Propose the next step for the response to the HTML WG" for en-masse editing'
name='actions[420]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/420">ACTION-420</a><a href='/2008/WebVideo/Annotations/track/actions/420/edit' title='Edit ACTION-420'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/420">Propose the next step for the response to the HTML WG</a></td>
<td>Joakim Söderberg</td>
<td>2011-05-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Remove METS and MediaRDF from the ontology document" for en-masse editing'
name='actions[421]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/421">ACTION-421</a><a href='/2008/WebVideo/Annotations/track/actions/421/edit' title='Edit ACTION-421'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/421">Remove METS and MediaRDF from the ontology document</a></td>
<td>Florian Stegmaier</td>
<td>2011-05-31</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Deliver XMP example files, preferably by the end of the week" for en-masse editing'
name='actions[422]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/422">ACTION-422</a><a href='/2008/WebVideo/Annotations/track/actions/422/edit' title='Edit ACTION-422'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/422">Deliver XMP example files, preferably by the end of the week</a></td>
<td>Felix Sasaki</td>
<td>2011-05-31</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Send mail to group exlaining this issue and draft implementation note" for en-masse editing'
name='actions[423]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/423">ACTION-423</a><a href='/2008/WebVideo/Annotations/track/actions/423/edit' title='Edit ACTION-423'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/423">Send mail to group exlaining this issue and draft implementation note</a></td>
<td>Thierry Michel</td>
<td>2011-06-14</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Explore options for adding mappings to schema.org" for en-masse editing'
name='actions[424]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/424">ACTION-424</a><a href='/2008/WebVideo/Annotations/track/actions/424/edit' title='Edit ACTION-424'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/424">Explore options for adding mappings to schema.org</a></td>
<td>Thierry Michel</td>
<td>2011-06-14</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Check term method/operation in the web idl spec and update api doc accordingly" for en-masse editing'
name='actions[425]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/425">ACTION-425</a><a href='/2008/WebVideo/Annotations/track/actions/425/edit' title='Edit ACTION-425'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/425">Check term method/operation in the web idl spec and update api doc accordingly</a></td>
<td>Florian Stegmaier</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Add explaination to introduce mediaannotation object in sections 4.2 and 4.3" for en-masse editing'
name='actions[426]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/426">ACTION-426</a><a href='/2008/WebVideo/Annotations/track/actions/426/edit' title='Edit ACTION-426'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/426">Add explaination to introduce mediaannotation object in sections 4.2 and 4.3</a></td>
<td>Florian Stegmaier</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Propose updates to api doc abstract" for en-masse editing'
name='actions[427]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/427">ACTION-427</a><a href='/2008/WebVideo/Annotations/track/actions/427/edit' title='Edit ACTION-427'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/427">Propose updates to api doc abstract</a></td>
<td>Werner Bailer</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Delete noerrostatus block from 4.5 examples" for en-masse editing'
name='actions[428]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/428">ACTION-428</a><a href='/2008/WebVideo/Annotations/track/actions/428/edit' title='Edit ACTION-428'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/428">Delete noerrostatus block from 4.5 examples</a></td>
<td>Florian Stegmaier</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Drop status codes 262 thru 264 and references to them" for en-masse editing'
name='actions[429]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/429">ACTION-429</a><a href='/2008/WebVideo/Annotations/track/actions/429/edit' title='Edit ACTION-429'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/429">Drop status codes 262 thru 264 and references to them</a></td>
<td>Florian Stegmaier</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Draft text on criteria for test suite together with wonsuk and florian" for en-masse editing'
name='actions[430]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/430">ACTION-430</a><a href='/2008/WebVideo/Annotations/track/actions/430/edit' title='Edit ACTION-430'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/430">Draft text on criteria for test suite together with wonsuk and florian</a></td>
<td>Werner Bailer</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "get contact information for talking to schema.org" for en-masse editing'
name='actions[431]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/431">ACTION-431</a><a href='/2008/WebVideo/Annotations/track/actions/431/edit' title='Edit ACTION-431'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/431">get contact information for talking to schema.org</a></td>
<td>Soohong Daniel Park</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Prepare tables with extra column for validating properties mapped in files" for en-masse editing'
name='actions[432]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/432">ACTION-432</a><a href='/2008/WebVideo/Annotations/track/actions/432/edit' title='Edit ACTION-432'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/432">Prepare tables with extra column for validating properties mapped in files</a></td>
<td>Thierry Michel</td>
<td>2011-07-06</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft short how-to for validating example files" for en-masse editing'
name='actions[433]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/433">ACTION-433</a><a href='/2008/WebVideo/Annotations/track/actions/433/edit' title='Edit ACTION-433'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/433">Draft short how-to for validating example files</a></td>
<td>Martin Höffernig</td>
<td>2011-07-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Send guidelines and link to good example file to thierry" for en-masse editing'
name='actions[434]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/434">ACTION-434</a><a href='/2008/WebVideo/Annotations/track/actions/434/edit' title='Edit ACTION-434'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/434">Send guidelines and link to good example file to thierry</a></td>
<td>Werner Bailer</td>
<td>2011-07-12</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft mail to example file editors" for en-masse editing'
name='actions[435]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/435">ACTION-435</a><a href='/2008/WebVideo/Annotations/track/actions/435/edit' title='Edit ACTION-435'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/435">Draft mail to example file editors</a></td>
<td>Thierry Michel</td>
<td>2011-07-12</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "draft response to LC-2556" for en-masse editing'
name='actions[436]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/436">ACTION-436</a><a href='/2008/WebVideo/Annotations/track/actions/436/edit' title='Edit ACTION-436'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/436">draft response to LC-2556</a></td>
<td>Florian Stegmaier</td>
<td>2011-09-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "include text on what constitutes a feature / cr exit criteria into the api doc" for en-masse editing'
name='actions[437]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/437">ACTION-437</a><a href='/2008/WebVideo/Annotations/track/actions/437/edit' title='Edit ACTION-437'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/437">include text on what constitutes a feature / cr exit criteria into the api doc</a></td>
<td>Thierry Michel</td>
<td>2011-09-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "check / update list of group members in api doc acknowledgements section" for en-masse editing'
name='actions[438]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/438">ACTION-438</a><a href='/2008/WebVideo/Annotations/track/actions/438/edit' title='Edit ACTION-438'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/438">check / update list of group members in api doc acknowledgements section</a></td>
<td>Thierry Michel</td>
<td>2011-09-13</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "send consolidated draft of what constitutes a feature" for en-masse editing'
name='actions[439]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/439">ACTION-439</a><a href='/2008/WebVideo/Annotations/track/actions/439/edit' title='Edit ACTION-439'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/439">send consolidated draft of what constitutes a feature</a></td>
<td>Werner Bailer</td>
<td>2011-09-13</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check if this converter is useful for us" for en-masse editing'
name='actions[440]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/440">ACTION-440</a><a href='/2008/WebVideo/Annotations/track/actions/440/edit' title='Edit ACTION-440'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/440">Check if this converter is useful for us</a></td>
<td>Florian Stegmaier</td>
<td>2011-09-13</td>
<td></td>
</tr>
<tr class="even"><td class='action'><input title='Check to select action "Propose use case related to webkit" for en-masse editing'
name='actions[441]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/441">ACTION-441</a><a href='/2008/WebVideo/Annotations/track/actions/441/edit' title='Edit ACTION-441'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/441">Propose use case related to webkit</a></td>
<td>WonSuk Lee</td>
<td><span class="overdue">2011-09-14</span></td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Check and update uc and req document for consistency with specs" for en-masse editing'
name='actions[442]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/442">ACTION-442</a><a href='/2008/WebVideo/Annotations/track/actions/442/edit' title='Edit ACTION-442'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/442">Check and update uc and req document for consistency with specs</a></td>
<td>Florian Stegmaier</td>
<td>2011-09-14</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft api test suite document based on the outcomes of today's discussions" for en-masse editing'
name='actions[443]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/443">ACTION-443</a><a href='/2008/WebVideo/Annotations/track/actions/443/edit' title='Edit ACTION-443'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/443">Draft api test suite document based on the outcomes of today's discussions</a></td>
<td>Florian Stegmaier</td>
<td>2011-09-14</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Set up api test suite page" for en-masse editing'
name='actions[444]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/444">ACTION-444</a><a href='/2008/WebVideo/Annotations/track/actions/444/edit' title='Edit ACTION-444'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/444">Set up api test suite page</a></td>
<td>Thierry Michel</td>
<td>2011-09-14</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Implement changes at http://lists.w3.org/Archives/Public/public-media-annotation/2011Sep/0052.html for XMP and set creation date in XMP file to the same values" for en-masse editing'
name='actions[445]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/445">ACTION-445</a><a href='/2008/WebVideo/Annotations/track/actions/445/edit' title='Edit ACTION-445'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/445">Implement changes at http://lists.w3.org/Archives/Public/public-media-annotation/2011Sep/0052.html for XMP and set creation date in XMP file to the same values</a></td>
<td>Felix Sasaki</td>
<td>2011-09-20</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Respond to response of commentor related to HTTP 501" for en-masse editing'
name='actions[446]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/446">ACTION-446</a><a href='/2008/WebVideo/Annotations/track/actions/446/edit' title='Edit ACTION-446'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/446">Respond to response of commentor related to HTTP 501</a></td>
<td>Florian Stegmaier</td>
<td>2011-09-20</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Draft a paragraph about the HTTP issue to be integrated into the API doc" for en-masse editing'
name='actions[447]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/447">ACTION-447</a><a href='/2008/WebVideo/Annotations/track/actions/447/edit' title='Edit ACTION-447'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/447">Draft a paragraph about the HTTP issue to be integrated into the API doc</a></td>
<td>Werner Bailer</td>
<td>2011-10-11</td>
<td></td>
</tr>
<tr class="closed odd"><td class='action'><input title='Check to select action "Integrate the paragraph in the final spec and send an email to phillipe" for en-masse editing'
name='actions[448]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/448">ACTION-448</a><a href='/2008/WebVideo/Annotations/track/actions/448/edit' title='Edit ACTION-448'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/448">Integrate the paragraph in the final spec and send an email to phillipe</a></td>
<td>Thierry Michel</td>
<td>2011-10-11</td>
<td></td>
</tr>
<tr class="closed even"><td class='action'><input title='Check to select action "Organize a meeting with Ivan to discuss further steps" for en-masse editing'
name='actions[449]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/449">ACTION-449</a><a href='/2008/WebVideo/Annotations/track/actions/449/edit' title='Edit ACTION-449'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='closed'>closed</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/449">Organize a meeting with Ivan to discuss further steps</a></td>
<td>Thierry Michel</td>
<td>2011-10-11</td>
<td></td>
</tr>
<tr class="odd"><td class='action'><input title='Check to select action "Update the spec with new statement." for en-masse editing'
name='actions[450]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/450">ACTION-450</a><a href='/2008/WebVideo/Annotations/track/actions/450/edit' title='Edit ACTION-450'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/450">Update the spec with new statement.</a></td>
<td>Thierry Michel</td>
<td><span class="overdue">2011-10-25</span></td>
<td></td>
</tr>
<tr class="even"><td class='action'><input title='Check to select action "Have the UC & Req update discussed during TPAC" for en-masse editing'
name='actions[451]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/451">ACTION-451</a><a href='/2008/WebVideo/Annotations/track/actions/451/edit' title='Edit ACTION-451'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/451">Have the UC & Req update discussed during TPAC</a></td>
<td>Thierry Michel</td>
<td><span class="overdue">2011-10-25</span></td>
<td></td>
</tr>
<tr class="odd"><td class='action'><input title='Check to select action "Ask Tobias to review the EXIF mapping regarding EXIF 2.3" for en-masse editing'
name='actions[452]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/452">ACTION-452</a><a href='/2008/WebVideo/Annotations/track/actions/452/edit' title='Edit ACTION-452'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/452">Ask Tobias to review the EXIF mapping regarding EXIF 2.3</a></td>
<td>Thierry Michel</td>
<td>2012-01-17</td>
<td></td>
</tr>
<tr class="even"><td class='action'><input title='Check to select action "Create the table testsuite with the ontology attributes" for en-masse editing'
name='actions[453]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/453">ACTION-453</a><a href='/2008/WebVideo/Annotations/track/actions/453/edit' title='Edit ACTION-453'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/453">Create the table testsuite with the ontology attributes</a></td>
<td>Thierry Michel</td>
<td>2012-01-17</td>
<td></td>
</tr>
<tr class="odd"><td class='action'><input title='Check to select action "Extract atomic JASOM responses" for en-masse editing'
name='actions[454]' type='checkbox' /><a href="/2008/WebVideo/Annotations/track/actions/454">ACTION-454</a><a href='/2008/WebVideo/Annotations/track/actions/454/edit' title='Edit ACTION-454'><img width='8' height='12' src='/2002/09/wbs/icons/stock_edit2' alt=' (edit)' /></a></td>
<td class='open'>open</td>
<td><a href="/2008/WebVideo/Annotations/track/actions/454">Extract atomic JASOM responses</a></td>
<td>Thierry Michel</td>
<td>2012-01-17</td>
<td></td>
</tr>
</tbody>
</table>
</form><script type='text/javascript'>addSelectAllButtons('actions')</script>
<p><a href='/2008/WebVideo/Annotations/track/actions/new'>Add a new action item</a>.
See <a href='/2008/WebVideo/Annotations/track/actions/'>all the action items</a></p></div>
<div class="diagnostics">
</div>
<hr />
<address>
Soohong Daniel Park <<a href='mailto:soohong.park@samsung.com'>soohong.park@samsung.com</a>>, Joakim Söderberg <<a href='mailto:Joakim.Soderberg@ericsson.com'>Joakim.Soderberg@ericsson.com</a>>, Chairs, Thierry Michel <<a href='mailto:tmichel@w3.org'>tmichel@w3.org</a>>, Staff Contact<br />
Tracker: <a href="/2005/06/tracker/">documentation</a>,
(<a href='/2008/WebVideo/Annotations/track/options'>configuration for this group</a>), originally developed by <a href='/People/Dean/'>Dean Jackson</a>,
is developed and maintained by the Systems Team <<a href='mailto:w3t-sys@w3.org'>w3t-sys@w3.org</a>>.<br />
$Id: actions.php,v 1.22 2011/06/15 13:30:07 vivien Exp $</address>
</body>
</html>