Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport fixes for examples in 2.1 recommendation #4267

Merged
merged 2 commits into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guidelines/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ <h3>Full pages</h3>
<section id="cc3">
<h3>Complete processes</h3>
<p>When a <a>Web page</a> is one of a series of Web pages presenting a <a>process</a> (i.e., a sequence of steps that need to be completed in order to accomplish an activity), all Web pages in the process conform at the specified level or better. (Conformance is not possible at a particular level if any page in the process does not conform at that level or better.)</p>
<p class="example">An online store has a series of pages that are used to select and purchase products. All pages in the series from start to finish (checkout) conform in order for any page that is part of the process to conform.</p>
<aside class="example"><p>An online store has a series of pages that are used to select and purchase products. All pages in the series from start to finish (checkout) conform in order for any page that is part of the process to conform.</p></aside>
</section>

<!-- This section is quoted in Understanding Conformance. If updated, the update needs to be copied there. -->
Expand Down
61 changes: 61 additions & 0 deletions script/wcag.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,71 @@ function termTitles() {
});
}

// number notes if there are multiple per section
function numberNotes() {
var sectionsWithNotes = new Array();
document.querySelectorAll(".note").forEach(function(note) {
var container = note.closest("dd");
if (container == null) container = note.closest("section");
sectionsWithNotes.push(container);
});

sectionsWithNotes.forEach(function(sec) {
if (sec.noteprocessed) return;
var notes = sec.querySelectorAll('.note');
// no notes, shouldn't happen
if (notes.length == 0) return;
// one note, leave alone
if (notes.length == 1) return;
// more than one note, number them
if (notes.length > 1) {
var count = 1;
sec.querySelectorAll(".note").forEach(function(note) {
var span = note.querySelector(".note-title span");
span.textContent = "Note " + count;
count++;
});
}
sec.noteprocessed = true;
});
}

// change the numbering of examples to remove number from lone examples in a section, and restart numbering for multiple in each section
function renumberExamples() {
var sectionsWithExamples = new Array();
document.querySelectorAll(".example").forEach(function(example) {
var container = example.closest("dd"); // use dd container if present
if (container == null) container = example.closest("section"); // otherwise section
sectionsWithExamples.push(container);
});

sectionsWithExamples.forEach(function(sec) {
if (sec.exprocessed) return;
var examples = sec.querySelectorAll(".example");
// no examples, shouldn't happen
if (examples.length == 0) return;
// one example, remove the numbering
// more than one example, number them
else {
var count = 1;
var rmOrAdd = examples.length == 1 ? "rm" : "add";
sec.querySelectorAll(".example").forEach(function(example) {
var marker = example.querySelector(".marker");
if (rmOrAdd == "rm") marker.textContent = "Example";
else marker.textContent = "Example " + count;
count++;
});
}
sec.exprocessed = true;
});
}

// scripts after Respec has run
function postRespec() {
addTextSemantics();
swapInDefinitions();
termTitles();
linkUnderstanding();
numberNotes();
renumberExamples();
}