Skip to content

Commit e87e1a7

Browse files
committed
Added issuegen page
1 parent f8a9817 commit e87e1a7

2 files changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Table Module Level 3 Disposition of Comments for - Draft</title>
4+
<style type="text/css">
5+
pre { border: solid thin silver; padding: 0.2em; white-space: normal; }
6+
pre > span { display: block; white-space: pre; }
7+
:not(pre).a { background: lightgreen }
8+
:not(pre).d { background: lightblue }
9+
:not(pre).oi { background: yellow }
10+
:not(pre).r { background: orange }
11+
:not(pre).fo { background: red }
12+
.open { border: solid red; }
13+
:target { box-shadow: 0.25em 0.25em 0.25em; }
14+
</style>
15+
16+
<h1>CSS Table Module Level 3 Disposition of Comments for - Draft</h1>
17+
18+
<p>Dated Draft: <a href="https://drafts.csswg.org/css-tables-3/">https://drafts.csswg.org/css-tables-3/</a>
19+
20+
<p>Editor's Draft: <a href="http://drafts.csswg.org//">http://drafts.csswg.org//</a>
21+
22+
<p>The following color coding convention is used for comments:</p>
23+
24+
<ul>
25+
<li class="a">Accepted or Rejected and positive response
26+
<li class="r">Rejected and no response
27+
<li class="fo">Rejected and negative response
28+
<li class="d">Deferred
29+
<li class="oi">Out-of-Scope or Invalid and not verified
30+
</ul>
31+
32+
<p class=open>Open issues are marked like this</p>
33+
34+
<p>An issue can be closed as <code>Accepted</code>, <code>OutOfScope</code>,
35+
<code>Invalid</code>, <code>Rejected</code>, or <code>Retracted</code>.
36+
<code>Verified</code> indicates commentor's acceptance of the response.</p>
37+
<pre class='open ' id='issue-1'>
38+
<span>Issue 1. <a href='#issue-1'>#</a></span>
39+
<span>Summary: Repeating table headers and footers</span>
40+
<span>From: Florian Rivoal</span>
41+
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2016Jan/0135.html'>https://lists.w3.org/Archives/Public/www-style/2016Jan/0135.html</a></span>
42+
<span class="">Open: Under Review</span>
43+
<span>----</span></pre>
44+
<script>
45+
(function () {
46+
var sheet = document.styleSheets[0];
47+
function addCheckbox(className) {
48+
var element = document.querySelector('*.' + className);
49+
var span = document.createElement('span');
50+
span.innerHTML = element.innerHTML;
51+
element.innerHTML = null;
52+
var check = document.createElement('input');
53+
check.type = 'checkbox';
54+
if (className == 'open') {
55+
check.checked = false;
56+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
57+
check.onchange = function (e) {
58+
rule.style.display = this.checked ? 'none' : 'block';
59+
}
60+
}
61+
else {
62+
check.checked = true;
63+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
64+
check.onchange = function (e) {
65+
rule.style.display = this.checked ? 'block' : 'none';
66+
}
67+
}
68+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
69+
element.appendChild(check);
70+
element.appendChild(span);
71+
}
72+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
73+
}());
74+
</script>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Draft: https://drafts.csswg.org/css-tables-3/
2+
Title: CSS Table Module Level 3
3+
4+
----
5+
Issue 1.
6+
Summary: Repeating table headers and footers
7+
From: Florian Rivoal
8+
Comment: https://lists.w3.org/Archives/Public/www-style/2016Jan/0135.html
9+
Open: Under Review
10+
----

0 commit comments

Comments
 (0)