-
Notifications
You must be signed in to change notification settings - Fork 40
/
db.json
723 lines (723 loc) · 20.1 KB
/
db.json
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
{
"workstreams": [
{
"id": "compat",
"name": "Compatibility",
"scope": "CSS properties and DOM APIs that web browsers need to support for compatibility with the de facto web.",
"editors": [
{
"name": "Mike Taylor",
"email": "miketaylr@google.com"
}
],
"standards": [
{
"name": "Compatibility",
"href": "https://compat.spec.whatwg.org/",
"description": "The Compatibility Standard describes a collection of non-standard (and often vendor-prefixed) CSS properties and DOM APIs that web browsers need to support for compatibility with the de facto web.",
"authors": [
{
"name": "Mike Taylor",
"email": "miketaylr@google.com"
}
],
"reference": "COMPAT",
"review_draft_schedule": [
6,
12
],
"twitter": "compatstandard"
}
]
},
{
"id": "console",
"name": "Console",
"scope": "APIs for console debugging facilities.",
"editors": [
{
"name": "Dominic Farolino",
"email": "domfarolino@gmail.com"
},
{
"name": "Robert Kowalski",
"email": "rok@kowalski.gd"
},
{
"name": "Terin Stock",
"email": "terin@terinstock.com"
}
],
"standards": [
{
"name": "Console",
"href": "https://console.spec.whatwg.org/",
"description": "The Console Standard defines APIs for console debugging facilities.",
"authors": [
{
"name": "Dominic Farolino",
"email": "domfarolino@gmail.com"
},
{
"name": "Robert Kowalski",
"email": "rok@kowalski.gd"
},
{
"name": "Terin Stock",
"email": "terin@terinstock.com"
}
],
"reference": "CONSOLE",
"review_draft_schedule": [
6,
12
],
"twitter": "consolelog"
}
]
},
{
"id": "dom",
"name": "DOM",
"scope": "The web's model for events, aborting activities, and node trees.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "DOM",
"href": "https://dom.spec.whatwg.org/",
"description": "The DOM Standard defines the core infrastructure used to define the web.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "DOM",
"review_draft_schedule": [
6,
12
],
"twitter": "thedomstandard"
}
]
},
{
"id": "encoding",
"name": "Encoding",
"scope": "Character encodings on the web, and their JavaScript API.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "Encoding",
"href": "https://encoding.spec.whatwg.org/",
"description": "The Encoding Standard defines how character encodings work on the web.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "ENCODING",
"review_draft_schedule": [
6,
12
],
"twitter": "encodings"
}
]
},
{
"id": "fetch",
"name": "Fetch",
"scope": "The networking model for resource retrieval on the web.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "Fetch",
"href": "https://fetch.spec.whatwg.org/",
"description": "The Fetch Standard defines the networking model for resource retrieval on the web.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "FETCH",
"review_draft_schedule": [
6,
12
],
"twitter": "fetchstandard"
}
]
},
{
"id": "fullscreen",
"name": "Fullscreen API",
"scope": "An API for web pages to take over a user's entire screen.",
"editors": [
{
"name": "Philip Jägenstedt",
"email": "philip@foolip.org"
}
],
"standards": [
{
"name": "Fullscreen API",
"href": "https://fullscreen.spec.whatwg.org/",
"description": "The Fullscreen API Standard defines how web pages can take over a user's entire screen (at the user's request), e.g., for gaming or to watch a video.",
"authors": [
{
"name": "Philip Jägenstedt",
"email": "philip@foolip.org"
}
],
"reference": "FULLSCREEN",
"review_draft_schedule": [
1,
7
],
"twitter": "fullscreenapi"
}
]
},
{
"id": "html",
"name": "HTML",
"scope": "A kitchen sink full of technologies for the web, including the core markup language for the web, HTML, as well as numerous APIs like Web Sockets, Web Workers, `localStorage`, etc.",
"editors": [
{
"name": "Domenic Denicola",
"email": "d@domenic.me"
}
],
"standards": [
{
"name": "HTML",
"href": "https://html.spec.whatwg.org/multipage/",
"description": "The HTML Standard is a kitchen sink full of technologies for the web. It includes the core markup language for the web, HTML, as well as numerous APIs like Web Workers, `localStorage`, etc.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
},
{
"name": "Domenic Denicola",
"email": "d@domenic.me"
},
{
"name": "Dominic Farolino",
"email": "domfarolino@gmail.com"
},
{
"name": "Ian Hickson",
"email": "ian@hixie.ch"
},
{
"name": "Philip Jägenstedt",
"email": "philip@foolip.org"
},
{
"name": "Simon Pieters",
"email": "zcorpan@gmail.com"
}
],
"reference": "HTML",
"review_draft_schedule": [
1,
7
],
"twitter": "htmlstandard"
},
{
"name": "WebSockets",
"href": "https://websockets.spec.whatwg.org/",
"description": "The WebSockets Standard provides APIs to enable web applications to maintain bidirectional communications with server-side processes.",
"authors": [
{
"name": "Adam Rice",
"email": "ricea@chromium.org"
}
],
"reference": "WEBSOCKETS",
"review_draft_schedule": [
3,
9
],
"twitter": "whatsockets"
}
]
},
{
"id": "infra",
"name": "Infra",
"scope": "The fundamental concepts upon which standards are built.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "Infra",
"href": "https://infra.spec.whatwg.org/",
"description": "The Infra Standard aims to define the fundamental concepts upon which standards are built.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
},
{
"name": "Domenic Denicola",
"email": "d@domenic.me"
}
],
"reference": "INFRA",
"review_draft_schedule": [
1,
7
],
"twitter": "infrastandard"
}
]
},
{
"id": "mimesniff",
"name": "MIME Sniffing",
"scope": "Algorithms used to determine the type of resources.",
"editors": [
{
"name": "Gordon P. Hemsley",
"email": "me@gphemsley.org"
}
],
"standards": [
{
"name": "MIME Sniffing",
"href": "https://mimesniff.spec.whatwg.org/",
"description": "The MIME Sniffing Standard defines algorithms used to determine the type of resources.",
"authors": [
{
"name": "Gordon P. Hemsley",
"email": "me@gphemsley.org"
}
],
"reference": "MIMESNIFF",
"review_draft_schedule": [
1,
7
],
"twitter": "mimesniff"
}
]
},
{
"id": "notifications",
"name": "Notifications API",
"scope": "An API to display notifications to alert users outside the context of a web page.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "Notifications API",
"href": "https://notifications.spec.whatwg.org/",
"description": "The Notifications API Standard provides an API to display notifications to alert users outside the context of a web page.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "NOTIFICATIONS",
"review_draft_schedule": [
1,
7
],
"twitter": "notifyapi"
}
]
},
{
"id": "quirks",
"name": "Quirks Mode",
"scope": "Quirks in CSS and Selectors that are necessary to support for web browsers for compatibility with the web.",
"editors": [
{
"name": "Simon Pieters",
"email": "zcorpan@gmail.com"
}
],
"standards": [
{
"name": "Quirks Mode",
"href": "https://quirks.spec.whatwg.org/",
"description": "The Quirks Mode Standard describes behaviours in CSS and Selectors that are not yet defined in the relevant specifications but that are nonetheless widely implemented.",
"authors": [
{
"name": "Simon Pieters",
"email": "zcorpan@gmail.com"
}
],
"reference": "QUIRKS",
"review_draft_schedule": [
2,
8
],
"twitter": "quirksstandard"
}
]
},
{
"id": "storage",
"name": "Storage",
"scope": "APIs for persistent storage and quota estimates, as well as the web platform storage architecture.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "File System",
"href": "https://fs.spec.whatwg.org/",
"description": "The File System Standard defines infrastructure and an API for file systems.",
"authors": [
{
"name": "Austin Sullivan",
"email": "asully@chromium.org"
}
],
"reference": "FS",
"review_draft_schedule": [
3,
9
],
"twitter": "whatfilesystem"
},
{
"name": "Storage",
"href": "https://storage.spec.whatwg.org/",
"description": "The Storage Standard defines an API for persistent storage and quota estimates, as well as the platform storage architecture.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "STORAGE",
"review_draft_schedule": [
2,
8
],
"twitter": "storagestandard"
}
]
},
{
"id": "streams",
"name": "Streams",
"scope": "Web APIs for creating, composing, and consuming streams of data that map efficiently to low-level I/O primitives.",
"editors": [
{
"name": "Domenic Denicola",
"email": "d@domenic.me"
}
],
"standards": [
{
"name": "Compression",
"href": "https://compression.spec.whatwg.org/",
"description": "The Compression Standard provides APIs for compressing and decompressing bytes using a set of the most common compression algorithms.",
"authors": [
{
"name": "Adam Rice",
"email": "ricea@chromium.org"
}
],
"reference": "COMPRESSION",
"review_draft_schedule": [
4,
10
],
"twitter": "compressionapi"
},
{
"name": "Streams",
"href": "https://streams.spec.whatwg.org/",
"description": "The Streams Standard provides APIs for creating, composing, and consuming streams of data that map efficiently to low-level I/O primitives.",
"authors": [
{
"name": "Adam Rice",
"email": "ricea@chromium.org"
},
{
"name": "Domenic Denicola",
"email": "d@domenic.me"
},
{
"name": "Mattias Buelens",
"email": "mattias@buelens.com"
},
{
"name": "吉野剛史 (Takeshi Yoshino)",
"email": "tyoshino@chromium.org"
}
],
"reference": "STREAMS",
"review_draft_schedule": [
2,
8
],
"twitter": "streamsstandard"
}
]
},
{
"id": "testutils",
"name": "Test Utils",
"scope": "Internal APIs for automating testing of web platform features implemented in web browsers, e.g., to trigger JavaScript garbage collection.",
"editors": [
{
"name": "James Graham",
"email": "james@hoppipolla.co.uk"
}
],
"standards": [
{
"name": "Test Utils",
"href": "https://testutils.spec.whatwg.org/",
"description": "The Test Utils Standard defines internal APIs for automating testing of web platform features implemented in web browsers.",
"authors": [
{
"name": "James Graham",
"email": "james@hoppipolla.co.uk"
}
],
"reference": "TESTUTILS",
"review_draft_schedule": [
3,
9
],
"twitter": "testutils"
}
]
},
{
"id": "url",
"name": "URL",
"scope": "URLs, their infrastructure, and their API.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "URL",
"href": "https://url.spec.whatwg.org/",
"description": "The URL Standard defines the infrastructure around URLs on the web.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "URL",
"review_draft_schedule": [
2,
8
],
"twitter": "urlstandard"
},
{
"name": "URL Pattern",
"href": "https://urlpattern.spec.whatwg.org/",
"description": "The URL Pattern Standard provides a web platform primitive for matching URLs based on a convenient pattern syntax.",
"authors": [
{
"name": "Ben Kelly",
"email": "wanderview@chromium.org"
},
{
"name": "Jeremy Roman",
"email": "jbroman@chromium.org"
},
{
"name": "宍戸俊哉 (Shunya Shishido)",
"email": "sisidovski@chromium.org"
}
],
"reference": "URLPATTERN",
"review_draft_schedule": [
3,
9
],
"twitter": "urlpatterns"
}
]
},
{
"id": "webidl",
"name": "Web IDL",
"scope": "A syntax for specifications to use to define web APIs and the translation of that syntax into web browser programming languages such as JavaScript.",
"editors": [
{
"name": "Edgar Chen",
"email": "echen@mozilla.com"
},
{
"name": "Timothy Gu",
"email": "timothygu99@gmail.com"
}
],
"standards": [
{
"name": "Web IDL",
"href": "https://webidl.spec.whatwg.org/",
"description": "The Web IDL Standard defines an interface definition language, Web IDL, that can be used to describe interfaces that are intended to be implemented in web browsers.",
"authors": [
{
"name": "Edgar Chen",
"email": "echen@mozilla.com"
},
{
"name": "Timothy Gu",
"email": "timothygu99@gmail.com"
}
],
"reference": "WEBIDL",
"review_draft_schedule": [
3,
9
],
"twitter": "webidl"
}
]
},
{
"id": "xhr",
"name": "XMLHttpRequest",
"scope": "A client-side networking API for transferring data between a web page and a server.",
"editors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"standards": [
{
"name": "XMLHttpRequest",
"href": "https://xhr.spec.whatwg.org/",
"description": "The XMLHttpRequest Standard defines the networking API exposed to scripts on the web.",
"authors": [
{
"name": "Anne van Kesteren",
"email": "annevk@annevk.nl"
}
],
"reference": "XHR",
"review_draft_schedule": [
2,
8
],
"twitter": "xhrstandard"
}
]
}
],
"ideas": [
{
"name": "CSS Books",
"href": "https://books.idea.whatwg.org/",
"description": "CSS Books defines CSS features for book publishing and high-quality printing of web pages.",
"authors": [
{
"name": "Håkon Wium Lie",
"email": null
}
],
"reference": "BOOKS"
},
{
"name": "CSS Figures",
"href": "https://figures.idea.whatwg.org/",
"description": "CSS Figures defines CSS features for floating elements around pages and columns.",
"authors": [
{
"name": "Håkon Wium Lie",
"email": null
}
],
"reference": "FIGURES"
}
],
"biblio": [
{
"title": "DOM Parsing and Serialization Standard",
"href": "https://domparsing.spec.whatwg.org/",
"authors": [
{
"name": "Ms2ger",
"email": null
}
],
"reference": "DOMPARSING",
"obsoletedBy": [
"DOM-Parsing"
]
},
{
"title": "Differences from HTML4",
"href": "https://html-differences.whatwg.org/",
"authors": [
{
"name": "Simon Pieters",
"email": null
}
],
"reference": "DIFFERENCES"
},
{
"title": "JavaScript, a.k.a. Web ECMAScript",
"href": "https://javascript.spec.whatwg.org/",
"authors": [
{
"name": "Mathias Bynens",
"email": null
}
],
"reference": "JAVASCRIPT",
"obsoletedBy": [
"ECMASCRIPT"
]
},
{
"title": "Loader",
"href": "https://whatwg.github.io/loader/",
"authors": [],
"reference": "LOADER"
}
]
}