aboutsummaryrefslogtreecommitdiff
path: root/lib/rites/rite_of/temporal_of.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rites/rite_of/temporal_of.ml')
-rw-r--r--lib/rites/rite_of/temporal_of.ml27
1 files changed, 26 insertions, 1 deletions
diff --git a/lib/rites/rite_of/temporal_of.ml b/lib/rites/rite_of/temporal_of.ml
index 1da6cf9..4f3194b 100644
--- a/lib/rites/rite_of/temporal_of.ml
+++ b/lib/rites/rite_of/temporal_of.ml
@@ -470,7 +470,32 @@ let temporal d =
(Subject.Temporal, Names.empty, rank)
in
build ~subject ~names ~season:s ~slug ~colour ~rank ~week:(week d) ()
- | None -> (
+ | None ->
+ if same d (holy_family y) then
+ (* Normae n. 35(a) fallback: "vel, ea deficiente, die 30
+ decembris" -- reached here only when {!holy_family}'s own
+ 26-31 December Sunday search found none that year (26-31
+ December holds no Sunday exactly when 25 December, Christmas
+ Day, is itself a Sunday), so the office falls on 30 December
+ civilly, whatever weekday that is. {!sunday_slug} only ever
+ recognises this office on a Sunday (its Christmas-time branch
+ tests [same d (holy_family y)] but the surrounding function
+ returns [None] immediately for any non-Sunday [d]), so
+ without this branch the date fell through to
+ {!christmas_feria_slug} below and the feast vanished
+ entirely -- CLAUDE.md's own W2. Carries the IDENTICAL
+ identity the Sunday-dispatch branch above builds (subject
+ Lord, {!holy_family_names}, rank Festum): Normae n. 35(a)'s
+ "vel... die 30 decembris" is the same feast on a fallback
+ date, not a lesser one. Colour is the plain season default
+ (white, Christmas time) -- {!is_rose_sunday} never applies
+ here (Christmas is not Advent/Lent) and 30 December is never
+ itself a Sunday when this branch fires (a Sunday would have
+ already matched {!sunday_slug} above), so there is nothing
+ to override it with. *)
+ build ~subject:Subject.Lord ~names:holy_family_names ~season:s ~slug:"of-holy-family"
+ ~colour:(season_colour s) ~rank:Festum ~week:(week d) ()
+ else (
match christmas_feria_slug d y with
| Some slug -> build ~season:s ~slug ~colour:(season_colour s) ~rank:Feria ~week:(week d) ()
| None ->