summaryrefslogtreecommitdiff
path: root/lib/rites/rite_ef/lectionary_ef.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rites/rite_ef/lectionary_ef.ml')
-rw-r--r--lib/rites/rite_ef/lectionary_ef.ml38
1 files changed, 25 insertions, 13 deletions
diff --git a/lib/rites/rite_ef/lectionary_ef.ml b/lib/rites/rite_ef/lectionary_ef.ml
index 4325bed..13ff5d5 100644
--- a/lib/rites/rite_ef/lectionary_ef.ml
+++ b/lib/rites/rite_ef/lectionary_ef.ml
@@ -367,21 +367,33 @@ let readings ~lectionary ~commons ~observed ~temporal ~date ~temporal_at =
would be dead code; placing it earlier would let it outrank a
real saint's proper.
- FORMULARY PROVENANCE, a genuine judgement call: {!Mass_formulary.source}
- has no fifth constructor for "the RG 309(a) seasonal votive Mass",
- so this is tagged [Own_slug] -- [is_bvm_saturday_office] only ever
- fires when [sanctoral_office] above is false, i.e. the observed
- celebration already IS the day's own temporal office (the office
- deliberately reuses the ordinary ferial slug, [Temporal_ef]'s own
- [bvm_saturday_names]), so [said] is genuinely "the day's own
- slug" -- [Own_slug]'s own documented meaning
- (mass_formulary.mli's [said] comment) -- even though the
- citations themselves come from [bvm_saturday_citations]'s
- season table rather than a [Lectionary.find] hit. Flagged in the
- task report as an interpretation, not a specified answer. *)
+ FORMULARY PROVENANCE: [Votive], not [Own_slug] (CORRECTED, fix
+ round 1, coordinator review -- the first pass tagged this
+ [Own_slug] for lack of a better constructor and flagged it as a
+ judgement call; [Mass_formulary.source] has grown a [Votive]
+ case since, precisely for this branch). RG 309(a) (this
+ branch's own header comment above) and RG 431(e) ("in Missis
+ votivis IV classis ... de B. Maria Virg. quae in sabbato
+ celebrantur", temporal_ef.ml's own colour-chain comment quotes
+ it in full) both classify this Mass itself, in the Missal's own
+ words, as a "Missa votiva" -- a votive Mass said IN PLACE of the
+ day's own office's Mass, the office (RG 78, Officium sanctae
+ Mariae in sabbato) being kept unchanged. WITNESSED, not merely
+ argued: the Latin Mass Society Ordo (docs/research/ordo/lms-
+ ordo-2024-2025.pdf) prints this exact day as "OUR LADY on
+ SATURDAY IV Cl W / V Mass of BVM" -- "V" is that Ordo's own
+ abbreviation for Votive.
+
+ [said] is UNCHANGED by this correction and stays the day's own
+ temporal slug: [is_bvm_saturday_office] only ever fires when
+ [sanctoral_office] above is false, i.e. the observed celebration
+ already IS the day's own temporal office (the office
+ deliberately reuses the ordinary ferial slug, [Temporal_ef]'s
+ own [bvm_saturday_names]) -- only [via] needed correcting, the
+ office/Mass split [Votive] exists to name. *)
if is_bvm_saturday_office observed temporal then
let said = temporal.Temporal.office.Celebration.slug in
- ( Some { Mass_formulary.said; via = Mass_formulary.Own_slug },
+ ( Some { Mass_formulary.said; via = Mass_formulary.Votive },
bvm_saturday_citations temporal.Temporal.season ~month:(Date.month date)
~day:(Date.day date) )
else