From 4cdda3103f80e48cb04468ed0c34793148f85c3a Mon Sep 17 00:00:00 2001 From: plehegar Date: Wed, 5 Feb 2020 15:28:50 -0500 Subject: [PATCH 1/2] Support for display_errata --- issue-metadata.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/issue-metadata.html b/issue-metadata.html index 886905f..e48ad5c 100644 --- a/issue-metadata.html +++ b/issue-metadata.html @@ -106,6 +106,10 @@

Specifications

This issue won't get addressed. Best is to combine this one with others, sich as invalid.
w3c
This is used to track non-technical W3C Process related issues, such as transitions.
+
Errata
+
Erratum for a W3C Recommendation (see w3c/display_errata)
+
ErratumRaised
+
Raised to become an Errata later (see w3c/display_errata)
From df40317782fc8765104fdc1caf19d085d77dd8b9 Mon Sep 17 00:00:00 2001 From: plehegar Date: Tue, 5 May 2020 11:32:06 -0400 Subject: [PATCH 2/2] New labels for errata --- issue-metadata.html | 21 ++++++++++++++------- specification-labels.json | 20 ++++++++++++++++++++ 2 files changed, 34 insertions(+), 7 deletions(-) create mode 100644 specification-labels.json diff --git a/issue-metadata.html b/issue-metadata.html index e48ad5c..9541b75 100644 --- a/issue-metadata.html +++ b/issue-metadata.html @@ -88,8 +88,6 @@

Testing and Implementations

Specifications

-
editorial
-
The reported issue can be addressed with an editorial change. This tag could be combined with others (except substantive).
substantive
The reported issue will only be addressed with a substantive change. This tag could be combined with others (except editorial).
bug
@@ -106,10 +104,6 @@

Specifications

This issue won't get addressed. Best is to combine this one with others, sich as invalid.
w3c
This is used to track non-technical W3C Process related issues, such as transitions.
-
Errata
-
Erratum for a W3C Recommendation (see w3c/display_errata)
-
ErratumRaised
-
Raised to become an Errata later (see w3c/display_errata)
@@ -161,6 +155,7 @@

Wide Review

For each comment, please fill a "type" with above labels

2-Once the WG has processed all comments, the next steps are to get approval from the commenter

+
WR-response-drafted
Response to commenter drafted by WG
WR-response-sent
@@ -173,7 +168,7 @@

Wide Review

Response partially agreed by commenter (needs more discussion)
WR-commenter-no-response
No Response received from commenter within the stated period
-
+

For more information please refer to the TTWG wiki Wide Review page

. @@ -219,6 +214,18 @@

Projects

} } }) +// populate specification labels +fetch("specification-labels.json").then(res => res.json()).then(labels => { + const dl = document.querySelector("#specifications dl"); + let entries = ""; + labels.forEach(label => { + entries+= `
${label.name}
+
${label.longdesc}
`; + }) + const frag = document.createDocumentFragment(); + frag.innerHTML = entries; + dl.appendChild(frag); +}) diff --git a/specification-labels.json b/specification-labels.json new file mode 100644 index 0000000..d9732cd --- /dev/null +++ b/specification-labels.json @@ -0,0 +1,20 @@ +[ + { + "name": "erratum", + "longdesc": "An issue was accepted as an erratum and be listed on the errata page of the Recommendation.", + "description": "Erratum for a W3C Recommendation", + "color": "0052cc" + }, + { + "name": "erratum-raised", + "longdesc": "An issue is raised for a possible erratum. If it is accepted as a genuine erratum, the label 'errata' should replace it.", + "description": "Raised to become an Errata later", + "color": "0052cc" + }, + { + "name": "editorial", + "longdesc": "By default, an issue is considered substantive unless indicated otherwise. If the reported issue can be addressed with an editorial change, use this label.", + "description": "This is an editorial issue.", + "color": "c5def5" + } +] \ No newline at end of file