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