From 2059d608c5697676e48c497caa384bb00fb34d51 Mon Sep 17 00:00:00 2001 From: Perplexity Computer Date: Wed, 9 Sep 2026 13:05:58 +0000 Subject: [PATCH] =?UTF-8?q?verify-site:=20/orb/=20is=20an=20external=20Pag?= =?UTF-8?q?es=20surface,=20like=20leela=20=E2=80=94=20no=20lastmod=20expec?= =?UTF-8?q?ted?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since 7e8ac690 /orb/ is served by gHashTag/orb and its files are gone from this repository, but the lastmod check still treated the URL as owned. Every scheduled 'Publish website from trinity' run since 2026-09-08 18:00Z failed with 'missing lastmod for owned URLs: [https://t27.ai/orb/]' and nothing was pushed — trinity@main (incl. #975) never reached the apex. --- verify-site.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/verify-site.sh b/verify-site.sh index 69db2593..476f6d57 100755 --- a/verify-site.sh +++ b/verify-site.sh @@ -377,14 +377,18 @@ for block in blocks: if loc: entries.append((loc.group(1), lm.group(1) if lm else None)) -# These three URLs are served by the separate gHashTag/leela Pages project. -# This checkout cannot ask that repository when its files changed, and stamping -# them with this repository's date would turn lastmod into a fabricated claim. -# Every URL this repository actually owns must still carry a derived date. +# These URLs are served by separate Pages projects: the three leela surfaces by +# gHashTag/leela, and /orb/ by gHashTag/orb since 7e8ac690 handed the page to +# its own site. This checkout cannot ask those repositories when their files +# changed, and stamping them with this repository's date would turn lastmod into +# a fabricated claim. Every URL this repository actually owns must still carry +# a derived date. (7e8ac690 kept the sitemap entry but did not add it here, so +# every scheduled publish since 2026-09-08 18:00Z failed on this check.) external_without_lastmod = { "https://t27.ai/leela/", "https://t27.ai/leela/classic/", "https://t27.ai/leela/docs/", + "https://t27.ai/orb/", } unexpected_missing = [ loc for loc, lm in entries if lm is None and loc not in external_without_lastmod