web-specs 1.1.0 → 2.0.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 +34 -2
- package/index.json +170 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -28,6 +28,8 @@ cross-references, WebIDL, quality, etc.
|
|
|
28
28
|
- [`seriesComposition`](#seriescomposition)
|
|
29
29
|
- [`seriesPrevious`](#seriesprevious)
|
|
30
30
|
- [`seriesNext`](#seriesnext)
|
|
31
|
+
- [`forkOf`](#forkof)
|
|
32
|
+
- [`forks`](#forks)
|
|
31
33
|
- [`organization`](#organization)
|
|
32
34
|
- [`groups`](#groups)
|
|
33
35
|
- [`release`](#release)
|
|
@@ -138,6 +140,13 @@ For WHATWG specs, this is the shortname that appears at the beginning of the URL
|
|
|
138
140
|
(e.g. `compat` for `https://compat.spec.whatwg.org/`). For specs developed on
|
|
139
141
|
GitHub, this is usually the name of repository that holds the spec.
|
|
140
142
|
|
|
143
|
+
When the spec is a fork (see [`forkOf`](#forkof)) of a base spec, its shortname
|
|
144
|
+
will start with the shortname of the base spec completed by `-fork-` and the
|
|
145
|
+
actual shortname of the fork spec. For instance, given an exception handling
|
|
146
|
+
fork of the WebAssembly spec for which the raw shortname would be
|
|
147
|
+
`exception-handling`, the actual spec shortname will be
|
|
148
|
+
`wasm-js-api-1-fork-exception-handling`.
|
|
149
|
+
|
|
141
150
|
The `shortname` property is always set.
|
|
142
151
|
|
|
143
152
|
|
|
@@ -273,8 +282,9 @@ number.
|
|
|
273
282
|
|
|
274
283
|
### `seriesComposition`
|
|
275
284
|
|
|
276
|
-
Whether the spec is a standalone spec,
|
|
277
|
-
previous level or version in the series
|
|
285
|
+
Whether the spec is a standalone spec, whether it is a delta spec over the
|
|
286
|
+
previous level or version in the series, or whether it is a temporary fork of
|
|
287
|
+
another spec. Possible values are `full`, `delta`, or `fork`.
|
|
278
288
|
|
|
279
289
|
The `seriesComposition` property is always set.
|
|
280
290
|
|
|
@@ -294,6 +304,28 @@ The `shortname` of the next spec in the series.
|
|
|
294
304
|
The `seriesNext` property is only set where there is a next level or version.
|
|
295
305
|
|
|
296
306
|
|
|
307
|
+
### `forkOf`
|
|
308
|
+
|
|
309
|
+
The shortname of the spec that this spec is a fork of.
|
|
310
|
+
|
|
311
|
+
The `forkOf` property is only set when the spec is a fork of another one. The
|
|
312
|
+
[`seriesComposition`](#seriescomposition) property is always `"fork"` when the
|
|
313
|
+
`forkOf` property is set.
|
|
314
|
+
|
|
315
|
+
A forked specs is supposed to be temporary by nature. It will be removed from
|
|
316
|
+
the list as soon as it gets merged into the main spec, or as soon as it gets
|
|
317
|
+
abandoned.
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
### `forks`
|
|
321
|
+
|
|
322
|
+
An array that lists shortnames of known forks of the spec in the list.
|
|
323
|
+
|
|
324
|
+
The `forks` property is only set when there exists at least one fork of the
|
|
325
|
+
spec in the list, meaning when there is an entry in the list that has a
|
|
326
|
+
[`forkOf`](#forkof) property set to the spec's shortname.
|
|
327
|
+
|
|
328
|
+
|
|
297
329
|
### `organization`
|
|
298
330
|
|
|
299
331
|
The name of the standardization organization that owns the spec such as `W3C`,
|
package/index.json
CHANGED
|
@@ -979,7 +979,6 @@
|
|
|
979
979
|
"https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html",
|
|
980
980
|
"https://html.spec.whatwg.org/multipage/comms.html",
|
|
981
981
|
"https://html.spec.whatwg.org/multipage/server-sent-events.html",
|
|
982
|
-
"https://html.spec.whatwg.org/multipage/web-sockets.html",
|
|
983
982
|
"https://html.spec.whatwg.org/multipage/web-messaging.html",
|
|
984
983
|
"https://html.spec.whatwg.org/multipage/workers.html",
|
|
985
984
|
"https://html.spec.whatwg.org/multipage/worklets.html",
|
|
@@ -2976,6 +2975,40 @@
|
|
|
2976
2975
|
]
|
|
2977
2976
|
}
|
|
2978
2977
|
},
|
|
2978
|
+
{
|
|
2979
|
+
"url": "https://webassembly.github.io/exception-handling/js-api/",
|
|
2980
|
+
"seriesComposition": "fork",
|
|
2981
|
+
"shortname": "wasm-js-api-1-fork-exception-handling",
|
|
2982
|
+
"series": {
|
|
2983
|
+
"shortname": "wasm-js-api",
|
|
2984
|
+
"currentSpecification": "wasm-js-api-1",
|
|
2985
|
+
"title": "WebAssembly JavaScript Interface",
|
|
2986
|
+
"shortTitle": "WebAssembly JavaScript Interface",
|
|
2987
|
+
"releaseUrl": "https://www.w3.org/TR/wasm-js-api/",
|
|
2988
|
+
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
2989
|
+
},
|
|
2990
|
+
"seriesVersion": "1",
|
|
2991
|
+
"forkOf": "wasm-js-api-1",
|
|
2992
|
+
"organization": "W3C",
|
|
2993
|
+
"groups": [
|
|
2994
|
+
{
|
|
2995
|
+
"name": "WebAssembly Community Group",
|
|
2996
|
+
"url": "https://www.w3.org/community/webassembly/"
|
|
2997
|
+
}
|
|
2998
|
+
],
|
|
2999
|
+
"nightly": {
|
|
3000
|
+
"url": "https://webassembly.github.io/exception-handling/js-api/",
|
|
3001
|
+
"repository": "https://github.com/WebAssembly/exception-handling",
|
|
3002
|
+
"sourcePath": "document/js-api/index.bs",
|
|
3003
|
+
"filename": "index.html"
|
|
3004
|
+
},
|
|
3005
|
+
"title": "WebAssembly JavaScript Interface: Exception Handling",
|
|
3006
|
+
"source": "spec",
|
|
3007
|
+
"shortTitle": "WebAssembly JavaScript Interface: Exception Handling",
|
|
3008
|
+
"categories": [
|
|
3009
|
+
"browser"
|
|
3010
|
+
]
|
|
3011
|
+
},
|
|
2979
3012
|
{
|
|
2980
3013
|
"url": "https://webbluetoothcg.github.io/web-bluetooth/",
|
|
2981
3014
|
"seriesComposition": "full",
|
|
@@ -3050,6 +3083,37 @@
|
|
|
3050
3083
|
]
|
|
3051
3084
|
}
|
|
3052
3085
|
},
|
|
3086
|
+
{
|
|
3087
|
+
"url": "https://websockets.spec.whatwg.org/",
|
|
3088
|
+
"seriesComposition": "full",
|
|
3089
|
+
"shortname": "websockets",
|
|
3090
|
+
"series": {
|
|
3091
|
+
"shortname": "websockets",
|
|
3092
|
+
"currentSpecification": "websockets",
|
|
3093
|
+
"title": "WebSockets Standard",
|
|
3094
|
+
"shortTitle": "WebSockets",
|
|
3095
|
+
"nightlyUrl": "https://websockets.spec.whatwg.org/"
|
|
3096
|
+
},
|
|
3097
|
+
"organization": "WHATWG",
|
|
3098
|
+
"groups": [
|
|
3099
|
+
{
|
|
3100
|
+
"name": "HTML Workstream",
|
|
3101
|
+
"url": "https://websockets.spec.whatwg.org/"
|
|
3102
|
+
}
|
|
3103
|
+
],
|
|
3104
|
+
"nightly": {
|
|
3105
|
+
"url": "https://websockets.spec.whatwg.org/",
|
|
3106
|
+
"repository": "https://github.com/whatwg/websockets",
|
|
3107
|
+
"sourcePath": "index.bs",
|
|
3108
|
+
"filename": "index.html"
|
|
3109
|
+
},
|
|
3110
|
+
"title": "WebSockets Standard",
|
|
3111
|
+
"source": "specref",
|
|
3112
|
+
"shortTitle": "WebSockets",
|
|
3113
|
+
"categories": [
|
|
3114
|
+
"browser"
|
|
3115
|
+
]
|
|
3116
|
+
},
|
|
3053
3117
|
{
|
|
3054
3118
|
"url": "https://wicg.github.io/app-history/",
|
|
3055
3119
|
"seriesComposition": "full",
|
|
@@ -14132,6 +14196,108 @@
|
|
|
14132
14196
|
]
|
|
14133
14197
|
}
|
|
14134
14198
|
},
|
|
14199
|
+
{
|
|
14200
|
+
"url": "https://www.w3.org/TR/miniapp-lifecycle/",
|
|
14201
|
+
"seriesComposition": "full",
|
|
14202
|
+
"shortname": "miniapp-lifecycle",
|
|
14203
|
+
"series": {
|
|
14204
|
+
"shortname": "miniapp-lifecycle",
|
|
14205
|
+
"currentSpecification": "miniapp-lifecycle",
|
|
14206
|
+
"title": "MiniApp Lifecycle",
|
|
14207
|
+
"shortTitle": "MiniApp Lifecycle",
|
|
14208
|
+
"releaseUrl": "https://www.w3.org/TR/miniapp-lifecycle/",
|
|
14209
|
+
"nightlyUrl": "https://w3c.github.io/miniapp-lifecycle/"
|
|
14210
|
+
},
|
|
14211
|
+
"categories": [],
|
|
14212
|
+
"organization": "W3C",
|
|
14213
|
+
"groups": [
|
|
14214
|
+
{
|
|
14215
|
+
"name": "MiniApps Working Group",
|
|
14216
|
+
"url": "https://www.w3.org/2021/miniapps/"
|
|
14217
|
+
}
|
|
14218
|
+
],
|
|
14219
|
+
"release": {
|
|
14220
|
+
"url": "https://www.w3.org/TR/miniapp-lifecycle/",
|
|
14221
|
+
"filename": "Overview.html"
|
|
14222
|
+
},
|
|
14223
|
+
"nightly": {
|
|
14224
|
+
"url": "https://w3c.github.io/miniapp-lifecycle/",
|
|
14225
|
+
"repository": "https://github.com/w3c/miniapp-lifecycle",
|
|
14226
|
+
"sourcePath": "index.html",
|
|
14227
|
+
"filename": "index.html"
|
|
14228
|
+
},
|
|
14229
|
+
"title": "MiniApp Lifecycle",
|
|
14230
|
+
"source": "w3c",
|
|
14231
|
+
"shortTitle": "MiniApp Lifecycle"
|
|
14232
|
+
},
|
|
14233
|
+
{
|
|
14234
|
+
"url": "https://www.w3.org/TR/miniapp-manifest/",
|
|
14235
|
+
"seriesComposition": "full",
|
|
14236
|
+
"shortname": "miniapp-manifest",
|
|
14237
|
+
"series": {
|
|
14238
|
+
"shortname": "miniapp-manifest",
|
|
14239
|
+
"currentSpecification": "miniapp-manifest",
|
|
14240
|
+
"title": "MiniApp Manifest",
|
|
14241
|
+
"shortTitle": "MiniApp Manifest",
|
|
14242
|
+
"releaseUrl": "https://www.w3.org/TR/miniapp-manifest/",
|
|
14243
|
+
"nightlyUrl": "https://w3c.github.io/miniapp-manifest/"
|
|
14244
|
+
},
|
|
14245
|
+
"categories": [],
|
|
14246
|
+
"organization": "W3C",
|
|
14247
|
+
"groups": [
|
|
14248
|
+
{
|
|
14249
|
+
"name": "MiniApps Working Group",
|
|
14250
|
+
"url": "https://www.w3.org/2021/miniapps/"
|
|
14251
|
+
}
|
|
14252
|
+
],
|
|
14253
|
+
"release": {
|
|
14254
|
+
"url": "https://www.w3.org/TR/miniapp-manifest/",
|
|
14255
|
+
"filename": "Overview.html"
|
|
14256
|
+
},
|
|
14257
|
+
"nightly": {
|
|
14258
|
+
"url": "https://w3c.github.io/miniapp-manifest/",
|
|
14259
|
+
"repository": "https://github.com/w3c/miniapp-manifest",
|
|
14260
|
+
"sourcePath": "index.html",
|
|
14261
|
+
"filename": "index.html"
|
|
14262
|
+
},
|
|
14263
|
+
"title": "MiniApp Manifest",
|
|
14264
|
+
"source": "w3c",
|
|
14265
|
+
"shortTitle": "MiniApp Manifest"
|
|
14266
|
+
},
|
|
14267
|
+
{
|
|
14268
|
+
"url": "https://www.w3.org/TR/miniapp-packaging/",
|
|
14269
|
+
"seriesComposition": "full",
|
|
14270
|
+
"shortname": "miniapp-packaging",
|
|
14271
|
+
"series": {
|
|
14272
|
+
"shortname": "miniapp-packaging",
|
|
14273
|
+
"currentSpecification": "miniapp-packaging",
|
|
14274
|
+
"title": "MiniApp Packaging",
|
|
14275
|
+
"shortTitle": "MiniApp Packaging",
|
|
14276
|
+
"releaseUrl": "https://www.w3.org/TR/miniapp-packaging/",
|
|
14277
|
+
"nightlyUrl": "https://w3c.github.io/miniapp-packaging/"
|
|
14278
|
+
},
|
|
14279
|
+
"categories": [],
|
|
14280
|
+
"organization": "W3C",
|
|
14281
|
+
"groups": [
|
|
14282
|
+
{
|
|
14283
|
+
"name": "MiniApps Working Group",
|
|
14284
|
+
"url": "https://www.w3.org/2021/miniapps/"
|
|
14285
|
+
}
|
|
14286
|
+
],
|
|
14287
|
+
"release": {
|
|
14288
|
+
"url": "https://www.w3.org/TR/miniapp-packaging/",
|
|
14289
|
+
"filename": "Overview.html"
|
|
14290
|
+
},
|
|
14291
|
+
"nightly": {
|
|
14292
|
+
"url": "https://w3c.github.io/miniapp-packaging/",
|
|
14293
|
+
"repository": "https://github.com/w3c/miniapp-packaging",
|
|
14294
|
+
"sourcePath": "index.html",
|
|
14295
|
+
"filename": "index.html"
|
|
14296
|
+
},
|
|
14297
|
+
"title": "MiniApp Packaging",
|
|
14298
|
+
"source": "w3c",
|
|
14299
|
+
"shortTitle": "MiniApp Packaging"
|
|
14300
|
+
},
|
|
14135
14301
|
{
|
|
14136
14302
|
"url": "https://www.w3.org/TR/mixed-content/",
|
|
14137
14303
|
"seriesComposition": "full",
|
|
@@ -16720,6 +16886,9 @@
|
|
|
16720
16886
|
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
16721
16887
|
},
|
|
16722
16888
|
"seriesVersion": "1",
|
|
16889
|
+
"forks": [
|
|
16890
|
+
"wasm-js-api-1-fork-exception-handling"
|
|
16891
|
+
],
|
|
16723
16892
|
"organization": "W3C",
|
|
16724
16893
|
"groups": [
|
|
16725
16894
|
{
|
package/package.json
CHANGED