browser-specs 3.36.0 → 3.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/index.json +2115 -438
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ cross-references, WebIDL, quality, etc.
|
|
|
18
18
|
- [`title`](#title)
|
|
19
19
|
- [`shortTitle`](#shorttitle)
|
|
20
20
|
- [`categories`](#categories)
|
|
21
|
+
- [`standing`](#standing)
|
|
21
22
|
- [`series`](#series)
|
|
22
23
|
- [`series.shortname`](#seriesshortname)
|
|
23
24
|
- [`series.currentSpecification`](#seriescurrentspecification)
|
|
@@ -35,10 +36,12 @@ cross-references, WebIDL, quality, etc.
|
|
|
35
36
|
- [`groups`](#groups)
|
|
36
37
|
- [`release`](#release)
|
|
37
38
|
- [`release.url`](#releaseurl)
|
|
39
|
+
- [`release.status`](#releasestatus)
|
|
38
40
|
- [`release.filename`](#releasefilename)
|
|
39
41
|
- [`release.pages`](#releasepages)
|
|
40
42
|
- [`nightly`](#nightly)
|
|
41
43
|
- [`nightly.url`](#nightlyurl)
|
|
44
|
+
- [`nightly.status`](#nightlystatus)
|
|
42
45
|
- [`nightly.alternateUrls`](#nightlyalternateurls)
|
|
43
46
|
- [`nightly.filename`](#nightlyfilename)
|
|
44
47
|
- [`nightly.pages`](#nightlypages)
|
|
@@ -184,6 +187,27 @@ the specs in the `web-specs` package. Value always contains `"browser"` for
|
|
|
184
187
|
specs in the `browser-specs` package.
|
|
185
188
|
|
|
186
189
|
|
|
190
|
+
### `standing`
|
|
191
|
+
|
|
192
|
+
A rough approximation of whether the spec is in good standing, meaning that,
|
|
193
|
+
regardless of its current status, it should be regarded as a spec that gets some
|
|
194
|
+
love from targeted implementers and as a spec that has some well-defined scope,
|
|
195
|
+
whether the spec has not yet matured enough or should only be viewed as a
|
|
196
|
+
collection of interesting ideas for now, or whether development of the spec has
|
|
197
|
+
been discontinued.
|
|
198
|
+
|
|
199
|
+
Specs for which the status is "Unofficial Proposal Draft" or "A Collection of
|
|
200
|
+
Interesting Ideas" typically have a standing set to `"pending"` (but there may
|
|
201
|
+
be exceptions).
|
|
202
|
+
|
|
203
|
+
Specs whose status is "Discontinued Draft" typically have a standing set to
|
|
204
|
+
`"discontinued"`.
|
|
205
|
+
|
|
206
|
+
The `standing` property is always set. Value may either be `"good"`, `"pending"`
|
|
207
|
+
or `"discontinued"`. Value is always `"good"` for specs in the `browser-specs`
|
|
208
|
+
package.
|
|
209
|
+
|
|
210
|
+
|
|
187
211
|
### `series`
|
|
188
212
|
|
|
189
213
|
An object that describes the series that the spec is part of. A series includes
|
|
@@ -363,6 +387,16 @@ URL (see [`url`](#url)).
|
|
|
363
387
|
The `url` property is always set.
|
|
364
388
|
|
|
365
389
|
|
|
390
|
+
#### `release.status`
|
|
391
|
+
|
|
392
|
+
The status of the latest published snapshot of the spec. See
|
|
393
|
+
[Documents published at W3C](https://www.w3.org/standards/types) for possible
|
|
394
|
+
values, e.g. "Recommendation", "Candidate Recommendation Draft", "Draft
|
|
395
|
+
Registry" or "Working Draft".
|
|
396
|
+
|
|
397
|
+
The `status` property is always set.
|
|
398
|
+
|
|
399
|
+
|
|
366
400
|
#### `release.filename`
|
|
367
401
|
|
|
368
402
|
The filename of the resource that gets served when the default URL is fetched.
|
|
@@ -402,6 +436,16 @@ details the actual provenance.
|
|
|
402
436
|
The `url` property is always set.
|
|
403
437
|
|
|
404
438
|
|
|
439
|
+
#### `nightly.status`
|
|
440
|
+
|
|
441
|
+
The status of the nightly version of the spec. This is typically "Editor's
|
|
442
|
+
Draft" or "Living Standard", but can also be "Draft Community Group Report"
|
|
443
|
+
for Community Group drafts, "Unofficial Proposal Draft" for some unofficial
|
|
444
|
+
CSS specifications, "Internet Standard" for IETF specifications, etc.
|
|
445
|
+
|
|
446
|
+
The `status` property is always set.
|
|
447
|
+
|
|
448
|
+
|
|
405
449
|
#### `nightly.alternateUrls`
|
|
406
450
|
|
|
407
451
|
A list of alternate URLs for the Editor's Draft or the living standard.
|