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);
+})