-
Notifications
You must be signed in to change notification settings - Fork 4
/
317.txt
1306 lines (956 loc) · 63.6 KB
/
317.txt
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
[3] [DFN[W3C Process]] は、 [[W3C]] における[[標準化]]の過程、あるいはそれを記述した[[文書]]です。
[[W3C]] では単に [DFN[[[Process]]]] と呼ぶことがよくあります。
* 仕様書
[REFS[
- [202] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2012-06-21 01:53:59 +09:00]]) <https://www.w3.org/Consortium/Process/Process-19991111/>
- [201] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2012-06-21 01:52:49 +09:00]]) <https://www.w3.org/Consortium/Process-20010208/>
- [200] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2012-06-21 01:52:12 +09:00]]) <https://www.w3.org/Consortium/Process-20010719/>
- [199] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2012-06-21 01:51:16 +09:00]]) <https://www.w3.org/2003/06/Process-20030618/>
- [198] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2012-06-21 01:50:25 +09:00]]) <https://www.w3.org/2004/02/Process-20040205/>
- [197] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2015-04-15 12:26:26 +09:00]]) <https://www.w3.org/2005/10/Process-20051014/>
- [196] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2016-02-19 03:46:33 +09:00]]) <https://www.w3.org/2014/Process-20140801/>
- [195] [CITE@en[World Wide Web Consortium Process Document]] ([TIME[2015-07-29 23:22:09 +09:00]]) <https://www.w3.org/2015/Process-20150901/>
]REFS]
* 勧告過程
[116] [[WD]] → [[LCWD]] → [[CR]] → [[PR]] → [[REC]] と進みます。
[119] 一旦 [[REC]] になったものの改訂は [[PER]] → [[REC]] と進みます。
* WG Note
[117] [[勧告過程]]で開発されたものの中断される時は、 [[WG Note]]
として最後に出版します。
[118] 他に、元から [[WG Note]] として出版することを目標に開発されることもあります。
;; [182] [[WG Note]] 参照。
* W3C Process がいかれている例
[54] [[Process]] にあわせるために[[仕様書]]の技術的内容が歪められることが [[W3C]]
ではよくあります。本末転倒であるとして [[W3C]] 外からしばしば批判されており、
[[W3C]] も [[Process]] の改善を議論していますが、2014年に小改訂がようやく行われた程度で、
改革はなかなか進まないようです。
;; [55] [[W3C]] 内部ではそれほど問題意識が高くないのかもしれません。
[123] [[SVG Tiny 1.2]]
[122] [[XHTML Basic 1.1 2e]]
[121] [[XHTML Vocabulary]]
[1] [CITE[OWL 2 Web Ontology Language Document Overview]]
([TIME[2009-10-27 23:14:58 +09:00]] 版)
<http://www.w3.org/TR/2009/REC-owl2-overview-20091027/#sotd-xml-dep>
[2] [CITE[rdf:PlainLiteral: A Datatype for RDF Plain Literals]]
( ([TIME[2009-10-27 23:15:01 +09:00]] 版))
<http://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/#sotd-xml-dep>
[4] [CITE@en[Cascading Style Sheets (CSS) Snapshot 2007]]
( ([TIME[2011-05-12 23:25:26 +09:00]] 版))
<http://www.w3.org/TR/2011/NOTE-css-beijing-20110512/#w3c-process>
[5] [CITE@en[Cascading Style Sheets (CSS) Snapshot 2010]]
( ([TIME[2011-05-12 23:24:12 +09:00]] 版))
<http://www.w3.org/TR/2011/NOTE-css-2010-20110512/#w3c-process>
[6] [CITE@en[Re: Obsolescence notices on old specifications, again]]
( ([[Ian Hickson]] 著, [TIME[2012-01-26 09:29:57 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2012Jan/0032.html>
[7] [CITE@en[PROV-DM: The PROV Data Model]]
( ([TIME[2013-04-30 12:58:32 +09:00]] 版))
<http://www.w3.org/TR/2013/REC-prov-dm-20130430/#conformance-to-rdf-datatypes>
[8] [CITE@en[JSON-LD 1.0 Processing Algorithms and API]]
( ([TIME[2013-05-15 02:54:49 +09:00]] 版))
<http://www.w3.org/TR/2013/WD-json-ld-api-20130516/#the-application-programming-interface>
[9] [CITE@en[Page Visibility]]
( ([TIME[2013-05-10 20:27:55 +09:00]] 版))
<http://www.w3.org/TR/2013/REC-page-visibility-20130514/#status-of-this-document>
[10] [CITE@en[HTML Working Group Charter]]
( ([TIME[2013-10-01 04:26:59 +09:00]] 版))
<http://www.w3.org/2013/09/html-charter.html>
[11] [CITE@en[FAQ Regarding HTML Working Group Charter License Experiment]]
( ([TIME[2013-09-28 05:32:57 +09:00]] 版))
<http://www.w3.org/2013/09/html-faq.html>
[12] [CITE@en[Re: Next steps for Web Events WG]]
( ([[Arthur Barstow]] 著, [TIME[2013-09-04 20:01:21 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webevents/2013JulSep/0005.html>
[13] [CITE@en[Normative References]]
( ([TIME[2013-10-18 17:34:20 +09:00]] 版))
<http://www.w3.org/2013/09/normative-references>
[14] [CITE@en[''''''[''''''CSSWG'''''']'''''' Minutes Telecon 2013-10-30]]
( ([[Dael Jackson]] 著, [TIME[2013-10-31 10:26:08 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-style/2013Oct/0744.html>
[15] [CITE@en[''''''[''''''CSSWG'''''']'''''' Minutes Telecon 2013-10-30]]
( ([[Dael Jackson]] 著, [TIME[2013-10-31 10:26:08 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-style/2013Oct/0744.html>
[16] [CITE@en[Re: Current process encourages monkey patching]]
( ([[Anne van Kesteren]] 著, [TIME[2014-02-13 04:36:04 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2014Feb/0010.html>
[17] [CITE[IRC logs: freenode / #whatwg / 20140415]]
( ([TIME[2014-04-16 14:05:04 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20140415#l-724>
[18] [CITE@en[RDF 1.1 XML Syntax]]
( ([TIME[2014-04-25 12:39:46 +09:00]] 版))
<https://dvcs.w3.org/hg/rdf/raw-file/default/rdf-xml/index.html#h4_parseTypeLiteralPropertyElt>
[19] [CITE@en[Extensible Markup Language (XML) 1.1 (Second Edition)]]
( ([TIME[2006-09-29 19:02:09 +09:00]] 版))
<http://www.w3.org/TR/2006/REC-xml11-20060816/#sec-CharNorm>
[20] [CITE[IRC logs: freenode / #whatwg / 20140505]]
( ([TIME[2014-05-07 17:15:03 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20140505#l-231>
[21] [CITE[Copy of Promises Spec Draft as of October 2013]]
( ([TIME[2013-10-23 13:58:10 +09:00]] 版))
<http://www.w3.org/2013/10/json-ld-api/snapshot-promises-draft/>
[22] [CITE[IRC logs: freenode / #whatwg / 20140625]]
( ([TIME[2014-06-26 20:14:25 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20140625>
[23] [CITE@en[Normative References]]
( ([TIME[2013-12-20 19:45:54 +09:00]] 版))
<http://www.w3.org/2013/09/normative-references>
[24] [CITE@en[Re: WebIDL Spec Status]]
( ([[Boris Zbarsky]] 著, [TIME[2014-06-25 02:57:56 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014AprJun/1015.html>
[25] [CITE@en[Re: WebIDL Spec Status]]
( ([[Chris Wilson]] 著, [TIME[2014-06-25 08:01:08 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014AprJun/1023.html>
[26] [CITE@en[Re: XMLHttpRequest Level 1- specification history]]
( ([[Ian Hickson]] 著, [TIME[2014-03-31 09:59:21 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014JanMar/0789.html>
[27] [CITE@en[Re: PubReq: new WD of Shadow DOM on June 12]]
( ([[Jérémie Astori]] 著, [TIME[2014-06-11 03:07:35 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2014Jun/0006.html>
[28] [CITE@en[ProcessTransition2014 - W3C Wiki]]
( ([TIME[2014-08-06 07:00:06 +09:00]] 版))
<http://www.w3.org/wiki/ProcessTransition2014>
[29] [CITE@en[World Wide Web Consortium Process Document]]
( ([TIME[2014-08-06 04:07:44 +09:00]] 版))
<http://www.w3.org/2014/Process-20140801/>
[30] [CITE[Intent to Implement: Standby API - Google グループ]]
( ([TIME[2014-08-19 03:57:47 +09:00]] 版))
<https://groups.google.com/a/chromium.org/d/msg/blink-dev/SzVuAi2KRhA/ziJt4Wo98uwJ>
[31] [CITE@en[Re: First Draft of W3C version of URL Spec]]
( ([[Marcos Caceres]] 著, [TIME[2014-08-29 03:25:12 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-w3process/2014Aug/0133.html>
[32] [CITE@en[Publishing documents under the 2014 Process]]
( ([[Ian Jacobs]] 著, [TIME[2014-09-02 20:46:42 +09:00]] 版))
<http://lists.w3.org/Archives/Public/spec-prod/2014JulSep/0065.html>
[33] [CITE@en[''''''[''''''Pubrules'''''']'''''' Revised Proposed changes regarding references to editors' drafts]]
( ([[Ian Jacobs]] 著, [TIME[2014-09-04 02:13:48 +09:00]] 版))
<http://lists.w3.org/Archives/Public/spec-prod/2014JulSep/0068.html>
[34] [CITE@en[ProcessTransition2014 - W3C Wiki]]
( ([TIME[2014-08-27 10:33:53 +09:00]] 版))
<https://www.w3.org/wiki/ProcessTransition2014>
[35] [CITE@ja[Domenic Denicola on Twitter: "Wow. W3C explicitly blacklists referencing WHATWG specs http://t.co/np984MJL9Y Need more evidence the W3C is behind the times?"]]
( ([TIME[2014-09-09 02:18:10 +09:00]] 版))
<https://twitter.com/domenic/status/508964136366391297>
[36] [CITE@en[ISSUE-124: Normative Reference policy should explicitly black list WHATWG specs - Revising W3C Process Community Group Tracker]]
( ([TIME[2014-09-09 02:19:26 +09:00]] 版))
<http://www.w3.org/community/w3process/track/issues/124>
[37] [CITE@en[Re: w3process-ISSUE-124 (WHATWG-blacklist): Normative Reference policy should explicitly black list WHATWG specs ''''''[''''''Normative Reference Policy'''''']'''''']]
( ([[Arthur Barstow]] 著, [TIME[2014-09-09 02:52:18 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-w3process/2014Sep/0053.html>
[38] [CITE@en[Re: publishing new WD of URL spec]]
( ([[Robin Berjon]] 著, [TIME[2014-09-11 22:01:20 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014JulSep/0517.html>
[39] [CITE@en[Re: publishing new WD of URL spec]]
( ([[Boris Zbarsky]] 著, [TIME[2014-09-11 10:44:38 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-tag/2014Sep/0016.html>
[40] [CITE@en[Re: publishing new WD of URL spec]]
( ([[Philippe Le Hegaret]] 著, [TIME[2014-09-11 23:06:37 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-w3process/2014Sep/0083.html>
[41] [CITE@en[Sam Ruby: The URL Mess]] ([TIME[2014-09-17 10:38:22 +09:00]] 版) <http://intertwingly.net/blog/2014/09/16/The-URL-Mess>
[42] [CITE@en[minor fixes · 5665b66 · w3c/html]]
( ([TIME[2014-09-18 04:05:09 +09:00]] 版))
<https://github.com/w3c/html/commit/5665b66d3bc7720fcaaeff5817e6eacbf782d835>
[43] [CITE@en[crazy hoop jumping about URLs · 5b04c84 · w3c/html]]
( ([TIME[2014-09-18 04:06:01 +09:00]] 版))
<https://github.com/w3c/html/commit/5b04c84af9bb460fa0ffddb5af7fac41a17b1938>
[44] [CITE[IRC logs: freenode / #whatwg / 20140917]]
( ([TIME[2014-09-18 04:07:25 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20140917#l-76>
[45] [CITE@en-US-x-Hixie[HTML5]]
( ([TIME[2014-09-17 00:51:24 +09:00]] 版))
<http://www.w3.org/TR/2014/PR-html5-20140916/>
[46] [CITE@en[proposal: have W3C HTML5 reference dated WHATWG URL standard rather than W3C copy]]
( ([[Tantek Çelik]] 著, [TIME[2014-09-25 14:31:09 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-html/2014Sep/0061.html>
[47] [CITE@en[Re: w3process-ISSUE-124 (WHATWG-blacklist): Normative Reference policy should explicitly black list WHATWG specs ''''''[''''''Normative Reference Policy'''''']'''''']]
( ([[Tim Berners-Lee]] 著, [TIME[2014-10-03 06:14:33 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-w3process/2014Oct/0021.html>
[48] [CITE@en[Re: w3process-ISSUE-124 (WHATWG-blacklist): Normative Reference policy should explicitly black list WHATWG specs ''''''[''''''Normative Reference Policy'''''']'''''']]
( ([[Ian Hickson]] 著, [TIME[2014-10-04 02:25:11 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-w3process/2014Oct/0036.html>
[214] 大手芸能事務所「(元所属タレントを出演させるなという) 圧力など存在しない」
W3C 「([[WHATWG]] の[[仕様書]]を引用するなという) 圧力など存在しない」
[215] この一連の騒動の後 [[Arthur Barstow]] が座長だった [[WebApps WG]]
が取り潰されたのは [[W3C]] の圧力だ・・・とかいうのはただの[[陰謀論]]でしょうけど、
その後一身上の都合で引退しちゃったのはこの騒動と無関係ではないでしょうね...
[216] 結局 [[Arthur Barstow]] が勝手に空気読みすぎてただけみたいな感じで有耶無耶にされちゃいましたけど、
その後何年も (この記事で以降に示している通り) [[W3C]] の[[仕様書]]から [[WHATWG]]
の[[仕様書]]をまともに[[引用]]できずに意味不明な破綻を繰り返していたり、
[[HTML 5.1]]、[[HTML 5.2]]、[[DOM4]]、[[DOM 4.1]] のような[[粗大ごみ]]をがんばって開発し続けたりしているわけなんで、
[[W3C]] 上層部とかの圧力が何もないなら、 [[W3C]] は上から下までとんだ無能集団ってことになりますよね。。。
[49] [CITE[IRC logs: freenode / #whatwg / 20141003]]
( ([TIME[2014-10-04 05:24:38 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20141003>
[50] [CITE@en[Publication Workflow]]
( ([TIME[2014-09-11 13:28:08 +09:00]] 版))
<http://www.w3.org/2014/08/pubworkflow.html>
[51] ( ([TIME[2014-10-08 04:07:01 +09:00]] 版))
<http://dev.w3.org/html5/2014/10/url-ref.html>
[52] ( ([TIME[2014-10-08 04:07:01 +09:00]] 版))
<http://dev.w3.org/html5/2014/10/url-ref.html>
[53] [CITE@en[Re: ''''''[''''''xhr'''''']'''''' Questions on the future of the XHR spec, W3C snapshot]]
( ([[Arthur Barstow]] 著, [TIME[2014-10-19 22:59:38 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014OctDec/0166.html>
[56] [CITE[IRC logs: freenode / #whatwg / 20141028]]
( ([TIME[2014-10-29 02:24:41 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20141028>
[57] [CITE@en[HTML/wg/UrlStatus - W3C Wiki]]
( ([TIME[2014-10-14 15:31:57 +09:00]] 版))
<https://www.w3.org/wiki/HTML/wg/UrlStatus#Formal_Objections>
[58] [CITE@en[''''''[''''''url'''''']'''''' follow-ups from the TPAC F2F Meeting]]
( ([[Sam Ruby]] 著, [TIME[2014-10-30 10:54:45 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014OctDec/0315.html>
[59] [CITE@en[W3C - WHATWG Wiki]]
( ([TIME[2014-10-11 23:26:21 +09:00]] 版))
<https://wiki.whatwg.org/wiki/W3C>
[60] [CITE@en[URL spec and copying]]
( ([[Sam Ruby]] 著, [TIME[2014-11-19 23:54:38 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2014Nov/0023.html>
[61] [CITE@en[Re: PSA: Sam Ruby is co-Editor of URL spec]]
( ([[Sam Ruby]] 著, [TIME[2014-11-19 05:18:10 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014OctDec/0437.html>
[62] [CITE@en[Sam Ruby: WHATWG/W3C Collaboration]] ([TIME[2014-11-21 05:30:37 +09:00]] 版) <http://intertwingly.net/blog/2014/11/20/WHATWG-W3C-Collaboration>
[63] [CITE@en[Re: PSA: Sam Ruby is co-Editor of URL spec]]
( ([[Anne van Kesteren]] 著, [TIME[2014-11-23 18:05:18 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2014Nov/0029.html>
[64] [CITE@en[URL Collaboration Work (was: Sam Ruby is co-Editor of URL spec)]]
( ([[Sam Ruby]] 著, [TIME[2014-11-25 00:05:32 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2014Nov/0039.html>
[65] [CITE@en[Web Platform Specs]]
( ([TIME[2014-11-26 19:37:04 +09:00]] 版))
<https://specs.webplatform.org/docs/>
[66] [CITE@en[Re: PSA: Sam Ruby is co-Editor of URL spec]]
( ([[Sam Ruby]] 著, [TIME[2014-11-26 21:08:07 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-archive/2014Nov/0056.html>
[67] [CITE[IRC logs: freenode / #whatwg / 20141126]]
( ([TIME[2014-11-27 17:36:45 +09:00]] 版))
<http://krijnhoetmer.nl/irc-logs/whatwg/20141126#l-701>
[68] [CITE@en[URL Spec WorkMode (was: PSA: Sam Ruby is co-Editor of URL spec)]]
( ([[Sam Ruby]] 著, [TIME[2014-12-02 10:17:32 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014OctDec/0520.html>
[69] [CITE@en[url/workmode.md at develop · webspecs/url]]
( ([TIME[2014-12-02 11:57:37 +09:00]] 版))
<https://github.com/webspecs/url/blob/develop/docs/workmode.md>
[70] [CITE@en[RE: Help with WebIDL v1?]]
( ([[Travis Leithead]] 著, [TIME[2014-12-02 06:49:15 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-webapps/2014OctDec/0518.html>
[71] [CITE@en[RE: WebIDL v1 vs. v2]]
( ([[Domenic Denicola]] 著, [TIME[2014-12-04 02:06:40 +09:00]] 版))
<http://lists.w3.org/Archives/Public/www-tag/2014Dec/0008.html>
[72] [CITE@en[Re: ''''''[''''''url'''''']'''''' Requests for Feedback (was Feedback from TPAC)]]
( ([[Arthur Barstow]] 著, [TIME[2014-12-09 04:45:12 +09:00]] 版))
<http://lists.w3.org/Archives/Public/public-ietf-w3c/2014Dec/0025.html>
[73] ( ([TIME[2014-11-24 01:11:25 +09:00]] 版))
<http://www.ietf.org/proceedings/91/minutes/minutes-91-appsawg>
[74] [CITE@en[Mike West on Twitter: "WebCrypto published as CR: http://t.co/wjRRsOBRnm. @sleevi_: Congrats?"]]
( ([TIME[2014-12-12 11:27:29 +09:00]] 版))
<https://twitter.com/mikewest/status/543139903933280256>
[75] [CITE@en[Bug 27727 – Remove DOMError from IDB]]
( ([TIME[2015-01-08 10:50:43 +09:00]] 版))
<https://www.w3.org/Bugs/Public/show_bug.cgi?id=27727#c1>
[76] [CITE@en-US[Indexed Database API]]
( ([TIME[2015-01-07 03:35:45 +09:00]] 版))
<http://www.w3.org/TR/2015/REC-IndexedDB-20150108/>
[77] [CITE@en[Sam Ruby: URL Work Status]] ([TIME[2015-01-13 20:13:47 +09:00]] 版) <http://intertwingly.net/blog/2015/01/11/URL-Work-Status>
[78] [CITE@en[CSP2: Fork a draft of CSP2. · 68d5fec · w3c/webappsec]]
( ([TIME[2015-01-16 11:57:29 +09:00]] 版))
<https://github.com/w3c/webappsec/commit/68d5fecbf626420d2d988a5d9e7170a00b508c7c>
[FIG(quote)[
[FIGCAPTION[
[79] [CITE@en[Pointer Events Published (was: Pointer Events Recommendation delayed by a Formal Objection)]]
([[Doug Schepers]] 著, [TIME[2015-02-25 04:34:42 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-pointer-events/2015JanMar/0014.html>
]FIGCAPTION]
> I'd like to thank and congratulate everyone who contributed to the Pointer Events specification. As you probably know now, Pointer Events has now been published as a W3C Recommendation '''['''1''']''''''['''2''']'''.
> These blog posts address a serious issue: the lack of universal interoperability, and competition with the Touch Events technology (also published by W3C). We hope that with work and developer interest, this will change over time.
]FIG]
[80] [CITE@en-US[David Baron's weblog: Open licensing at the W3C]]
([TIME[2013-07-16 05:53:56 +09:00]] 版)
<http://dbaron.org/log/20130522-w3c-licensing>
[81] [CITE[Relicensing Unfinished W3C Specifications]]
( ([TIME[2014-12-06 00:00:57 +09:00]] 版))
<http://www.w3.org/2014/12/relicense.html>
[82] [CITE@en[meetings/04-21-minutes.md at gh-pages · w3ctag/meetings]]
([TIME[2015-05-06 15:43:19 +09:00]] 版)
<https://github.com/w3ctag/meetings/blob/gh-pages/2015/04-sfo/04-21-minutes.md>
[83] [CITE@en[fabien_gandon on Twitter: ""implementing a standard is like walking on water: it's much easier when it is frozen." quote #ac-rep meeting @w3c"]]
([TIME[2015-05-11 00:51:17 +09:00]] 版)
<https://twitter.com/fabien_gandon/status/596229047476170753>
[FIG(quote)[
[FIGCAPTION[
[84] [CITE[IRC logs: freenode / #whatwg / 20150507]]
([TIME[2015-05-11 00:51:34 +09:00]] 版)
<http://krijnhoetmer.nl/irc-logs/whatwg/20150507#l-447>
]FIGCAPTION]
> '''['''14:02''']''' <annevk> W3C AC still partying like it's 2004: https://twitter.com/fabien_gandon/status/596229047476170753
]FIG]
[85] [CITE@en[Re: Web Notification Working Group Charter Extended]]
([[Michael'''['''tm''']''' Smith]] 著, [TIME[2015-05-20 10:17:36 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-web-notification/2015May/0004.html>
[86] [CITE@en[Implementing ATAG 2.0]]
( ([TIME[2015-06-04 04:25:44 +09:00]] 版))
<http://www.w3.org/TR/2015/WD-IMPLEMENTING-ATAG20-20150604/>
[87] [CITE@en[Point to the Streams Standard as that's actively being worked on by annevk · Pull Request #195 · WebAssembly/design]]
([TIME[2015-06-19 11:22:46 +09:00]] 版)
<https://github.com/WebAssembly/design/pull/195>
[88] [CITE@en[It is also necessary to join the CG before filing issues by lukewagner · Pull Request #199 · WebAssembly/design]]
([TIME[2015-06-19 11:23:55 +09:00]] 版)
<https://github.com/WebAssembly/design/pull/199>
[FIG(quote)[
[FIGCAPTION[
[89] [CITE@en[SVG Working Group Teleconference -- 09 Jun 2015]]
([TIME[2015-06-10 00:52:02 +09:00]] 版)
<http://www.w3.org/2015/06/09-svg-minutes.html>
]FIGCAPTION]
>
> heycam: these algorithms like "focusing steps", can't we just reference HTML?
> ed: I think they were in HTML 5.1, not HTML 5, and we couldn't reference 5.1 at the point these were added
]FIG]
[FIG(quote)[
[FIGCAPTION[
[90] [CITE[Widget Interface]]
([TIME[2015-01-27 11:24:04 +09:00]] 版)
<http://w3c.github.io/packaged-webapps/api/Overview.html>
]FIGCAPTION]
> Please note that advancement to Recommendation is blocked until Web IDL and Web Storage are both Proposed Recommendations.
]FIG]
[FIG(quote)[
[FIGCAPTION[
[91] [CITE[Widget Interface]]
([TIME[2013-10-29 00:58:56 +09:00]] 版)
<http://www.w3.org/TR/widgets-apis/>
]FIGCAPTION]
> By publishing this Recommendation, W3C expects that the functionality specified in this Widget Interface API will not be affected by changes to HTML5 or WebIDL as that specification proceeds to Recommendation.
]FIG]
[FIG(quote)[
[FIGCAPTION[
[92] [CITE@en[Re: ''''''[''''''WebIDL'''''']'''''' T''''''['''''''''''']'''''' migration]]
([[Boris Zbarsky]] 著, [TIME[2015-07-17 01:16:04 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0170.html>
]FIGCAPTION]
> Note that since the old syntax was never supported by any UA in any
> meaningful way I'm aware of, those are basically problems in those specs
> that should technically have prevented them from going to REC (due to
> lack of two interoperable implementations).
]FIG]
[93] [CITE@en[World Wide Web Consortium Process Document]]
( ([TIME[2015-07-29 23:22:09 +09:00]] 版))
<http://www.w3.org/2015/Process-20150901/>
[94] [CITE@en[ProcessTransition2015 - W3C Wiki]]
( ([TIME[2015-07-30 00:47:45 +09:00]] 版))
<https://www.w3.org/wiki/ProcessTransition2015>
[95] [CITE@EN[State Chart XML (SCXML): State Machine Notation for Control Abstraction]] ([TIME[2015-09-01 05:30:17 +09:00]] 版) <http://www.w3.org/TR/2015/REC-scxml-20150901/>
[96] >>95 は、なぜか1年以上前に出版済みの [[RFC 7303]] を無視して、
14年も前の [[RFC 3023]] を参照しています。
[FIG(quote)[
[FIGCAPTION[
[98] [CITE@en-US[Web Notifications]]
([TIME[2015-09-09 20:46:36 +09:00]] 版)
<http://www.w3.org/TR/2015/PR-notifications-20150910/>
]FIGCAPTION]
> A specification for Notifications is also being developed at https://notifications.spec.whatwg.org/. Recent work there has focused on integrating notifications with Service Workers and other new features. That specification also deprecates the onshow and onclose events that are present in this specification, under the rationale that those events lack sufficient use cases.
]FIG]
[97] >>98 用途不詳として削除されたことは認識しつつ、なおも仕様書から削除せず実装を求める
(= [[相互運用性]]に害をなそうとする) [[W3C]] まじ意味不wwww
[99] [CITE@en[Normative references to Workers.]]
([[Mike West]] 著, [TIME[2015-09-16 02:31:16 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0361.html>
[100] [CITE@en[Re: Normative references to Workers.]]
([[Arthur Barstow]] 著, [TIME[2015-09-16 21:17:36 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0367.html>
[101] [CITE@en[Fork tracking - WHATWG Wiki]]
([TIME[2015-09-25 18:06:01 +09:00]] 版)
<https://wiki.whatwg.org/wiki/Fork_tracking>
[102] [CITE[IRC logs: freenode / #whatwg / 20150929]]
([TIME[2015-09-30 20:30:38 +09:00]] 版)
<http://krijnhoetmer.nl/irc-logs/whatwg/20150929>
[103] [CITE@en[Mozilla comments on Web Platform and Timed Media]]
([[L. David Baron]] 著, [TIME[2015-09-16 03:25:20 +09:00]] 版)
<https://lists.w3.org/Archives/Public/www-archive/2015Sep/0016.html>
[FIG(quote)[
[FIGCAPTION[
[104] [CITE@en[A transcript extension for HTML]]
( ([TIME[2015-09-29 05:57:08 +09:00]] 版))
<http://www.w3.org/TR/2015/NOTE-html-transcript-src-20151001/>
]FIGCAPTION]
> It is published as a Working Group Note because the HTML Working Group is reaching the end of its charter; it is hoped and expected that a successor to that Working Group, perhaps the Timed Media Working Group, will continue the work of taking this document to become a W3C Recommendation.
]FIG]
[105] [CITE@en[Normative References]]
([TIME[2015-04-07 03:35:46 +09:00]] 版)
<http://www.w3.org/2013/09/normative-references>
[106] [CITE@en[Re: App-to-App interaction APIs - one more time, with feeling]]
([[Chaals McCathie Nevile]] 著, [TIME[2015-10-16 19:09:43 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webapps/2015OctDec/0084.html>
[FIG(quote)[
[FIGCAPTION[
[107] [CITE@en-US[Web Notifications]]
([TIME[2015-10-22 09:07:32 +09:00]] 版)
<http://www.w3.org/TR/2015/REC-notifications-20151022/>
]FIGCAPTION]
> A specification for Notifications is also being developed at https://notifications.spec.whatwg.org/. Recent work there has focused on integrating notifications with Service Workers and other new features. That specification also deprecates the onshow and onclose events that are present in this specification, under the rationale that those events lack sufficient use cases.
]FIG]
[FIG(quote)[
[FIGCAPTION[
[108] [CITE@en-US[W3C DOM4]]
( ([TIME[2015-11-19 21:54:20 +09:00]] 版))
<http://www.w3.org/TR/2015/REC-dom-20151119/>
]FIGCAPTION]
> Warning
> Implementers should take heed of the old bugs list in general, but more particularly of these two bugs that adversely affect interoperability (most particularly of the Document interface):
> Bug 19431: Namespace of elements made via .createElement() in XML documents must be null
> Bug 22960: Document, XMLDocument, HTMLDocument, oh my
>
]FIG]
[113] >>108 のような深刻な課題 (原文では赤枠に赤字で表示されてます。) が残っていても [[W3C勧告]]にはなってしまうんだ...
[130] >>108 真下に
> It is a stable document and may be used as reference material or cited from another document.
とか書いてあって、「stable」とは一体、と気になるところではあるのですが、
[[W3C]] 職員の発言 [SRC[>>131]] によると [CODE[/TR/]] 以下の日付が入った [[URL]]
で出版されたら以後変更されないことを指しているようです (その「変更されない」
ポリシーも実はがばがばなんですけどねぇ...)。
;; [132] おそらく元々は不安定な技術を[[勧告]]とするのは好ましくない、
[[勧告]]となったのは安定した以後変更されない安心して利用できるものだ、
という趣旨だったと推測するのですが、形骸化しちゃったんでしょうねぇ。
この「安定」の基準だったら、 [[GitHub]] に置いてある [[ED]]
も全部「安定」しているといっても良い (むしろ [CODE[/TR/]] より安定している) ことに...
[FIG(quote)[
[FIGCAPTION[
[111] [CITE@en-US[W3C DOM4]]
( ([TIME[2015-11-19 21:54:20 +09:00]] 版))
<http://www.w3.org/TR/2015/REC-dom-20151119/>
]FIGCAPTION]
> [CSSOMVIEW]
> (Non-normative)
> Document Object Model (DOM) Level 2 Style, C. Wilson, P. Le Hégaret, V. Apparao. W3C.
> CSSOM View Module, S. Pieters, G. Adams. W3C.
>
]FIG]
[FIG(quote)[
[FIGCAPTION[
[112] [CITE@en-US[W3C DOM4]]
( ([TIME[2015-11-19 21:54:20 +09:00]] 版))
<http://www.w3.org/TR/2015/REC-dom-20151119/>
]FIGCAPTION]
> [URL]
> (Non-normative)
> Note: URLs can be used in numerous different manners, in many differing contexts. For the purpose of producing strict URLs one may wish to consider [RFC3986] [RFC3987]. The W3C URL specification defines the term URL, various algorithms for dealing with URLs, and an API for constructing, parsing, and resolving URLs. Developers of Web browsers are advised to keep abreast of the latest URL developments by tracking the progress of https://url.spec.whatwg.org/. We expect that the W3C URL draft will evolve along the Recommendation track as the community converges on a definition of URL processing.
> URL, Anne van Kesteren. WHATWG.
> RFC3986, T. Berners-Lee; R. Fielding; L. Masinter. IETF.
> RFC3987, M. Duerst, M. Suignard. IETF.
>
]FIG]
[FIG(quote)[
[FIGCAPTION[
[109] [CITE@en-US[W3C DOM4]]
( ([TIME[2015-11-19 21:54:20 +09:00]] 版))
<http://www.w3.org/TR/2015/REC-dom-20151119/>
]FIGCAPTION]
> B. CSS Concepts
> Note: This section contains concepts introduced by the Selectors Level 4 and will be removed in the future once the Selectors Level 4 is updated. Please refer to [SELECTORS] for up-to-date definitions.
]FIG]
[110] [[Selectors Level 4]] がまだ [[WD]] なので >>109 のように一部の用語だけ無理矢理コピペしている一方、
[[Selectors Level 4]] は normative reference になっている。不安定な仕様を引用しないみたいな指針は何のためにあるのか。
[FIG(quote)[
[FIGCAPTION[
[114] [CITE@en-US-x-Hixie[HTML Canvas 2D Context]]
( ([TIME[2015-11-19 07:12:11 +09:00]] 版))
<http://www.w3.org/TR/2015/REC-2dcontext-20151119/>
]FIGCAPTION]
> By publishing this Recommendation, W3C expects the functionality specified in this Recommendation will not be affected by changes to Web IDL, CSS Object Model, CSS Images Values, or CSS Fonts as those specifications proceed to Recommendation.
]FIG]
[115] >>114 の注記が [[DOM4]] にないのはなぜだろう。 [[Selectors Level 4]]
等の変更の影響を受ける可能性があると思ったのだろうか。
(だとしたらなんでそんなものを[[W3C勧告]]にしたのか。)
[120] [CITE@en[FW: New W3C publication requirements as of March 1]]
([[Léonie Watson]] 著, [TIME[2016-02-19 20:19:16 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webapps/2016JanMar/0106.html>
[124] [CITE[Here's the list of all the 2D Context API specs I could find at the W3C as of March 4th 2014]]
([TIME[2014-04-12 07:37:43 +09:00]] 版)
<http://damowmow.com/temp/canvas-specs>
[125] [CITE@en[Large custom element spec rewrite to implement some F2F decisions · w3c/webcomponents@d95392f]]
([TIME[2016-04-09 11:20:28 +09:00]] 版)
<https://github.com/w3c/webcomponents/commit/d95392f734895b2c72e1822f464dd70a22b322a4#commitcomment-16980405>
[126] [CITE@en[Revert "Revert edits to custom elements made by me for process reasons" · w3c/webcomponents@9d349ee]]
([TIME[2016-04-09 11:20:45 +09:00]] 版)
<https://github.com/w3c/webcomponents/commit/9d349eed0182c4a2c04e9da1676af2b2c41fdb9c>
[127] [CITE@en[Upstream Shadow DOM spec to DOM/HTML Standard · Issue #377 · w3c/webcomponents]]
([TIME[2016-04-09 11:24:17 +09:00]] 版)
<https://github.com/w3c/webcomponents/issues/377#issuecomment-206030809>
[128] [CITE@en[''''''[''''''CSS21'''''']'''''' Reverted some changes to remain exactly equal to the REC, typ… · w3c/csswg-drafts@93f2718]]
([TIME[2016-04-09 11:57:31 +09:00]] 版)
<https://github.com/w3c/csswg-drafts/commit/93f2718a87d3875d659bc2965f59f0b3f20832b3>
[129] [CITE@en[Re: webappsec-ACTION-216: Examine fetch refs for stability]]
([[Anne van Kesteren]] 著, [TIME[2016-04-21 15:42:49 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webappsec/2016Apr/0037.html>
[131] [CITE@en[Re: webappsec-ACTION-216: Examine fetch refs for stability]] ([[Wendy Seltzer]] 著, [TIME[2016-04-22 02:04:02 +09:00]] 版) <https://lists.w3.org/Archives/Public/public-webappsec/2016Apr/0040.html>
[133] [CITE@en[Where is the spec? · Issue #481 · w3c/webcomponents]]
([TIME[2016-04-26 18:31:23 +09:00]] 版)
<https://github.com/w3c/webcomponents/issues/481>
[134] [CITE@en[New Web Components editor]]
([[Léonie Watson]] 著, [TIME[2016-04-27 03:00:20 +09:00]] 版)
<https://lists.w3.org/Archives/Public/public-webapps/2016AprJun/0068.html>
[135] [CITE@en[Integrate with HTML, part 1 of n by domenic · Pull Request #42 · w3c/webappsec-referrer-policy]]
( ([TIME[2016-05-03 13:45:28 +09:00]]))
<https://github.com/w3c/webappsec-referrer-policy/pull/42>
[136] [CITE@en[Re: webappsec-ACTION-216: Examine fetch refs for stability]]
( ([[Wendy Seltzer]]著, [TIME[2016-05-03 06:54:55 +09:00]]))
<https://lists.w3.org/Archives/Public/public-webappsec/2016May/0002.html>
[137] [CITE@en[Figure out how to manage normative dependencies to WHATWG HTML for features not in W3C HTML for CR/REC · Issue #9 · w3c/webappsec-secure-contexts]]
( ([TIME[2016-05-04 00:52:23 +09:00]]))
<https://github.com/w3c/webappsec-secure-contexts/issues/9>
[138] [CITE@en[Integrate with HTML, part 1 of n by domenic · Pull Request #42 · w3c/webappsec-referrer-policy]]
( ([TIME[2016-05-05 13:10:49 +09:00]]))
<https://github.com/w3c/webappsec-referrer-policy/pull/42>
[139] [CITE@en[Redirect on preflighted CORS requests generally impossible · Issue #204 · whatwg/fetch]]
( ([TIME[2016-05-25 13:13:51 +09:00]]))
<https://github.com/whatwg/fetch/issues/204#issuecomment-184257430>
[140] [CITE@en[Web Application Security Working Group F2F -- 17 May 2016]]
( ([TIME[2016-05-18 09:49:47 +09:00]]))
<https://www.w3.org/2016/05/17-webappsec-minutes.html>
[FIG(quote)[
[FIGCAPTION[
[141] [CITE@en[standards-track/bp.md at master · w3c/standards-track]]
( ([TIME[2016-06-15 12:18:52 +09:00]]))
<https://github.com/w3c/standards-track/blob/master/bp.md>
]FIGCAPTION]
> The practices proposed in this document are intended to address some specific problems:
> W3C wastes resources, and at worst tarnishes its credibility, when it invests in standardization efforts that end up going nowhere
]FIG]
[142] [CITE@en['''['''e''']''' (0) Remove some examples that use HTML5 features from the W3C cop…]]
( ([[Hixie]]著, [TIME[2010-01-11 20:18:13 +09:00]]))
<https://github.com/whatwg/html/commit/15459330f52a7633d964ef23f4c35ff5f4330dba>
[143] [CITE@en[RE: Quick update on WebIDL "Level 1"]]
([[Marcos Caceres]]著, [TIME[2016-07-10 23:35:49 +09:00]])
<https://lists.w3.org/Archives/Public/public-webapps/2016JulSep/0007.html>
[144] [CITE@en[Clarify usage of various terms from other documents.]]
([[mikewest]]著, [TIME[2016-07-15 16:47:19 +09:00]])
<https://github.com/w3c/webappsec-secure-contexts/commit/64a540b24dddf3accd1dbc7c683d8c3ce8d88ddb>
[145] [CITE@en[EventListenerOptions and passive event listeners - move to WICG? - APIs - WICG]]
([TIME[2016-07-27 11:54:38 +09:00]])
<https://discourse.wicg.io/t/eventlisteneroptions-and-passive-event-listeners-move-to-wicg/1386/9>
[146] [CITE[W3C Proposed Recommendation: longdesc]]
([TIME[2015-01-27 00:10:13 +09:00]])
<https://lists.mozilla.org/pipermail/dev-platform/2015-January/008233.html>
[FIG(quote)[
[FIGCAPTION[
[147] [CITE@en[XML Core Working Group and XML Processing Model Working Group are now Closed]]
([[Xueyuan Jia]]著, [TIME[2016-08-01 21:55:30 +09:00]])
<https://lists.w3.org/Archives/Public/public-xml-core-wg/2016Aug/0000.html>
]FIGCAPTION]
> The W3C staff will continue to accept errata for the XML Core
> Recommendations and may request assistance with the processing of
> submitted errata. We may publish Proposed Edited Recommendations for
> editorial changes that require no technical review '''['''6''']'''.
]FIG]
[148] [CITE@en[W3C Process 2016]]
([[Jeff Jaffe]]著, [TIME[2016-08-04 04:28:37 +09:00]])
<https://lists.w3.org/Archives/Public/public-w3process/2016Aug/0017.html>
[149] [CITE@en[The fetch step in HTML5.1's resource fetch algorithm no longer exists · Issue #99 · w3c/media-source]]
([TIME[2016-08-18 14:01:13 +09:00]])
<https://github.com/w3c/media-source/issues/99>
[150] [CITE@en[CFC to migrate to the Web Platform WG · Issue #49 · WICG/EventListenerOptions]]
([TIME[2016-08-20 23:51:07 +09:00]])
<https://github.com/WICG/EventListenerOptions/issues/49>
[151] [CITE@en[This recommendation should be definitely corected relative to the current specification of WHATWG · Issue #3 · w3c/dom]]
([TIME[2016-08-20 23:51:19 +09:00]])
<https://github.com/w3c/dom/issues/3>
[FIG(quote)[
[FIGCAPTION[
[152] [CITE@en[Unclear conformance of attributes on <table> element · Issue #582 · w3c/html]]
([TIME[2016-09-12 10:50:33 +09:00]])
<https://github.com/w3c/html/issues/582#issuecomment-246063709>
]FIGCAPTION]
> With HTML5.1 in PR, we don't want to make any substantive changes... of course, we do hope to continue editing and publishing HTML, so the updates in the 5.2 editor's draft will eventually replace 5.1, so it's not the end of the world if we miss this...
]FIG]
[153] [[PR]] だから [[HTML 5.1]] は変更したくないが [[HTML 5.2]] があるから問題ない、と。
[[HTML 5.1]] は[[バグ修正]]より手続き優先で、[[W3C勧告]]に進めることだけが目的の捨て[[仕様書]]なんですね...
[FIG(quote)[
[FIGCAPTION[
[154] [CITE@en[Re: '''['''css22''']''' History]]
([[Tab Atkins Jr.]]著, [TIME[2016-09-13 09:38:50 +09:00]])
<https://lists.w3.org/Archives/Public/www-style/2016Sep/0033.html>
]FIGCAPTION]
> 2.1 is a Rec, so it's easier to publish a
> new version than to update the Rec.
]FIG]
[155] [CITE@en[CR comments from @plehegar.]]
([[@plehegar]]著, [TIME[2016-09-15 17:00:47 +09:00]])
<https://github.com/w3c/webappsec-secure-contexts/commit/480483f79b8cf85b5a64d63b77a80126f903f2af>
[FIG(quote)[
[FIGCAPTION[
[156] [CITE@en[CR comments from @plehegar.]]
([[@plehegar]]著, [TIME[2016-09-15 17:00:47 +09:00]])
<https://github.com/w3c/webappsec-secure-contexts/commit/480483f79b8cf85b5a64d63b77a80126f903f2af>
]FIGCAPTION]
>
[PRE(diff html code)[
<dt id="biblio-whatwg-url">'''['''WHATWG-URL''']'''
- <dd>Anne van Kesteren. <a href="https://url.spec.whatwg.org/">URL Standard</a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a>
+ <dd>
+ Anne van Kesteren. <a href="https://url.spec.whatwg.org/">URL Standard</a>. Living Standard. URL: <a href="https://url.spec.whatwg.org/">https://url.spec.whatwg.org/</a>
+ <p class="note" role="note">Note: URLs can be used in numerous different manners, in many differing contexts. For the purpose of producing strict URLs one may wish to consider <a data-link-type="biblio" href="#biblio-rfc3986">'''['''RFC3986''']'''</a> and <a data-link-type="biblio" href="#biblio-rfc3987">'''['''RFC3987''']'''</a>.</p>
+ </dd>
]PRE]
]FIG]
[157] [[W3C]] は未だに [[URL Standard]] を否定しているのか(驚愕)
[FIG(quote)[
[FIGCAPTION[
[158] [CITE[Steven Pemberton]]
([TIME[2016-09-26 03:21:58 +09:00]])
<http://homepages.cwi.nl/~steven/>
]FIGCAPTION]
> XForms 1.0 is a W3C recommendation; it was the most implementated W3C specification at time of going to recommendation ever!
]FIG]
[159] [CITE@en['''['''css-transitions-2''']''' Remove new transition events from level 2 now tha…]]
([[birtles]]著, [TIME[2016-10-13 10:12:40 +09:00]])
<https://github.com/w3c/csswg-drafts/commit/f09d150dcc952bffdc3476ad2a4ace1b30613ef8>
[160] [CITE@en['''['''Fwd: '''['''wbs''']''' response to 'Call for Review: HTML 5.1 is W3C Proposed Recommendation'''']''']]
([[L. David Baron]]著, [TIME[2016-10-14 13:03:38 +09:00]])
<https://lists.w3.org/Archives/Public/www-archive/2016Oct/0003.html>
[161] [CITE@en[Upstream Shadow DOM spec to DOM/HTML Standard · Issue #377 · w3c/webcomponents]]
([TIME[2016-11-11 15:05:11 +09:00]])
<https://github.com/w3c/webcomponents/issues/377>
[162] [CITE@en[Upstream the `integrity` attribute to HTML. · Issue #31 · w3c/webappsec-subresource-integrity]]
([TIME[2016-11-15 00:02:05 +09:00]])
<https://github.com/w3c/webappsec-subresource-integrity/issues/31>
[FIG(quote)[
[FIGCAPTION[
[163] [CITE@en[High resolution timing for events · Issue #23 · whatwg/dom]]
([TIME[2016-11-15 00:41:43 +09:00]])
<https://github.com/whatwg/dom/issues/23>
]FIGCAPTION]
> A couple Edge perf folks said they would look into changing Edge for this (but aren't able to comment on this issue since it's in the WHATWG)
]FIG]
[164] [CITE@en[Attr and NamedNodeMap in DOM4 are inconsistent · Issue #4 · w3c/dom]]
([TIME[2016-11-25 11:19:09 +09:00]])
<https://github.com/w3c/dom/issues/4>
[165] [CITE@en[Incorrect URL to a DTD for the named entity declarations · Issue #731 · w3c/html]]
([TIME[2016-11-30 23:07:51 +09:00]])
<https://github.com/w3c/html/issues/731>
[166] たしかに [CODE[404]] だな。昔は [[W3C]] の出版時のチェック項目に[[リンク切れ]]検査があった気がするけど、今はやってないんだろうか。
[[WD]] ならともかく [[REC]] なのに[[規定]]の一部を構成するファイルが [CODE[404]]
とか大丈夫なのか?
[167] [CITE@en[Google's incubation-first standards process]]
([[Rick Byers]]著, [TIME[2016-12-02 03:56:40 +09:00]])
<https://lists.w3.org/Archives/Public/www-style/2016Dec/0011.html>
[168] [CITE@en['''['''CSS2''']''' Proposed process for maintaining CSS2]]
([[fantasai]]著, [TIME[2016-12-02 10:26:52 +09:00]])
<https://lists.w3.org/Archives/Public/www-style/2016Dec/0015.html>
[169] >>168 ものすごく複雑に見えるけど、新機能はもちろん含まれないし[[相互運用性]]にも何一つ貢献しそうになくて、
[[W3C Process]] を通すことだけしか目的になさそうなのがやばい。
[170] [CITE@en[Send HTMLIFrameElement.allowPaymentRequest to HTML spec · Issue #311 · w3c/browser-payment-api]]
([TIME[2016-12-08 18:52:30 +09:00]])
<https://github.com/w3c/browser-payment-api/issues/311>
[FIG(quote)[
[FIGCAPTION[
[171] [CITE@en[WebIDL Level 1]]
([TIME[2016-12-15 05:09:27 +09:00]])
<https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/>
]FIGCAPTION]
> This is the "Level 1" Version of WebIDL, it contains parts of the main Editor's copy '''['''WEBIDL''']''' that are considered stable, implemented and tested. Implementors who do not need to reference a stable version of WebIDL should defer to the Editor's copy '''['''WEBIDL''']''' only, as it may contain updated algorithm and definitions; this specification is suitable for reference by other specification authors in so far as it wholly contains the syntax definitions used in the citing document. New syntax definitions will be added in the next Level of WebIDL.
]FIG]
[172] [CITE@en[HTML 4 system identifiers are accidentally non-conforming in HTML 5.1 · Issue #754 · w3c/html]]
([TIME[2016-12-16 17:43:26 +09:00]])
<https://github.com/w3c/html/issues/754>
[173] こんな重大なミスに誰も気づかないまま [[REC]] になるとか・・・
[174] [CITE@en[Migrate HTML 5.0 references to HTML 5.1? · Issue #396 · w3c/presentation-api]]
([TIME[2016-12-20 13:13:20 +09:00]])
<https://github.com/w3c/presentation-api/issues/396>
[175] [CITE@en[Check references category and stability · Issue #295 · w3c/presentation-api]]
([TIME[2016-12-20 13:14:11 +09:00]])
<https://github.com/w3c/presentation-api/issues/295>
[FIG(quote)[
[FIGCAPTION[
[176] [CITE@en[WG Outlook]]
([[Arnaud Le Hors]]著, [TIME[2016-12-10 06:32:15 +09:00]])
<https://lists.w3.org/Archives/Public/public-data-shapes-wg/2016Dec/0045.html>
]FIGCAPTION]
> I recently took the action to check with
> the W3C Management (W3M) and I want to share with you all what I learned.
> Unfortunately my doubts about the possibility of getting our WG extended
> were confirmed. The W3C Advisory Board (AB) and membership in general has
> requested that W3M no longer just extend WGs on their own accord but
> instead submit WG extensions to the Advisory Committee (AC) - full
> membership - for review, just like when a WG is initially launched. This
> is a heavy process which requires explaining how a few additional months
> will make a difference and without a vibrant set of members supporting the
> request this isn't going to happen. So, the bottom line is that we cannot
> count on an extension.
]FIG]
[177] [CITE@en['''['''css-style-attr''']''' s/draft/module/ per <https://lists.w3.org/Archives/P…]]
([[fantasai]]著, [TIME[2016-12-27 21:55:15 +09:00]])
<https://github.com/w3c/csswg-drafts/commit/f7dea62816460c4e84461e6ab880b8e51879eebf>
[178] [CITE@en[Re: '''['''css-style-attr''']''' About word "draft"]]
([[fantasai]]著, [TIME[2016-12-27 22:01:00 +09:00]])
<https://lists.w3.org/Archives/Public/www-style/2016Dec/0117.html>
[FIG(quote)[
[FIGCAPTION[
[179] [CITE@en[Add ShadowDOM support from WHATWG-DOM · Issue #13 · w3c/dom]]
([TIME[2017-01-02 11:41:19 +09:00]])
<https://github.com/w3c/dom/issues/13>
]FIGCAPTION]
> If W3C DOM is updated to match implementations (and kept up-to-date) on things like this, then we could reference DOM4 instead of WHATWG-DOM.
]FIG]
[180] [CITE@en[Spec references both W3C DOM4 and WHATWG-DOM · Issue #160 · w3c/pointerevents]]
([TIME[2017-01-02 11:42:09 +09:00]])
<https://github.com/w3c/pointerevents/issues/160>
[181] [[RDFa]] の[[初期文脈]]の改訂は、 [[勧告過程]]を経ることなく行われるようです。
どの版の[[初期文脈]]を実装するかに依って、非互換性が生じることになりますが、
[[W3C勧告]]ほど大々的な告知は行われていません。
[217] そういえば [[WHATWG]] [[Living Standard]] は内容が変わっていくから引用できないだとかなんだとか大騒ぎしているのに、
この[[初期文脈]]みたいなのが許されるのはどういう理論なのでしょうか。
置いてある場所が [[W3C]] の[[Webサーバー]]だからセーフとか?
[183] [CITE@en[Issue #396: Migrate HTML 5.0 references to HTML 5.1 by tidoust · Pull Request #404 · w3c/presentation-api]]
([TIME[2017-01-12 00:24:33 +09:00]])
<https://github.com/w3c/presentation-api/pull/404>
[FIG(quote)[
[FIGCAPTION[
[185] [CITE@en[URL]]
([TIME[2016-12-05 23:04:35 +09:00]])
<https://www.w3.org/TR/2016/NOTE-url-1-20161206/>
]FIGCAPTION]
> Note:URLs can be used in numerous different manners, in many differing contexts. For the purpose of producing strict URLs one may wish to consider '''['''RFC3986''']''' '''['''RFC3987''']'''. The W3C URL specification was aimed to define the term URL, various algorithms for dealing with URLs, and an API for constructing, parsing, and resolving URLs.
> Work on this document has been discontinued and it should not be referenced or used as a basis for implementation. Please refer to the URL Continually Updated Specification for the latest available specification of this API.
]FIG]
[186] 素直に間違いでしたと言わずに謎の釈明と現実に乖離した [[RFC 3986]]、[[RFC 3987]]
への誘導を続けるのはどうかと思いますが、ようやく正式に [[W3C]] が [[URL]]
の開発を止めると明確に表明したのは良いニュースです。
しかし「the URL Continually Updated Specification」 (リンク先は [CITE[URL Standard]])
なる意味不明な造語は誰のどういう意図を反映しているのでしょうか。
[FIG(quote)[
[FIGCAPTION[
[184] [CITE@en[Webmention]] ([TIME[2017-01-11 04:59:53 +09:00]]) <https://www.w3.org/TR/2017/REC-webmention-20170112/>
]FIGCAPTION]
>
[NOTE[
Note: URLs can be used in numerous different manners, in many differing contexts. For the purpose of producing strict URLs one may wish to consider [RFC3986] and [RFC3987]. The URL specification defines the term URL, various algorithms for dealing with URLs, and an API for constructing, parsing, and resolving URLs. Developers are advised to keep abreast of the latest URL developments by tracking the progress of https://url.spec.whatwg.org/.
As a word of caution, there are notable differences in the manner in which Web browsers and other software stacks outside the HTML context handle URLs. While no changes would be accepted to URL processing that would break existing Web content, some important parts of URL processing should therefore be considered as implementation-defined (e.g. parsing file: URLs or operating on URLs that would be syntax errors under the [RFC3986] [RFC3987] syntax).
]NOTE]
> Anne van Kesteren. WHATWG. URL Standard. Continually Updated Specification. URL: https://url.spec.whatwg.org/
]FIG]