Articles
56 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
<!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" /><title>W3C in the Press</title><link rel="stylesheet" href="/2008/site/css/minimum" type="text/css" media="handheld, all" /><style type="text/css" media="print, screen and (min-width: 481px)" xml:space="preserve">
@import url("/2008/site/css/advanced");
</style><link href="/2008/site/css/minimum" rel="stylesheet" type="text/css" media="handheld, only screen and (max-device-width: 480px)" /><meta name="viewport" content="width=device-width" /><link rel="stylesheet" href="/2008/site/css/print" type="text/css" media="print" /><link rel="stylesheet" href="press.css" type="text/css" media="all" />
<style type="text/css">
h3.highlighttitle { color: black; background: white; font-size: 1em; font-weight: bold; margin-bottom: .5em;}
</style>
<link rel="shortcut icon" href="/2008/site/images/favicon.ico" type="image/x-icon" /></head><body id="www-w3-org" class="w3c_public"><div id="w3c_container">
<div id="w3c_mast">
<h1 class="logo">
<a tabindex="2" accesskey="1" href="/"><img src="/2008/site/images/logo-w3c-mobile-lg" width="90" height="53" alt="W3C" /></a>
<span class="alt-logo">W3C</span>
</h1>
<div id="w3c_nav">
<form action="/Help/search" method="get" enctype="application/x-www-form-urlencoded"><div class="w3c_sec_nav"><!-- --></div><ul class="main_nav"><li class="first-item">
<a href="/standards/">Standards</a>
</li><li>
<a href="/participate/">Participate</a>
</li><li>
<a href="/Consortium/membership">Membership</a>
</li><li class="last-item">
<a href="/Consortium/">About W3C</a>
</li><li class="search-item">
<div id="search-form">
<input tabindex="3" class="text" name="q" value="" title="Search" type="text" />
<button id="search-submit" name="search-submit" type="submit"><img class="submit" src="/2008/site/images/search-button" alt="Search" width="21" height="17" /></button>
</div>
</li></ul></form>
</div>
</div>
<div id="w3c_main">
<div id="w3c_logo_shadow" class="w3c_leftCol">
<img height="32" alt="" src="/2008/site/images/logo-shadow" />
</div>
<div class="w3c_leftCol"><h2 class="offscreen">Site Navigation</h2>
<h3 class="category"><span class="ribbon"><a href="/Consortium/presskit.html" title="Up to Press and Analysts">Press and Analysts <img src="/2008/site/images/header-link" alt="Header link" width="13" height="13" class="header-link" /></a></span></h3>
<ul class="theme">
<li><a class="current">W3C in the Press</a></li>
<li><a href="/Press/">W3C Press Releases</a></li>
</ul>
<br /></div>
<div class="w3c_mainCol">
<div id="w3c_crumbs">
<div id="w3c_crumbs_frame">
<ul class="bct"> <!-- .bct / Breadcrumbs -->
<li class="skip"><a tabindex="1" accesskey="2" title="Skip to content (e.g., when browsing via audio)" href="#w3c_content_body">Skip</a></li>
<li><a href="/">W3C</a> <span class="cr">»</span> </li>
<li><a href="/Consortium/">About W3C</a> <span class="cr">»</span> </li>
<li><a href="/Consortium/presskit.html">Press and Analysts</a> <span class="cr">»</span> </li>
<li class="current">W3C in the Press</li>
</ul>
</div>
</div>
<h1 class="title">W3C in the Press</h1>
<div id="w3c_content_body">
<div class="line">
<div class="unit size3on4">
<p class="intro tPadding">Below are recent articles about W3C in the international press.
Please send articles you would like us to consider to
w3t-pr@w3.org, with "[Article]" in the Subject line. We
reserve the right to choose which articles we
include.</p>
<div class="results">
<h2>January</h2>
<dl>
<dt>
<a href="http://www.sitepoint.com/">SitePoint</a>
<br />
<span class="press_date">14 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.sitepoint.com/image-manipulation-with-html5-canvas-a-sliding-puzzle-2/">Image Manipulation with HTML5 Canvas: A Sliding Puzzle</a>, Bruce Alderman<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.lemagit.fr/">LeMagIT</a>
<br />
<span class="press_date">13 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.lemagit.fr/article/developpement-html-5/10249/1/html-les-developpeurs-mondiaux-sont-deja-ranges-derriere-future-norme/">HTML5 : les développeurs mondiaux se sont déjà rangés derrière la future norme </a>, Cyrille Chausson<em class="keywords">HTML5, W3C, CSS, SVG</em>
</dd>
<dt>
<a href="http://www.zdnet.com/">ZDNet</a>
<br />
<span class="press_date">13 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.zdnet.com/blog/collaboration/consistent-standards-for-defining-social-business/2257?tag=mantle_skin;content">Consistent standards for defining 'social business' </a>, Oliver Marks<em class="keywords">W3C, HTML, CSS, W3C Social Business Jam</em>
</dd>
<dt>
<a href="http://www.silicon.fr/">silicon.fr</a>
<br />
<span class="press_date">13 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.silicon.fr/html5-seduit-les-developpeurs-cest-confirme-70688.html">HTML5 séduit les développeurs… c’est confirmé !</a>, Yves Grandmontagne<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.telecompaper.com/">Telecompaper</a>
<br />
<span class="press_date">13 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.telecompaper.com/news/w3c-elects-members-for-technical-architecture-group">W3C elects members for Technical Architecture Group </a>, <em class="keywords">W3C, Technical Architecture Group (TAG), Tim Berners-Lee</em>
</dd>
<dt>
<a href="http://www.readwriteweb.com/hack/">ReadWrite Hack</a>
<br />
<span class="press_date">12 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.readwriteweb.com/hack/2012/01/do-you-really-need-your-own-mo.php">Do You Really Need Your Own Mobile App or a Better Website?</a>, David Strom<em class="keywords">HTML5, CSS</em>
</dd>
<dt>
<a href="http://www.enterpriseirregulars.com/">Enterprise Irregulars</a>
<br />
<span class="press_date">12 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.enterpriseirregulars.com/44945/emerging-tech-trends-that-will-impact-social-business-in-2012/">Emerging Tech Trends That Will Impact Social Business in 2012</a>, Dion Hinchcliffe<em class="keywords">HTML5, HTML, W3C</em>
</dd>
<dt>
<a href="http://www.mediaaccess.org.au/">Media Access Australia</a>
<br />
<span class="press_date">12 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.mediaaccess.org.au/latest_news/online-media/w3c-wai-news-calls-for-feedback-on-wai-aria-multimedia-accessibility-and-updated-wcag-20-techniques">W3C WAI news: Calls for feedback on WAI-ARIA, multimedia accessibility and updated WCAG 2.0 Techniques</a>, <em class="keywords">W3C, WAI, WAI-ARIA, WCAG 2.0</em>
</dd>
<dt>
<a href="http://www.cmswire.com/">CMS Wire</a>
<br />
<span class="press_date">11 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.cmswire.com/cms/social-business/is-your-intranet-legal-014077.php">Is Your Intranet Legal?</a>, Martin White<em class="keywords">Accessibility, W3C, WAI, HTML5</em>
</dd>
<dt>
<a href="http://www.cmswire.com/">CMS Wire</a>
<br />
<span class="press_date">11 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.cmswire.com/cms/information-management/w3c-publishes-draft-of-media-accessibility-requirements-014088.php">W3C Publishes Draft of Media Accessibility Requirements </a>, Josette Rigsby<em class="keywords">W3C, accessibility, HTML5, WCAG 2.0</em>
</dd>
<dt>
<a href="http://www.sys-con.com/">SYS-CON MEDIA</a>
<br />
<span class="press_date">9 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.sys-con.com/node/2120922">How Quickly the Mighty Have Fallen</a>, Bruce Armstrong<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.clubic.com/">Clubic</a>
<br />
<span class="press_date">9 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.clubic.com/salon-informatique-tic/ces/actu-opera_software_devoile_l_opera_store_sur_tv_connectees-468590.html">Opera Software dévoile l'Opera Store sur TV connectées</a>, Guillaume Belfiore<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.guadalinfo.es/index">Guadalinfo</a>
<br />
<span class="press_date">9 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.guadalinfo.es/node/444806">Día W3C en España</a>, <em class="keywords">W3C, HTML5, Open Data, Dominique Hazaël-Massieux</em>
</dd>
<dt>
<a href="http://accesibilidadenlaweb.blogspot.com/">Accesibilidad en la Web</a>
<br />
<span class="press_date">8 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://accesibilidadenlaweb.blogspot.com/2012/01/dia-w3c-en-espana.html">Día W3C en España</a>, <em class="keywords">W3C, HTML5, Open Data, Dominique Hazaël-Massieux</em>
</dd>
<dt>
<a href="http://www.paperblog.fr/">Paperblog</a>
<br />
<span class="press_date">7 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.paperblog.fr/5204297/la-ruee-vers-l-or-des-donnees-publiques/">La ruée vers l’or des données publiques</a>, <em class="keywords">Tim Berners-Lee, Linked Date, Open Data Institute</em>
</dd>
<dt>
<a href="http://www.dzone.com/mz/html5">HTML5 Microzone</a>
<br />
<span class="press_date">6 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://css.dzone.com/articles/web-standard-speech">Web-Standard Speech Recognition: W3C Report and Unofficial Spec </a>, John Esposito<em class="keywords">W3C, HTML5, W3C HTML Speech Incubator Group, HTML, DOM, Multimodal Interaction, WebSockets</em>
</dd>
<dt>
<a href="http://www.stateofsearch.com/">State of Search</a>
<br />
<span class="press_date">6 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.stateofsearch.com/seo-2012-will-schema-be-a-factor/">SEO 2012 – Will Schema Be A Factor</a>, Bryant Dunivan<em class="keywords">RDFa, W3C</em>
</dd>
<dt>
<a href="http://microsoft-news.tmcnet.com/">Microsoft News</a>
<br />
<span class="press_date">6 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://microsoft-news.tmcnet.com/news/2012/01/06/6036187.htm">W3C Invited UC Mobile to Partake in Making HTML5</a>, <em class="keywords">W3C, HTML5, HTML, XHTML, CSS, XML</em>
</dd>
<dt>
<a href="http://www.nebusiness.co.uk/">nebusiness.co.uk</a>
<br />
<span class="press_date">5 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.nebusiness.co.uk/business-news/science-and-technology/2012/01/05/disability-products-firm-s-website-upgrade-51140-30061392/">Disability products firm's website upgrade</a>, John Hill<em class="keywords">Accessibility, W3C</em>
</dd>
<dt>
<a href="http://en.rian.ru/">RIA Novosti</a>
<br />
<span class="press_date">5 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://en.rian.ru/agency_news/20120105/170639637.html">RIA Novosti joins the World Wide Web Consortium</a>, <em class="keywords">W3C, Alan Bird, Tim Berners-Lee</em>
</dd>
<dt>
<a href="http://www.ria.ru/">RIA Novosti</a>
<br />
<span class="press_date">5 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.ria.ru/news_company/20120105/533513600.html">РИА Новости стало членом международного консорциума веб-технологий W3C (RIA Novosti has become a member of W3C, an international web-based consortium)</a>, <em class="keywords">W3C, Alan Bird, Tim Berners-Lee</em>
</dd>
<dt>
<a href="http://www.netmagazine.com/">.net magazine</a>
<br />
<span class="press_date">5 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.netmagazine.com/features/seven-things-still-missing-css">Seven things still missing from CSS</a>, Molly Holzschlag<em class="keywords">CSS, W3C, accessibility, CSS3, Internationalization, HTML, XPath</em>
</dd>
<dt>
<a href="http://www.sitepoint.com/">SitePoint</a>
<br />
<span class="press_date">4 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.sitepoint.com/2012-web-predictions/">10 Web Predictions for 2012</a>, Craig Buckler<em class="keywords">W3C, CSS3, HTML5, CSS</em>
</dd>
<dt>
<a href="http://www.lastampa.it/redazione/default.asp">La Stampa</a>
<br />
<span class="press_date">4 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.lastampa.it/_web/CMSTP/tmplrubriche/giornalisti/grubrica.asp?ID_blog=2&ID_articolo=1302">Tim Berners-Lee: "Tutti i nostri dati valgono oro"</a>, <em class="keywords">Open Data, Tim Berners-Lee, W3C</em>
</dd>
<dt>
<a href="http://pcquest.ciol.com/">PCQuest</a>
<br />
<span class="press_date">3 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://pcquest.ciol.com/content/topstories/2012/112010306.asp?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+pcq-news+(PCQUEST)">People Behind Technologies that Created Ground for Innovations</a>, Sandeep Koul<em class="keywords">Tim Berners-Lee, HTTP</em>
</dd>
<dt>
<a href="http://www.ecs.soton.ac.uk/">University of Southampton</a>
<br />
<span class="press_date">3 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://eprints.ecs.soton.ac.uk/23090/1/Times%20OpEd%20TBL-NRS%20Final.pdf">There’s gold to be mined from all our data [PDF]</a>, Tim Berners-Lee and Nigel Shadbolt<em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.tomshardware.com/">tom's hardware</a>
<br />
<span class="press_date">2 January</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.tomshardware.com/news/information-technology-luminaries-leadership-managers,14280.html">Opinion: The 10 Most Influential People in IT of 2011</a>, Wolfgang Gruener <em class="keywords">Jeff Jaffe, W3C, HTML5</em>
</dd>
</dl>
<h2>December</h2>
<dl>
<dt>
<a href="http://www.clubic.com/">Clubic</a>
<br />
<span class="press_date">30 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.clubic.com/navigateur-internet/internet-explorer/actualite-467390-microsoft-ie9-tete-navigateurs-windows-7.html">Microsoft : IE9 bientôt en tête des navigateurs sur Windows 7</a>, Guillaume Belfiore<em class="keywords">W3C</em>
</dd>
<dt>
<a href="http://www.eweek.com/">eWeek.com</a>
<br />
<span class="press_date">30 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.eweek.com/c/a/Application-Development/Google-Apple-Amazon-Push-HTML5-to-the-Fore-as-Adobe-Flash-Falls-214208/">Application Development: Google, Apple, Amazon Push HTML5 to the Fore as Adobe Flash Falls</a>, Clint Boulton<em class="keywords">HTML5</em>
</dd>
<dt>
<a href="http://computersweden.idg.se">ComputerSweden</a>
<br />
<span class="press_date">30 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.idg.se/2.1085/1.423703/10-i-topp--det-har-blir-allra-hetast">"10 i topp - det här blir allra hetast" ("Top ten - most hot items 2012")</a>, Jonnie Wistrand, Joel Åsblom<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.silicon.fr/">silicon.fr</a>
<br />
<span class="press_date">30 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.silicon.fr/le-gratin-du-web-mondial-se-reunira-a-lyon-en-avril-69704.html">Le gratin du web mondial se réunira à Lyon, en avril </a>, David Feugey<em class="keywords">Tim Berners-Lee, HTML, W3C</em>
</dd>
<dt>
<a href="http://gigaom.com/">Gigaom</a>
<br />
<span class="press_date">29 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://gigaom.com/2011/12/29/the-app-internet-in-2012-defining-the-death-of-the-web/">The App Internet in 2012: Defining the death of the web</a>, Dominiek ter Heide<em class="keywords">HTML, HTML5, W3C, CSS, HTTP</em>
</dd>
<dt>
<a href="http://www.readwriteweb.com/enterprise/">ReadWriteEnterprise</a>
<br />
<span class="press_date">29 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.readwriteweb.com/enterprise/2011/12/issues-for-2012-4-what-should.php">Issues for 2012 #4: What Should the Browser Become?</a>, Scott M. Fulton, III<em class="keywords">CSS, W3C, HTML5</em>
</dd>
<dt>
<a href="http://www.cnet.com/">CNET</a>
<br />
<span class="press_date">29 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://news.cnet.com/8301-1023_3-57347487-93/zynga-cto-four-predictions-for-2012/">Zynga CTO: Four predictions for 2012</a>, Cadir Lee<em class="keywords">W3C, HTML5, HTTP</em>
</dd>
<dt>
<a href="http://semanticweb.com/">semanticweb.com</a>
<br />
<span class="press_date">29 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://semanticweb.com/ring-in-a-new-year-for-the-semantic-web_b25629#more-25629">Ring In A New Year For the Semantic Web</a>, Jennifer Zaino<em class="keywords">Semantic Web, SPARQL, RDF, Linked Data</em>
</dd>
<dt>
<a href="http://pro.clubic.com/">Clubic Pro</a>
<br />
<span class="press_date">28 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://pro.clubic.com/creation-de-site-web/langage-programmation/html-5/actualite-467132-filer-js-javascript-exploiter-systeme-fichier-html5.html">Filer.js : du JavaScript pour exploiter le système de fichier HTML5 (MàJ)</a>, Guillaume Belfiore<em class="keywords">HTML5, W3C, FileAPI</em>
</dd>
<dt>
<a href="http://www.thestandard.com.hk/">The Standard</a>
<br />
<span class="press_date">28 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.thestandard.com.hk/news_detail.asp?pp_cat=20&art_id=118281&sid=34876899&con_type=1">Disabled to gain with drive for easy web design</a>, <em class="keywords">Accessibility, Web Content Accessibility Guidelines, W3C</em>
</dd>
<dt>
<a href="http://www.cites-numeriques.fr/">Cités Numériques</a>
<br />
<span class="press_date">28 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.cites-numeriques.fr/accueil/actualites/id/5/top-depart-pour-l-open-data.aspx">Top départ pour l’open data</a>, Charlie Braume<em class="keywords">Open Data, Tim Berners-Lee, XML</em>
</dd>
<dt>
<a href="http://www.journaldunet.com/">Le Journal du Net</a>
<br />
<span class="press_date">22 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.journaldunet.com/developpeur/expert/50626/html5---pour-quoi-faire.shtml">HTML5 : pour quoi faire ?</a>, Julien Roulette<em class="keywords">HTML5, HTML, W3C, ARIA</em>
</dd>
<dt>
<a href="http://www.banques-en-ligne.fr/">Banques en ligne</a>
<br />
<span class="press_date">20 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.banques-en-ligne.fr/actualites/detail.php?idactu=309">Banque en ligne : handicap et accessibilité</a>, <em class="keywords">accessibilité, W3C, WCAG</em>
</dd>
<dt>
<a href="http://www.ictjournal.ch/">ICTjournal</a>
<br />
<span class="press_date">19 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.ictjournal.ch/fr-CH/News/2011/12/19/Open-government-data-Qui-veut-les-donnees-des-administrations-publiques.aspx">Open government data: Qui veut les données des administrations publiques?</a>, Rodolphe Koller<em class="keywords">Tim Berners-Lee, Open Data</em>
</dd>
<dt>
<a href="http://9to5mac.com/">9to5Mac</a>
<br />
<span class="press_date">19 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://9to5mac.com/2011/12/19/apple-submits-invalid-patents-to-w3c-to-delay-touch-events-standard/">Apple submits ‘invalid’ patents to W3C to delay Touch Events standard</a>, Jordan Kahn<em class="keywords">W3C, Touch Events specification, Web Events Working Group</em>
</dd>
<dt>
<a href="http://www.computerworld.com/">Computer World</a>
<br />
<span class="press_date">19 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.computerworld.com/s/article/9222809/Adobe_s_no_choice_embrace_of_HTML5?taxonomyId=11&pageNumber=1">Adobe's no-choice embrace of HTML5</a>, Paul Krill<em class="keywords">HTML5, CSS, HTML, CSS3, W3C</em>
</dd>
<dt>
<a href="http://www.handicapzero.org/">HandiCapZéro</a>
<br />
<span class="press_date">15 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.handicapzero.org/menu-gauche/depeches/handicap-visuel/detail-dune-depeche-du-handicap-visuel.html?no_cache=1&tx_ttnews%5Btt_news%5D=1400&tx_ttnews%5BbackPid%5D=11&cHash=6c253487de&id=19675">Le nouveau site du CSA</a>, <em class="keywords">WCAG2.0, W3C</em>
</dd>
<dt>
<a href="http://semanticweb.com/">semanticweb.com</a>
<br />
<span class="press_date">15 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://semanticweb.com/drs-wood-seuss-explain-rdf-in-two-minutes_b25336">Drs. Wood & Seuss Explain RDF in Two Minutes</a>, Eric Franzon<em class="keywords">RDF, Linked Data</em>
</dd>
<dt>
<a href="http://semanticweb.com/">semanticweb.com</a>
<br />
<span class="press_date">15 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://semanticweb.com/european-commission-announces-new-open-data-policy-package_b25297">European Commission Announces New Open Data Policy Package</a>, Angela Guess<em class="keywords">Open Data, Tim Berners-Lee, Linked Data</em>
</dd>
<dt>
<a href="http://www.theregister.co.uk/">The Register</a>
<br />
<span class="press_date">14 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.theregister.co.uk/2011/12/14/browser_image_theft_threat/">Newfangled graphics engine for browsers fosters data theft</a>, Dan Goodin<em class="keywords">CSS shaders, W3C, SVG</em>
</dd>
<dt>
<a href="http://www.macgeneration.com/">MacGeneration</a>
<br />
<span class="press_date">14 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.macgeneration.com/news/voir/227032/w3c-et-iphone-les-interets-contraires-d-apple">W3C et iPhone : les intérêts contraires d'Apple</a>, Anthony Nelzin<em class="keywords">W3C, Patent Advisory Group, Touch Events, W3C Widgets</em>
</dd>
<dt>
<a href="http://pro.clubic.com/">Clubic Pro</a>
<br />
<span class="press_date">13 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://pro.clubic.com/legislation-loi-internet/propriete-intellectuelle/actualite-464614-opera-brevets-apple-ralentissent-standards-w3c.html">Apple accusé de ralentir les standards du W3C</a>, Guillaume Belfiore<em class="keywords">W3C, Patent Advisory Group, Touch Events</em>
</dd>
<dt>
<a href="http://europa.eu/index_en.htm">Europa</a>
<br />
<span class="press_date">12 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://europa.eu/rapid/pressReleasesAction.do?reference=IP/11/1524">Digital Agenda: Turning government data into gold</a>, <em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.sdtimes.com/">SD Times</a>
<br />
<span class="press_date">12 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.sdtimes.com/blog/post/2011/12/12/WebSockets-Protocol-becomes-standard.aspx">WebSockets Protocol becomes standard</a>, Alex Handy<em class="keywords">HTML5, W3C, Websocket, HTTP</em>
</dd>
<dt>
<a href="http://www.macgeneration.com/">MacGeneration</a>
<br />
<span class="press_date">12 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.macgeneration.com/unes/voir/130662/flash-pourquoi-il-faut-encore-vous-y-faire">Flash : pourquoi il faut encore vous y faire</a>, Arnauld de La Grandière<em class="keywords">HTML5, HTML, W3C, HTTP, Media Capture API, Audio Data API, Web Audio API</em>
</dd>
<dt>
<a href="http://arstechnica.com/">Ars Technica</a>
<br />
<span class="press_date">12 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://arstechnica.com/tech-policy/news/2011/12/is-apple-is-using-patents-to-hurt-open-standards.ars">Is Apple using patents to hurt open standards? </a>, Peter Bright<em class="keywords">W3C, Touch Events, HTML5, Patent Advisory Group, widget specification, widget security specification</em>
</dd>
<dt>
<a href="http://www.telecompaper.com/">Telecompaper</a>
<br />
<span class="press_date">11 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.telecompaper.com/news/french-audiovisual-regualtor-csa-relaunches-website">French audiovisual regulator CSA relaunches website</a>, <em class="keywords">W3C, WCAG 2.0</em>
</dd>
<dt>
<a href="http://www.irishtimes.com/">The Irish Times</a>
<br />
<span class="press_date">9 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.irishtimes.com/newspaper/finance/2011/1209/1224308797071.html">MetaSurf filter software labels explicit content for safe surfing</a>, Marie Boran<em class="keywords">Semantic Web, W3C, POWDER, PICS</em>
</dd>
<dt>
<a href="http://www.satmag.fr/">Satmag</a>
<br />
<span class="press_date">9 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.satmag.fr/affichage_module.php?no_theme=1&no_news=14341&id_mod=50">Le CSA va mieux se présenter</a>, Serge Surpin<em class="keywords">WCAG 2.0, W3C</em>
</dd>
<dt>
<a href="http://www.developpez.com/">Developpez.com</a>
<br />
<span class="press_date">9 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.developpez.com/actu/39853/IE-10-fin-annoncee-pour-VML-et-les-filtres-DirectX/">IE 10 : fin annoncée pour VML et les filtres DirectX</a>, Romaric Hinault<em class="keywords">CSS3, SVG, XML, W3C, HTML5</em>
</dd>
<dt>
<a href="http://www.numerama.com/">Numerama</a>
<br />
<span class="press_date">9 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.numerama.com/magazine/20880-microsoft-publie-une-nouvelle-preview-d-ie-10.html">Microsoft publie une nouvelle preview d'IE 10</a>, Simon Robic<em class="keywords">CSS3, SVG, W3C</em>
</dd>
<dt>
<a href="http://www.csa.fr/">CSA</a>
<br />
<span class="press_date">9 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.csa.fr/Espace-Presse/Communiques-de-presse/Le-CSA-ouvre-son-nouveau-site-internet-www.csa.fr">Le CSA ouvre son nouveau site internet (www.csa.fr)</a>, <em class="keywords">WCAG2.0, W3C</em>
</dd>
<dt>
<a href="http://blog.antidot.net/">Blog Antidot</a>
<br />
<span class="press_date">8 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://blog.antidot.net/2011/12/08/grande-semaine-pour-lopen-data-francais/">Grande semaine pour l’Open Data français !</a>, <em class="keywords">Open Data, Tim Berners-Lee, W3C, RDF, OWL, SPARQL, Linked Open Data</em>
</dd>
<dt>
<a href="http://www.mobile-ent.biz/">Mobile Entertainment</a>
<br />
<span class="press_date">8 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.mobile-ent.biz//news/read/1bn-html5-capable-phones-will-be-sold-in-2013">1bn HTML5-capable phones will be sold in 2013</a>, Tim Green<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.tomshardware.com/">tom's hardware</a>
<br />
<span class="press_date">8 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.tomshardware.com/news/microsoft-ie10-web-browser-dx-vml,14215.html">Microsoft Removes Legacy Baggage From Internet Explorer 10</a>, Wolfgang Gruener<em class="keywords">CSS3, SVG, W3C</em>
</dd>
<dt>
<a href="http://ld3.ez-networks.fr/">Le débit de data - The data flow</a>
<br />
<span class="press_date">7 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://ld3.ez-networks.fr/annonce-ODI-Londres"> Sir Tim Berners-Lee, futur directeur d'un nouvel Open Data Institut à Londres !</a>, <em class="keywords">Tim Berners-Lee, Open Data</em>
</dd>
<dt>
<a href="http://www.mobilebusinessbriefing.com/">Mobile Business Briefing</a>
<br />
<span class="press_date">7 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.mobilebusinessbriefing.com/articles/html5-enabled-phone-sales-to-top-1b-in-2013/20681/">HTML5-enabled phone sales to top 1B in 2013</a>, <em class="keywords">HTML5</em>
</dd>
<dt>
<a href="http://www.zdnet.com/">ZDNet</a>
<br />
<span class="press_date">6 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.zdnet.com/blog/collaboration/buying-into-the-cloud-while-supporting-the-past/2218">Buying into the cloud while supporting the past</a>, Oliver Marks<em class="keywords">W3C, HTML5</em>
</dd>
<dt>
<a href="http://www.numerama.com/">Numerama</a>
<br />
<span class="press_date">6 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.numerama.com/magazine/20825-firefox-supportera-egalement-les-peripheriques-de-jeu.html">Firefox supportera également les périphériques de jeu</a>, Simon Robic<em class="keywords">Gamepad API, W3C, HTML5</em>
</dd>
<dt>
<a href="http://www.readwriteweb.com/">ReadWriteWeb</a>
<br />
<span class="press_date">6 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.readwriteweb.com/archives/top_6_trends_in_html5_in_2011.php">Top 6 Trends In HTML5 In 2011</a>, Dan Rowinski<em class="keywords">HTML5, HTML, URI, CSS3</em>
</dd>
<dt>
<a href="http://techworld.idg.se">TechWorld.com</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.idg.se/2.1085/1.419955/sa-ska-firefox-11-fa-dig-att-vibrera">Så ska Firefox 11 få dig att vibrera (Firefox 11 will make you vibrate)</a>, Niklas Andersson<em class="keywords">W3C, HTTP</em>
</dd>
<dt>
<a href="http://www.zdnet.fr/">ZDNet.fr</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.zdnet.fr/actualites/datagouvfr-la-france-ouvre-son-portail-de-partage-des-donnees-publiques-39766238.htm">data.gouv.fr : la France ouvre son portail de partage des données publiques</a>, <em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://pro.01net.com/">01net Entreprises</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://pro.01net.com/editorial/547788/open-data-la-france-plus-forte-que-les-etats-unis-et-langleterre/">Open data : la France rivalise avec les Etats-Unis et dépasse l'Angleterre</a>, Vincent Berdot<em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.acteurspublics.com/">Acteurs Publics</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.acteurspublics.com/article/05-12-11/le-site-data-gouv-fr-officiellement-lance">Le site Data.gouv.fr officiellement lancé</a>, Xavier Sidaner<em class="keywords">Open Data, XML</em>
</dd>
<dt>
<a href="http://www.lemondeinformatique.fr/">Le Monde Informatique</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.lemondeinformatique.fr/actualites/lire-open-data-le-site-datagouvfr-est-officiellement-ouvert-46864.html">Open Data : le site data.gouv.fr est officiellement ouvert (MAJ)</a>, Jacques Cheminat<em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.data.gouv.fr/">data.gouv.fr</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.data.gouv.fr/Articles/La-politique-de-la-France-en-matiere-d-ouverture-des-donnees-publiques">La politique de la France en matière d’ouverture des données publiques</a>, <em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.netmagazine.com/">.net magazine</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.netmagazine.com/news/lovefilm-switches-flash-silverlight-111604">LoveFilm switches from Flash to Silverlight</a>, Craig Grannell<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.challenges.fr/">Challenges</a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.challenges.fr/high-tech/20111205.CHA7790/la-france-met-ses-donnees-publiques-en-ligne-sur-un-site-unique.html"> La France met ses données publiques en ligne sur un site unique</a>, <em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://blogs.lesechos.fr/les-echos-opendata/les-echos-opendata-r114.html">Les Echos, Blog EchosOpendata </a>
<br />
<span class="press_date">5 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://blogs.lesechos.fr/echosopendata/lancement-de-data-gouv-fr-les-reactions-sur-twitter-a7838.html">Lancement de Data.gouv.fr : les réactions sur Twitter</a>, Ludovic Desautez<em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.regardscitoyens.org/">Regards Citoyens</a>
<br />
<span class="press_date">4 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.regardscitoyens.org/opendata-la-moyenne-pour-un-data-gouv-fr-sous-formats-proprietaires/">OpenData : La moyenne pour un data.gouv.fr sous formats propriétaires</a>, <em class="keywords">Tim Berners-Lee, XML, Open Data</em>
</dd>
<dt>
<a href="http://www.futuregov.asia/">FutureGov</a>
<br />
<span class="press_date">2 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.futuregov.asia/articles/2011/dec/02/france-launch-open-data-portal/">France to Launch Open Data Portal</a>, Rahul Joshi<em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.numerama.com/">Numerama</a>
<br />
<span class="press_date">2 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.numerama.com/magazine/20787-neelie-kroes-souhaite-une-adoption-rapide-de-l-ipv6.html">Neelie Kroes souhaite une adoption rapide de l'IPv6</a>, <em class="keywords">W3C</em>
</dd>
<dt>
<a href="https://hacks.mozilla.org/">Mozilla Hacks</a>
<br />
<span class="press_date">1 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="https://hacks.mozilla.org/2011/12/paving-the-way-for-open-games-on-the-web-with-the-gamepad-and-mouse-lock-apis/">Paving the way for open games on the Web with the Gamepad and Mouse Lock APIs</a>, Rob Hawkes<em class="keywords">HTML, Gamepad API, W3C, Mouse Lock API</em>
</dd>
<dt>
<a href="http://computerworld.co.nz/">Computer World</a>
<br />
<span class="press_date">1 December</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://computerworld.co.nz/news.nsf/news/ibm-develops-ideas-for-astronomically-big-data">IBM develops ideas for astronomically Big Data</a>, Stephen Bell<em class="keywords">OWL, W3C</em>
</dd>
</dl>
<h2>November</h2>
<dl>
<dt>
<a href="http://blogs.lesechos.fr/les-echos-opendata/les-echos-opendata-r114.html">Les Echos, Blog EchosOpendata </a>
<br />
<span class="press_date">30 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://blogs.lesechos.fr/echosopendata/l-open-data-made-in-uk-confirme-ses-ambitions-a7767.html">L’Open Data "made in UK" confirme ses ambitions</a>, Ludovic Desautez<em class="keywords">Tim Berners-Lee, Open Data</em>
</dd>
<dt>
<a href="http://www.lefigaro.fr/">Le Figaro.fr</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.lefigaro.fr/hightech/2011/12/20/01007-20111220ARTFIG00483-flash-se-demarquera-toujours-du-html5.php">«Flash se démarquera toujours du HTML5»</a>, Benjamin Ferran<em class="keywords">HTML5, HTML, W3C</em>
</dd>
<dt>
<a href="http://www.journaldugeek.com/">Le Journal du Geek</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.journaldugeek.com/2011/11/29/gamepad-et-webrtc-sur-chrome-debut-2012/">Gamepad et WebRTC sur Chrome début 2012</a>, <em class="keywords">WebRTC, W3C, HTML5, Gamepad API</em>
</dd>
<dt>
<a href="http://www.wired.co.uk/">Wired UK</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.wired.co.uk/news/archive/2011-11/29/autumn-statement">Osborne borrows more to fund startups and net infrastructure</a>, Olivia Solon<em class="keywords">Open Data, Tim Berners-Lee</em>
</dd>
<dt>
<a href="http://www.computerworlduk.com/">Computer World UK</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.computerworlduk.com/news/public-sector/3321660/osborne-announces-open-data-initiative/">Osborne announces ‘open data’ initiative</a>, Anh Nguyen<em class="keywords">Open Data, Tim Berners-Lee</em>
</dd>
<dt>
<a href="http://www.informationweek.com/government">InformationWeek Government</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.informationweek.com/news/government/info-management/232200393">DOD Aims To Improve Info Sharing</a>, Elizabeth Montalbano<em class="keywords">Semantic Web, W3C</em>
</dd>
<dt>
<a href="http://www.webmonkey.com/">Webmonkey | Wired.com</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.webmonkey.com/2011/11/wai-aria-gets-ready-for-a-starring-role-in-html5/">WAI-ARIA Gets Ready for a Starring Role in HTML5</a>, Scott Gilbertson<em class="keywords">WAI-ARIA, HTML5, W3C, accessibility, CSS</em>
</dd>
<dt>
<a href="http://www.out-law.com/">Out-Law.com</a>
<br />
<span class="press_date">29 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.out-law.com/en/articles/2011/november/government-seeks-views-on-web-accessibility/">Government seeks views on web accessibility</a>, <em class="keywords">Accessibility, WAI, W3C</em>
</dd>
<dt>
<a href="http://searchenginewatch.com/">Search Engine Watch</a>
<br />
<span class="press_date">26 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://searchenginewatch.com/article/2127381/Volunia-Search-Engine-A-Radical-New-View-of-Search">Volunia Search Engine: A 'Radical New View' of Search</a>, Rob D. Young<em class="keywords">P3P, OWL, W3C</em>
</dd>
<dt>
<a href="http://www.clubic.com/">Clubic</a>
<br />
<span class="press_date">25 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.clubic.com/navigateur-internet/google-chrome/actualite-460746-chrome-gamepad-webrtc-videoapi-debut-2012.html">Chrome : Gamepad & WebRTC débarqueront début 2012</a>, Guillaume Belfiore<em class="keywords">WebRTC, W3C, Gamepad API, Websocket</em>
</dd>
<dt>
<a href="http://www.journaldunet.com/">Journal du Net Développeurs</a>
<br />
<span class="press_date">24 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.journaldunet.com/developpeur/flash/michael-chaize-html5-vs-flash-la-position-d-adobe.shtml">Interview: Michael Chaize (Adobe) "HTML5 ne va pas remplacer Flash"</a>, Antoine Crochet-Damais<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.clubic.com/">Clubic</a>
<br />
<span class="press_date">24 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://pro.clubic.com/creation-de-site-web/langage-programmation/html-5/actualite-460496-manette-jeu-charge-navigateur.html">La manette de jeu prochainement prise en charge par le navigateur</a>, Guillaume Belfiore<em class="keywords">W3C, HTML5, Gamepad API</em>
</dd>
<dt>
<a href="http://www.nebusiness.co.uk/">nebusiness.co.uk</a>
<br />
<span class="press_date">24 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.nebusiness.co.uk/business-news/science-and-technology/2011/11/24/help-others-to-help-your-business-51140-29830658/">Help others to help your business</a>, Ross Linnett<em class="keywords">Accessibility, W3C</em>
</dd>
<dt>
<a href="http://www.techrepublic.com/">TechRepublic</a>
<br />
<span class="press_date">23 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.techrepublic.com/blog/webmaster/stay-on-the-design-cutting-edge-with-these-html5-and-css3-resources/912">Stay on the design cutting edge with these HTML5 and CSS3 resources</a>, Ryan Boudreaux<em class="keywords">HTML5, CSS3, W3C, HTML Working Group, XHTML, CSS</em>
</dd>
<dt>
<a href="http://windowsteamblog.com/ie/b/ie/">Exploring IE</a>
<br />
<span class="press_date">23 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://windowsteamblog.com/ie/b/ie/archive/2011/11/23/w3conf-successful-w3c-developer-conference.aspx">W3Conf: Successful W3C Developer Conference</a>, Jason McConnell<em class="keywords">W3C, HTML5, W3Conf, Jeff Jaffe, W3C Community Groups, CSS</em>
</dd>
<dt>
<a href="http://www.huffingtonpost.com/tech/">Huffpost Tech</a>
<br />
<span class="press_date">22 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.huffingtonpost.com/steve-hamby/top-three-technologies-to_b_1105022.html">Top Three Technologies to Tame the Big Data Beast</a>, Steve Hamby<em class="keywords">Semantic Web, W3C, OWL, RDF, Tim Berners-Lee</em>
</dd>
<dt>
<a href="http://www.silicon.fr/">silicon.fr</a>
<br />
<span class="press_date">21 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.silicon.fr/adobe-«-nous-n’abandonnons-pas-flash-»-65619.html">Adobe : « Nous n’abandonnons pas Flash »</a>, David Feugey<em class="keywords">HTML5, W3C</em>
</dd>
<dt>
<a href="http://www.lemonde.fr/">LeMonde.fr</a>
<br />
<span class="press_date">21 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.lemonde.fr/technologies/article/2011/11/21/la-navigation-en-ligne-bientot-mieux-protegee_1606920_651865.html">La navigation en ligne bientôt mieux protégée ?</a>, Damien Leloup<em class="keywords">W3C, Do Not Track</em>
</dd>
<dt>
<a href="http://www.digitalartsonline.co.uk/index.cfm">Digital Arts</a>
<br />
<span class="press_date">20 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.digitalartsonline.co.uk/news/?NewsID=3319588">W3C drafts web standards to protect online privacy</a>, Grant Gross<em class="keywords">W3C, Privacy, Do Not Track, Thomas Roessler</em>
</dd>
<dt>
<a href="http://www.pcworld.com/">PCWorld</a>
<br />
<span class="press_date">19 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.pcworld.com/article/244342/googles_search_algorithm_challenged.html">Google's Search Algorithm Challenged</a>, Philip Willan<em class="keywords">W3C, Tim Berners-Lee, P3P, OWL</em>
</dd>
<dt>
<a href="http://www.lemonde.fr/">LeMonde.fr</a>
<br />
<span class="press_date">18 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.lemonde.fr/politique/article/2011/11/17/l-open-data-un-outil-pour-la-transparence-des-administrations_1604390_823448.html">L'"open data", un outil pour la transparence des administrations</a>, Alexandre Léchenet<em class="keywords">Open Data</em>
</dd>
<dt>
<a href="http://www.generation-nt.com/">GNT</a>
<br />
<span class="press_date">18 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.generation-nt.com/w3c-do-not-track-pistage-publicite-ciblee-actualite-1504381.html">W3C : standard anti-pistage pour 2012</a>, <em class="keywords">W3C, HTTP, Tracking Preference Expression, Tracking Compliance and Scope Specification, Do Not Track</em>
</dd>
<dt>
<a href="http://www.zdnet.com/">ZDNet</a>
<br />
<span class="press_date">18 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.zdnet.com/news/the-success-of-social-business-depends-on-standards/6329649">The success of social business depends on standards</a>, Jeff Jaffe and Angel Diaz<em class="keywords">Tim Berners-Lee, W3C</em>
</dd>
<dt>
<a href="http://www.readwriteweb.com/hack/">ReadWrite Hack</a>
<br />
<span class="press_date">18 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.readwriteweb.com/hack/2011/11/draft-w3c-standard-looks-more.php">Draft W3C Standard Looks More Like "Please, Do Not Track"</a>, Scott M. Fulton, III<em class="keywords">HTTP, W3C, Tracking Preference Expression, Tracking Compliance and Scope, DNT</em>
</dd>
<dt>
<a href="http://www.huffingtonpost.com/tech/">Huffpost Tech</a>
<br />
<span class="press_date">17 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://www.huffingtonpost.com/patti-prairie/open-data-apps_b_1097723.html">Open Data for Real People</a>, Patti Prairie<em class="keywords">W3C, Open Data, URL</em>
</dd>
<dt>
<a href="http://redmondmag.com/">Redmondmag.com</a>
<br />
<span class="press_date">17 November</span>
<br />
</dt>
<dd class="bMargin">
<a href="http://redmondmag.com/articles/2011/11/17/opt-out-option-for-web-tracking.aspx">Universal Opt Out Option for Web Tracking Drafted</a>, Kevin McCaney<em class="keywords">W3C, Do Not Track, Tracking Protection Working Group, Tracking Preference Expression, Tracking Compliance and Scope Specification</em>
</dd>
</dl>
</div>
</div>
<div class="unit size1on4 lastUnit w3c_rhs">
<h2 class="h4 category">Quick Links</h2>
<ul class="theme right-list"><li>
<a href="articles-archive">Archive of Articles</a>
</li></ul>
<h2 class="h4 category">Highlights</h2>
<h3 class="highlighttitle">Number 1: World Wide Web Consortium</h3>
<p><a href="http://www.boston.com/news/education/higher/specials/mit150/mitlist/"><img src="http://www.w3.org/2011/05/globe_150.jpg" alt="Cover of Boston Globe magazine on MIT 150" /></a></p>
<p><em>— Ranking of W3C in Boston Global
<a href="http://www.boston.com/news/education/higher/specials/mit150/mitlist/">list of 150 important
achievements associated with MIT</a>.
MIT is one of the three organizations that "hosts"
W3C; the others are ERCIM and Keio University.</em></p>
</div>
</div>
</div>
</div>
</div>
</div><div id="w3c_footer">
<div id="w3c_footer-inner">
<h2 class="offscreen">Footer Navigation</h2>
<div class="w3c_footer-nav">
<h3>Navigation</h3>
<ul class="footer_top_nav"><li>
<a href="/">Home</a>
</li><li>
<a href="/standards/">Standards</a>
</li><li>
<a href="/participate/">Participate</a>
</li><li>
<a href="/Consortium/membership">Membership</a>
</li><li class="last-item">
<a href="/Consortium/">About W3C</a>
</li></ul>
</div>
<div class="w3c_footer-nav">
<h3>Contact W3C</h3>
<ul class="footer_bottom_nav"><li>
<a href="/Consortium/contact">Contact</a>
</li><li>
<a accesskey="0" href="/Help/">Help and FAQ</a>
</li><li>
<a href="/Consortium/sponsor/">Sponsor / Donate</a>
</li><li>
<a href="/Consortium/siteindex">Site Map</a>
</li><li>
<address id="w3c_signature">
<a href="mailto:site-comments@w3.org">Feedback</a> (<a href="http://lists.w3.org/Archives/Public/site-comments/">archive</a>)</address>
</li></ul>
</div>
<div class="w3c_footer-nav">
<h3>W3C Updates</h3>
<ul class="footer_follow_nav"><li>
<a href="http://twitter.com/W3C" title="Follow W3C on Twitter">
<img src="/2008/site/images/twitter-bird" alt="Twitter" width="78" height="83" class="social-icon" />
</a>
<a href="http://identi.ca/w3c" title="See W3C on Identica">
<img src="/2008/site/images/identica-logo" alt="Identica" width="91" height="83" class="social-icon" />
</a>
</li></ul>
</div>
<p class="copyright">Copyright © 2012 W3C <sup>®</sup> (<a href="http://www.csail.mit.edu/">
<acronym title="Massachusetts Institute of Technology">MIT</acronym>
</a>, <a href="http://www.ercim.org/">
<acronym title="European Research Consortium for Informatics and Mathematics"> ERCIM</acronym>
</a>, <a href="http://www.keio.ac.jp/">Keio</a>) <a href="/Consortium/Legal/ipr-notice">Usage policies apply</a>.</p>
</div>
</div><!-- Generated from data/scripts.php, ../../smarty/{scripts.tpl} --><!-- At the bottom for performance reasons --><div id="w3c_scripts">
<script type="text/javascript" src="/2008/site/js/main" xml:space="preserve"><!-- --></script>
</div></body></html>