Skip to content

Commit eab0c4b

Browse files
Link and markup fixes
1 parent 4188a15 commit eab0c4b

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

transitions/wide-review-request.html

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ <h2 id="subtitle">****MOCKUP - DO NOT USE*****</h2>
1616
<span class="field-label">Shortname</span>
1717
</label>
1818
<div class="field-hint" id="hint-shortname">You may use a TR shortname to find out your next step</div>
19-
<input type="text" id="shortname" name="shortname" minlength="3" maxlength="40" pattern="[-a-zA-Z0-9]{3,40}" list="w3ctr" />
19+
<input type="text" id="shortname" name="shortname" aria-describedby="hint-shortname" class="input-width-40"
20+
minlength="3" maxlength="40" pattern="[-a-zA-Z0-9]{3,40}" list="w3ctr">
2021

21-
<datalist id="w3ctr"> </datalist>
22+
<datalist id="w3ctr"></datalist>
2223
</div>
2324

2425
<div aria-live="assertive" aria-atomic="true" id="next">
@@ -33,7 +34,7 @@ <h2 id="subtitle">****MOCKUP - DO NOT USE*****</h2>
3334

3435
Subject: <span id='spec_shortname'></span> <span id='spec_date'></span>
3536

36-
- name of spec to be reviewed: <span id='spec_title2'></span>
37+
- Name of spec to be reviewed: <span id='spec_title2'></span>
3738
- Deadline for comments: <input type='date'>
3839
- URL of spec:
3940
<span id='spec_uri'></span>
@@ -47,7 +48,7 @@ <h2 id="subtitle">****MOCKUP - DO NOT USE*****</h2>
4748
<span id='spec_commits_link'>@@github/commits@@</span>
4849
- Please point to the results of your own self-reviews:
4950
<a href='https://w3c.github.io/i18n-drafts/techniques/shortchecklist'>Internationalization</a>: <input placeholder='&lt;link>' id='i18n' type='url' maxlength='255' size='50'>
50-
<a href="https://w3c.github.io/apa/fast/checklist.html">Accessibility</a>: <input placeholder='&lt;link>' id='a11y' type='url' maxlength='255' size='50'>
51+
<a href="https://w3c.github.io/apa/fast/checklist.html">Accessibility</a>: <input placeholder='&lt;link>' id='a11y' type='url' maxlength='255' size='50'>
5152
<a href="https://w3ctag.github.io/security-questionnaire/">Security and Privacy</a>: <input placeholder='&lt;link>' id='sec_priv' type='url' maxlength='255' size='50'>
5253
- Where and how to file issues arising?
5354
<span id='spec_issues_link'>@@github/issues@@</span>
@@ -69,7 +70,7 @@ <h2 id="resources">Other resources</h2>
6970
<li><a href=".">Organize a Technical Report Transition</a></li>
7071
<li><a href="https://w3c.github.io/spec-releases/milestones/">Milestones planning</a></li>
7172
<li><a href="https://w3c.github.io/spec-releases/timeline.svg">174 days to W3C Recommendation</a></li>
72-
<li><a href="https://www.w3.org/2023/Process-20231103/#Reports">Recommendation Track Process</a></li>
73+
<li><a href="https://www.w3.org/policies/process/#Reports">Recommendation Track Process</a></li>
7374
</ul>
7475

7576
<style>
@@ -135,6 +136,7 @@ <h2 id="resources">Other resources</h2>
135136
window.history.pushState(config, config.shortname, query);
136137
trace("pushed " + window.location.href);
137138
}
139+
138140
// browser back and forward buttons
139141
window.onpopstate = function (e) {
140142
config = e.state;
@@ -177,7 +179,7 @@ <h2 id="resources">Other resources</h2>
177179
}
178180
}
179181

180-
let BASE = "https://www.w3.org/Guide/transitions?";
182+
let BASE = "https://www.w3.org/guide/transitions?";
181183
let INPLACE = "<li><a href='https://www.w3.org/2003/01/republishing/'>In-place modification of W3C Technical Reports</a></li>";
182184
function listItem(text, query) {
183185
let id = "option" + Math.round(Math.random() * 10000);
@@ -190,7 +192,7 @@ <h2 id="resources">Other resources</h2>
190192
}
191193

192194
function nextSteps(spec) {
193-
let base = "https://www.w3.org/Guide/transitions?";
195+
let base = "https://www.w3.org/guide/transitions?";
194196
let next = document.getElementById("next");
195197
let list = document.getElementById("step_list");
196198

@@ -262,7 +264,7 @@ <h2 id="resources">Other resources</h2>
262264
}
263265

264266
function defaultStep() {
265-
let base = "https://www.w3.org/Guide/transitions?";
267+
let base = "https://www.w3.org/guide/transitions?";
266268
let next = document.getElementById("next");
267269
let list = document.getElementById("step_list");
268270
list.innerHTML = listItem("Publish as a First Public Working Draft", "profile=FPWD") + listItem("Publish as a Working Group Note", "profile=WG-NOTE");
@@ -323,7 +325,6 @@ <h2 id="resources">Other resources</h2>
323325
}
324326

325327
// initialization
326-
327328
document.getElementById("spec").style.display = "none";
328329
document.getElementById("next").style.display = "none";
329330

@@ -354,4 +355,4 @@ <h2 id="resources">Other resources</h2>
354355
}
355356
}
356357
trace("restored " + window.location.href);
357-
</script>
358+
</script>

0 commit comments

Comments
 (0)