Add manifest page and refine editorial landing pages
All checks were successful
SMOKE / smoke (push) Successful in 11s
CI / build-and-anchors (push) Successful in 46s
CI / build-and-anchors (pull_request) Successful in 45s

This commit is contained in:
2026-05-05 23:04:57 +02:00
parent af0e6694e5
commit c07028c052
19 changed files with 946 additions and 730 deletions

View File

@@ -189,12 +189,22 @@ function diffPage(prevIds, curIds) {
continue;
}
// page supprimée
// page supprimée ou sortie volontairement du contrat dancres
if (prevIds && !curIds) {
const acceptedReason = acceptedResetReasonForPage(p);
if (ALLOW_MISSING.has(p)) {
console.log(`~ PAGE ${p} (missing now) ✅ allowed prevIds=${prevIds.length}`);
continue;
}
if (acceptedReason) {
acceptedPages += 1;
console.log(`- PAGE ${p} (missing now) prevIds=${prevIds.length}`);
console.log(` ✅ accepted reset: ${acceptedReason}`);
continue;
}
console.log(`- PAGE ${p} (missing now) prevIds=${prevIds.length}`);
failed = true;
continue;