web-specs 1.2.0 → 2.1.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 +183 -38
- package/package.json +1 -1
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
|
@@ -2975,6 +2975,40 @@
|
|
|
2975
2975
|
]
|
|
2976
2976
|
}
|
|
2977
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
|
+
},
|
|
2978
3012
|
{
|
|
2979
3013
|
"url": "https://webbluetoothcg.github.io/web-bluetooth/",
|
|
2980
3014
|
"seriesComposition": "full",
|
|
@@ -3080,43 +3114,6 @@
|
|
|
3080
3114
|
"browser"
|
|
3081
3115
|
]
|
|
3082
3116
|
},
|
|
3083
|
-
{
|
|
3084
|
-
"url": "https://wicg.github.io/app-history/",
|
|
3085
|
-
"seriesComposition": "full",
|
|
3086
|
-
"shortname": "app-history",
|
|
3087
|
-
"series": {
|
|
3088
|
-
"shortname": "app-history",
|
|
3089
|
-
"currentSpecification": "app-history",
|
|
3090
|
-
"title": "App History API",
|
|
3091
|
-
"shortTitle": "App History API",
|
|
3092
|
-
"nightlyUrl": "https://wicg.github.io/app-history/"
|
|
3093
|
-
},
|
|
3094
|
-
"organization": "W3C",
|
|
3095
|
-
"groups": [
|
|
3096
|
-
{
|
|
3097
|
-
"name": "Web Platform Incubator Community Group",
|
|
3098
|
-
"url": "https://www.w3.org/community/wicg/"
|
|
3099
|
-
}
|
|
3100
|
-
],
|
|
3101
|
-
"nightly": {
|
|
3102
|
-
"url": "https://wicg.github.io/app-history/",
|
|
3103
|
-
"repository": "https://github.com/WICG/app-history",
|
|
3104
|
-
"sourcePath": "spec.bs",
|
|
3105
|
-
"filename": "index.html"
|
|
3106
|
-
},
|
|
3107
|
-
"title": "App History API",
|
|
3108
|
-
"source": "spec",
|
|
3109
|
-
"shortTitle": "App History API",
|
|
3110
|
-
"categories": [
|
|
3111
|
-
"browser"
|
|
3112
|
-
],
|
|
3113
|
-
"tests": {
|
|
3114
|
-
"repository": "https://github.com/web-platform-tests/wpt",
|
|
3115
|
-
"testPaths": [
|
|
3116
|
-
"app-history"
|
|
3117
|
-
]
|
|
3118
|
-
}
|
|
3119
|
-
},
|
|
3120
3117
|
{
|
|
3121
3118
|
"url": "https://wicg.github.io/background-fetch/",
|
|
3122
3119
|
"seriesComposition": "full",
|
|
@@ -3257,7 +3254,13 @@
|
|
|
3257
3254
|
"shortTitle": "Close Watcher API",
|
|
3258
3255
|
"categories": [
|
|
3259
3256
|
"browser"
|
|
3260
|
-
]
|
|
3257
|
+
],
|
|
3258
|
+
"tests": {
|
|
3259
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
3260
|
+
"testPaths": [
|
|
3261
|
+
"close-watcher"
|
|
3262
|
+
]
|
|
3263
|
+
}
|
|
3261
3264
|
},
|
|
3262
3265
|
{
|
|
3263
3266
|
"url": "https://wicg.github.io/compression/",
|
|
@@ -4371,6 +4374,43 @@
|
|
|
4371
4374
|
"browser"
|
|
4372
4375
|
]
|
|
4373
4376
|
},
|
|
4377
|
+
{
|
|
4378
|
+
"url": "https://wicg.github.io/navigation-api/",
|
|
4379
|
+
"seriesComposition": "full",
|
|
4380
|
+
"shortname": "navigation-api",
|
|
4381
|
+
"series": {
|
|
4382
|
+
"shortname": "navigation-api",
|
|
4383
|
+
"currentSpecification": "navigation-api",
|
|
4384
|
+
"title": "Navigation API",
|
|
4385
|
+
"shortTitle": "Navigation API",
|
|
4386
|
+
"nightlyUrl": "https://wicg.github.io/navigation-api/"
|
|
4387
|
+
},
|
|
4388
|
+
"organization": "W3C",
|
|
4389
|
+
"groups": [
|
|
4390
|
+
{
|
|
4391
|
+
"name": "Web Platform Incubator Community Group",
|
|
4392
|
+
"url": "https://www.w3.org/community/wicg/"
|
|
4393
|
+
}
|
|
4394
|
+
],
|
|
4395
|
+
"nightly": {
|
|
4396
|
+
"url": "https://wicg.github.io/navigation-api/",
|
|
4397
|
+
"repository": "https://github.com/WICG/navigation-api",
|
|
4398
|
+
"sourcePath": "spec.bs",
|
|
4399
|
+
"filename": "index.html"
|
|
4400
|
+
},
|
|
4401
|
+
"title": "Navigation API",
|
|
4402
|
+
"source": "spec",
|
|
4403
|
+
"shortTitle": "Navigation API",
|
|
4404
|
+
"categories": [
|
|
4405
|
+
"browser"
|
|
4406
|
+
],
|
|
4407
|
+
"tests": {
|
|
4408
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
4409
|
+
"testPaths": [
|
|
4410
|
+
"app-history"
|
|
4411
|
+
]
|
|
4412
|
+
}
|
|
4413
|
+
},
|
|
4374
4414
|
{
|
|
4375
4415
|
"url": "https://wicg.github.io/netinfo/",
|
|
4376
4416
|
"seriesComposition": "full",
|
|
@@ -14162,6 +14202,108 @@
|
|
|
14162
14202
|
]
|
|
14163
14203
|
}
|
|
14164
14204
|
},
|
|
14205
|
+
{
|
|
14206
|
+
"url": "https://www.w3.org/TR/miniapp-lifecycle/",
|
|
14207
|
+
"seriesComposition": "full",
|
|
14208
|
+
"shortname": "miniapp-lifecycle",
|
|
14209
|
+
"series": {
|
|
14210
|
+
"shortname": "miniapp-lifecycle",
|
|
14211
|
+
"currentSpecification": "miniapp-lifecycle",
|
|
14212
|
+
"title": "MiniApp Lifecycle",
|
|
14213
|
+
"shortTitle": "MiniApp Lifecycle",
|
|
14214
|
+
"releaseUrl": "https://www.w3.org/TR/miniapp-lifecycle/",
|
|
14215
|
+
"nightlyUrl": "https://w3c.github.io/miniapp-lifecycle/"
|
|
14216
|
+
},
|
|
14217
|
+
"categories": [],
|
|
14218
|
+
"organization": "W3C",
|
|
14219
|
+
"groups": [
|
|
14220
|
+
{
|
|
14221
|
+
"name": "MiniApps Working Group",
|
|
14222
|
+
"url": "https://www.w3.org/2021/miniapps/"
|
|
14223
|
+
}
|
|
14224
|
+
],
|
|
14225
|
+
"release": {
|
|
14226
|
+
"url": "https://www.w3.org/TR/miniapp-lifecycle/",
|
|
14227
|
+
"filename": "Overview.html"
|
|
14228
|
+
},
|
|
14229
|
+
"nightly": {
|
|
14230
|
+
"url": "https://w3c.github.io/miniapp-lifecycle/",
|
|
14231
|
+
"repository": "https://github.com/w3c/miniapp-lifecycle",
|
|
14232
|
+
"sourcePath": "index.html",
|
|
14233
|
+
"filename": "index.html"
|
|
14234
|
+
},
|
|
14235
|
+
"title": "MiniApp Lifecycle",
|
|
14236
|
+
"source": "w3c",
|
|
14237
|
+
"shortTitle": "MiniApp Lifecycle"
|
|
14238
|
+
},
|
|
14239
|
+
{
|
|
14240
|
+
"url": "https://www.w3.org/TR/miniapp-manifest/",
|
|
14241
|
+
"seriesComposition": "full",
|
|
14242
|
+
"shortname": "miniapp-manifest",
|
|
14243
|
+
"series": {
|
|
14244
|
+
"shortname": "miniapp-manifest",
|
|
14245
|
+
"currentSpecification": "miniapp-manifest",
|
|
14246
|
+
"title": "MiniApp Manifest",
|
|
14247
|
+
"shortTitle": "MiniApp Manifest",
|
|
14248
|
+
"releaseUrl": "https://www.w3.org/TR/miniapp-manifest/",
|
|
14249
|
+
"nightlyUrl": "https://w3c.github.io/miniapp-manifest/"
|
|
14250
|
+
},
|
|
14251
|
+
"categories": [],
|
|
14252
|
+
"organization": "W3C",
|
|
14253
|
+
"groups": [
|
|
14254
|
+
{
|
|
14255
|
+
"name": "MiniApps Working Group",
|
|
14256
|
+
"url": "https://www.w3.org/2021/miniapps/"
|
|
14257
|
+
}
|
|
14258
|
+
],
|
|
14259
|
+
"release": {
|
|
14260
|
+
"url": "https://www.w3.org/TR/miniapp-manifest/",
|
|
14261
|
+
"filename": "Overview.html"
|
|
14262
|
+
},
|
|
14263
|
+
"nightly": {
|
|
14264
|
+
"url": "https://w3c.github.io/miniapp-manifest/",
|
|
14265
|
+
"repository": "https://github.com/w3c/miniapp-manifest",
|
|
14266
|
+
"sourcePath": "index.html",
|
|
14267
|
+
"filename": "index.html"
|
|
14268
|
+
},
|
|
14269
|
+
"title": "MiniApp Manifest",
|
|
14270
|
+
"source": "w3c",
|
|
14271
|
+
"shortTitle": "MiniApp Manifest"
|
|
14272
|
+
},
|
|
14273
|
+
{
|
|
14274
|
+
"url": "https://www.w3.org/TR/miniapp-packaging/",
|
|
14275
|
+
"seriesComposition": "full",
|
|
14276
|
+
"shortname": "miniapp-packaging",
|
|
14277
|
+
"series": {
|
|
14278
|
+
"shortname": "miniapp-packaging",
|
|
14279
|
+
"currentSpecification": "miniapp-packaging",
|
|
14280
|
+
"title": "MiniApp Packaging",
|
|
14281
|
+
"shortTitle": "MiniApp Packaging",
|
|
14282
|
+
"releaseUrl": "https://www.w3.org/TR/miniapp-packaging/",
|
|
14283
|
+
"nightlyUrl": "https://w3c.github.io/miniapp-packaging/"
|
|
14284
|
+
},
|
|
14285
|
+
"categories": [],
|
|
14286
|
+
"organization": "W3C",
|
|
14287
|
+
"groups": [
|
|
14288
|
+
{
|
|
14289
|
+
"name": "MiniApps Working Group",
|
|
14290
|
+
"url": "https://www.w3.org/2021/miniapps/"
|
|
14291
|
+
}
|
|
14292
|
+
],
|
|
14293
|
+
"release": {
|
|
14294
|
+
"url": "https://www.w3.org/TR/miniapp-packaging/",
|
|
14295
|
+
"filename": "Overview.html"
|
|
14296
|
+
},
|
|
14297
|
+
"nightly": {
|
|
14298
|
+
"url": "https://w3c.github.io/miniapp-packaging/",
|
|
14299
|
+
"repository": "https://github.com/w3c/miniapp-packaging",
|
|
14300
|
+
"sourcePath": "index.html",
|
|
14301
|
+
"filename": "index.html"
|
|
14302
|
+
},
|
|
14303
|
+
"title": "MiniApp Packaging",
|
|
14304
|
+
"source": "w3c",
|
|
14305
|
+
"shortTitle": "MiniApp Packaging"
|
|
14306
|
+
},
|
|
14165
14307
|
{
|
|
14166
14308
|
"url": "https://www.w3.org/TR/mixed-content/",
|
|
14167
14309
|
"seriesComposition": "full",
|
|
@@ -16750,6 +16892,9 @@
|
|
|
16750
16892
|
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
16751
16893
|
},
|
|
16752
16894
|
"seriesVersion": "1",
|
|
16895
|
+
"forks": [
|
|
16896
|
+
"wasm-js-api-1-fork-exception-handling"
|
|
16897
|
+
],
|
|
16753
16898
|
"organization": "W3C",
|
|
16754
16899
|
"groups": [
|
|
16755
16900
|
{
|