diff --git a/issue-metadata.html b/issue-metadata.html index 886905f..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
@@ -157,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
@@ -169,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

. @@ -215,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