Add manifest page and refine editorial landing pages
This commit is contained in:
@@ -189,12 +189,22 @@ function diffPage(prevIds, curIds) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// page supprimée
|
||||
// page supprimée ou sortie volontairement du contrat d’ancres
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user