From 1f694889f767dedd84f60d8e0cbccf201c2d123f Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Tue, 28 Jul 2026 07:51:05 +0200 Subject: feat(ef): full 1962 universal sanctoral (16 -> 317 celebrations) Generate internal/caldata/tridentine-calendar.ini from missalemeum's per-date proper API (Divinum Officium 1962 data) via scripts/gen-sanctoral-ef.go: each fixed date's observed saint with rank, colour, English name and proper Epistle/Gospel citations, plus sancti commemorations. Multiple reference years are tried per date so a saint occulted by a Sunday in one year is still captured observed in another; saints never observed are ranked commemoration. Feasts of the Lord are marked class=lord. Latin names hand-curated (missalemeum has none). Adds TestTridentineLoads, credits missalemeum in NOTICE, bumps to 0.38.0. --- scripts/build-oracle-ef.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/build-oracle-ef.sh') diff --git a/scripts/build-oracle-ef.sh b/scripts/build-oracle-ef.sh index 71174ae..2864551 100755 --- a/scripts/build-oracle-ef.sh +++ b/scripts/build-oracle-ef.sh @@ -26,9 +26,9 @@ done > "$work/dates" fetch() { local d="$1" local j - j=$(curl -sf "https://www.missalemeum.com/en/api/v5/proper/$d" || true) + j=$(curl -sf --max-time 25 "https://www.missalemeum.com/en/api/v5/proper/$d" || true) printf '%s' "$j" | jq -c --arg d "$d" \ - '{($d): (.[0].info | {tempora:(.tempora // ""), title:.title, rank:.rank, colour:(.colors|join(""))})}' \ + '{($d): (.[0].info | {id:(.id // ""), tempora:(.tempora // ""), title:.title, rank:.rank, colour:(.colors|join(""))})}' \ 2>/dev/null || true } export -f fetch -- cgit v1.3