From 1981898d3ac20d8ea3ad56b320d33960c1de1e08 Mon Sep 17 00:00:00 2001 From: Francois Daoust Date: Tue, 5 Dec 2023 10:47:43 +0100 Subject: [PATCH] Update MSE info to handle levels 1, 2 and latest version When MSE was published as a REC, it did not have levels. That changed. The unversioned URL now targets Level 2, which is not the Rec. This update renames the shortname of the Rec from `media-source` to `media-source-1`, updates the URL for that level to `https://www.w3.org/TR/media-source-1/`, and creates a `media-source` alias to turn the `media-source` entry into a "current version" URL. Specs that currently use `[[MEDIA-SOURCE]]` to reference MSE will now target the level 2 WD and not the level 1 Rec, but then they were targeting the Rec with the URL of WD, so the reference was clumsy in any case. All of these specs are in the Media WG in any case (except HTML, but HTML references the Editor's Draft, so nothing changes there...). Note that there is no generic mechanism in Specref to handle such series. Some discussion in #463. --- overwrites/w3c.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/overwrites/w3c.json b/overwrites/w3c.json index bd34ae844..d4af2dbaf 100644 --- a/overwrites/w3c.json +++ b/overwrites/w3c.json @@ -12,5 +12,8 @@ { "id": "resource-timing", "action": "createAlias", "aliasOf": "resource-timing-2"}, { "id": "xpath", "action": "replaceProp", "prop": "href", "value": "https://www.w3.org/TR/xpath-10/" }, { "id": "PNG", "action": "renameTo", "newId": "PNG-1"}, - { "id": "PNG", "action": "createAlias", "aliasOf": "png-3"} + { "id": "PNG", "action": "createAlias", "aliasOf": "png-3"}, + { "id": "media-source", "action": "renameTo", "newId": "media-source-1" }, + { "id": "media-source-1", "action": "replaceProp", "prop": "href", "value": "https://www.w3.org/TR/media-source-1/" }, + { "id": "media-source", "action": "createAlias", "aliasOf": "media-source-2" } ]